styles.css 201 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u99294_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. #u99294 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u99294 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u99294_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u99295_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. #u99295 {
  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. #u99295 .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. #u99295_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u99296_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. #u99296 {
  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. #u99296 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u99296_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u99297 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u99298_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u99298 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u99298 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u99298_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u99299_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. #u99299 {
  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. #u99299 .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. #u99299_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u99300_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. #u99300 {
  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. #u99300 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u99300_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u99301 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u99302_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. #u99302_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. #u99302_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. #u99302 {
  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. #u99302 .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. #u99302_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. #u99302.disabled {
  356. }
  357. .u99302_input_option {
  358. font-size:14px;
  359. }
  360. #u99303_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u99303 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u99303 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u99303_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u99304_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. #u99304 {
  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. #u99304 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u99304_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u99305_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. #u99305 {
  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. #u99305 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u99305_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u99306 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u99307_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. #u99307 {
  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. #u99307 .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. #u99307_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u99308_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u99308 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u99308 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u99308_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u99309 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u99310_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. #u99310 {
  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. #u99310 .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. #u99310_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u99311_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u99311 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u99311 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u99311_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u99312 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u99313_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. #u99313 {
  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. #u99313 .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. #u99313_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u99314_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u99314 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u99314 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u99314_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u99315 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u99316_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. #u99316 {
  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. #u99316 .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. #u99316_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u99317_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u99317 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u99317 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u99317_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u99318 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u99319_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. #u99319 {
  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. #u99319 .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. #u99319_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u99320_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u99320 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u99320 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u99320_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u99321 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u99322_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. #u99322 {
  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. #u99322 .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. #u99322_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u99323_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u99323 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u99323 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u99323_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u99324 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u99325_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. #u99325 {
  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. #u99325 .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. #u99325_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u99326_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u99326 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u99326 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u99326_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u99327 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u99328_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. #u99328 {
  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. #u99328 .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. #u99328_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u99329_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u99329 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u99329 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u99329_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u99330 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u99331_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. #u99331 {
  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. #u99331 .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. #u99331_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u99332_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u99332 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u99332 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u99332_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u99333 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u99334_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. #u99334 {
  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. #u99334 .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. #u99334_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u99335_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u99335 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u99335 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u99335_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u99336_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. #u99336 {
  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. #u99336 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u99336_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u99337_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u99337 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u99337 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u99337_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u99338_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. #u99338 {
  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. #u99338 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u99338_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u99339_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u99339 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u99339 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u99339_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u99340 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u99341_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. #u99341 {
  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. #u99341 .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. #u99341_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u99342_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u99342 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u99342 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u99342_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u99343 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u99344_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. #u99344 {
  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. #u99344 .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. #u99344_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u99345_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u99345 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u99345 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u99345_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u99346_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1259px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u99346 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:333px;
  1657. top:50px;
  1658. width:1259px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u99346 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u99346_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u99347_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:109px;
  1681. height:50px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-left:0px;
  1686. border-top:0px;
  1687. border-right:0px;
  1688. border-radius:0px;
  1689. border-bottom-right-radius:0px;
  1690. border-bottom-left-radius:0px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1695. font-weight:500;
  1696. font-style:normal;
  1697. font-size:18px;
  1698. color:#1890FF;
  1699. line-height:40px;
  1700. }
  1701. #u99347 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:659px;
  1705. top:50px;
  1706. width:109px;
  1707. height:50px;
  1708. display:flex;
  1709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1710. font-weight:500;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. color:#1890FF;
  1714. line-height:40px;
  1715. }
  1716. #u99347 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:0px 0px 0px 0px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u99347_text {
  1724. border-width:0px;
  1725. white-space:nowrap;
  1726. text-transform:none;
  1727. }
  1728. #u99348_div {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:905px;
  1734. height:80px;
  1735. background:inherit;
  1736. background-color:rgba(255, 255, 255, 1);
  1737. box-sizing:border-box;
  1738. border-width:1px;
  1739. border-style:solid;
  1740. border-color:rgba(215, 215, 215, 1);
  1741. border-left:0px;
  1742. border-top:0px;
  1743. border-right:0px;
  1744. border-radius:0px;
  1745. border-bottom-right-radius:0px;
  1746. border-bottom-left-radius:0px;
  1747. -moz-box-shadow:none;
  1748. -webkit-box-shadow:none;
  1749. box-shadow:none;
  1750. }
  1751. #u99348 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:669px;
  1755. top:110px;
  1756. width:905px;
  1757. height:80px;
  1758. display:flex;
  1759. }
  1760. #u99348 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 2px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u99348_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. visibility:hidden;
  1772. }
  1773. #u99349_div {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:109px;
  1779. height:30px;
  1780. background:inherit;
  1781. background-color:rgba(255, 255, 255, 0);
  1782. border:none;
  1783. border-left:0px;
  1784. border-top:0px;
  1785. border-right:0px;
  1786. border-radius:0px;
  1787. border-bottom-right-radius:0px;
  1788. border-bottom-left-radius:0px;
  1789. -moz-box-shadow:none;
  1790. -webkit-box-shadow:none;
  1791. box-shadow:none;
  1792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1793. font-weight:400;
  1794. font-style:normal;
  1795. font-size:18px;
  1796. color:#555555;
  1797. line-height:30px;
  1798. }
  1799. #u99349 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:669px;
  1803. top:120px;
  1804. width:109px;
  1805. height:30px;
  1806. display:flex;
  1807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:18px;
  1811. color:#555555;
  1812. line-height:30px;
  1813. }
  1814. #u99349 .text {
  1815. position:absolute;
  1816. align-self:flex-start;
  1817. padding:0px 0px 0px 0px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u99349_text {
  1822. border-width:0px;
  1823. white-space:nowrap;
  1824. text-transform:none;
  1825. }
  1826. #u99350_div {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:646px;
  1832. height:20px;
  1833. background:inherit;
  1834. background-color:rgba(255, 255, 255, 0);
  1835. border:none;
  1836. border-radius:0px;
  1837. -moz-box-shadow:none;
  1838. -webkit-box-shadow:none;
  1839. box-shadow:none;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:10px;
  1844. color:#7F7F7F;
  1845. line-height:20px;
  1846. }
  1847. #u99350 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:671px;
  1851. top:154px;
  1852. width:646px;
  1853. height:20px;
  1854. display:flex;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:10px;
  1859. color:#7F7F7F;
  1860. line-height:20px;
  1861. }
  1862. #u99350 .text {
  1863. position:absolute;
  1864. align-self:flex-start;
  1865. padding:0px 0px 0px 0px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u99350_text {
  1870. border-width:0px;
  1871. white-space:nowrap;
  1872. text-transform:none;
  1873. }
  1874. #u99351 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:0px;
  1880. height:0px;
  1881. }
  1882. #u99352_div {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:300px;
  1888. height:1191px;
  1889. background:inherit;
  1890. background-color:rgba(240, 242, 245, 1);
  1891. border:none;
  1892. border-radius:0px;
  1893. -moz-box-shadow:none;
  1894. -webkit-box-shadow:none;
  1895. box-shadow:none;
  1896. }
  1897. #u99352 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:329px;
  1901. top:50px;
  1902. width:300px;
  1903. height:1191px;
  1904. display:flex;
  1905. }
  1906. #u99352 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:2px 2px 2px 2px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u99352_text {
  1914. border-width:0px;
  1915. word-wrap:break-word;
  1916. text-transform:none;
  1917. visibility:hidden;
  1918. }
  1919. #u99353 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:0px;
  1925. height:0px;
  1926. }
  1927. #u99354_div {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:260px;
  1933. height:38px;
  1934. background:inherit;
  1935. background-color:rgba(255, 255, 255, 1);
  1936. box-sizing:border-box;
  1937. border-width:1px;
  1938. border-style:solid;
  1939. border-color:rgba(242, 242, 242, 1);
  1940. border-radius:4px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-family:'Microsoft YaHei', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. font-size:14px;
  1948. color:#CCCCCC;
  1949. text-align:left;
  1950. }
  1951. #u99354 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:349px;
  1955. top:120px;
  1956. width:260px;
  1957. height:38px;
  1958. display:flex;
  1959. font-family:'Microsoft YaHei', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. color:#CCCCCC;
  1964. text-align:left;
  1965. }
  1966. #u99354 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 8px 2px 8px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u99354_text {
  1974. border-width:0px;
  1975. word-wrap:break-word;
  1976. text-transform:none;
  1977. visibility:hidden;
  1978. }
  1979. #u99355_input {
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:201px;
  1984. height:31px;
  1985. padding:2px 2px 2px 2px;
  1986. font-family:'Microsoft YaHei', sans-serif;
  1987. font-weight:400;
  1988. font-style:normal;
  1989. font-size:14px;
  1990. letter-spacing:normal;
  1991. color:#000000;
  1992. vertical-align:none;
  1993. text-align:left;
  1994. text-transform:none;
  1995. background-color:transparent;
  1996. border-color:transparent;
  1997. }
  1998. #u99355_input.disabled {
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:201px;
  2003. height:31px;
  2004. padding:2px 2px 2px 2px;
  2005. font-family:'Microsoft YaHei', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:14px;
  2009. letter-spacing:normal;
  2010. color:#000000;
  2011. vertical-align:none;
  2012. text-align:left;
  2013. text-transform:none;
  2014. background-color:transparent;
  2015. border-color:transparent;
  2016. }
  2017. #u99355_div {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:201px;
  2023. height:31px;
  2024. background:inherit;
  2025. background-color:rgba(255, 255, 255, 1);
  2026. border:none;
  2027. border-radius:0px;
  2028. -moz-box-shadow:none;
  2029. -webkit-box-shadow:none;
  2030. box-shadow:none;
  2031. font-family:'Microsoft YaHei', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:14px;
  2035. }
  2036. #u99355 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:357px;
  2040. top:121px;
  2041. width:201px;
  2042. height:31px;
  2043. display:flex;
  2044. font-family:'Microsoft YaHei', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:14px;
  2048. }
  2049. #u99355 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 2px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u99355_div.disabled {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:201px;
  2062. height:31px;
  2063. background:inherit;
  2064. background-color:rgba(240, 240, 240, 1);
  2065. border:none;
  2066. border-radius:0px;
  2067. -moz-box-shadow:none;
  2068. -webkit-box-shadow:none;
  2069. box-shadow:none;
  2070. font-family:'Microsoft YaHei', sans-serif;
  2071. font-weight:400;
  2072. font-style:normal;
  2073. font-size:14px;
  2074. }
  2075. #u99355.disabled {
  2076. }
  2077. #u99356_img {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:14px;
  2083. height:14px;
  2084. }
  2085. #u99356 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:567px;
  2089. top:132px;
  2090. width:14px;
  2091. height:14px;
  2092. display:flex;
  2093. }
  2094. #u99356 .text {
  2095. position:absolute;
  2096. align-self:center;
  2097. padding:2px 2px 2px 2px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u99356_text {
  2102. border-width:0px;
  2103. word-wrap:break-word;
  2104. text-transform:none;
  2105. visibility:hidden;
  2106. }
  2107. #u99357 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:0px;
  2113. height:0px;
  2114. }
  2115. #u99358_div {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:260px;
  2121. height:48px;
  2122. background:inherit;
  2123. background-color:rgba(0, 153, 255, 0.0980392156862745);
  2124. border:none;
  2125. border-radius:4px;
  2126. -moz-box-shadow:none;
  2127. -webkit-box-shadow:none;
  2128. box-shadow:none;
  2129. font-family:'Microsoft YaHei', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:14px;
  2133. color:#CCCCCC;
  2134. text-align:left;
  2135. }
  2136. #u99358 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:349px;
  2140. top:178px;
  2141. width:260px;
  2142. height:48px;
  2143. display:flex;
  2144. font-family:'Microsoft YaHei', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:14px;
  2148. color:#CCCCCC;
  2149. text-align:left;
  2150. }
  2151. #u99358 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 8px 2px 8px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u99358_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. visibility:hidden;
  2163. }
  2164. #u99359_div {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:12px;
  2170. height:15px;
  2171. background:inherit;
  2172. background-color:rgba(51, 51, 51, 1);
  2173. border:none;
  2174. border-radius:4px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:10px;
  2182. color:#FFFFFF;
  2183. }
  2184. #u99359 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:362px;
  2188. top:194px;
  2189. width:12px;
  2190. height:15px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:10px;
  2196. color:#FFFFFF;
  2197. }
  2198. #u99359 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:0px 0px 0px 0px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u99359_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. }
  2210. #u99360_div {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:85px;
  2216. height:19px;
  2217. background:inherit;
  2218. background-color:rgba(51, 51, 51, 0);
  2219. border:none;
  2220. border-radius:4px;
  2221. -moz-box-shadow:none;
  2222. -webkit-box-shadow:none;
  2223. box-shadow:none;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:14px;
  2228. text-align:left;
  2229. }
  2230. #u99360 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:383px;
  2234. top:192px;
  2235. width:85px;
  2236. height:19px;
  2237. display:flex;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:14px;
  2242. text-align:left;
  2243. }
  2244. #u99360 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:0px 0px 0px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u99360_text {
  2252. border-width:0px;
  2253. white-space:nowrap;
  2254. text-transform:none;
  2255. }
  2256. #u99361_div {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:73px;
  2262. height:50px;
  2263. background:inherit;
  2264. background-color:rgba(255, 255, 255, 0);
  2265. border:none;
  2266. border-left:0px;
  2267. border-top:0px;
  2268. border-right:0px;
  2269. border-radius:0px;
  2270. border-bottom-right-radius:0px;
  2271. border-bottom-left-radius:0px;
  2272. -moz-box-shadow:none;
  2273. -webkit-box-shadow:none;
  2274. box-shadow:none;
  2275. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2276. font-weight:500;
  2277. font-style:normal;
  2278. font-size:18px;
  2279. line-height:40px;
  2280. }
  2281. #u99361 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:349px;
  2285. top:60px;
  2286. width:73px;
  2287. height:50px;
  2288. display:flex;
  2289. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2290. font-weight:500;
  2291. font-style:normal;
  2292. font-size:18px;
  2293. line-height:40px;
  2294. }
  2295. #u99361 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:5px 0px 5px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u99361_text {
  2303. border-width:0px;
  2304. white-space:nowrap;
  2305. text-transform:none;
  2306. }
  2307. #u99362 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:0px;
  2313. height:0px;
  2314. }
  2315. #u99363_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:260px;
  2321. height:48px;
  2322. background:inherit;
  2323. background-color:rgba(242, 242, 242, 0.0980392156862745);
  2324. border:none;
  2325. border-radius:4px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. font-family:'Microsoft YaHei', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:14px;
  2333. color:#CCCCCC;
  2334. text-align:left;
  2335. }
  2336. #u99363 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:349px;
  2340. top:227px;
  2341. width:260px;
  2342. height:48px;
  2343. display:flex;
  2344. font-family:'Microsoft YaHei', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:14px;
  2348. color:#CCCCCC;
  2349. text-align:left;
  2350. }
  2351. #u99363 .text {
  2352. position:absolute;
  2353. align-self:center;
  2354. padding:2px 8px 2px 8px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u99363_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. visibility:hidden;
  2363. }
  2364. #u99364_div {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:12px;
  2370. height:15px;
  2371. background:inherit;
  2372. background-color:rgba(51, 51, 51, 1);
  2373. border:none;
  2374. border-radius:4px;
  2375. -moz-box-shadow:none;
  2376. -webkit-box-shadow:none;
  2377. box-shadow:none;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:10px;
  2382. color:#FFFFFF;
  2383. }
  2384. #u99364 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:362px;
  2388. top:243px;
  2389. width:12px;
  2390. height:15px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:10px;
  2396. color:#FFFFFF;
  2397. }
  2398. #u99364 .text {
  2399. position:absolute;
  2400. align-self:center;
  2401. padding:0px 0px 0px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u99364_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. }
  2410. #u99365_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:113px;
  2416. height:19px;
  2417. background:inherit;
  2418. background-color:rgba(51, 51, 51, 0);
  2419. border:none;
  2420. border-radius:4px;
  2421. -moz-box-shadow:none;
  2422. -webkit-box-shadow:none;
  2423. box-shadow:none;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:14px;
  2428. text-align:left;
  2429. }
  2430. #u99365 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:383px;
  2434. top:241px;
  2435. width:113px;
  2436. height:19px;
  2437. display:flex;
  2438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2439. font-weight:400;
  2440. font-style:normal;
  2441. font-size:14px;
  2442. text-align:left;
  2443. }
  2444. #u99365 .text {
  2445. position:absolute;
  2446. align-self:center;
  2447. padding:0px 0px 0px 0px;
  2448. box-sizing:border-box;
  2449. width:100%;
  2450. }
  2451. #u99365_text {
  2452. border-width:0px;
  2453. white-space:nowrap;
  2454. text-transform:none;
  2455. }
  2456. #u99366_img {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:50px;
  2462. height:31px;
  2463. }
  2464. #u99366 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:1521px;
  2468. top:120px;
  2469. width:50px;
  2470. height:31px;
  2471. display:flex;
  2472. }
  2473. #u99366 .text {
  2474. position:absolute;
  2475. align-self:center;
  2476. padding:2px 2px 2px 2px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u99366_text {
  2481. border-width:0px;
  2482. word-wrap:break-word;
  2483. text-transform:none;
  2484. visibility:hidden;
  2485. }
  2486. #u99367 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:0px;
  2492. height:0px;
  2493. }
  2494. #u99368_div {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:905px;
  2500. height:653px;
  2501. background:inherit;
  2502. background-color:rgba(255, 255, 255, 1);
  2503. box-sizing:border-box;
  2504. border-width:1px;
  2505. border-style:solid;
  2506. border-color:rgba(215, 215, 215, 1);
  2507. border-left:0px;
  2508. border-top:0px;
  2509. border-right:0px;
  2510. border-radius:0px;
  2511. border-bottom-right-radius:0px;
  2512. border-bottom-left-radius:0px;
  2513. -moz-box-shadow:none;
  2514. -webkit-box-shadow:none;
  2515. box-shadow:none;
  2516. }
  2517. #u99368 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:669px;
  2521. top:190px;
  2522. width:905px;
  2523. height:653px;
  2524. display:flex;
  2525. }
  2526. #u99368 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:2px 2px 2px 2px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u99368_text {
  2534. border-width:0px;
  2535. word-wrap:break-word;
  2536. text-transform:none;
  2537. visibility:hidden;
  2538. }
  2539. #u99369_div {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:145px;
  2545. height:30px;
  2546. background:inherit;
  2547. background-color:rgba(255, 255, 255, 0);
  2548. border:none;
  2549. border-left:0px;
  2550. border-top:0px;
  2551. border-right:0px;
  2552. border-radius:0px;
  2553. border-bottom-right-radius:0px;
  2554. border-bottom-left-radius:0px;
  2555. -moz-box-shadow:none;
  2556. -webkit-box-shadow:none;
  2557. box-shadow:none;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. font-size:18px;
  2562. color:#555555;
  2563. line-height:30px;
  2564. }
  2565. #u99369 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:669px;
  2569. top:200px;
  2570. width:145px;
  2571. height:30px;
  2572. display:flex;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:18px;
  2577. color:#555555;
  2578. line-height:30px;
  2579. }
  2580. #u99369 .text {
  2581. position:absolute;
  2582. align-self:flex-start;
  2583. padding:0px 0px 0px 0px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u99369_text {
  2588. border-width:0px;
  2589. white-space:nowrap;
  2590. text-transform:none;
  2591. }
  2592. #u99370_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:266px;
  2598. height:20px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 0);
  2601. border:none;
  2602. border-radius:0px;
  2603. -moz-box-shadow:none;
  2604. -webkit-box-shadow:none;
  2605. box-shadow:none;
  2606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2607. font-weight:400;
  2608. font-style:normal;
  2609. font-size:10px;
  2610. color:#7F7F7F;
  2611. line-height:20px;
  2612. }
  2613. #u99370 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:671px;
  2617. top:234px;
  2618. width:266px;
  2619. height:20px;
  2620. display:flex;
  2621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. font-size:10px;
  2625. color:#7F7F7F;
  2626. line-height:20px;
  2627. }
  2628. #u99370 .text {
  2629. position:absolute;
  2630. align-self:flex-start;
  2631. padding:0px 0px 0px 0px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u99370_text {
  2636. border-width:0px;
  2637. white-space:nowrap;
  2638. text-transform:none;
  2639. }
  2640. #u99371 label {
  2641. left:0px;
  2642. width:100%;
  2643. }
  2644. #u99371_img {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:9px;
  2649. width:12px;
  2650. height:12px;
  2651. }
  2652. #u99371 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:682px;
  2656. top:275px;
  2657. width:206px;
  2658. height:30px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:18px;
  2664. color:#555555;
  2665. line-height:30px;
  2666. }
  2667. #u99371 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:0px 2px 0px 2px;
  2671. box-sizing:border-box;
  2672. }
  2673. #u99371_img.selected {
  2674. }
  2675. #u99371.selected {
  2676. }
  2677. #u99371_img.disabled {
  2678. }
  2679. #u99371.disabled {
  2680. }
  2681. #u99371_img.selectedDisabled {
  2682. }
  2683. #u99371.selectedDisabled {
  2684. }
  2685. #u99371_text {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:14px;
  2689. top:0px;
  2690. width:190px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. }
  2694. #u99371_input {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:0px;
  2700. height:0px;
  2701. opacity:0;
  2702. }
  2703. #u99372 label {
  2704. left:0px;
  2705. width:100%;
  2706. }
  2707. #u99372_img {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:9px;
  2712. width:12px;
  2713. height:12px;
  2714. }
  2715. #u99372 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:682px;
  2719. top:355px;
  2720. width:206px;
  2721. height:30px;
  2722. display:flex;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:18px;
  2727. color:#555555;
  2728. line-height:30px;
  2729. }
  2730. #u99372 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:0px 2px 0px 2px;
  2734. box-sizing:border-box;
  2735. }
  2736. #u99372_img.selected {
  2737. }
  2738. #u99372.selected {
  2739. }
  2740. #u99372_img.disabled {
  2741. }
  2742. #u99372.disabled {
  2743. }
  2744. #u99372_img.selectedDisabled {
  2745. }
  2746. #u99372.selectedDisabled {
  2747. }
  2748. #u99372_text {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:14px;
  2752. top:0px;
  2753. width:190px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. }
  2757. #u99372_input {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:0px;
  2761. top:0px;
  2762. width:0px;
  2763. height:0px;
  2764. opacity:0;
  2765. }
  2766. #u99373 label {
  2767. left:0px;
  2768. width:100%;
  2769. }
  2770. #u99373_img {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:3px;
  2775. width:12px;
  2776. height:12px;
  2777. }
  2778. #u99373 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:697px;
  2782. top:415px;
  2783. width:206px;
  2784. height:17px;
  2785. display:flex;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:12px;
  2790. color:#555555;
  2791. }
  2792. #u99373 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:0px 2px 0px 2px;
  2796. box-sizing:border-box;
  2797. }
  2798. #u99373_img.selected {
  2799. }
  2800. #u99373.selected {
  2801. }
  2802. #u99373_img.disabled {
  2803. }
  2804. #u99373.disabled {
  2805. }
  2806. #u99373_img.selectedDisabled {
  2807. }
  2808. #u99373.selectedDisabled {
  2809. }
  2810. #u99373_text {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:14px;
  2814. top:0px;
  2815. width:190px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. }
  2819. #u99373_input {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:0px;
  2825. height:0px;
  2826. opacity:0;
  2827. }
  2828. #u99374 label {
  2829. left:0px;
  2830. width:100%;
  2831. }
  2832. #u99374_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:3px;
  2837. width:12px;
  2838. height:12px;
  2839. }
  2840. #u99374 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:851px;
  2844. top:415px;
  2845. width:206px;
  2846. height:17px;
  2847. display:flex;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:12px;
  2852. color:#555555;
  2853. }
  2854. #u99374 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:0px 2px 0px 2px;
  2858. box-sizing:border-box;
  2859. }
  2860. #u99374_img.selected {
  2861. }
  2862. #u99374.selected {
  2863. }
  2864. #u99374_img.disabled {
  2865. }
  2866. #u99374.disabled {
  2867. }
  2868. #u99374_img.selectedDisabled {
  2869. }
  2870. #u99374.selectedDisabled {
  2871. }
  2872. #u99374_text {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:14px;
  2876. top:0px;
  2877. width:190px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. }
  2881. #u99374_input {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:0px;
  2887. height:0px;
  2888. opacity:0;
  2889. }
  2890. #u99375_div {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:231px;
  2896. height:20px;
  2897. background:inherit;
  2898. background-color:rgba(255, 255, 255, 0);
  2899. border:none;
  2900. border-radius:0px;
  2901. -moz-box-shadow:none;
  2902. -webkit-box-shadow:none;
  2903. box-shadow:none;
  2904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2905. font-weight:400;
  2906. font-style:normal;
  2907. font-size:10px;
  2908. color:#7F7F7F;
  2909. line-height:20px;
  2910. }
  2911. #u99375 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:697px;
  2915. top:309px;
  2916. width:231px;
  2917. height:20px;
  2918. display:flex;
  2919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2920. font-weight:400;
  2921. font-style:normal;
  2922. font-size:10px;
  2923. color:#7F7F7F;
  2924. line-height:20px;
  2925. }
  2926. #u99375 .text {
  2927. position:absolute;
  2928. align-self:flex-start;
  2929. padding:0px 0px 0px 0px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u99375_text {
  2934. border-width:0px;
  2935. white-space:nowrap;
  2936. text-transform:none;
  2937. }
  2938. #u99376_div {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:141px;
  2944. height:20px;
  2945. background:inherit;
  2946. background-color:rgba(255, 255, 255, 0);
  2947. border:none;
  2948. border-radius:0px;
  2949. -moz-box-shadow:none;
  2950. -webkit-box-shadow:none;
  2951. box-shadow:none;
  2952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2953. font-weight:400;
  2954. font-style:normal;
  2955. font-size:10px;
  2956. color:#7F7F7F;
  2957. line-height:20px;
  2958. }
  2959. #u99376 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:697px;
  2963. top:385px;
  2964. width:141px;
  2965. height:20px;
  2966. display:flex;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:10px;
  2971. color:#7F7F7F;
  2972. line-height:20px;
  2973. }
  2974. #u99376 .text {
  2975. position:absolute;
  2976. align-self:flex-start;
  2977. padding:0px 0px 0px 0px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u99376_text {
  2982. border-width:0px;
  2983. white-space:nowrap;
  2984. text-transform:none;
  2985. }
  2986. #u99377 label {
  2987. left:0px;
  2988. width:100%;
  2989. }
  2990. #u99377_img {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:9px;
  2995. width:12px;
  2996. height:12px;
  2997. }
  2998. #u99377 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:682px;
  3002. top:462px;
  3003. width:206px;
  3004. height:30px;
  3005. display:flex;
  3006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:18px;
  3010. color:#555555;
  3011. line-height:30px;
  3012. }
  3013. #u99377 .text {
  3014. position:absolute;
  3015. align-self:center;
  3016. padding:0px 2px 0px 2px;
  3017. box-sizing:border-box;
  3018. }
  3019. #u99377_img.selected {
  3020. }
  3021. #u99377.selected {
  3022. }
  3023. #u99377_img.disabled {
  3024. }
  3025. #u99377.disabled {
  3026. }
  3027. #u99377_img.selectedDisabled {
  3028. }
  3029. #u99377.selectedDisabled {
  3030. }
  3031. #u99377_text {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:14px;
  3035. top:0px;
  3036. width:190px;
  3037. word-wrap:break-word;
  3038. text-transform:none;
  3039. }
  3040. #u99377_input {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:0px;
  3046. height:0px;
  3047. opacity:0;
  3048. }
  3049. #u99378 label {
  3050. left:0px;
  3051. width:100%;
  3052. }
  3053. #u99378_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:3px;
  3058. width:12px;
  3059. height:12px;
  3060. }
  3061. #u99378 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:697px;
  3065. top:522px;
  3066. width:206px;
  3067. height:17px;
  3068. display:flex;
  3069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:12px;
  3073. color:#555555;
  3074. }
  3075. #u99378 .text {
  3076. position:absolute;
  3077. align-self:center;
  3078. padding:0px 2px 0px 2px;
  3079. box-sizing:border-box;
  3080. }
  3081. #u99378_img.selected {
  3082. }
  3083. #u99378.selected {
  3084. }
  3085. #u99378_img.disabled {
  3086. }
  3087. #u99378.disabled {
  3088. }
  3089. #u99378_img.selectedDisabled {
  3090. }
  3091. #u99378.selectedDisabled {
  3092. }
  3093. #u99378_text {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:14px;
  3097. top:0px;
  3098. width:190px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. }
  3102. #u99378_input {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:0px;
  3108. height:0px;
  3109. opacity:0;
  3110. }
  3111. #u99379 label {
  3112. left:0px;
  3113. width:100%;
  3114. }
  3115. #u99379_img {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:3px;
  3120. width:12px;
  3121. height:12px;
  3122. }
  3123. #u99379 {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:851px;
  3127. top:522px;
  3128. width:206px;
  3129. height:17px;
  3130. display:flex;
  3131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3132. font-weight:400;
  3133. font-style:normal;
  3134. font-size:12px;
  3135. color:#555555;
  3136. }
  3137. #u99379 .text {
  3138. position:absolute;
  3139. align-self:center;
  3140. padding:0px 2px 0px 2px;
  3141. box-sizing:border-box;
  3142. }
  3143. #u99379_img.selected {
  3144. }
  3145. #u99379.selected {
  3146. }
  3147. #u99379_img.disabled {
  3148. }
  3149. #u99379.disabled {
  3150. }
  3151. #u99379_img.selectedDisabled {
  3152. }
  3153. #u99379.selectedDisabled {
  3154. }
  3155. #u99379_text {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:14px;
  3159. top:0px;
  3160. width:190px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. }
  3164. #u99379_input {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:0px;
  3170. height:0px;
  3171. opacity:0;
  3172. }
  3173. #u99380_div {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:251px;
  3179. height:20px;
  3180. background:inherit;
  3181. background-color:rgba(255, 255, 255, 0);
  3182. border:none;
  3183. border-radius:0px;
  3184. -moz-box-shadow:none;
  3185. -webkit-box-shadow:none;
  3186. box-shadow:none;
  3187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3188. font-weight:400;
  3189. font-style:normal;
  3190. font-size:10px;
  3191. color:#7F7F7F;
  3192. line-height:20px;
  3193. }
  3194. #u99380 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:697px;
  3198. top:492px;
  3199. width:251px;
  3200. height:20px;
  3201. display:flex;
  3202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. font-size:10px;
  3206. color:#7F7F7F;
  3207. line-height:20px;
  3208. }
  3209. #u99380 .text {
  3210. position:absolute;
  3211. align-self:flex-start;
  3212. padding:0px 0px 0px 0px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u99380_text {
  3217. border-width:0px;
  3218. white-space:nowrap;
  3219. text-transform:none;
  3220. }
  3221. #u99381 label {
  3222. left:0px;
  3223. width:100%;
  3224. }
  3225. #u99381_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:9px;
  3230. width:12px;
  3231. height:12px;
  3232. }
  3233. #u99381 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:682px;
  3237. top:559px;
  3238. width:206px;
  3239. height:30px;
  3240. display:flex;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:18px;
  3245. color:#555555;
  3246. line-height:30px;
  3247. }
  3248. #u99381 .text {
  3249. position:absolute;
  3250. align-self:center;
  3251. padding:0px 2px 0px 2px;
  3252. box-sizing:border-box;
  3253. }
  3254. #u99381_img.selected {
  3255. }
  3256. #u99381.selected {
  3257. }
  3258. #u99381_img.disabled {
  3259. }
  3260. #u99381.disabled {
  3261. }
  3262. #u99381_img.selectedDisabled {
  3263. }
  3264. #u99381.selectedDisabled {
  3265. }
  3266. #u99381_text {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:14px;
  3270. top:0px;
  3271. width:190px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. }
  3275. #u99381_input {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:0px;
  3281. height:0px;
  3282. opacity:0;
  3283. }
  3284. #u99382_div {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:101px;
  3290. height:20px;
  3291. background:inherit;
  3292. background-color:rgba(255, 255, 255, 0);
  3293. border:none;
  3294. border-radius:0px;
  3295. -moz-box-shadow:none;
  3296. -webkit-box-shadow:none;
  3297. box-shadow:none;
  3298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3299. font-weight:400;
  3300. font-style:normal;
  3301. font-size:10px;
  3302. color:#7F7F7F;
  3303. line-height:20px;
  3304. }
  3305. #u99382 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:697px;
  3309. top:589px;
  3310. width:101px;
  3311. height:20px;
  3312. display:flex;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:10px;
  3317. color:#7F7F7F;
  3318. line-height:20px;
  3319. }
  3320. #u99382 .text {
  3321. position:absolute;
  3322. align-self:flex-start;
  3323. padding:0px 0px 0px 0px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u99382_text {
  3328. border-width:0px;
  3329. white-space:nowrap;
  3330. text-transform:none;
  3331. }
  3332. #u99383 label {
  3333. left:0px;
  3334. width:100%;
  3335. }
  3336. #u99383_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:9px;
  3341. width:12px;
  3342. height:12px;
  3343. }
  3344. #u99383 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:682px;
  3348. top:629px;
  3349. width:206px;
  3350. height:30px;
  3351. display:flex;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:18px;
  3356. color:#555555;
  3357. line-height:30px;
  3358. }
  3359. #u99383 .text {
  3360. position:absolute;
  3361. align-self:center;
  3362. padding:0px 2px 0px 2px;
  3363. box-sizing:border-box;
  3364. }
  3365. #u99383_img.selected {
  3366. }
  3367. #u99383.selected {
  3368. }
  3369. #u99383_img.disabled {
  3370. }
  3371. #u99383.disabled {
  3372. }
  3373. #u99383_img.selectedDisabled {
  3374. }
  3375. #u99383.selectedDisabled {
  3376. }
  3377. #u99383_text {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:14px;
  3381. top:0px;
  3382. width:190px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. }
  3386. #u99383_input {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:0px;
  3392. height:0px;
  3393. opacity:0;
  3394. }
  3395. #u99384_div {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:446px;
  3401. height:20px;
  3402. background:inherit;
  3403. background-color:rgba(255, 255, 255, 0);
  3404. border:none;
  3405. border-radius:0px;
  3406. -moz-box-shadow:none;
  3407. -webkit-box-shadow:none;
  3408. box-shadow:none;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:10px;
  3413. color:#7F7F7F;
  3414. line-height:20px;
  3415. }
  3416. #u99384 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:697px;
  3420. top:659px;
  3421. width:446px;
  3422. height:20px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:10px;
  3428. color:#7F7F7F;
  3429. line-height:20px;
  3430. }
  3431. #u99384 .text {
  3432. position:absolute;
  3433. align-self:flex-start;
  3434. padding:0px 0px 0px 0px;
  3435. box-sizing:border-box;
  3436. width:100%;
  3437. }
  3438. #u99384_text {
  3439. border-width:0px;
  3440. white-space:nowrap;
  3441. text-transform:none;
  3442. }
  3443. #u99385 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:0px;
  3449. height:0px;
  3450. }
  3451. #u99386_div {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:200px;
  3457. height:1180px;
  3458. background:inherit;
  3459. background-color:rgba(255, 255, 255, 1);
  3460. border:none;
  3461. border-radius:0px;
  3462. -moz-box-shadow:none;
  3463. -webkit-box-shadow:none;
  3464. box-shadow:none;
  3465. }
  3466. #u99386 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:120px;
  3470. top:50px;
  3471. width:200px;
  3472. height:1180px;
  3473. display:flex;
  3474. }
  3475. #u99386 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 2px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u99386_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u99387_div {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:200px;
  3494. height:60px;
  3495. background:inherit;
  3496. background-color:rgba(224, 231, 247, 1);
  3497. border:none;
  3498. border-radius:0px;
  3499. -moz-box-shadow:none;
  3500. -webkit-box-shadow:none;
  3501. box-shadow:none;
  3502. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3503. font-weight:500;
  3504. font-style:normal;
  3505. font-size:18px;
  3506. }
  3507. #u99387 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:120px;
  3511. top:50px;
  3512. width:200px;
  3513. height:60px;
  3514. display:flex;
  3515. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3516. font-weight:500;
  3517. font-style:normal;
  3518. font-size:18px;
  3519. }
  3520. #u99387 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:0px 0px 0px 20px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u99387_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. }
  3532. #u99388_div {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:0px;
  3536. top:0px;
  3537. width:65px;
  3538. height:22px;
  3539. background:inherit;
  3540. background-color:rgba(255, 255, 255, 0);
  3541. border:none;
  3542. border-radius:0px;
  3543. -moz-box-shadow:none;
  3544. -webkit-box-shadow:none;
  3545. box-shadow:none;
  3546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3547. font-weight:400;
  3548. font-style:normal;
  3549. font-size:16px;
  3550. }
  3551. #u99388 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:143px;
  3555. top:484px;
  3556. width:65px;
  3557. height:22px;
  3558. display:flex;
  3559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:16px;
  3563. }
  3564. #u99388 .text {
  3565. position:absolute;
  3566. align-self:flex-start;
  3567. padding:0px 0px 0px 0px;
  3568. box-sizing:border-box;
  3569. width:100%;
  3570. }
  3571. #u99388_text {
  3572. border-width:0px;
  3573. white-space:nowrap;
  3574. text-transform:none;
  3575. }
  3576. #u99389_img {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:201px;
  3582. height:2px;
  3583. }
  3584. #u99389 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:120px;
  3588. top:431px;
  3589. width:200px;
  3590. height:1px;
  3591. display:flex;
  3592. }
  3593. #u99389 .text {
  3594. position:absolute;
  3595. align-self:center;
  3596. padding:2px 2px 2px 2px;
  3597. box-sizing:border-box;
  3598. width:100%;
  3599. }
  3600. #u99389_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u99390_div {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:49px;
  3612. height:17px;
  3613. background:inherit;
  3614. background-color:rgba(255, 255, 255, 0);
  3615. border:none;
  3616. border-radius:0px;
  3617. -moz-box-shadow:none;
  3618. -webkit-box-shadow:none;
  3619. box-shadow:none;
  3620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:12px;
  3624. color:#AAAAAA;
  3625. }
  3626. #u99390 {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:143px;
  3630. top:451px;
  3631. width:49px;
  3632. height:17px;
  3633. display:flex;
  3634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3635. font-weight:400;
  3636. font-style:normal;
  3637. font-size:12px;
  3638. color:#AAAAAA;
  3639. }
  3640. #u99390 .text {
  3641. position:absolute;
  3642. align-self:flex-start;
  3643. padding:0px 0px 0px 0px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u99390_text {
  3648. border-width:0px;
  3649. white-space:nowrap;
  3650. text-transform:none;
  3651. }
  3652. #u99391_div {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:65px;
  3658. height:22px;
  3659. background:inherit;
  3660. background-color:rgba(255, 255, 255, 0);
  3661. border:none;
  3662. border-radius:0px;
  3663. -moz-box-shadow:none;
  3664. -webkit-box-shadow:none;
  3665. box-shadow:none;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:16px;
  3670. }
  3671. #u99391 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:143px;
  3675. top:163px;
  3676. width:65px;
  3677. height:22px;
  3678. display:flex;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:16px;
  3683. }
  3684. #u99391 .text {
  3685. position:absolute;
  3686. align-self:flex-start;
  3687. padding:0px 0px 0px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u99391_text {
  3692. border-width:0px;
  3693. white-space:nowrap;
  3694. text-transform:none;
  3695. }
  3696. #u99392_div {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:49px;
  3702. height:17px;
  3703. background:inherit;
  3704. background-color:rgba(255, 255, 255, 0);
  3705. border:none;
  3706. border-radius:0px;
  3707. -moz-box-shadow:none;
  3708. -webkit-box-shadow:none;
  3709. box-shadow:none;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:12px;
  3714. color:#AAAAAA;
  3715. }
  3716. #u99392 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:143px;
  3720. top:130px;
  3721. width:49px;
  3722. height:17px;
  3723. display:flex;
  3724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3725. font-weight:400;
  3726. font-style:normal;
  3727. font-size:12px;
  3728. color:#AAAAAA;
  3729. }
  3730. #u99392 .text {
  3731. position:absolute;
  3732. align-self:flex-start;
  3733. padding:0px 0px 0px 0px;
  3734. box-sizing:border-box;
  3735. width:100%;
  3736. }
  3737. #u99392_text {
  3738. border-width:0px;
  3739. white-space:nowrap;
  3740. text-transform:none;
  3741. }
  3742. #u99393_div {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:65px;
  3748. height:22px;
  3749. background:inherit;
  3750. background-color:rgba(255, 255, 255, 0);
  3751. border:none;
  3752. border-radius:0px;
  3753. -moz-box-shadow:none;
  3754. -webkit-box-shadow:none;
  3755. box-shadow:none;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:16px;
  3760. }
  3761. #u99393 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:143px;
  3765. top:205px;
  3766. width:65px;
  3767. height:22px;
  3768. display:flex;
  3769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:16px;
  3773. }
  3774. #u99393 .text {
  3775. position:absolute;
  3776. align-self:flex-start;
  3777. padding:0px 0px 0px 0px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u99393_text {
  3782. border-width:0px;
  3783. white-space:nowrap;
  3784. text-transform:none;
  3785. }
  3786. #u99394_div {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:65px;
  3792. height:22px;
  3793. background:inherit;
  3794. background-color:rgba(255, 255, 255, 0);
  3795. border:none;
  3796. border-radius:0px;
  3797. -moz-box-shadow:none;
  3798. -webkit-box-shadow:none;
  3799. box-shadow:none;
  3800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:16px;
  3804. }
  3805. #u99394 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:143px;
  3809. top:247px;
  3810. width:65px;
  3811. height:22px;
  3812. display:flex;
  3813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:16px;
  3817. }
  3818. #u99394 .text {
  3819. position:absolute;
  3820. align-self:flex-start;
  3821. padding:0px 0px 0px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u99394_text {
  3826. border-width:0px;
  3827. white-space:nowrap;
  3828. text-transform:none;
  3829. }
  3830. #u99395_div {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:65px;
  3836. height:22px;
  3837. background:inherit;
  3838. background-color:rgba(255, 255, 255, 0);
  3839. border:none;
  3840. border-radius:0px;
  3841. -moz-box-shadow:none;
  3842. -webkit-box-shadow:none;
  3843. box-shadow:none;
  3844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3845. font-weight:400;
  3846. font-style:normal;
  3847. font-size:16px;
  3848. }
  3849. #u99395 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:143px;
  3853. top:342px;
  3854. width:65px;
  3855. height:22px;
  3856. display:flex;
  3857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:16px;
  3861. }
  3862. #u99395 .text {
  3863. position:absolute;
  3864. align-self:flex-start;
  3865. padding:0px 0px 0px 0px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u99395_text {
  3870. border-width:0px;
  3871. white-space:nowrap;
  3872. text-transform:none;
  3873. }
  3874. #u99396_img {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:201px;
  3880. height:2px;
  3881. }
  3882. #u99396 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:120px;
  3886. top:289px;
  3887. width:200px;
  3888. height:1px;
  3889. display:flex;
  3890. }
  3891. #u99396 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u99396_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u99397_div {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:49px;
  3910. height:17px;
  3911. background:inherit;
  3912. background-color:rgba(255, 255, 255, 0);
  3913. border:none;
  3914. border-radius:0px;
  3915. -moz-box-shadow:none;
  3916. -webkit-box-shadow:none;
  3917. box-shadow:none;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:12px;
  3922. color:#AAAAAA;
  3923. }
  3924. #u99397 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:143px;
  3928. top:309px;
  3929. width:49px;
  3930. height:17px;
  3931. display:flex;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:12px;
  3936. color:#AAAAAA;
  3937. }
  3938. #u99397 .text {
  3939. position:absolute;
  3940. align-self:flex-start;
  3941. padding:0px 0px 0px 0px;
  3942. box-sizing:border-box;
  3943. width:100%;
  3944. }
  3945. #u99397_text {
  3946. border-width:0px;
  3947. white-space:nowrap;
  3948. text-transform:none;
  3949. }
  3950. #u99398_div {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:65px;
  3956. height:22px;
  3957. background:inherit;
  3958. background-color:rgba(255, 255, 255, 0);
  3959. border:none;
  3960. border-radius:0px;
  3961. -moz-box-shadow:none;
  3962. -webkit-box-shadow:none;
  3963. box-shadow:none;
  3964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:16px;
  3968. }
  3969. #u99398 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:143px;
  3973. top:384px;
  3974. width:65px;
  3975. height:22px;
  3976. display:flex;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:16px;
  3981. }
  3982. #u99398 .text {
  3983. position:absolute;
  3984. align-self:flex-start;
  3985. padding:0px 0px 0px 0px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u99398_text {
  3990. border-width:0px;
  3991. white-space:nowrap;
  3992. text-transform:none;
  3993. }
  3994. #u99399 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:0px;
  4000. height:0px;
  4001. }
  4002. #u99401_div {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:1480px;
  4008. height:1200px;
  4009. background:inherit;
  4010. background-color:rgba(242, 242, 242, 1);
  4011. border:none;
  4012. border-radius:0px;
  4013. -moz-box-shadow:none;
  4014. -webkit-box-shadow:none;
  4015. box-shadow:none;
  4016. }
  4017. #u99401 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:1177px;
  4021. top:-1521px;
  4022. width:1480px;
  4023. height:1200px;
  4024. display:flex;
  4025. }
  4026. #u99401 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:2px 2px 2px 2px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u99401_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. visibility:hidden;
  4038. }
  4039. #u99402_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:129px;
  4045. height:22px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 0);
  4048. border:none;
  4049. border-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-size:16px;
  4054. color:#FFFFFF;
  4055. }
  4056. #u99402 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:1106px;
  4060. top:-1557px;
  4061. width:129px;
  4062. height:22px;
  4063. display:flex;
  4064. font-size:16px;
  4065. color:#FFFFFF;
  4066. }
  4067. #u99402 .text {
  4068. position:absolute;
  4069. align-self:flex-start;
  4070. padding:0px 0px 0px 0px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u99402_text {
  4075. border-width:0px;
  4076. white-space:nowrap;
  4077. text-transform:none;
  4078. }
  4079. #u99403_div {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:1600px;
  4085. height:50px;
  4086. background:inherit;
  4087. background-color:rgba(30, 42, 68, 1);
  4088. border:none;
  4089. border-radius:0px;
  4090. -moz-box-shadow:none;
  4091. -webkit-box-shadow:none;
  4092. box-shadow:none;
  4093. color:#AFB3B6;
  4094. }
  4095. #u99403 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:1057px;
  4099. top:-1571px;
  4100. width:1600px;
  4101. height:50px;
  4102. display:flex;
  4103. color:#AFB3B6;
  4104. }
  4105. #u99403 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:2px 2px 2px 2px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u99403_text {
  4113. border-width:0px;
  4114. word-wrap:break-word;
  4115. text-transform:none;
  4116. visibility:hidden;
  4117. }
  4118. #u99404 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:0px;
  4124. height:0px;
  4125. }
  4126. #u99405_img {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:31px;
  4132. height:31px;
  4133. }
  4134. #u99405 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:1076px;
  4138. top:-1561px;
  4139. width:31px;
  4140. height:31px;
  4141. display:flex;
  4142. }
  4143. #u99405 .text {
  4144. position:absolute;
  4145. align-self:center;
  4146. padding:2px 2px 2px 2px;
  4147. box-sizing:border-box;
  4148. width:100%;
  4149. }
  4150. #u99405_text {
  4151. border-width:0px;
  4152. word-wrap:break-word;
  4153. text-transform:none;
  4154. }
  4155. #u99406_div {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:161px;
  4161. height:22px;
  4162. background:inherit;
  4163. background-color:rgba(255, 255, 255, 0);
  4164. border:none;
  4165. border-radius:0px;
  4166. -moz-box-shadow:none;
  4167. -webkit-box-shadow:none;
  4168. box-shadow:none;
  4169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4170. font-weight:400;
  4171. font-style:normal;
  4172. font-size:16px;
  4173. color:#FFFFFF;
  4174. }
  4175. #u99406 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:1119px;
  4179. top:-1557px;
  4180. width:161px;
  4181. height:22px;
  4182. display:flex;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:16px;
  4187. color:#FFFFFF;
  4188. }
  4189. #u99406 .text {
  4190. position:absolute;
  4191. align-self:flex-start;
  4192. padding:0px 0px 0px 0px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u99406_text {
  4197. border-width:0px;
  4198. white-space:nowrap;
  4199. text-transform:none;
  4200. }
  4201. #u99407_div {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:120px;
  4207. height:1200px;
  4208. background:inherit;
  4209. background-color:rgba(30, 42, 68, 1);
  4210. border:none;
  4211. border-radius:0px;
  4212. -moz-box-shadow:none;
  4213. -webkit-box-shadow:none;
  4214. box-shadow:none;
  4215. color:#AFB3B6;
  4216. }
  4217. #u99407 {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:1057px;
  4221. top:-1524px;
  4222. width:120px;
  4223. height:1200px;
  4224. display:flex;
  4225. color:#AFB3B6;
  4226. }
  4227. #u99407 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 2px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u99407_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. visibility:hidden;
  4239. }
  4240. #u99408 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:0px;
  4246. height:0px;
  4247. }
  4248. #u99409_input {
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:214px;
  4253. height:27px;
  4254. padding:2px 2px 2px 2px;
  4255. font-family:'ArialMT', 'Arial', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:14px;
  4259. letter-spacing:normal;
  4260. color:#FFFFFF;
  4261. vertical-align:none;
  4262. text-align:left;
  4263. text-transform:none;
  4264. background-color:transparent;
  4265. border-color:transparent;
  4266. }
  4267. #u99409_input.disabled {
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:214px;
  4272. height:27px;
  4273. padding:2px 2px 2px 2px;
  4274. font-family:'ArialMT', 'Arial', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:14px;
  4278. letter-spacing:normal;
  4279. color:#FFFFFF;
  4280. vertical-align:none;
  4281. text-align:left;
  4282. text-transform:none;
  4283. background-color:transparent;
  4284. border-color:transparent;
  4285. }
  4286. #u99409_div {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:214px;
  4292. height:27px;
  4293. background:inherit;
  4294. background-color:rgba(255, 255, 255, 0);
  4295. border:none;
  4296. border-radius:0px;
  4297. -moz-box-shadow:none;
  4298. -webkit-box-shadow:none;
  4299. box-shadow:none;
  4300. font-size:14px;
  4301. color:#FFFFFF;
  4302. }
  4303. #u99409 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:2146px;
  4307. top:-1561px;
  4308. width:214px;
  4309. height:27px;
  4310. display:flex;
  4311. font-size:14px;
  4312. color:#FFFFFF;
  4313. }
  4314. #u99409 .text {
  4315. position:absolute;
  4316. align-self:flex-start;
  4317. padding:2px 2px 2px 2px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u99409_div.disabled {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:214px;
  4327. height:27px;
  4328. background:inherit;
  4329. background-color:rgba(240, 240, 240, 1);
  4330. border:none;
  4331. border-radius:0px;
  4332. -moz-box-shadow:none;
  4333. -webkit-box-shadow:none;
  4334. box-shadow:none;
  4335. font-size:14px;
  4336. color:#FFFFFF;
  4337. }
  4338. #u99409.disabled {
  4339. }
  4340. .u99409_input_option {
  4341. font-size:14px;
  4342. }
  4343. #u99410_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:22px;
  4349. height:22px;
  4350. }
  4351. #u99410 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:2119px;
  4355. top:-1556px;
  4356. width:22px;
  4357. height:22px;
  4358. display:flex;
  4359. }
  4360. #u99410 .text {
  4361. position:absolute;
  4362. align-self:center;
  4363. padding:2px 2px 2px 2px;
  4364. box-sizing:border-box;
  4365. width:100%;
  4366. }
  4367. #u99410_text {
  4368. border-width:0px;
  4369. word-wrap:break-word;
  4370. text-transform:none;
  4371. visibility:hidden;
  4372. }
  4373. #u99411_div {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:100px;
  4379. height:24px;
  4380. background:inherit;
  4381. background-color:rgba(242, 242, 242, 0.2);
  4382. border:none;
  4383. border-radius:25px;
  4384. -moz-box-shadow:none;
  4385. -webkit-box-shadow:none;
  4386. box-shadow:none;
  4387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4388. font-weight:400;
  4389. font-style:normal;
  4390. color:#FFFFFF;
  4391. text-align:center;
  4392. }
  4393. #u99411 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:2407px;
  4397. top:-1559px;
  4398. width:100px;
  4399. height:24px;
  4400. display:flex;
  4401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. color:#FFFFFF;
  4405. text-align:center;
  4406. }
  4407. #u99411 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:0px 0px 0px 0px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u99411_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. }
  4419. #u99412_div {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:120px;
  4425. height:24px;
  4426. background:inherit;
  4427. background-color:rgba(242, 242, 242, 0.2);
  4428. border:none;
  4429. border-radius:25px;
  4430. -moz-box-shadow:none;
  4431. -webkit-box-shadow:none;
  4432. box-shadow:none;
  4433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4434. font-weight:400;
  4435. font-style:normal;
  4436. color:#FFFFFF;
  4437. text-align:center;
  4438. }
  4439. #u99412 {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:2517px;
  4443. top:-1559px;
  4444. width:120px;
  4445. height:24px;
  4446. display:flex;
  4447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4448. font-weight:400;
  4449. font-style:normal;
  4450. color:#FFFFFF;
  4451. text-align:center;
  4452. }
  4453. #u99412 .text {
  4454. position:absolute;
  4455. align-self:center;
  4456. padding:0px 0px 0px 0px;
  4457. box-sizing:border-box;
  4458. width:100%;
  4459. }
  4460. #u99412_text {
  4461. border-width:0px;
  4462. word-wrap:break-word;
  4463. text-transform:none;
  4464. }
  4465. #u99413 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:0px;
  4471. height:0px;
  4472. }
  4473. #u99414_div {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:33px;
  4479. height:22px;
  4480. background:inherit;
  4481. background-color:rgba(255, 255, 255, 0);
  4482. border:none;
  4483. border-radius:0px;
  4484. -moz-box-shadow:none;
  4485. -webkit-box-shadow:none;
  4486. box-shadow:none;
  4487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:16px;
  4491. color:#FFFFFF;
  4492. }
  4493. #u99414 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:1096px;
  4497. top:-1500px;
  4498. width:33px;
  4499. height:22px;
  4500. display:flex;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:16px;
  4505. color:#FFFFFF;
  4506. }
  4507. #u99414 .text {
  4508. position:absolute;
  4509. align-self:flex-start;
  4510. padding:0px 0px 0px 0px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u99414_text {
  4515. border-width:0px;
  4516. white-space:nowrap;
  4517. text-transform:none;
  4518. }
  4519. #u99415_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:14px;
  4525. height:14px;
  4526. }
  4527. #u99415 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:1077px;
  4531. top:-1496px;
  4532. width:14px;
  4533. height:14px;
  4534. display:flex;
  4535. }
  4536. #u99415 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:2px 2px 2px 2px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u99415_text {
  4544. border-width:0px;
  4545. word-wrap:break-word;
  4546. text-transform:none;
  4547. visibility:hidden;
  4548. }
  4549. #u99416 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:0px;
  4555. height:0px;
  4556. }
  4557. #u99417_div {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:33px;
  4563. height:22px;
  4564. background:inherit;
  4565. background-color:rgba(255, 255, 255, 0);
  4566. border:none;
  4567. border-radius:0px;
  4568. -moz-box-shadow:none;
  4569. -webkit-box-shadow:none;
  4570. box-shadow:none;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:16px;
  4575. color:#FFFFFF;
  4576. }
  4577. #u99417 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:1096px;
  4581. top:-1424px;
  4582. width:33px;
  4583. height:22px;
  4584. display:flex;
  4585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4586. font-weight:400;
  4587. font-style:normal;
  4588. font-size:16px;
  4589. color:#FFFFFF;
  4590. }
  4591. #u99417 .text {
  4592. position:absolute;
  4593. align-self:flex-start;
  4594. padding:0px 0px 0px 0px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u99417_text {
  4599. border-width:0px;
  4600. white-space:nowrap;
  4601. text-transform:none;
  4602. }
  4603. #u99418_img {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:14px;
  4609. height:14px;
  4610. }
  4611. #u99418 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:1077px;
  4615. top:-1420px;
  4616. width:14px;
  4617. height:14px;
  4618. display:flex;
  4619. }
  4620. #u99418 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:2px 2px 2px 2px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u99418_text {
  4628. border-width:0px;
  4629. word-wrap:break-word;
  4630. text-transform:none;
  4631. visibility:hidden;
  4632. }
  4633. #u99419 {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:0px;
  4637. top:0px;
  4638. width:0px;
  4639. height:0px;
  4640. }
  4641. #u99420_div {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:33px;
  4647. height:22px;
  4648. background:inherit;
  4649. background-color:rgba(255, 255, 255, 0);
  4650. border:none;
  4651. border-radius:0px;
  4652. -moz-box-shadow:none;
  4653. -webkit-box-shadow:none;
  4654. box-shadow:none;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:16px;
  4659. color:#FFFFFF;
  4660. }
  4661. #u99420 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:1096px;
  4665. top:-1172px;
  4666. width:33px;
  4667. height:22px;
  4668. display:flex;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:16px;
  4673. color:#FFFFFF;
  4674. }
  4675. #u99420 .text {
  4676. position:absolute;
  4677. align-self:flex-start;
  4678. padding:0px 0px 0px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u99420_text {
  4683. border-width:0px;
  4684. white-space:nowrap;
  4685. text-transform:none;
  4686. }
  4687. #u99421_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:14px;
  4693. height:14px;
  4694. }
  4695. #u99421 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:1077px;
  4699. top:-1168px;
  4700. width:14px;
  4701. height:14px;
  4702. display:flex;
  4703. }
  4704. #u99421 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 2px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u99421_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u99422 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:0px;
  4723. height:0px;
  4724. }
  4725. #u99423_div {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:49px;
  4731. height:22px;
  4732. background:inherit;
  4733. background-color:rgba(255, 255, 255, 0);
  4734. border:none;
  4735. border-radius:0px;
  4736. -moz-box-shadow:none;
  4737. -webkit-box-shadow:none;
  4738. box-shadow:none;
  4739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:16px;
  4743. color:#FFFFFF;
  4744. }
  4745. #u99423 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:1096px;
  4749. top:-1462px;
  4750. width:49px;
  4751. height:22px;
  4752. display:flex;
  4753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4754. font-weight:400;
  4755. font-style:normal;
  4756. font-size:16px;
  4757. color:#FFFFFF;
  4758. }
  4759. #u99423 .text {
  4760. position:absolute;
  4761. align-self:flex-start;
  4762. padding:0px 0px 0px 0px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u99423_text {
  4767. border-width:0px;
  4768. white-space:nowrap;
  4769. text-transform:none;
  4770. }
  4771. #u99424_img {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:14px;
  4777. height:14px;
  4778. }
  4779. #u99424 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:1077px;
  4783. top:-1458px;
  4784. width:14px;
  4785. height:14px;
  4786. display:flex;
  4787. }
  4788. #u99424 .text {
  4789. position:absolute;
  4790. align-self:center;
  4791. padding:2px 2px 2px 2px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u99424_text {
  4796. border-width:0px;
  4797. word-wrap:break-word;
  4798. text-transform:none;
  4799. visibility:hidden;
  4800. }
  4801. #u99425 {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:0px;
  4807. height:0px;
  4808. }
  4809. #u99426_div {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:0px;
  4813. top:0px;
  4814. width:33px;
  4815. height:22px;
  4816. background:inherit;
  4817. background-color:rgba(255, 255, 255, 0);
  4818. border:none;
  4819. border-radius:0px;
  4820. -moz-box-shadow:none;
  4821. -webkit-box-shadow:none;
  4822. box-shadow:none;
  4823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4824. font-weight:400;
  4825. font-style:normal;
  4826. font-size:16px;
  4827. color:#FFFFFF;
  4828. }
  4829. #u99426 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:1096px;
  4833. top:-1130px;
  4834. width:33px;
  4835. height:22px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:16px;
  4841. color:#FFFFFF;
  4842. }
  4843. #u99426 .text {
  4844. position:absolute;
  4845. align-self:flex-start;
  4846. padding:0px 0px 0px 0px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u99426_text {
  4851. border-width:0px;
  4852. white-space:nowrap;
  4853. text-transform:none;
  4854. }
  4855. #u99427_img {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:14px;
  4861. height:14px;
  4862. }
  4863. #u99427 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:1077px;
  4867. top:-1126px;
  4868. width:14px;
  4869. height:14px;
  4870. display:flex;
  4871. }
  4872. #u99427 .text {
  4873. position:absolute;
  4874. align-self:center;
  4875. padding:2px 2px 2px 2px;
  4876. box-sizing:border-box;
  4877. width:100%;
  4878. }
  4879. #u99427_text {
  4880. border-width:0px;
  4881. word-wrap:break-word;
  4882. text-transform:none;
  4883. visibility:hidden;
  4884. }
  4885. #u99428 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:0px;
  4891. height:0px;
  4892. }
  4893. #u99429_div {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:33px;
  4899. height:22px;
  4900. background:inherit;
  4901. background-color:rgba(255, 255, 255, 0);
  4902. border:none;
  4903. border-radius:0px;
  4904. -moz-box-shadow:none;
  4905. -webkit-box-shadow:none;
  4906. box-shadow:none;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:16px;
  4911. color:#FFFFFF;
  4912. }
  4913. #u99429 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:1096px;
  4917. top:-1256px;
  4918. width:33px;
  4919. height:22px;
  4920. display:flex;
  4921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4922. font-weight:400;
  4923. font-style:normal;
  4924. font-size:16px;
  4925. color:#FFFFFF;
  4926. }
  4927. #u99429 .text {
  4928. position:absolute;
  4929. align-self:flex-start;
  4930. padding:0px 0px 0px 0px;
  4931. box-sizing:border-box;
  4932. width:100%;
  4933. }
  4934. #u99429_text {
  4935. border-width:0px;
  4936. white-space:nowrap;
  4937. text-transform:none;
  4938. }
  4939. #u99430_img {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:14px;
  4945. height:14px;
  4946. }
  4947. #u99430 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:1077px;
  4951. top:-1252px;
  4952. width:14px;
  4953. height:14px;
  4954. display:flex;
  4955. }
  4956. #u99430 .text {
  4957. position:absolute;
  4958. align-self:center;
  4959. padding:2px 2px 2px 2px;
  4960. box-sizing:border-box;
  4961. width:100%;
  4962. }
  4963. #u99430_text {
  4964. border-width:0px;
  4965. word-wrap:break-word;
  4966. text-transform:none;
  4967. visibility:hidden;
  4968. }
  4969. #u99431 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:0px;
  4975. height:0px;
  4976. }
  4977. #u99432_div {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:33px;
  4983. height:22px;
  4984. background:inherit;
  4985. background-color:rgba(255, 255, 255, 0);
  4986. border:none;
  4987. border-radius:0px;
  4988. -moz-box-shadow:none;
  4989. -webkit-box-shadow:none;
  4990. box-shadow:none;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:16px;
  4995. color:#FFFFFF;
  4996. }
  4997. #u99432 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:1096px;
  5001. top:-1382px;
  5002. width:33px;
  5003. height:22px;
  5004. display:flex;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:16px;
  5009. color:#FFFFFF;
  5010. }
  5011. #u99432 .text {
  5012. position:absolute;
  5013. align-self:flex-start;
  5014. padding:0px 0px 0px 0px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u99432_text {
  5019. border-width:0px;
  5020. white-space:nowrap;
  5021. text-transform:none;
  5022. }
  5023. #u99433_img {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:0px;
  5027. top:0px;
  5028. width:14px;
  5029. height:14px;
  5030. }
  5031. #u99433 {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:1077px;
  5035. top:-1378px;
  5036. width:14px;
  5037. height:14px;
  5038. display:flex;
  5039. }
  5040. #u99433 .text {
  5041. position:absolute;
  5042. align-self:center;
  5043. padding:2px 2px 2px 2px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u99433_text {
  5048. border-width:0px;
  5049. word-wrap:break-word;
  5050. text-transform:none;
  5051. visibility:hidden;
  5052. }
  5053. #u99434 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:0px;
  5059. height:0px;
  5060. }
  5061. #u99435_div {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:33px;
  5067. height:22px;
  5068. background:inherit;
  5069. background-color:rgba(255, 255, 255, 0);
  5070. border:none;
  5071. border-radius:0px;
  5072. -moz-box-shadow:none;
  5073. -webkit-box-shadow:none;
  5074. box-shadow:none;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:16px;
  5079. color:#FFFFFF;
  5080. }
  5081. #u99435 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:1096px;
  5085. top:-1214px;
  5086. width:33px;
  5087. height:22px;
  5088. display:flex;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:16px;
  5093. color:#FFFFFF;
  5094. }
  5095. #u99435 .text {
  5096. position:absolute;
  5097. align-self:flex-start;
  5098. padding:0px 0px 0px 0px;
  5099. box-sizing:border-box;
  5100. width:100%;
  5101. }
  5102. #u99435_text {
  5103. border-width:0px;
  5104. white-space:nowrap;
  5105. text-transform:none;
  5106. }
  5107. #u99436_img {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:14px;
  5113. height:14px;
  5114. }
  5115. #u99436 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:1077px;
  5119. top:-1210px;
  5120. width:14px;
  5121. height:14px;
  5122. display:flex;
  5123. }
  5124. #u99436 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:2px 2px 2px 2px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u99436_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. visibility:hidden;
  5136. }
  5137. #u99437 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:0px;
  5143. height:0px;
  5144. }
  5145. #u99438_div {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:33px;
  5151. height:22px;
  5152. background:inherit;
  5153. background-color:rgba(255, 255, 255, 0);
  5154. border:none;
  5155. border-radius:0px;
  5156. -moz-box-shadow:none;
  5157. -webkit-box-shadow:none;
  5158. box-shadow:none;
  5159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:16px;
  5163. color:#FFFFFF;
  5164. }
  5165. #u99438 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:1096px;
  5169. top:-1088px;
  5170. width:33px;
  5171. height:22px;
  5172. display:flex;
  5173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5174. font-weight:400;
  5175. font-style:normal;
  5176. font-size:16px;
  5177. color:#FFFFFF;
  5178. }
  5179. #u99438 .text {
  5180. position:absolute;
  5181. align-self:flex-start;
  5182. padding:0px 0px 0px 0px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u99438_text {
  5187. border-width:0px;
  5188. white-space:nowrap;
  5189. text-transform:none;
  5190. }
  5191. #u99439_img {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:14px;
  5197. height:14px;
  5198. }
  5199. #u99439 {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:1077px;
  5203. top:-1084px;
  5204. width:14px;
  5205. height:14px;
  5206. display:flex;
  5207. }
  5208. #u99439 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:2px 2px 2px 2px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u99439_text {
  5216. border-width:0px;
  5217. word-wrap:break-word;
  5218. text-transform:none;
  5219. visibility:hidden;
  5220. }
  5221. #u99440 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:0px;
  5227. height:0px;
  5228. }
  5229. #u99441_div {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:33px;
  5235. height:22px;
  5236. background:inherit;
  5237. background-color:rgba(255, 255, 255, 0);
  5238. border:none;
  5239. border-radius:0px;
  5240. -moz-box-shadow:none;
  5241. -webkit-box-shadow:none;
  5242. box-shadow:none;
  5243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:16px;
  5247. color:#FFFFFF;
  5248. }
  5249. #u99441 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:1096px;
  5253. top:-1046px;
  5254. width:33px;
  5255. height:22px;
  5256. display:flex;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:16px;
  5261. color:#FFFFFF;
  5262. }
  5263. #u99441 .text {
  5264. position:absolute;
  5265. align-self:flex-start;
  5266. padding:0px 0px 0px 0px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u99441_text {
  5271. border-width:0px;
  5272. white-space:nowrap;
  5273. text-transform:none;
  5274. }
  5275. #u99442_img {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:14px;
  5281. height:14px;
  5282. }
  5283. #u99442 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:1077px;
  5287. top:-1042px;
  5288. width:14px;
  5289. height:14px;
  5290. display:flex;
  5291. }
  5292. #u99442 .text {
  5293. position:absolute;
  5294. align-self:center;
  5295. padding:2px 2px 2px 2px;
  5296. box-sizing:border-box;
  5297. width:100%;
  5298. }
  5299. #u99442_text {
  5300. border-width:0px;
  5301. word-wrap:break-word;
  5302. text-transform:none;
  5303. visibility:hidden;
  5304. }
  5305. #u99443_div {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:29px;
  5311. height:20px;
  5312. background:inherit;
  5313. background-color:rgba(255, 255, 255, 0);
  5314. border:none;
  5315. border-radius:25px;
  5316. -moz-box-shadow:none;
  5317. -webkit-box-shadow:none;
  5318. box-shadow:none;
  5319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. color:#FFFFFF;
  5323. }
  5324. #u99443 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:1109px;
  5328. top:-426px;
  5329. width:29px;
  5330. height:20px;
  5331. display:flex;
  5332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. color:#FFFFFF;
  5336. }
  5337. #u99443 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:0px 0px 0px 0px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u99443_text {
  5345. border-width:0px;
  5346. white-space:nowrap;
  5347. text-transform:none;
  5348. }
  5349. #u99444_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:22px;
  5355. height:22px;
  5356. }
  5357. #u99444 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:1077px;
  5361. top:-427px;
  5362. width:22px;
  5363. height:22px;
  5364. display:flex;
  5365. }
  5366. #u99444 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 2px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u99444_text {
  5374. border-width:0px;
  5375. word-wrap:break-word;
  5376. text-transform:none;
  5377. visibility:hidden;
  5378. }
  5379. #u99445_div {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:29px;
  5385. height:20px;
  5386. background:inherit;
  5387. background-color:rgba(255, 255, 255, 0);
  5388. border:none;
  5389. border-radius:25px;
  5390. -moz-box-shadow:none;
  5391. -webkit-box-shadow:none;
  5392. box-shadow:none;
  5393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5394. font-weight:400;
  5395. font-style:normal;
  5396. color:#FFFFFF;
  5397. }
  5398. #u99445 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:1109px;
  5402. top:-384px;
  5403. width:29px;
  5404. height:20px;
  5405. display:flex;
  5406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. color:#FFFFFF;
  5410. }
  5411. #u99445 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:0px 0px 0px 0px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u99445_text {
  5419. border-width:0px;
  5420. white-space:nowrap;
  5421. text-transform:none;
  5422. }
  5423. #u99446_img {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:22px;
  5429. height:22px;
  5430. }
  5431. #u99446 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:1077px;
  5435. top:-385px;
  5436. width:22px;
  5437. height:22px;
  5438. display:flex;
  5439. }
  5440. #u99446 .text {
  5441. position:absolute;
  5442. align-self:center;
  5443. padding:2px 2px 2px 2px;
  5444. box-sizing:border-box;
  5445. width:100%;
  5446. }
  5447. #u99446_text {
  5448. border-width:0px;
  5449. word-wrap:break-word;
  5450. text-transform:none;
  5451. visibility:hidden;
  5452. }
  5453. #u99447 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:0px;
  5457. top:0px;
  5458. width:0px;
  5459. height:0px;
  5460. }
  5461. #u99448_div {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:0px;
  5465. top:0px;
  5466. width:33px;
  5467. height:22px;
  5468. background:inherit;
  5469. background-color:rgba(255, 255, 255, 0);
  5470. border:none;
  5471. border-radius:0px;
  5472. -moz-box-shadow:none;
  5473. -webkit-box-shadow:none;
  5474. box-shadow:none;
  5475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:16px;
  5479. color:#FFFFFF;
  5480. }
  5481. #u99448 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:1096px;
  5485. top:-1340px;
  5486. width:33px;
  5487. height:22px;
  5488. display:flex;
  5489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:16px;
  5493. color:#FFFFFF;
  5494. }
  5495. #u99448 .text {
  5496. position:absolute;
  5497. align-self:flex-start;
  5498. padding:0px 0px 0px 0px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u99448_text {
  5503. border-width:0px;
  5504. white-space:nowrap;
  5505. text-transform:none;
  5506. }
  5507. #u99449_img {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:14px;
  5513. height:14px;
  5514. }
  5515. #u99449 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:1077px;
  5519. top:-1336px;
  5520. width:14px;
  5521. height:14px;
  5522. display:flex;
  5523. }
  5524. #u99449 .text {
  5525. position:absolute;
  5526. align-self:center;
  5527. padding:2px 2px 2px 2px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u99449_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. visibility:hidden;
  5536. }
  5537. #u99450 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:0px;
  5543. height:0px;
  5544. }
  5545. #u99451_div {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:33px;
  5551. height:22px;
  5552. background:inherit;
  5553. background-color:rgba(255, 255, 255, 0);
  5554. border:none;
  5555. border-radius:0px;
  5556. -moz-box-shadow:none;
  5557. -webkit-box-shadow:none;
  5558. box-shadow:none;
  5559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5560. font-weight:400;
  5561. font-style:normal;
  5562. font-size:16px;
  5563. color:#FFFFFF;
  5564. }
  5565. #u99451 {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:1096px;
  5569. top:-1298px;
  5570. width:33px;
  5571. height:22px;
  5572. display:flex;
  5573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:16px;
  5577. color:#FFFFFF;
  5578. }
  5579. #u99451 .text {
  5580. position:absolute;
  5581. align-self:flex-start;
  5582. padding:0px 0px 0px 0px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u99451_text {
  5587. border-width:0px;
  5588. white-space:nowrap;
  5589. text-transform:none;
  5590. }
  5591. #u99452_img {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:14px;
  5597. height:14px;
  5598. }
  5599. #u99452 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:1077px;
  5603. top:-1294px;
  5604. width:14px;
  5605. height:14px;
  5606. display:flex;
  5607. }
  5608. #u99452 .text {
  5609. position:absolute;
  5610. align-self:center;
  5611. padding:2px 2px 2px 2px;
  5612. box-sizing:border-box;
  5613. width:100%;
  5614. }
  5615. #u99452_text {
  5616. border-width:0px;
  5617. word-wrap:break-word;
  5618. text-transform:none;
  5619. visibility:hidden;
  5620. }
  5621. #u99453_div {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:1259px;
  5627. height:1180px;
  5628. background:inherit;
  5629. background-color:rgba(255, 255, 255, 1);
  5630. border:none;
  5631. border-radius:0px;
  5632. -moz-box-shadow:none;
  5633. -webkit-box-shadow:none;
  5634. box-shadow:none;
  5635. }
  5636. #u99453 {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:1390px;
  5640. top:-1521px;
  5641. width:1259px;
  5642. height:1180px;
  5643. display:flex;
  5644. }
  5645. #u99453 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:2px 2px 2px 2px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u99453_text {
  5653. border-width:0px;
  5654. word-wrap:break-word;
  5655. text-transform:none;
  5656. visibility:hidden;
  5657. }
  5658. #u99454_div {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:109px;
  5664. height:50px;
  5665. background:inherit;
  5666. background-color:rgba(255, 255, 255, 0);
  5667. border:none;
  5668. border-left:0px;
  5669. border-top:0px;
  5670. border-right:0px;
  5671. border-radius:0px;
  5672. border-bottom-right-radius:0px;
  5673. border-bottom-left-radius:0px;
  5674. -moz-box-shadow:none;
  5675. -webkit-box-shadow:none;
  5676. box-shadow:none;
  5677. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5678. font-weight:500;
  5679. font-style:normal;
  5680. font-size:18px;
  5681. color:#1890FF;
  5682. line-height:40px;
  5683. }
  5684. #u99454 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:1716px;
  5688. top:-1521px;
  5689. width:109px;
  5690. height:50px;
  5691. display:flex;
  5692. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5693. font-weight:500;
  5694. font-style:normal;
  5695. font-size:18px;
  5696. color:#1890FF;
  5697. line-height:40px;
  5698. }
  5699. #u99454 .text {
  5700. position:absolute;
  5701. align-self:center;
  5702. padding:0px 0px 0px 0px;
  5703. box-sizing:border-box;
  5704. width:100%;
  5705. }
  5706. #u99454_text {
  5707. border-width:0px;
  5708. white-space:nowrap;
  5709. text-transform:none;
  5710. }
  5711. #u99455_div {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:905px;
  5717. height:80px;
  5718. background:inherit;
  5719. background-color:rgba(255, 255, 255, 1);
  5720. box-sizing:border-box;
  5721. border-width:1px;
  5722. border-style:solid;
  5723. border-color:rgba(215, 215, 215, 1);
  5724. border-left:0px;
  5725. border-top:0px;
  5726. border-right:0px;
  5727. border-radius:0px;
  5728. border-bottom-right-radius:0px;
  5729. border-bottom-left-radius:0px;
  5730. -moz-box-shadow:none;
  5731. -webkit-box-shadow:none;
  5732. box-shadow:none;
  5733. }
  5734. #u99455 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:1726px;
  5738. top:-1461px;
  5739. width:905px;
  5740. height:80px;
  5741. display:flex;
  5742. }
  5743. #u99455 .text {
  5744. position:absolute;
  5745. align-self:center;
  5746. padding:2px 2px 2px 2px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u99455_text {
  5751. border-width:0px;
  5752. word-wrap:break-word;
  5753. text-transform:none;
  5754. visibility:hidden;
  5755. }
  5756. #u99456_div {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:109px;
  5762. height:30px;
  5763. background:inherit;
  5764. background-color:rgba(255, 255, 255, 0);
  5765. border:none;
  5766. border-left:0px;
  5767. border-top:0px;
  5768. border-right:0px;
  5769. border-radius:0px;
  5770. border-bottom-right-radius:0px;
  5771. border-bottom-left-radius:0px;
  5772. -moz-box-shadow:none;
  5773. -webkit-box-shadow:none;
  5774. box-shadow:none;
  5775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. font-size:18px;
  5779. color:#555555;
  5780. line-height:30px;
  5781. }
  5782. #u99456 {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:1726px;
  5786. top:-1451px;
  5787. width:109px;
  5788. height:30px;
  5789. display:flex;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:18px;
  5794. color:#555555;
  5795. line-height:30px;
  5796. }
  5797. #u99456 .text {
  5798. position:absolute;
  5799. align-self:flex-start;
  5800. padding:0px 0px 0px 0px;
  5801. box-sizing:border-box;
  5802. width:100%;
  5803. }
  5804. #u99456_text {
  5805. border-width:0px;
  5806. white-space:nowrap;
  5807. text-transform:none;
  5808. }
  5809. #u99457_div {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:646px;
  5815. height:20px;
  5816. background:inherit;
  5817. background-color:rgba(255, 255, 255, 0);
  5818. border:none;
  5819. border-radius:0px;
  5820. -moz-box-shadow:none;
  5821. -webkit-box-shadow:none;
  5822. box-shadow:none;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:10px;
  5827. color:#7F7F7F;
  5828. line-height:20px;
  5829. }
  5830. #u99457 {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:1728px;
  5834. top:-1417px;
  5835. width:646px;
  5836. height:20px;
  5837. display:flex;
  5838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:10px;
  5842. color:#7F7F7F;
  5843. line-height:20px;
  5844. }
  5845. #u99457 .text {
  5846. position:absolute;
  5847. align-self:flex-start;
  5848. padding:0px 0px 0px 0px;
  5849. box-sizing:border-box;
  5850. width:100%;
  5851. }
  5852. #u99457_text {
  5853. border-width:0px;
  5854. white-space:nowrap;
  5855. text-transform:none;
  5856. }
  5857. #u99458 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:0px;
  5863. height:0px;
  5864. }
  5865. #u99459_div {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:300px;
  5871. height:1191px;
  5872. background:inherit;
  5873. background-color:rgba(240, 242, 245, 1);
  5874. border:none;
  5875. border-radius:0px;
  5876. -moz-box-shadow:none;
  5877. -webkit-box-shadow:none;
  5878. box-shadow:none;
  5879. }
  5880. #u99459 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:1386px;
  5884. top:-1521px;
  5885. width:300px;
  5886. height:1191px;
  5887. display:flex;
  5888. }
  5889. #u99459 .text {
  5890. position:absolute;
  5891. align-self:center;
  5892. padding:2px 2px 2px 2px;
  5893. box-sizing:border-box;
  5894. width:100%;
  5895. }
  5896. #u99459_text {
  5897. border-width:0px;
  5898. word-wrap:break-word;
  5899. text-transform:none;
  5900. visibility:hidden;
  5901. }
  5902. #u99460 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:0px;
  5906. top:0px;
  5907. width:0px;
  5908. height:0px;
  5909. }
  5910. #u99461_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:260px;
  5916. height:38px;
  5917. background:inherit;
  5918. background-color:rgba(255, 255, 255, 1);
  5919. box-sizing:border-box;
  5920. border-width:1px;
  5921. border-style:solid;
  5922. border-color:rgba(242, 242, 242, 1);
  5923. border-radius:4px;
  5924. -moz-box-shadow:none;
  5925. -webkit-box-shadow:none;
  5926. box-shadow:none;
  5927. font-family:'Microsoft YaHei', sans-serif;
  5928. font-weight:400;
  5929. font-style:normal;
  5930. font-size:14px;
  5931. color:#CCCCCC;
  5932. text-align:left;
  5933. }
  5934. #u99461 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:1406px;
  5938. top:-1451px;
  5939. width:260px;
  5940. height:38px;
  5941. display:flex;
  5942. font-family:'Microsoft YaHei', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. color:#CCCCCC;
  5947. text-align:left;
  5948. }
  5949. #u99461 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:2px 8px 2px 8px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u99461_text {
  5957. border-width:0px;
  5958. word-wrap:break-word;
  5959. text-transform:none;
  5960. visibility:hidden;
  5961. }
  5962. #u99462_input {
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:201px;
  5967. height:31px;
  5968. padding:2px 2px 2px 2px;
  5969. font-family:'Microsoft YaHei', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:14px;
  5973. letter-spacing:normal;
  5974. color:#000000;
  5975. vertical-align:none;
  5976. text-align:left;
  5977. text-transform:none;
  5978. background-color:transparent;
  5979. border-color:transparent;
  5980. }
  5981. #u99462_input.disabled {
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:201px;
  5986. height:31px;
  5987. padding:2px 2px 2px 2px;
  5988. font-family:'Microsoft YaHei', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:14px;
  5992. letter-spacing:normal;
  5993. color:#000000;
  5994. vertical-align:none;
  5995. text-align:left;
  5996. text-transform:none;
  5997. background-color:transparent;
  5998. border-color:transparent;
  5999. }
  6000. #u99462_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:201px;
  6006. height:31px;
  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-family:'Microsoft YaHei', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:14px;
  6018. }
  6019. #u99462 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:1414px;
  6023. top:-1450px;
  6024. width:201px;
  6025. height:31px;
  6026. display:flex;
  6027. font-family:'Microsoft YaHei', sans-serif;
  6028. font-weight:400;
  6029. font-style:normal;
  6030. font-size:14px;
  6031. }
  6032. #u99462 .text {
  6033. position:absolute;
  6034. align-self:center;
  6035. padding:2px 2px 2px 2px;
  6036. box-sizing:border-box;
  6037. width:100%;
  6038. }
  6039. #u99462_div.disabled {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:201px;
  6045. height:31px;
  6046. background:inherit;
  6047. background-color:rgba(240, 240, 240, 1);
  6048. border:none;
  6049. border-radius:0px;
  6050. -moz-box-shadow:none;
  6051. -webkit-box-shadow:none;
  6052. box-shadow:none;
  6053. font-family:'Microsoft YaHei', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:14px;
  6057. }
  6058. #u99462.disabled {
  6059. }
  6060. #u99463_img {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:14px;
  6066. height:14px;
  6067. }
  6068. #u99463 {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:1624px;
  6072. top:-1439px;
  6073. width:14px;
  6074. height:14px;
  6075. display:flex;
  6076. }
  6077. #u99463 .text {
  6078. position:absolute;
  6079. align-self:center;
  6080. padding:2px 2px 2px 2px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u99463_text {
  6085. border-width:0px;
  6086. word-wrap:break-word;
  6087. text-transform:none;
  6088. visibility:hidden;
  6089. }
  6090. #u99464 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:0px;
  6096. height:0px;
  6097. }
  6098. #u99465_div {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:260px;
  6104. height:48px;
  6105. background:inherit;
  6106. background-color:rgba(0, 153, 255, 0.0980392156862745);
  6107. border:none;
  6108. border-radius:4px;
  6109. -moz-box-shadow:none;
  6110. -webkit-box-shadow:none;
  6111. box-shadow:none;
  6112. font-family:'Microsoft YaHei', sans-serif;
  6113. font-weight:400;
  6114. font-style:normal;
  6115. font-size:14px;
  6116. color:#CCCCCC;
  6117. text-align:left;
  6118. }
  6119. #u99465 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:1406px;
  6123. top:-1393px;
  6124. width:260px;
  6125. height:48px;
  6126. display:flex;
  6127. font-family:'Microsoft YaHei', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:14px;
  6131. color:#CCCCCC;
  6132. text-align:left;
  6133. }
  6134. #u99465 .text {
  6135. position:absolute;
  6136. align-self:center;
  6137. padding:2px 8px 2px 8px;
  6138. box-sizing:border-box;
  6139. width:100%;
  6140. }
  6141. #u99465_text {
  6142. border-width:0px;
  6143. word-wrap:break-word;
  6144. text-transform:none;
  6145. visibility:hidden;
  6146. }
  6147. #u99466_div {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:0px;
  6151. top:0px;
  6152. width:12px;
  6153. height:15px;
  6154. background:inherit;
  6155. background-color:rgba(51, 51, 51, 1);
  6156. border:none;
  6157. border-radius:4px;
  6158. -moz-box-shadow:none;
  6159. -webkit-box-shadow:none;
  6160. box-shadow:none;
  6161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:10px;
  6165. color:#FFFFFF;
  6166. }
  6167. #u99466 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:1419px;
  6171. top:-1377px;
  6172. width:12px;
  6173. height:15px;
  6174. display:flex;
  6175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:10px;
  6179. color:#FFFFFF;
  6180. }
  6181. #u99466 .text {
  6182. position:absolute;
  6183. align-self:center;
  6184. padding:0px 0px 0px 0px;
  6185. box-sizing:border-box;
  6186. width:100%;
  6187. }
  6188. #u99466_text {
  6189. border-width:0px;
  6190. word-wrap:break-word;
  6191. text-transform:none;
  6192. }
  6193. #u99467_div {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:0px;
  6197. top:0px;
  6198. width:85px;
  6199. height:19px;
  6200. background:inherit;
  6201. background-color:rgba(51, 51, 51, 0);
  6202. border:none;
  6203. border-radius:4px;
  6204. -moz-box-shadow:none;
  6205. -webkit-box-shadow:none;
  6206. box-shadow:none;
  6207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6208. font-weight:400;
  6209. font-style:normal;
  6210. font-size:14px;
  6211. text-align:left;
  6212. }
  6213. #u99467 {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:1440px;
  6217. top:-1379px;
  6218. width:85px;
  6219. height:19px;
  6220. display:flex;
  6221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:14px;
  6225. text-align:left;
  6226. }
  6227. #u99467 .text {
  6228. position:absolute;
  6229. align-self:center;
  6230. padding:0px 0px 0px 0px;
  6231. box-sizing:border-box;
  6232. width:100%;
  6233. }
  6234. #u99467_text {
  6235. border-width:0px;
  6236. white-space:nowrap;
  6237. text-transform:none;
  6238. }
  6239. #u99468_div {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:73px;
  6245. height:50px;
  6246. background:inherit;
  6247. background-color:rgba(255, 255, 255, 0);
  6248. border:none;
  6249. border-left:0px;
  6250. border-top:0px;
  6251. border-right:0px;
  6252. border-radius:0px;
  6253. border-bottom-right-radius:0px;
  6254. border-bottom-left-radius:0px;
  6255. -moz-box-shadow:none;
  6256. -webkit-box-shadow:none;
  6257. box-shadow:none;
  6258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6259. font-weight:500;
  6260. font-style:normal;
  6261. font-size:18px;
  6262. line-height:40px;
  6263. }
  6264. #u99468 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:1406px;
  6268. top:-1511px;
  6269. width:73px;
  6270. height:50px;
  6271. display:flex;
  6272. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6273. font-weight:500;
  6274. font-style:normal;
  6275. font-size:18px;
  6276. line-height:40px;
  6277. }
  6278. #u99468 .text {
  6279. position:absolute;
  6280. align-self:center;
  6281. padding:5px 0px 5px 0px;
  6282. box-sizing:border-box;
  6283. width:100%;
  6284. }
  6285. #u99468_text {
  6286. border-width:0px;
  6287. white-space:nowrap;
  6288. text-transform:none;
  6289. }
  6290. #u99469 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:0px;
  6296. height:0px;
  6297. }
  6298. #u99470_div {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:260px;
  6304. height:48px;
  6305. background:inherit;
  6306. background-color:rgba(242, 242, 242, 0.0980392156862745);
  6307. border:none;
  6308. border-radius:4px;
  6309. -moz-box-shadow:none;
  6310. -webkit-box-shadow:none;
  6311. box-shadow:none;
  6312. font-family:'Microsoft YaHei', sans-serif;
  6313. font-weight:400;
  6314. font-style:normal;
  6315. font-size:14px;
  6316. color:#CCCCCC;
  6317. text-align:left;
  6318. }
  6319. #u99470 {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:1406px;
  6323. top:-1344px;
  6324. width:260px;
  6325. height:48px;
  6326. display:flex;
  6327. font-family:'Microsoft YaHei', sans-serif;
  6328. font-weight:400;
  6329. font-style:normal;
  6330. font-size:14px;
  6331. color:#CCCCCC;
  6332. text-align:left;
  6333. }
  6334. #u99470 .text {
  6335. position:absolute;
  6336. align-self:center;
  6337. padding:2px 8px 2px 8px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u99470_text {
  6342. border-width:0px;
  6343. word-wrap:break-word;
  6344. text-transform:none;
  6345. visibility:hidden;
  6346. }
  6347. #u99471_div {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:12px;
  6353. height:15px;
  6354. background:inherit;
  6355. background-color:rgba(51, 51, 51, 1);
  6356. border:none;
  6357. border-radius:4px;
  6358. -moz-box-shadow:none;
  6359. -webkit-box-shadow:none;
  6360. box-shadow:none;
  6361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:10px;
  6365. color:#FFFFFF;
  6366. }
  6367. #u99471 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:1419px;
  6371. top:-1328px;
  6372. width:12px;
  6373. height:15px;
  6374. display:flex;
  6375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6376. font-weight:400;
  6377. font-style:normal;
  6378. font-size:10px;
  6379. color:#FFFFFF;
  6380. }
  6381. #u99471 .text {
  6382. position:absolute;
  6383. align-self:center;
  6384. padding:0px 0px 0px 0px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u99471_text {
  6389. border-width:0px;
  6390. word-wrap:break-word;
  6391. text-transform:none;
  6392. }
  6393. #u99472_div {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:113px;
  6399. height:19px;
  6400. background:inherit;
  6401. background-color:rgba(51, 51, 51, 0);
  6402. border:none;
  6403. border-radius:4px;
  6404. -moz-box-shadow:none;
  6405. -webkit-box-shadow:none;
  6406. box-shadow:none;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:14px;
  6411. text-align:left;
  6412. }
  6413. #u99472 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:1440px;
  6417. top:-1330px;
  6418. width:113px;
  6419. height:19px;
  6420. display:flex;
  6421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:14px;
  6425. text-align:left;
  6426. }
  6427. #u99472 .text {
  6428. position:absolute;
  6429. align-self:center;
  6430. padding:0px 0px 0px 0px;
  6431. box-sizing:border-box;
  6432. width:100%;
  6433. }
  6434. #u99472_text {
  6435. border-width:0px;
  6436. white-space:nowrap;
  6437. text-transform:none;
  6438. }
  6439. #u99473_img {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:50px;
  6445. height:31px;
  6446. }
  6447. #u99473 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:2578px;
  6451. top:-1451px;
  6452. width:50px;
  6453. height:31px;
  6454. display:flex;
  6455. }
  6456. #u99473 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:2px 2px 2px 2px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u99473_text {
  6464. border-width:0px;
  6465. word-wrap:break-word;
  6466. text-transform:none;
  6467. visibility:hidden;
  6468. }
  6469. #u99474_div {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:905px;
  6475. height:229px;
  6476. background:inherit;
  6477. background-color:rgba(255, 255, 255, 1);
  6478. box-sizing:border-box;
  6479. border-width:1px;
  6480. border-style:solid;
  6481. border-color:rgba(215, 215, 215, 1);
  6482. border-left:0px;
  6483. border-top:0px;
  6484. border-right:0px;
  6485. border-radius:0px;
  6486. border-bottom-right-radius:0px;
  6487. border-bottom-left-radius:0px;
  6488. -moz-box-shadow:none;
  6489. -webkit-box-shadow:none;
  6490. box-shadow:none;
  6491. }
  6492. #u99474 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:1726px;
  6496. top:-1381px;
  6497. width:905px;
  6498. height:229px;
  6499. display:flex;
  6500. }
  6501. #u99474 .text {
  6502. position:absolute;
  6503. align-self:center;
  6504. padding:2px 2px 2px 2px;
  6505. box-sizing:border-box;
  6506. width:100%;
  6507. }
  6508. #u99474_text {
  6509. border-width:0px;
  6510. word-wrap:break-word;
  6511. text-transform:none;
  6512. visibility:hidden;
  6513. }
  6514. #u99475_div {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:109px;
  6520. height:30px;
  6521. background:inherit;
  6522. background-color:rgba(255, 255, 255, 0);
  6523. border:none;
  6524. border-left:0px;
  6525. border-top:0px;
  6526. border-right:0px;
  6527. border-radius:0px;
  6528. border-bottom-right-radius:0px;
  6529. border-bottom-left-radius:0px;
  6530. -moz-box-shadow:none;
  6531. -webkit-box-shadow:none;
  6532. box-shadow:none;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:18px;
  6537. color:#555555;
  6538. line-height:30px;
  6539. }
  6540. #u99475 {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:1726px;
  6544. top:-1371px;
  6545. width:109px;
  6546. height:30px;
  6547. display:flex;
  6548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6549. font-weight:400;
  6550. font-style:normal;
  6551. font-size:18px;
  6552. color:#555555;
  6553. line-height:30px;
  6554. }
  6555. #u99475 .text {
  6556. position:absolute;
  6557. align-self:flex-start;
  6558. padding:0px 0px 0px 0px;
  6559. box-sizing:border-box;
  6560. width:100%;
  6561. }
  6562. #u99475_text {
  6563. border-width:0px;
  6564. white-space:nowrap;
  6565. text-transform:none;
  6566. }
  6567. #u99476_div {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:306px;
  6573. height:20px;
  6574. background:inherit;
  6575. background-color:rgba(255, 255, 255, 0);
  6576. border:none;
  6577. border-radius:0px;
  6578. -moz-box-shadow:none;
  6579. -webkit-box-shadow:none;
  6580. box-shadow:none;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:10px;
  6585. color:#7F7F7F;
  6586. line-height:20px;
  6587. }
  6588. #u99476 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:1728px;
  6592. top:-1337px;
  6593. width:306px;
  6594. height:20px;
  6595. display:flex;
  6596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6597. font-weight:400;
  6598. font-style:normal;
  6599. font-size:10px;
  6600. color:#7F7F7F;
  6601. line-height:20px;
  6602. }
  6603. #u99476 .text {
  6604. position:absolute;
  6605. align-self:flex-start;
  6606. padding:0px 0px 0px 0px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u99476_text {
  6611. border-width:0px;
  6612. white-space:nowrap;
  6613. text-transform:none;
  6614. }
  6615. #u99477_div {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:57px;
  6621. height:30px;
  6622. background:inherit;
  6623. background-color:rgba(255, 255, 255, 0);
  6624. border:none;
  6625. border-top:0px;
  6626. border-right:0px;
  6627. border-bottom:0px;
  6628. border-radius:0px;
  6629. border-top-left-radius:0px;
  6630. border-bottom-left-radius:0px;
  6631. -moz-box-shadow:none;
  6632. -webkit-box-shadow:none;
  6633. box-shadow:none;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:14px;
  6638. color:#1890FF;
  6639. }
  6640. #u99477 {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:2574px;
  6644. top:-1303px;
  6645. width:57px;
  6646. height:30px;
  6647. display:flex;
  6648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6649. font-weight:400;
  6650. font-style:normal;
  6651. font-size:14px;
  6652. color:#1890FF;
  6653. }
  6654. #u99477 .text {
  6655. position:absolute;
  6656. align-self:center;
  6657. padding:5px 0px 5px 0px;
  6658. box-sizing:border-box;
  6659. width:100%;
  6660. }
  6661. #u99477_text {
  6662. border-width:0px;
  6663. white-space:nowrap;
  6664. text-transform:none;
  6665. }
  6666. #u99478 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:0px;
  6672. height:0px;
  6673. }
  6674. #u99479 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:1728px;
  6678. top:-1273px;
  6679. width:903px;
  6680. height:90px;
  6681. }
  6682. #u99480_img {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:240px;
  6688. height:30px;
  6689. }
  6690. #u99480 {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:240px;
  6696. height:30px;
  6697. display:flex;
  6698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6699. font-weight:400;
  6700. font-style:normal;
  6701. color:#FFFFFF;
  6702. }
  6703. #u99480 .text {
  6704. position:absolute;
  6705. align-self:center;
  6706. padding:2px 2px 2px 2px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u99480_text {
  6711. border-width:0px;
  6712. word-wrap:break-word;
  6713. text-transform:none;
  6714. }
  6715. #u99481_img {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:96px;
  6721. height:30px;
  6722. }
  6723. #u99481 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:240px;
  6727. top:0px;
  6728. width:96px;
  6729. height:30px;
  6730. display:flex;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. color:#FFFFFF;
  6735. }
  6736. #u99481 .text {
  6737. position:absolute;
  6738. align-self:center;
  6739. padding:2px 2px 2px 2px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u99481_text {
  6744. border-width:0px;
  6745. word-wrap:break-word;
  6746. text-transform:none;
  6747. }
  6748. #u99482_img {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:96px;
  6754. height:30px;
  6755. }
  6756. #u99482 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:336px;
  6760. top:0px;
  6761. width:96px;
  6762. height:30px;
  6763. display:flex;
  6764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6765. font-weight:400;
  6766. font-style:normal;
  6767. color:#FFFFFF;
  6768. }
  6769. #u99482 .text {
  6770. position:absolute;
  6771. align-self:center;
  6772. padding:2px 2px 2px 2px;
  6773. box-sizing:border-box;
  6774. width:100%;
  6775. }
  6776. #u99482_text {
  6777. border-width:0px;
  6778. word-wrap:break-word;
  6779. text-transform:none;
  6780. }
  6781. #u99483_img {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:0px;
  6785. top:0px;
  6786. width:240px;
  6787. height:30px;
  6788. }
  6789. #u99483 {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:432px;
  6793. top:0px;
  6794. width:240px;
  6795. height:30px;
  6796. display:flex;
  6797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6798. font-weight:400;
  6799. font-style:normal;
  6800. color:#FFFFFF;
  6801. }
  6802. #u99483 .text {
  6803. position:absolute;
  6804. align-self:center;
  6805. padding:2px 2px 2px 2px;
  6806. box-sizing:border-box;
  6807. width:100%;
  6808. }
  6809. #u99483_text {
  6810. border-width:0px;
  6811. word-wrap:break-word;
  6812. text-transform:none;
  6813. }
  6814. #u99484_img {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:115px;
  6820. height:30px;
  6821. }
  6822. #u99484 {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:672px;
  6826. top:0px;
  6827. width:115px;
  6828. height:30px;
  6829. display:flex;
  6830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6831. font-weight:400;
  6832. font-style:normal;
  6833. color:#FFFFFF;
  6834. }
  6835. #u99484 .text {
  6836. position:absolute;
  6837. align-self:center;
  6838. padding:2px 2px 2px 2px;
  6839. box-sizing:border-box;
  6840. width:100%;
  6841. }
  6842. #u99484_text {
  6843. border-width:0px;
  6844. word-wrap:break-word;
  6845. text-transform:none;
  6846. }
  6847. #u99485_img {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:116px;
  6853. height:30px;
  6854. }
  6855. #u99485 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:787px;
  6859. top:0px;
  6860. width:116px;
  6861. height:30px;
  6862. display:flex;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. color:#FFFFFF;
  6867. }
  6868. #u99485 .text {
  6869. position:absolute;
  6870. align-self:center;
  6871. padding:2px 2px 2px 2px;
  6872. box-sizing:border-box;
  6873. width:100%;
  6874. }
  6875. #u99485_text {
  6876. border-width:0px;
  6877. word-wrap:break-word;
  6878. text-transform:none;
  6879. }
  6880. #u99486_img {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:240px;
  6886. height:30px;
  6887. }
  6888. #u99486 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:0px;
  6892. top:30px;
  6893. width:240px;
  6894. height:30px;
  6895. display:flex;
  6896. }
  6897. #u99486 .text {
  6898. position:absolute;
  6899. align-self:center;
  6900. padding:2px 2px 2px 2px;
  6901. box-sizing:border-box;
  6902. width:100%;
  6903. }
  6904. #u99486_text {
  6905. border-width:0px;
  6906. word-wrap:break-word;
  6907. text-transform:none;
  6908. visibility:hidden;
  6909. }
  6910. #u99487_img {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:0px;
  6914. top:0px;
  6915. width:96px;
  6916. height:30px;
  6917. }
  6918. #u99487 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:240px;
  6922. top:30px;
  6923. width:96px;
  6924. height:30px;
  6925. display:flex;
  6926. }
  6927. #u99487 .text {
  6928. position:absolute;
  6929. align-self:center;
  6930. padding:2px 2px 2px 2px;
  6931. box-sizing:border-box;
  6932. width:100%;
  6933. }
  6934. #u99487_text {
  6935. border-width:0px;
  6936. word-wrap:break-word;
  6937. text-transform:none;
  6938. visibility:hidden;
  6939. }
  6940. #u99488_img {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:0px;
  6944. top:0px;
  6945. width:96px;
  6946. height:30px;
  6947. }
  6948. #u99488 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:336px;
  6952. top:30px;
  6953. width:96px;
  6954. height:30px;
  6955. display:flex;
  6956. }
  6957. #u99488 .text {
  6958. position:absolute;
  6959. align-self:center;
  6960. padding:2px 2px 2px 2px;
  6961. box-sizing:border-box;
  6962. width:100%;
  6963. }
  6964. #u99488_text {
  6965. border-width:0px;
  6966. word-wrap:break-word;
  6967. text-transform:none;
  6968. visibility:hidden;
  6969. }
  6970. #u99489_img {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:240px;
  6976. height:30px;
  6977. }
  6978. #u99489 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:432px;
  6982. top:30px;
  6983. width:240px;
  6984. height:30px;
  6985. display:flex;
  6986. }
  6987. #u99489 .text {
  6988. position:absolute;
  6989. align-self:center;
  6990. padding:2px 2px 2px 2px;
  6991. box-sizing:border-box;
  6992. width:100%;
  6993. }
  6994. #u99489_text {
  6995. border-width:0px;
  6996. word-wrap:break-word;
  6997. text-transform:none;
  6998. visibility:hidden;
  6999. }
  7000. #u99490_img {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:115px;
  7006. height:30px;
  7007. }
  7008. #u99490 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:672px;
  7012. top:30px;
  7013. width:115px;
  7014. height:30px;
  7015. display:flex;
  7016. color:#AAAAAA;
  7017. }
  7018. #u99490 .text {
  7019. position:absolute;
  7020. align-self:center;
  7021. padding:2px 2px 2px 2px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u99490_text {
  7026. border-width:0px;
  7027. word-wrap:break-word;
  7028. text-transform:none;
  7029. }
  7030. #u99491_img {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:116px;
  7036. height:30px;
  7037. }
  7038. #u99491 {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:787px;
  7042. top:30px;
  7043. width:116px;
  7044. height:30px;
  7045. display:flex;
  7046. color:#1890FF;
  7047. }
  7048. #u99491 .text {
  7049. position:absolute;
  7050. align-self:center;
  7051. padding:2px 2px 2px 2px;
  7052. box-sizing:border-box;
  7053. width:100%;
  7054. }
  7055. #u99491_text {
  7056. border-width:0px;
  7057. word-wrap:break-word;
  7058. text-transform:none;
  7059. }
  7060. #u99492_img {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:240px;
  7066. height:30px;
  7067. }
  7068. #u99492 {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:60px;
  7073. width:240px;
  7074. height:30px;
  7075. display:flex;
  7076. }
  7077. #u99492 .text {
  7078. position:absolute;
  7079. align-self:center;
  7080. padding:2px 2px 2px 2px;
  7081. box-sizing:border-box;
  7082. width:100%;
  7083. }
  7084. #u99492_text {
  7085. border-width:0px;
  7086. word-wrap:break-word;
  7087. text-transform:none;
  7088. visibility:hidden;
  7089. }
  7090. #u99493_img {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:96px;
  7096. height:30px;
  7097. }
  7098. #u99493 {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:240px;
  7102. top:60px;
  7103. width:96px;
  7104. height:30px;
  7105. display:flex;
  7106. }
  7107. #u99493 .text {
  7108. position:absolute;
  7109. align-self:center;
  7110. padding:2px 2px 2px 2px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u99493_text {
  7115. border-width:0px;
  7116. word-wrap:break-word;
  7117. text-transform:none;
  7118. visibility:hidden;
  7119. }
  7120. #u99494_img {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:96px;
  7126. height:30px;
  7127. }
  7128. #u99494 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:336px;
  7132. top:60px;
  7133. width:96px;
  7134. height:30px;
  7135. display:flex;
  7136. }
  7137. #u99494 .text {
  7138. position:absolute;
  7139. align-self:center;
  7140. padding:2px 2px 2px 2px;
  7141. box-sizing:border-box;
  7142. width:100%;
  7143. }
  7144. #u99494_text {
  7145. border-width:0px;
  7146. word-wrap:break-word;
  7147. text-transform:none;
  7148. visibility:hidden;
  7149. }
  7150. #u99495_img {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:0px;
  7154. top:0px;
  7155. width:240px;
  7156. height:30px;
  7157. }
  7158. #u99495 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:432px;
  7162. top:60px;
  7163. width:240px;
  7164. height:30px;
  7165. display:flex;
  7166. }
  7167. #u99495 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:2px 2px 2px 2px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u99495_text {
  7175. border-width:0px;
  7176. word-wrap:break-word;
  7177. text-transform:none;
  7178. visibility:hidden;
  7179. }
  7180. #u99496_img {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:115px;
  7186. height:30px;
  7187. }
  7188. #u99496 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:672px;
  7192. top:60px;
  7193. width:115px;
  7194. height:30px;
  7195. display:flex;
  7196. }
  7197. #u99496 .text {
  7198. position:absolute;
  7199. align-self:center;
  7200. padding:2px 2px 2px 2px;
  7201. box-sizing:border-box;
  7202. width:100%;
  7203. }
  7204. #u99496_text {
  7205. border-width:0px;
  7206. word-wrap:break-word;
  7207. text-transform:none;
  7208. visibility:hidden;
  7209. }
  7210. #u99497_img {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:0px;
  7214. top:0px;
  7215. width:116px;
  7216. height:30px;
  7217. }
  7218. #u99497 {
  7219. border-width:0px;
  7220. position:absolute;
  7221. left:787px;
  7222. top:60px;
  7223. width:116px;
  7224. height:30px;
  7225. display:flex;
  7226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7227. font-weight:400;
  7228. font-style:normal;
  7229. color:#1890FF;
  7230. }
  7231. #u99497 .text {
  7232. position:absolute;
  7233. align-self:center;
  7234. padding:2px 2px 2px 2px;
  7235. box-sizing:border-box;
  7236. width:100%;
  7237. }
  7238. #u99497_text {
  7239. border-width:0px;
  7240. word-wrap:break-word;
  7241. text-transform:none;
  7242. }
  7243. #u99498_input {
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:83px;
  7248. height:24px;
  7249. padding:2px 2px 2px 2px;
  7250. font-family:'ArialMT', 'Arial', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:13px;
  7254. letter-spacing:normal;
  7255. color:#000000;
  7256. vertical-align:none;
  7257. text-align:left;
  7258. text-transform:none;
  7259. background-color:transparent;
  7260. border-color:transparent;
  7261. }
  7262. #u99498_input.disabled {
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:83px;
  7267. height:24px;
  7268. padding:2px 2px 2px 2px;
  7269. font-family:'ArialMT', 'Arial', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:13px;
  7273. letter-spacing:normal;
  7274. color:#000000;
  7275. vertical-align:none;
  7276. text-align:left;
  7277. text-transform:none;
  7278. background-color:transparent;
  7279. border-color:transparent;
  7280. }
  7281. #u99498_div {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:83px;
  7287. height:24px;
  7288. background:inherit;
  7289. background-color:rgba(255, 255, 255, 1);
  7290. border:none;
  7291. border-radius:0px;
  7292. -moz-box-shadow:none;
  7293. -webkit-box-shadow:none;
  7294. box-shadow:none;
  7295. }
  7296. #u99498 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:2072px;
  7300. top:-1241px;
  7301. width:83px;
  7302. height:24px;
  7303. display:flex;
  7304. }
  7305. #u99498 .text {
  7306. position:absolute;
  7307. align-self:flex-start;
  7308. padding:2px 2px 2px 2px;
  7309. box-sizing:border-box;
  7310. width:100%;
  7311. }
  7312. #u99498_div.disabled {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:0px;
  7316. top:0px;
  7317. width:83px;
  7318. height:24px;
  7319. background:inherit;
  7320. background-color:rgba(240, 240, 240, 1);
  7321. border:none;
  7322. border-radius:0px;
  7323. -moz-box-shadow:none;
  7324. -webkit-box-shadow:none;
  7325. box-shadow:none;
  7326. }
  7327. #u99498.disabled {
  7328. }
  7329. .u99498_input_option {
  7330. }
  7331. #u99499_input {
  7332. position:absolute;
  7333. left:0px;
  7334. top:0px;
  7335. width:225px;
  7336. height:25px;
  7337. padding:2px 2px 2px 2px;
  7338. font-family:'ArialMT', 'Arial', sans-serif;
  7339. font-weight:400;
  7340. font-style:normal;
  7341. font-size:13px;
  7342. letter-spacing:normal;
  7343. color:#000000;
  7344. vertical-align:none;
  7345. text-align:left;
  7346. text-transform:none;
  7347. background-color:transparent;
  7348. border-color:transparent;
  7349. }
  7350. #u99499_input.disabled {
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:225px;
  7355. height:25px;
  7356. padding:2px 2px 2px 2px;
  7357. font-family:'ArialMT', 'Arial', sans-serif;
  7358. font-weight:400;
  7359. font-style:normal;
  7360. font-size:13px;
  7361. letter-spacing:normal;
  7362. color:#000000;
  7363. vertical-align:none;
  7364. text-align:left;
  7365. text-transform:none;
  7366. background-color:transparent;
  7367. border-color:transparent;
  7368. }
  7369. #u99499_div {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:225px;
  7375. height:25px;
  7376. background:inherit;
  7377. background-color:rgba(255, 255, 255, 1);
  7378. border:none;
  7379. border-radius:0px;
  7380. -moz-box-shadow:none;
  7381. -webkit-box-shadow:none;
  7382. box-shadow:none;
  7383. }
  7384. #u99499 {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:1736px;
  7388. top:-1242px;
  7389. width:225px;
  7390. height:25px;
  7391. display:flex;
  7392. }
  7393. #u99499 .text {
  7394. position:absolute;
  7395. align-self:center;
  7396. padding:2px 2px 2px 2px;
  7397. box-sizing:border-box;
  7398. width:100%;
  7399. }
  7400. #u99499_div.disabled {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:225px;
  7406. height:25px;
  7407. background:inherit;
  7408. background-color:rgba(240, 240, 240, 1);
  7409. border:none;
  7410. border-radius:0px;
  7411. -moz-box-shadow:none;
  7412. -webkit-box-shadow:none;
  7413. box-shadow:none;
  7414. }
  7415. #u99499.disabled {
  7416. }
  7417. #u99500_input {
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:85px;
  7422. height:24px;
  7423. padding:2px 2px 2px 2px;
  7424. font-family:'ArialMT', 'Arial', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:13px;
  7428. letter-spacing:normal;
  7429. color:#000000;
  7430. vertical-align:none;
  7431. text-align:left;
  7432. text-transform:none;
  7433. background-color:transparent;
  7434. border-color:transparent;
  7435. }
  7436. #u99500_input.disabled {
  7437. position:absolute;
  7438. left:0px;
  7439. top:0px;
  7440. width:85px;
  7441. height:24px;
  7442. padding:2px 2px 2px 2px;
  7443. font-family:'ArialMT', 'Arial', sans-serif;
  7444. font-weight:400;
  7445. font-style:normal;
  7446. font-size:13px;
  7447. letter-spacing:normal;
  7448. color:#000000;
  7449. vertical-align:none;
  7450. text-align:left;
  7451. text-transform:none;
  7452. background-color:transparent;
  7453. border-color:transparent;
  7454. }
  7455. #u99500_div {
  7456. border-width:0px;
  7457. position:absolute;
  7458. left:0px;
  7459. top:0px;
  7460. width:85px;
  7461. height:24px;
  7462. background:inherit;
  7463. background-color:rgba(255, 255, 255, 1);
  7464. border:none;
  7465. border-radius:0px;
  7466. -moz-box-shadow:none;
  7467. -webkit-box-shadow:none;
  7468. box-shadow:none;
  7469. }
  7470. #u99500 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:1974px;
  7474. top:-1242px;
  7475. width:85px;
  7476. height:24px;
  7477. display:flex;
  7478. }
  7479. #u99500 .text {
  7480. position:absolute;
  7481. align-self:flex-start;
  7482. padding:2px 2px 2px 2px;
  7483. box-sizing:border-box;
  7484. width:100%;
  7485. }
  7486. #u99500_div.disabled {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:85px;
  7492. height:24px;
  7493. background:inherit;
  7494. background-color:rgba(240, 240, 240, 1);
  7495. border:none;
  7496. border-radius:0px;
  7497. -moz-box-shadow:none;
  7498. -webkit-box-shadow:none;
  7499. box-shadow:none;
  7500. }
  7501. #u99500.disabled {
  7502. }
  7503. .u99500_input_option {
  7504. }
  7505. #u99501_input {
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:227px;
  7510. height:25px;
  7511. padding:2px 2px 2px 2px;
  7512. font-family:'ArialMT', 'Arial', sans-serif;
  7513. font-weight:400;
  7514. font-style:normal;
  7515. font-size:13px;
  7516. letter-spacing:normal;
  7517. color:#000000;
  7518. vertical-align:none;
  7519. text-align:left;
  7520. text-transform:none;
  7521. background-color:transparent;
  7522. border-color:transparent;
  7523. }
  7524. #u99501_input.disabled {
  7525. position:absolute;
  7526. left:0px;
  7527. top:0px;
  7528. width:227px;
  7529. height:25px;
  7530. padding:2px 2px 2px 2px;
  7531. font-family:'ArialMT', 'Arial', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:13px;
  7535. letter-spacing:normal;
  7536. color:#000000;
  7537. vertical-align:none;
  7538. text-align:left;
  7539. text-transform:none;
  7540. background-color:transparent;
  7541. border-color:transparent;
  7542. }
  7543. #u99501_div {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:0px;
  7547. top:0px;
  7548. width:227px;
  7549. height:25px;
  7550. background:inherit;
  7551. background-color:rgba(255, 255, 255, 1);
  7552. border:none;
  7553. border-radius:0px;
  7554. -moz-box-shadow:none;
  7555. -webkit-box-shadow:none;
  7556. box-shadow:none;
  7557. }
  7558. #u99501 {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:2168px;
  7562. top:-1241px;
  7563. width:227px;
  7564. height:25px;
  7565. display:flex;
  7566. }
  7567. #u99501 .text {
  7568. position:absolute;
  7569. align-self:center;
  7570. padding:2px 2px 2px 2px;
  7571. box-sizing:border-box;
  7572. width:100%;
  7573. }
  7574. #u99501_div.disabled {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:227px;
  7580. height:25px;
  7581. background:inherit;
  7582. background-color:rgba(240, 240, 240, 1);
  7583. border:none;
  7584. border-radius:0px;
  7585. -moz-box-shadow:none;
  7586. -webkit-box-shadow:none;
  7587. box-shadow:none;
  7588. }
  7589. #u99501.disabled {
  7590. }
  7591. #u99502 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:0px;
  7595. top:0px;
  7596. width:0px;
  7597. height:0px;
  7598. }
  7599. #u99503_div {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:0px;
  7603. top:0px;
  7604. width:200px;
  7605. height:1180px;
  7606. background:inherit;
  7607. background-color:rgba(255, 255, 255, 1);
  7608. border:none;
  7609. border-radius:0px;
  7610. -moz-box-shadow:none;
  7611. -webkit-box-shadow:none;
  7612. box-shadow:none;
  7613. }
  7614. #u99503 {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:1177px;
  7618. top:-1521px;
  7619. width:200px;
  7620. height:1180px;
  7621. display:flex;
  7622. }
  7623. #u99503 .text {
  7624. position:absolute;
  7625. align-self:center;
  7626. padding:2px 2px 2px 2px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u99503_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. visibility:hidden;
  7635. }
  7636. #u99504_div {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:0px;
  7640. top:0px;
  7641. width:200px;
  7642. height:60px;
  7643. background:inherit;
  7644. background-color:rgba(224, 231, 247, 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7651. font-weight:500;
  7652. font-style:normal;
  7653. font-size:18px;
  7654. }
  7655. #u99504 {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:1177px;
  7659. top:-1521px;
  7660. width:200px;
  7661. height:60px;
  7662. display:flex;
  7663. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7664. font-weight:500;
  7665. font-style:normal;
  7666. font-size:18px;
  7667. }
  7668. #u99504 .text {
  7669. position:absolute;
  7670. align-self:center;
  7671. padding:0px 0px 0px 20px;
  7672. box-sizing:border-box;
  7673. width:100%;
  7674. }
  7675. #u99504_text {
  7676. border-width:0px;
  7677. word-wrap:break-word;
  7678. text-transform:none;
  7679. }
  7680. #u99505_div {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:0px;
  7684. top:0px;
  7685. width:65px;
  7686. height:22px;
  7687. background:inherit;
  7688. background-color:rgba(255, 255, 255, 0);
  7689. border:none;
  7690. border-radius:0px;
  7691. -moz-box-shadow:none;
  7692. -webkit-box-shadow:none;
  7693. box-shadow:none;
  7694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7695. font-weight:400;
  7696. font-style:normal;
  7697. font-size:16px;
  7698. }
  7699. #u99505 {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:1200px;
  7703. top:-1087px;
  7704. width:65px;
  7705. height:22px;
  7706. display:flex;
  7707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7708. font-weight:400;
  7709. font-style:normal;
  7710. font-size:16px;
  7711. }
  7712. #u99505 .text {
  7713. position:absolute;
  7714. align-self:flex-start;
  7715. padding:0px 0px 0px 0px;
  7716. box-sizing:border-box;
  7717. width:100%;
  7718. }
  7719. #u99505_text {
  7720. border-width:0px;
  7721. white-space:nowrap;
  7722. text-transform:none;
  7723. }
  7724. #u99506_img {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:201px;
  7730. height:2px;
  7731. }
  7732. #u99506 {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:1177px;
  7736. top:-1140px;
  7737. width:200px;
  7738. height:1px;
  7739. display:flex;
  7740. }
  7741. #u99506 .text {
  7742. position:absolute;
  7743. align-self:center;
  7744. padding:2px 2px 2px 2px;
  7745. box-sizing:border-box;
  7746. width:100%;
  7747. }
  7748. #u99506_text {
  7749. border-width:0px;
  7750. word-wrap:break-word;
  7751. text-transform:none;
  7752. visibility:hidden;
  7753. }
  7754. #u99507_div {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:49px;
  7760. height:17px;
  7761. background:inherit;
  7762. background-color:rgba(255, 255, 255, 0);
  7763. border:none;
  7764. border-radius:0px;
  7765. -moz-box-shadow:none;
  7766. -webkit-box-shadow:none;
  7767. box-shadow:none;
  7768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:12px;
  7772. color:#AAAAAA;
  7773. }
  7774. #u99507 {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:1200px;
  7778. top:-1120px;
  7779. width:49px;
  7780. height:17px;
  7781. display:flex;
  7782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7783. font-weight:400;
  7784. font-style:normal;
  7785. font-size:12px;
  7786. color:#AAAAAA;
  7787. }
  7788. #u99507 .text {
  7789. position:absolute;
  7790. align-self:flex-start;
  7791. padding:0px 0px 0px 0px;
  7792. box-sizing:border-box;
  7793. width:100%;
  7794. }
  7795. #u99507_text {
  7796. border-width:0px;
  7797. white-space:nowrap;
  7798. text-transform:none;
  7799. }
  7800. #u99508_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:65px;
  7806. height:22px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 0);
  7809. border:none;
  7810. border-radius:0px;
  7811. -moz-box-shadow:none;
  7812. -webkit-box-shadow:none;
  7813. box-shadow:none;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:16px;
  7818. }
  7819. #u99508 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:1200px;
  7823. top:-1408px;
  7824. width:65px;
  7825. height:22px;
  7826. display:flex;
  7827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:16px;
  7831. }
  7832. #u99508 .text {
  7833. position:absolute;
  7834. align-self:flex-start;
  7835. padding:0px 0px 0px 0px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u99508_text {
  7840. border-width:0px;
  7841. white-space:nowrap;
  7842. text-transform:none;
  7843. }
  7844. #u99509_div {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:0px;
  7848. top:0px;
  7849. width:49px;
  7850. height:17px;
  7851. background:inherit;
  7852. background-color:rgba(255, 255, 255, 0);
  7853. border:none;
  7854. border-radius:0px;
  7855. -moz-box-shadow:none;
  7856. -webkit-box-shadow:none;
  7857. box-shadow:none;
  7858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7859. font-weight:400;
  7860. font-style:normal;
  7861. font-size:12px;
  7862. color:#AAAAAA;
  7863. }
  7864. #u99509 {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:1200px;
  7868. top:-1441px;
  7869. width:49px;
  7870. height:17px;
  7871. display:flex;
  7872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7873. font-weight:400;
  7874. font-style:normal;
  7875. font-size:12px;
  7876. color:#AAAAAA;
  7877. }
  7878. #u99509 .text {
  7879. position:absolute;
  7880. align-self:flex-start;
  7881. padding:0px 0px 0px 0px;
  7882. box-sizing:border-box;
  7883. width:100%;
  7884. }
  7885. #u99509_text {
  7886. border-width:0px;
  7887. white-space:nowrap;
  7888. text-transform:none;
  7889. }
  7890. #u99510_div {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:0px;
  7894. top:0px;
  7895. width:65px;
  7896. height:22px;
  7897. background:inherit;
  7898. background-color:rgba(255, 255, 255, 0);
  7899. border:none;
  7900. border-radius:0px;
  7901. -moz-box-shadow:none;
  7902. -webkit-box-shadow:none;
  7903. box-shadow:none;
  7904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7905. font-weight:400;
  7906. font-style:normal;
  7907. font-size:16px;
  7908. }
  7909. #u99510 {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:1200px;
  7913. top:-1366px;
  7914. width:65px;
  7915. height:22px;
  7916. display:flex;
  7917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7918. font-weight:400;
  7919. font-style:normal;
  7920. font-size:16px;
  7921. }
  7922. #u99510 .text {
  7923. position:absolute;
  7924. align-self:flex-start;
  7925. padding:0px 0px 0px 0px;
  7926. box-sizing:border-box;
  7927. width:100%;
  7928. }
  7929. #u99510_text {
  7930. border-width:0px;
  7931. white-space:nowrap;
  7932. text-transform:none;
  7933. }
  7934. #u99511_div {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:0px;
  7938. top:0px;
  7939. width:65px;
  7940. height:22px;
  7941. background:inherit;
  7942. background-color:rgba(255, 255, 255, 0);
  7943. border:none;
  7944. border-radius:0px;
  7945. -moz-box-shadow:none;
  7946. -webkit-box-shadow:none;
  7947. box-shadow:none;
  7948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7949. font-weight:400;
  7950. font-style:normal;
  7951. font-size:16px;
  7952. }
  7953. #u99511 {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:1200px;
  7957. top:-1324px;
  7958. width:65px;
  7959. height:22px;
  7960. display:flex;
  7961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:16px;
  7965. }
  7966. #u99511 .text {
  7967. position:absolute;
  7968. align-self:flex-start;
  7969. padding:0px 0px 0px 0px;
  7970. box-sizing:border-box;
  7971. width:100%;
  7972. }
  7973. #u99511_text {
  7974. border-width:0px;
  7975. white-space:nowrap;
  7976. text-transform:none;
  7977. }
  7978. #u99512_div {
  7979. border-width:0px;
  7980. position:absolute;
  7981. left:0px;
  7982. top:0px;
  7983. width:65px;
  7984. height:22px;
  7985. background:inherit;
  7986. background-color:rgba(255, 255, 255, 0);
  7987. border:none;
  7988. border-radius:0px;
  7989. -moz-box-shadow:none;
  7990. -webkit-box-shadow:none;
  7991. box-shadow:none;
  7992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7993. font-weight:400;
  7994. font-style:normal;
  7995. font-size:16px;
  7996. }
  7997. #u99512 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:1200px;
  8001. top:-1229px;
  8002. width:65px;
  8003. height:22px;
  8004. display:flex;
  8005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8006. font-weight:400;
  8007. font-style:normal;
  8008. font-size:16px;
  8009. }
  8010. #u99512 .text {
  8011. position:absolute;
  8012. align-self:flex-start;
  8013. padding:0px 0px 0px 0px;
  8014. box-sizing:border-box;
  8015. width:100%;
  8016. }
  8017. #u99512_text {
  8018. border-width:0px;
  8019. white-space:nowrap;
  8020. text-transform:none;
  8021. }
  8022. #u99513_img {
  8023. border-width:0px;
  8024. position:absolute;
  8025. left:0px;
  8026. top:0px;
  8027. width:201px;
  8028. height:2px;
  8029. }
  8030. #u99513 {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:1177px;
  8034. top:-1282px;
  8035. width:200px;
  8036. height:1px;
  8037. display:flex;
  8038. }
  8039. #u99513 .text {
  8040. position:absolute;
  8041. align-self:center;
  8042. padding:2px 2px 2px 2px;
  8043. box-sizing:border-box;
  8044. width:100%;
  8045. }
  8046. #u99513_text {
  8047. border-width:0px;
  8048. word-wrap:break-word;
  8049. text-transform:none;
  8050. visibility:hidden;
  8051. }
  8052. #u99514_div {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:0px;
  8056. top:0px;
  8057. width:49px;
  8058. height:17px;
  8059. background:inherit;
  8060. background-color:rgba(255, 255, 255, 0);
  8061. border:none;
  8062. border-radius:0px;
  8063. -moz-box-shadow:none;
  8064. -webkit-box-shadow:none;
  8065. box-shadow:none;
  8066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8067. font-weight:400;
  8068. font-style:normal;
  8069. font-size:12px;
  8070. color:#AAAAAA;
  8071. }
  8072. #u99514 {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:1200px;
  8076. top:-1262px;
  8077. width:49px;
  8078. height:17px;
  8079. display:flex;
  8080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:12px;
  8084. color:#AAAAAA;
  8085. }
  8086. #u99514 .text {
  8087. position:absolute;
  8088. align-self:flex-start;
  8089. padding:0px 0px 0px 0px;
  8090. box-sizing:border-box;
  8091. width:100%;
  8092. }
  8093. #u99514_text {
  8094. border-width:0px;
  8095. white-space:nowrap;
  8096. text-transform:none;
  8097. }
  8098. #u99515_div {
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:0px;
  8102. top:0px;
  8103. width:65px;
  8104. height:22px;
  8105. background:inherit;
  8106. background-color:rgba(255, 255, 255, 0);
  8107. border:none;
  8108. border-radius:0px;
  8109. -moz-box-shadow:none;
  8110. -webkit-box-shadow:none;
  8111. box-shadow:none;
  8112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8113. font-weight:400;
  8114. font-style:normal;
  8115. font-size:16px;
  8116. }
  8117. #u99515 {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:1200px;
  8121. top:-1187px;
  8122. width:65px;
  8123. height:22px;
  8124. display:flex;
  8125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8126. font-weight:400;
  8127. font-style:normal;
  8128. font-size:16px;
  8129. }
  8130. #u99515 .text {
  8131. position:absolute;
  8132. align-self:flex-start;
  8133. padding:0px 0px 0px 0px;
  8134. box-sizing:border-box;
  8135. width:100%;
  8136. }
  8137. #u99515_text {
  8138. border-width:0px;
  8139. white-space:nowrap;
  8140. text-transform:none;
  8141. }
  8142. #u99516_div {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:0px;
  8146. top:0px;
  8147. width:905px;
  8148. height:229px;
  8149. background:inherit;
  8150. background-color:rgba(255, 255, 255, 1);
  8151. box-sizing:border-box;
  8152. border-width:1px;
  8153. border-style:solid;
  8154. border-color:rgba(215, 215, 215, 1);
  8155. border-left:0px;
  8156. border-top:0px;
  8157. border-right:0px;
  8158. border-radius:0px;
  8159. border-bottom-right-radius:0px;
  8160. border-bottom-left-radius:0px;
  8161. -moz-box-shadow:none;
  8162. -webkit-box-shadow:none;
  8163. box-shadow:none;
  8164. }
  8165. #u99516 {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:1726px;
  8169. top:-1152px;
  8170. width:905px;
  8171. height:229px;
  8172. display:flex;
  8173. }
  8174. #u99516 .text {
  8175. position:absolute;
  8176. align-self:center;
  8177. padding:2px 2px 2px 2px;
  8178. box-sizing:border-box;
  8179. width:100%;
  8180. }
  8181. #u99516_text {
  8182. border-width:0px;
  8183. word-wrap:break-word;
  8184. text-transform:none;
  8185. visibility:hidden;
  8186. }
  8187. #u99517_div {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:0px;
  8191. top:0px;
  8192. width:154px;
  8193. height:30px;
  8194. background:inherit;
  8195. background-color:rgba(255, 255, 255, 0);
  8196. border:none;
  8197. border-left:0px;
  8198. border-top:0px;
  8199. border-right:0px;
  8200. border-radius:0px;
  8201. border-bottom-right-radius:0px;
  8202. border-bottom-left-radius:0px;
  8203. -moz-box-shadow:none;
  8204. -webkit-box-shadow:none;
  8205. box-shadow:none;
  8206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. font-size:18px;
  8210. color:#555555;
  8211. line-height:30px;
  8212. }
  8213. #u99517 {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:1726px;
  8217. top:-1142px;
  8218. width:154px;
  8219. height:30px;
  8220. display:flex;
  8221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8222. font-weight:400;
  8223. font-style:normal;
  8224. font-size:18px;
  8225. color:#555555;
  8226. line-height:30px;
  8227. }
  8228. #u99517 .text {
  8229. position:absolute;
  8230. align-self:flex-start;
  8231. padding:0px 0px 0px 0px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u99517_text {
  8236. border-width:0px;
  8237. white-space:nowrap;
  8238. text-transform:none;
  8239. }
  8240. #u99518_div {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:91px;
  8246. height:30px;
  8247. background:inherit;
  8248. background-color:rgba(255, 255, 255, 0);
  8249. border:none;
  8250. border-radius:0px;
  8251. -moz-box-shadow:none;
  8252. -webkit-box-shadow:none;
  8253. box-shadow:none;
  8254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8255. font-weight:400;
  8256. font-style:normal;
  8257. font-size:18px;
  8258. color:#555555;
  8259. line-height:30px;
  8260. }
  8261. #u99518 {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:1728px;
  8265. top:-1303px;
  8266. width:91px;
  8267. height:30px;
  8268. display:flex;
  8269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8270. font-weight:400;
  8271. font-style:normal;
  8272. font-size:18px;
  8273. color:#555555;
  8274. line-height:30px;
  8275. }
  8276. #u99518 .text {
  8277. position:absolute;
  8278. align-self:flex-start;
  8279. padding:0px 0px 0px 0px;
  8280. box-sizing:border-box;
  8281. width:100%;
  8282. }
  8283. #u99518_text {
  8284. border-width:0px;
  8285. white-space:nowrap;
  8286. text-transform:none;
  8287. }
  8288. #u99519_div {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:0px;
  8292. top:0px;
  8293. width:196px;
  8294. height:20px;
  8295. background:inherit;
  8296. background-color:rgba(255, 255, 255, 0);
  8297. border:none;
  8298. border-radius:0px;
  8299. -moz-box-shadow:none;
  8300. -webkit-box-shadow:none;
  8301. box-shadow:none;
  8302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8303. font-weight:400;
  8304. font-style:normal;
  8305. font-size:10px;
  8306. color:#7F7F7F;
  8307. line-height:20px;
  8308. }
  8309. #u99519 {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:1728px;
  8313. top:-1111px;
  8314. width:196px;
  8315. height:20px;
  8316. display:flex;
  8317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. font-size:10px;
  8321. color:#7F7F7F;
  8322. line-height:20px;
  8323. }
  8324. #u99519 .text {
  8325. position:absolute;
  8326. align-self:flex-start;
  8327. padding:0px 0px 0px 0px;
  8328. box-sizing:border-box;
  8329. width:100%;
  8330. }
  8331. #u99519_text {
  8332. border-width:0px;
  8333. white-space:nowrap;
  8334. text-transform:none;
  8335. }
  8336. #u99520_div {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:57px;
  8342. height:30px;
  8343. background:inherit;
  8344. background-color:rgba(255, 255, 255, 0);
  8345. border:none;
  8346. border-top:0px;
  8347. border-right:0px;
  8348. border-bottom:0px;
  8349. border-radius:0px;
  8350. border-top-left-radius:0px;
  8351. border-bottom-left-radius:0px;
  8352. -moz-box-shadow:none;
  8353. -webkit-box-shadow:none;
  8354. box-shadow:none;
  8355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8356. font-weight:400;
  8357. font-style:normal;
  8358. font-size:14px;
  8359. color:#1890FF;
  8360. }
  8361. #u99520 {
  8362. border-width:0px;
  8363. position:absolute;
  8364. left:2574px;
  8365. top:-1077px;
  8366. width:57px;
  8367. height:30px;
  8368. display:flex;
  8369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8370. font-weight:400;
  8371. font-style:normal;
  8372. font-size:14px;
  8373. color:#1890FF;
  8374. }
  8375. #u99520 .text {
  8376. position:absolute;
  8377. align-self:center;
  8378. padding:5px 0px 5px 0px;
  8379. box-sizing:border-box;
  8380. width:100%;
  8381. }
  8382. #u99520_text {
  8383. border-width:0px;
  8384. white-space:nowrap;
  8385. text-transform:none;
  8386. }
  8387. #u99521 {
  8388. border-width:0px;
  8389. position:absolute;
  8390. left:0px;
  8391. top:0px;
  8392. width:0px;
  8393. height:0px;
  8394. }
  8395. #u99522 {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:1728px;
  8399. top:-1047px;
  8400. width:903px;
  8401. height:90px;
  8402. }
  8403. #u99523_img {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:240px;
  8409. height:30px;
  8410. }
  8411. #u99523 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:0px;
  8415. top:0px;
  8416. width:240px;
  8417. height:30px;
  8418. display:flex;
  8419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8420. font-weight:400;
  8421. font-style:normal;
  8422. color:#FFFFFF;
  8423. }
  8424. #u99523 .text {
  8425. position:absolute;
  8426. align-self:center;
  8427. padding:2px 2px 2px 2px;
  8428. box-sizing:border-box;
  8429. width:100%;
  8430. }
  8431. #u99523_text {
  8432. border-width:0px;
  8433. word-wrap:break-word;
  8434. text-transform:none;
  8435. }
  8436. #u99524_img {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:0px;
  8440. top:0px;
  8441. width:96px;
  8442. height:30px;
  8443. }
  8444. #u99524 {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:240px;
  8448. top:0px;
  8449. width:96px;
  8450. height:30px;
  8451. display:flex;
  8452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8453. font-weight:400;
  8454. font-style:normal;
  8455. color:#FFFFFF;
  8456. }
  8457. #u99524 .text {
  8458. position:absolute;
  8459. align-self:center;
  8460. padding:2px 2px 2px 2px;
  8461. box-sizing:border-box;
  8462. width:100%;
  8463. }
  8464. #u99524_text {
  8465. border-width:0px;
  8466. word-wrap:break-word;
  8467. text-transform:none;
  8468. }
  8469. #u99525_img {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:96px;
  8475. height:30px;
  8476. }
  8477. #u99525 {
  8478. border-width:0px;
  8479. position:absolute;
  8480. left:336px;
  8481. top:0px;
  8482. width:96px;
  8483. height:30px;
  8484. display:flex;
  8485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8486. font-weight:400;
  8487. font-style:normal;
  8488. color:#FFFFFF;
  8489. }
  8490. #u99525 .text {
  8491. position:absolute;
  8492. align-self:center;
  8493. padding:2px 2px 2px 2px;
  8494. box-sizing:border-box;
  8495. width:100%;
  8496. }
  8497. #u99525_text {
  8498. border-width:0px;
  8499. word-wrap:break-word;
  8500. text-transform:none;
  8501. }
  8502. #u99526_img {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:240px;
  8508. height:30px;
  8509. }
  8510. #u99526 {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:432px;
  8514. top:0px;
  8515. width:240px;
  8516. height:30px;
  8517. display:flex;
  8518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8519. font-weight:400;
  8520. font-style:normal;
  8521. color:#FFFFFF;
  8522. }
  8523. #u99526 .text {
  8524. position:absolute;
  8525. align-self:center;
  8526. padding:2px 2px 2px 2px;
  8527. box-sizing:border-box;
  8528. width:100%;
  8529. }
  8530. #u99526_text {
  8531. border-width:0px;
  8532. word-wrap:break-word;
  8533. text-transform:none;
  8534. }
  8535. #u99527_img {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:0px;
  8539. top:0px;
  8540. width:115px;
  8541. height:30px;
  8542. }
  8543. #u99527 {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:672px;
  8547. top:0px;
  8548. width:115px;
  8549. height:30px;
  8550. display:flex;
  8551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8552. font-weight:400;
  8553. font-style:normal;
  8554. color:#FFFFFF;
  8555. }
  8556. #u99527 .text {
  8557. position:absolute;
  8558. align-self:center;
  8559. padding:2px 2px 2px 2px;
  8560. box-sizing:border-box;
  8561. width:100%;
  8562. }
  8563. #u99527_text {
  8564. border-width:0px;
  8565. word-wrap:break-word;
  8566. text-transform:none;
  8567. }
  8568. #u99528_img {
  8569. border-width:0px;
  8570. position:absolute;
  8571. left:0px;
  8572. top:0px;
  8573. width:116px;
  8574. height:30px;
  8575. }
  8576. #u99528 {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:787px;
  8580. top:0px;
  8581. width:116px;
  8582. height:30px;
  8583. display:flex;
  8584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8585. font-weight:400;
  8586. font-style:normal;
  8587. color:#FFFFFF;
  8588. }
  8589. #u99528 .text {
  8590. position:absolute;
  8591. align-self:center;
  8592. padding:2px 2px 2px 2px;
  8593. box-sizing:border-box;
  8594. width:100%;
  8595. }
  8596. #u99528_text {
  8597. border-width:0px;
  8598. word-wrap:break-word;
  8599. text-transform:none;
  8600. }
  8601. #u99529_img {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:0px;
  8605. top:0px;
  8606. width:240px;
  8607. height:30px;
  8608. }
  8609. #u99529 {
  8610. border-width:0px;
  8611. position:absolute;
  8612. left:0px;
  8613. top:30px;
  8614. width:240px;
  8615. height:30px;
  8616. display:flex;
  8617. }
  8618. #u99529 .text {
  8619. position:absolute;
  8620. align-self:center;
  8621. padding:2px 2px 2px 2px;
  8622. box-sizing:border-box;
  8623. width:100%;
  8624. }
  8625. #u99529_text {
  8626. border-width:0px;
  8627. word-wrap:break-word;
  8628. text-transform:none;
  8629. visibility:hidden;
  8630. }
  8631. #u99530_img {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:0px;
  8635. top:0px;
  8636. width:96px;
  8637. height:30px;
  8638. }
  8639. #u99530 {
  8640. border-width:0px;
  8641. position:absolute;
  8642. left:240px;
  8643. top:30px;
  8644. width:96px;
  8645. height:30px;
  8646. display:flex;
  8647. }
  8648. #u99530 .text {
  8649. position:absolute;
  8650. align-self:center;
  8651. padding:2px 2px 2px 2px;
  8652. box-sizing:border-box;
  8653. width:100%;
  8654. }
  8655. #u99530_text {
  8656. border-width:0px;
  8657. word-wrap:break-word;
  8658. text-transform:none;
  8659. visibility:hidden;
  8660. }
  8661. #u99531_img {
  8662. border-width:0px;
  8663. position:absolute;
  8664. left:0px;
  8665. top:0px;
  8666. width:96px;
  8667. height:30px;
  8668. }
  8669. #u99531 {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:336px;
  8673. top:30px;
  8674. width:96px;
  8675. height:30px;
  8676. display:flex;
  8677. }
  8678. #u99531 .text {
  8679. position:absolute;
  8680. align-self:center;
  8681. padding:2px 2px 2px 2px;
  8682. box-sizing:border-box;
  8683. width:100%;
  8684. }
  8685. #u99531_text {
  8686. border-width:0px;
  8687. word-wrap:break-word;
  8688. text-transform:none;
  8689. visibility:hidden;
  8690. }
  8691. #u99532_img {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:240px;
  8697. height:30px;
  8698. }
  8699. #u99532 {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:432px;
  8703. top:30px;
  8704. width:240px;
  8705. height:30px;
  8706. display:flex;
  8707. }
  8708. #u99532 .text {
  8709. position:absolute;
  8710. align-self:center;
  8711. padding:2px 2px 2px 2px;
  8712. box-sizing:border-box;
  8713. width:100%;
  8714. }
  8715. #u99532_text {
  8716. border-width:0px;
  8717. word-wrap:break-word;
  8718. text-transform:none;
  8719. visibility:hidden;
  8720. }
  8721. #u99533_img {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:115px;
  8727. height:30px;
  8728. }
  8729. #u99533 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:672px;
  8733. top:30px;
  8734. width:115px;
  8735. height:30px;
  8736. display:flex;
  8737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. color:#AAAAAA;
  8741. }
  8742. #u99533 .text {
  8743. position:absolute;
  8744. align-self:center;
  8745. padding:2px 2px 2px 2px;
  8746. box-sizing:border-box;
  8747. width:100%;
  8748. }
  8749. #u99533_text {
  8750. border-width:0px;
  8751. word-wrap:break-word;
  8752. text-transform:none;
  8753. visibility:hidden;
  8754. }
  8755. #u99534_img {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:0px;
  8759. top:0px;
  8760. width:116px;
  8761. height:30px;
  8762. }
  8763. #u99534 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:787px;
  8767. top:30px;
  8768. width:116px;
  8769. height:30px;
  8770. display:flex;
  8771. color:#1890FF;
  8772. }
  8773. #u99534 .text {
  8774. position:absolute;
  8775. align-self:center;
  8776. padding:2px 2px 2px 2px;
  8777. box-sizing:border-box;
  8778. width:100%;
  8779. }
  8780. #u99534_text {
  8781. border-width:0px;
  8782. word-wrap:break-word;
  8783. text-transform:none;
  8784. }
  8785. #u99535_img {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:0px;
  8789. top:0px;
  8790. width:240px;
  8791. height:30px;
  8792. }
  8793. #u99535 {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:0px;
  8797. top:60px;
  8798. width:240px;
  8799. height:30px;
  8800. display:flex;
  8801. }
  8802. #u99535 .text {
  8803. position:absolute;
  8804. align-self:center;
  8805. padding:2px 2px 2px 2px;
  8806. box-sizing:border-box;
  8807. width:100%;
  8808. }
  8809. #u99535_text {
  8810. border-width:0px;
  8811. word-wrap:break-word;
  8812. text-transform:none;
  8813. visibility:hidden;
  8814. }
  8815. #u99536_img {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:0px;
  8819. top:0px;
  8820. width:96px;
  8821. height:30px;
  8822. }
  8823. #u99536 {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:240px;
  8827. top:60px;
  8828. width:96px;
  8829. height:30px;
  8830. display:flex;
  8831. }
  8832. #u99536 .text {
  8833. position:absolute;
  8834. align-self:center;
  8835. padding:2px 2px 2px 2px;
  8836. box-sizing:border-box;
  8837. width:100%;
  8838. }
  8839. #u99536_text {
  8840. border-width:0px;
  8841. word-wrap:break-word;
  8842. text-transform:none;
  8843. visibility:hidden;
  8844. }
  8845. #u99537_img {
  8846. border-width:0px;
  8847. position:absolute;
  8848. left:0px;
  8849. top:0px;
  8850. width:96px;
  8851. height:30px;
  8852. }
  8853. #u99537 {
  8854. border-width:0px;
  8855. position:absolute;
  8856. left:336px;
  8857. top:60px;
  8858. width:96px;
  8859. height:30px;
  8860. display:flex;
  8861. }
  8862. #u99537 .text {
  8863. position:absolute;
  8864. align-self:center;
  8865. padding:2px 2px 2px 2px;
  8866. box-sizing:border-box;
  8867. width:100%;
  8868. }
  8869. #u99537_text {
  8870. border-width:0px;
  8871. word-wrap:break-word;
  8872. text-transform:none;
  8873. visibility:hidden;
  8874. }
  8875. #u99538_img {
  8876. border-width:0px;
  8877. position:absolute;
  8878. left:0px;
  8879. top:0px;
  8880. width:240px;
  8881. height:30px;
  8882. }
  8883. #u99538 {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:432px;
  8887. top:60px;
  8888. width:240px;
  8889. height:30px;
  8890. display:flex;
  8891. }
  8892. #u99538 .text {
  8893. position:absolute;
  8894. align-self:center;
  8895. padding:2px 2px 2px 2px;
  8896. box-sizing:border-box;
  8897. width:100%;
  8898. }
  8899. #u99538_text {
  8900. border-width:0px;
  8901. word-wrap:break-word;
  8902. text-transform:none;
  8903. visibility:hidden;
  8904. }
  8905. #u99539_img {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:0px;
  8909. top:0px;
  8910. width:115px;
  8911. height:30px;
  8912. }
  8913. #u99539 {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:672px;
  8917. top:60px;
  8918. width:115px;
  8919. height:30px;
  8920. display:flex;
  8921. }
  8922. #u99539 .text {
  8923. position:absolute;
  8924. align-self:center;
  8925. padding:2px 2px 2px 2px;
  8926. box-sizing:border-box;
  8927. width:100%;
  8928. }
  8929. #u99539_text {
  8930. border-width:0px;
  8931. word-wrap:break-word;
  8932. text-transform:none;
  8933. visibility:hidden;
  8934. }
  8935. #u99540_img {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:0px;
  8939. top:0px;
  8940. width:116px;
  8941. height:30px;
  8942. }
  8943. #u99540 {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:787px;
  8947. top:60px;
  8948. width:116px;
  8949. height:30px;
  8950. display:flex;
  8951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8952. font-weight:400;
  8953. font-style:normal;
  8954. color:#1890FF;
  8955. }
  8956. #u99540 .text {
  8957. position:absolute;
  8958. align-self:center;
  8959. padding:2px 2px 2px 2px;
  8960. box-sizing:border-box;
  8961. width:100%;
  8962. }
  8963. #u99540_text {
  8964. border-width:0px;
  8965. word-wrap:break-word;
  8966. text-transform:none;
  8967. }
  8968. #u99541_input {
  8969. position:absolute;
  8970. left:0px;
  8971. top:0px;
  8972. width:83px;
  8973. height:24px;
  8974. padding:2px 2px 2px 2px;
  8975. font-family:'ArialMT', 'Arial', sans-serif;
  8976. font-weight:400;
  8977. font-style:normal;
  8978. font-size:13px;
  8979. letter-spacing:normal;
  8980. color:#000000;
  8981. vertical-align:none;
  8982. text-align:left;
  8983. text-transform:none;
  8984. background-color:transparent;
  8985. border-color:transparent;
  8986. }
  8987. #u99541_input.disabled {
  8988. position:absolute;
  8989. left:0px;
  8990. top:0px;
  8991. width:83px;
  8992. height:24px;
  8993. padding:2px 2px 2px 2px;
  8994. font-family:'ArialMT', 'Arial', sans-serif;
  8995. font-weight:400;
  8996. font-style:normal;
  8997. font-size:13px;
  8998. letter-spacing:normal;
  8999. color:#000000;
  9000. vertical-align:none;
  9001. text-align:left;
  9002. text-transform:none;
  9003. background-color:transparent;
  9004. border-color:transparent;
  9005. }
  9006. #u99541_div {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:0px;
  9010. top:0px;
  9011. width:83px;
  9012. height:24px;
  9013. background:inherit;
  9014. background-color:rgba(255, 255, 255, 1);
  9015. border:none;
  9016. border-radius:0px;
  9017. -moz-box-shadow:none;
  9018. -webkit-box-shadow:none;
  9019. box-shadow:none;
  9020. }
  9021. #u99541 {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:2072px;
  9025. top:-1015px;
  9026. width:83px;
  9027. height:24px;
  9028. display:flex;
  9029. }
  9030. #u99541 .text {
  9031. position:absolute;
  9032. align-self:flex-start;
  9033. padding:2px 2px 2px 2px;
  9034. box-sizing:border-box;
  9035. width:100%;
  9036. }
  9037. #u99541_div.disabled {
  9038. border-width:0px;
  9039. position:absolute;
  9040. left:0px;
  9041. top:0px;
  9042. width:83px;
  9043. height:24px;
  9044. background:inherit;
  9045. background-color:rgba(240, 240, 240, 1);
  9046. border:none;
  9047. border-radius:0px;
  9048. -moz-box-shadow:none;
  9049. -webkit-box-shadow:none;
  9050. box-shadow:none;
  9051. }
  9052. #u99541.disabled {
  9053. }
  9054. .u99541_input_option {
  9055. }
  9056. #u99542_input {
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:225px;
  9061. height:25px;
  9062. padding:2px 2px 2px 2px;
  9063. font-family:'ArialMT', 'Arial', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:13px;
  9067. letter-spacing:normal;
  9068. color:#000000;
  9069. vertical-align:none;
  9070. text-align:left;
  9071. text-transform:none;
  9072. background-color:transparent;
  9073. border-color:transparent;
  9074. }
  9075. #u99542_input.disabled {
  9076. position:absolute;
  9077. left:0px;
  9078. top:0px;
  9079. width:225px;
  9080. height:25px;
  9081. padding:2px 2px 2px 2px;
  9082. font-family:'ArialMT', 'Arial', sans-serif;
  9083. font-weight:400;
  9084. font-style:normal;
  9085. font-size:13px;
  9086. letter-spacing:normal;
  9087. color:#000000;
  9088. vertical-align:none;
  9089. text-align:left;
  9090. text-transform:none;
  9091. background-color:transparent;
  9092. border-color:transparent;
  9093. }
  9094. #u99542_div {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:0px;
  9098. top:0px;
  9099. width:225px;
  9100. height:25px;
  9101. background:inherit;
  9102. background-color:rgba(255, 255, 255, 1);
  9103. border:none;
  9104. border-radius:0px;
  9105. -moz-box-shadow:none;
  9106. -webkit-box-shadow:none;
  9107. box-shadow:none;
  9108. }
  9109. #u99542 {
  9110. border-width:0px;
  9111. position:absolute;
  9112. left:1736px;
  9113. top:-1016px;
  9114. width:225px;
  9115. height:25px;
  9116. display:flex;
  9117. }
  9118. #u99542 .text {
  9119. position:absolute;
  9120. align-self:center;
  9121. padding:2px 2px 2px 2px;
  9122. box-sizing:border-box;
  9123. width:100%;
  9124. }
  9125. #u99542_div.disabled {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:0px;
  9129. top:0px;
  9130. width:225px;
  9131. height:25px;
  9132. background:inherit;
  9133. background-color:rgba(240, 240, 240, 1);
  9134. border:none;
  9135. border-radius:0px;
  9136. -moz-box-shadow:none;
  9137. -webkit-box-shadow:none;
  9138. box-shadow:none;
  9139. }
  9140. #u99542.disabled {
  9141. }
  9142. #u99543_input {
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:85px;
  9147. height:24px;
  9148. padding:2px 2px 2px 2px;
  9149. font-family:'ArialMT', 'Arial', sans-serif;
  9150. font-weight:400;
  9151. font-style:normal;
  9152. font-size:13px;
  9153. letter-spacing:normal;
  9154. color:#000000;
  9155. vertical-align:none;
  9156. text-align:left;
  9157. text-transform:none;
  9158. background-color:transparent;
  9159. border-color:transparent;
  9160. }
  9161. #u99543_input.disabled {
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:85px;
  9166. height:24px;
  9167. padding:2px 2px 2px 2px;
  9168. font-family:'ArialMT', 'Arial', sans-serif;
  9169. font-weight:400;
  9170. font-style:normal;
  9171. font-size:13px;
  9172. letter-spacing:normal;
  9173. color:#000000;
  9174. vertical-align:none;
  9175. text-align:left;
  9176. text-transform:none;
  9177. background-color:transparent;
  9178. border-color:transparent;
  9179. }
  9180. #u99543_div {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:0px;
  9184. top:0px;
  9185. width:85px;
  9186. height:24px;
  9187. background:inherit;
  9188. background-color:rgba(255, 255, 255, 1);
  9189. border:none;
  9190. border-radius:0px;
  9191. -moz-box-shadow:none;
  9192. -webkit-box-shadow:none;
  9193. box-shadow:none;
  9194. }
  9195. #u99543 {
  9196. border-width:0px;
  9197. position:absolute;
  9198. left:1974px;
  9199. top:-1016px;
  9200. width:85px;
  9201. height:24px;
  9202. display:flex;
  9203. }
  9204. #u99543 .text {
  9205. position:absolute;
  9206. align-self:flex-start;
  9207. padding:2px 2px 2px 2px;
  9208. box-sizing:border-box;
  9209. width:100%;
  9210. }
  9211. #u99543_div.disabled {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:0px;
  9215. top:0px;
  9216. width:85px;
  9217. height:24px;
  9218. background:inherit;
  9219. background-color:rgba(240, 240, 240, 1);
  9220. border:none;
  9221. border-radius:0px;
  9222. -moz-box-shadow:none;
  9223. -webkit-box-shadow:none;
  9224. box-shadow:none;
  9225. }
  9226. #u99543.disabled {
  9227. }
  9228. .u99543_input_option {
  9229. }
  9230. #u99544_input {
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:227px;
  9235. height:25px;
  9236. padding:2px 2px 2px 2px;
  9237. font-family:'ArialMT', 'Arial', sans-serif;
  9238. font-weight:400;
  9239. font-style:normal;
  9240. font-size:13px;
  9241. letter-spacing:normal;
  9242. color:#000000;
  9243. vertical-align:none;
  9244. text-align:left;
  9245. text-transform:none;
  9246. background-color:transparent;
  9247. border-color:transparent;
  9248. }
  9249. #u99544_input.disabled {
  9250. position:absolute;
  9251. left:0px;
  9252. top:0px;
  9253. width:227px;
  9254. height:25px;
  9255. padding:2px 2px 2px 2px;
  9256. font-family:'ArialMT', 'Arial', sans-serif;
  9257. font-weight:400;
  9258. font-style:normal;
  9259. font-size:13px;
  9260. letter-spacing:normal;
  9261. color:#000000;
  9262. vertical-align:none;
  9263. text-align:left;
  9264. text-transform:none;
  9265. background-color:transparent;
  9266. border-color:transparent;
  9267. }
  9268. #u99544_div {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:0px;
  9272. top:0px;
  9273. width:227px;
  9274. height:25px;
  9275. background:inherit;
  9276. background-color:rgba(255, 255, 255, 1);
  9277. border:none;
  9278. border-radius:0px;
  9279. -moz-box-shadow:none;
  9280. -webkit-box-shadow:none;
  9281. box-shadow:none;
  9282. }
  9283. #u99544 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:2168px;
  9287. top:-1015px;
  9288. width:227px;
  9289. height:25px;
  9290. display:flex;
  9291. }
  9292. #u99544 .text {
  9293. position:absolute;
  9294. align-self:center;
  9295. padding:2px 2px 2px 2px;
  9296. box-sizing:border-box;
  9297. width:100%;
  9298. }
  9299. #u99544_div.disabled {
  9300. border-width:0px;
  9301. position:absolute;
  9302. left:0px;
  9303. top:0px;
  9304. width:227px;
  9305. height:25px;
  9306. background:inherit;
  9307. background-color:rgba(240, 240, 240, 1);
  9308. border:none;
  9309. border-radius:0px;
  9310. -moz-box-shadow:none;
  9311. -webkit-box-shadow:none;
  9312. box-shadow:none;
  9313. }
  9314. #u99544.disabled {
  9315. }
  9316. #u99545_div {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:0px;
  9320. top:0px;
  9321. width:136px;
  9322. height:30px;
  9323. background:inherit;
  9324. background-color:rgba(255, 255, 255, 0);
  9325. border:none;
  9326. border-radius:0px;
  9327. -moz-box-shadow:none;
  9328. -webkit-box-shadow:none;
  9329. box-shadow:none;
  9330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9331. font-weight:400;
  9332. font-style:normal;
  9333. font-size:18px;
  9334. color:#555555;
  9335. line-height:30px;
  9336. }
  9337. #u99545 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:1728px;
  9341. top:-1077px;
  9342. width:136px;
  9343. height:30px;
  9344. display:flex;
  9345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:18px;
  9349. color:#555555;
  9350. line-height:30px;
  9351. }
  9352. #u99545 .text {
  9353. position:absolute;
  9354. align-self:flex-start;
  9355. padding:0px 0px 0px 0px;
  9356. box-sizing:border-box;
  9357. width:100%;
  9358. }
  9359. #u99545_text {
  9360. border-width:0px;
  9361. white-space:nowrap;
  9362. text-transform:none;
  9363. }
  9364. #u99546_input {
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:105px;
  9369. height:24px;
  9370. padding:2px 2px 2px 2px;
  9371. font-family:'ArialMT', 'Arial', sans-serif;
  9372. font-weight:400;
  9373. font-style:normal;
  9374. font-size:13px;
  9375. letter-spacing:normal;
  9376. color:#000000;
  9377. vertical-align:none;
  9378. text-align:left;
  9379. text-transform:none;
  9380. background-color:transparent;
  9381. border-color:transparent;
  9382. }
  9383. #u99546_input.disabled {
  9384. position:absolute;
  9385. left:0px;
  9386. top:0px;
  9387. width:105px;
  9388. height:24px;
  9389. padding:2px 2px 2px 2px;
  9390. font-family:'ArialMT', 'Arial', sans-serif;
  9391. font-weight:400;
  9392. font-style:normal;
  9393. font-size:13px;
  9394. letter-spacing:normal;
  9395. color:#000000;
  9396. vertical-align:none;
  9397. text-align:left;
  9398. text-transform:none;
  9399. background-color:transparent;
  9400. border-color:transparent;
  9401. }
  9402. #u99546_div {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:0px;
  9406. top:0px;
  9407. width:105px;
  9408. height:24px;
  9409. background:inherit;
  9410. background-color:rgba(255, 255, 255, 1);
  9411. border:none;
  9412. border-radius:0px;
  9413. -moz-box-shadow:none;
  9414. -webkit-box-shadow:none;
  9415. box-shadow:none;
  9416. }
  9417. #u99546 {
  9418. border-width:0px;
  9419. position:absolute;
  9420. left:2406px;
  9421. top:-1015px;
  9422. width:105px;
  9423. height:24px;
  9424. display:flex;
  9425. }
  9426. #u99546 .text {
  9427. position:absolute;
  9428. align-self:flex-start;
  9429. padding:2px 2px 2px 2px;
  9430. box-sizing:border-box;
  9431. width:100%;
  9432. }
  9433. #u99546_div.disabled {
  9434. border-width:0px;
  9435. position:absolute;
  9436. left:0px;
  9437. top:0px;
  9438. width:105px;
  9439. height:24px;
  9440. background:inherit;
  9441. background-color:rgba(240, 240, 240, 1);
  9442. border:none;
  9443. border-radius:0px;
  9444. -moz-box-shadow:none;
  9445. -webkit-box-shadow:none;
  9446. box-shadow:none;
  9447. }
  9448. #u99546.disabled {
  9449. }
  9450. .u99546_input_option {
  9451. }
  9452. #u99547_div {
  9453. border-width:0px;
  9454. position:absolute;
  9455. left:0px;
  9456. top:0px;
  9457. width:905px;
  9458. height:229px;
  9459. background:inherit;
  9460. background-color:rgba(255, 255, 255, 1);
  9461. box-sizing:border-box;
  9462. border-width:1px;
  9463. border-style:solid;
  9464. border-color:rgba(215, 215, 215, 1);
  9465. border-left:0px;
  9466. border-top:0px;
  9467. border-right:0px;
  9468. border-radius:0px;
  9469. border-bottom-right-radius:0px;
  9470. border-bottom-left-radius:0px;
  9471. -moz-box-shadow:none;
  9472. -webkit-box-shadow:none;
  9473. box-shadow:none;
  9474. }
  9475. #u99547 {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:1726px;
  9479. top:-923px;
  9480. width:905px;
  9481. height:229px;
  9482. display:flex;
  9483. }
  9484. #u99547 .text {
  9485. position:absolute;
  9486. align-self:center;
  9487. padding:2px 2px 2px 2px;
  9488. box-sizing:border-box;
  9489. width:100%;
  9490. }
  9491. #u99547_text {
  9492. border-width:0px;
  9493. word-wrap:break-word;
  9494. text-transform:none;
  9495. visibility:hidden;
  9496. }
  9497. #u99548_div {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:0px;
  9501. top:0px;
  9502. width:109px;
  9503. height:30px;
  9504. background:inherit;
  9505. background-color:rgba(255, 255, 255, 0);
  9506. border:none;
  9507. border-left:0px;
  9508. border-top:0px;
  9509. border-right:0px;
  9510. border-radius:0px;
  9511. border-bottom-right-radius:0px;
  9512. border-bottom-left-radius:0px;
  9513. -moz-box-shadow:none;
  9514. -webkit-box-shadow:none;
  9515. box-shadow:none;
  9516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9517. font-weight:400;
  9518. font-style:normal;
  9519. font-size:18px;
  9520. color:#555555;
  9521. line-height:30px;
  9522. }
  9523. #u99548 {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:1726px;
  9527. top:-913px;
  9528. width:109px;
  9529. height:30px;
  9530. display:flex;
  9531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9532. font-weight:400;
  9533. font-style:normal;
  9534. font-size:18px;
  9535. color:#555555;
  9536. line-height:30px;
  9537. }
  9538. #u99548 .text {
  9539. position:absolute;
  9540. align-self:flex-start;
  9541. padding:0px 0px 0px 0px;
  9542. box-sizing:border-box;
  9543. width:100%;
  9544. }
  9545. #u99548_text {
  9546. border-width:0px;
  9547. white-space:nowrap;
  9548. text-transform:none;
  9549. }
  9550. #u99549_div {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:0px;
  9554. top:0px;
  9555. width:121px;
  9556. height:20px;
  9557. background:inherit;
  9558. background-color:rgba(255, 255, 255, 0);
  9559. border:none;
  9560. border-radius:0px;
  9561. -moz-box-shadow:none;
  9562. -webkit-box-shadow:none;
  9563. box-shadow:none;
  9564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9565. font-weight:400;
  9566. font-style:normal;
  9567. font-size:10px;
  9568. color:#7F7F7F;
  9569. line-height:20px;
  9570. }
  9571. #u99549 {
  9572. border-width:0px;
  9573. position:absolute;
  9574. left:1728px;
  9575. top:-882px;
  9576. width:121px;
  9577. height:20px;
  9578. display:flex;
  9579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9580. font-weight:400;
  9581. font-style:normal;
  9582. font-size:10px;
  9583. color:#7F7F7F;
  9584. line-height:20px;
  9585. }
  9586. #u99549 .text {
  9587. position:absolute;
  9588. align-self:flex-start;
  9589. padding:0px 0px 0px 0px;
  9590. box-sizing:border-box;
  9591. width:100%;
  9592. }
  9593. #u99549_text {
  9594. border-width:0px;
  9595. white-space:nowrap;
  9596. text-transform:none;
  9597. }
  9598. #u99550_div {
  9599. border-width:0px;
  9600. position:absolute;
  9601. left:0px;
  9602. top:0px;
  9603. width:57px;
  9604. height:30px;
  9605. background:inherit;
  9606. background-color:rgba(255, 255, 255, 0);
  9607. border:none;
  9608. border-top:0px;
  9609. border-right:0px;
  9610. border-bottom:0px;
  9611. border-radius:0px;
  9612. border-top-left-radius:0px;
  9613. border-bottom-left-radius:0px;
  9614. -moz-box-shadow:none;
  9615. -webkit-box-shadow:none;
  9616. box-shadow:none;
  9617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9618. font-weight:400;
  9619. font-style:normal;
  9620. font-size:14px;
  9621. color:#1890FF;
  9622. }
  9623. #u99550 {
  9624. border-width:0px;
  9625. position:absolute;
  9626. left:2574px;
  9627. top:-848px;
  9628. width:57px;
  9629. height:30px;
  9630. display:flex;
  9631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9632. font-weight:400;
  9633. font-style:normal;
  9634. font-size:14px;
  9635. color:#1890FF;
  9636. }
  9637. #u99550 .text {
  9638. position:absolute;
  9639. align-self:center;
  9640. padding:5px 0px 5px 0px;
  9641. box-sizing:border-box;
  9642. width:100%;
  9643. }
  9644. #u99550_text {
  9645. border-width:0px;
  9646. white-space:nowrap;
  9647. text-transform:none;
  9648. }
  9649. #u99551 {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:0px;
  9653. top:0px;
  9654. width:0px;
  9655. height:0px;
  9656. }
  9657. #u99552 {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:1728px;
  9661. top:-818px;
  9662. width:903px;
  9663. height:90px;
  9664. }
  9665. #u99553_img {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:275px;
  9671. height:30px;
  9672. }
  9673. #u99553 {
  9674. border-width:0px;
  9675. position:absolute;
  9676. left:0px;
  9677. top:0px;
  9678. width:275px;
  9679. height:30px;
  9680. display:flex;
  9681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9682. font-weight:400;
  9683. font-style:normal;
  9684. color:#FFFFFF;
  9685. }
  9686. #u99553 .text {
  9687. position:absolute;
  9688. align-self:center;
  9689. padding:2px 2px 2px 2px;
  9690. box-sizing:border-box;
  9691. width:100%;
  9692. }
  9693. #u99553_text {
  9694. border-width:0px;
  9695. word-wrap:break-word;
  9696. text-transform:none;
  9697. }
  9698. #u99554_img {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:0px;
  9702. top:0px;
  9703. width:110px;
  9704. height:30px;
  9705. }
  9706. #u99554 {
  9707. border-width:0px;
  9708. position:absolute;
  9709. left:275px;
  9710. top:0px;
  9711. width:110px;
  9712. height:30px;
  9713. display:flex;
  9714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9715. font-weight:400;
  9716. font-style:normal;
  9717. color:#FFFFFF;
  9718. }
  9719. #u99554 .text {
  9720. position:absolute;
  9721. align-self:center;
  9722. padding:2px 2px 2px 2px;
  9723. box-sizing:border-box;
  9724. width:100%;
  9725. }
  9726. #u99554_text {
  9727. border-width:0px;
  9728. word-wrap:break-word;
  9729. text-transform:none;
  9730. }
  9731. #u99555_img {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:0px;
  9735. top:0px;
  9736. width:110px;
  9737. height:30px;
  9738. }
  9739. #u99555 {
  9740. border-width:0px;
  9741. position:absolute;
  9742. left:385px;
  9743. top:0px;
  9744. width:110px;
  9745. height:30px;
  9746. display:flex;
  9747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9748. font-weight:400;
  9749. font-style:normal;
  9750. color:#FFFFFF;
  9751. }
  9752. #u99555 .text {
  9753. position:absolute;
  9754. align-self:center;
  9755. padding:2px 2px 2px 2px;
  9756. box-sizing:border-box;
  9757. width:100%;
  9758. }
  9759. #u99555_text {
  9760. border-width:0px;
  9761. word-wrap:break-word;
  9762. text-transform:none;
  9763. }
  9764. #u99556_img {
  9765. border-width:0px;
  9766. position:absolute;
  9767. left:0px;
  9768. top:0px;
  9769. width:275px;
  9770. height:30px;
  9771. }
  9772. #u99556 {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:495px;
  9776. top:0px;
  9777. width:275px;
  9778. height:30px;
  9779. display:flex;
  9780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9781. font-weight:400;
  9782. font-style:normal;
  9783. color:#FFFFFF;
  9784. }
  9785. #u99556 .text {
  9786. position:absolute;
  9787. align-self:center;
  9788. padding:2px 2px 2px 2px;
  9789. box-sizing:border-box;
  9790. width:100%;
  9791. }
  9792. #u99556_text {
  9793. border-width:0px;
  9794. word-wrap:break-word;
  9795. text-transform:none;
  9796. }
  9797. #u99557_img {
  9798. border-width:0px;
  9799. position:absolute;
  9800. left:0px;
  9801. top:0px;
  9802. width:133px;
  9803. height:30px;
  9804. }
  9805. #u99557 {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:770px;
  9809. top:0px;
  9810. width:133px;
  9811. height:30px;
  9812. display:flex;
  9813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9814. font-weight:400;
  9815. font-style:normal;
  9816. color:#FFFFFF;
  9817. }
  9818. #u99557 .text {
  9819. position:absolute;
  9820. align-self:center;
  9821. padding:2px 2px 2px 2px;
  9822. box-sizing:border-box;
  9823. width:100%;
  9824. }
  9825. #u99557_text {
  9826. border-width:0px;
  9827. word-wrap:break-word;
  9828. text-transform:none;
  9829. }
  9830. #u99558_img {
  9831. border-width:0px;
  9832. position:absolute;
  9833. left:0px;
  9834. top:0px;
  9835. width:275px;
  9836. height:30px;
  9837. }
  9838. #u99558 {
  9839. border-width:0px;
  9840. position:absolute;
  9841. left:0px;
  9842. top:30px;
  9843. width:275px;
  9844. height:30px;
  9845. display:flex;
  9846. }
  9847. #u99558 .text {
  9848. position:absolute;
  9849. align-self:center;
  9850. padding:2px 2px 2px 2px;
  9851. box-sizing:border-box;
  9852. width:100%;
  9853. }
  9854. #u99558_text {
  9855. border-width:0px;
  9856. word-wrap:break-word;
  9857. text-transform:none;
  9858. visibility:hidden;
  9859. }
  9860. #u99559_img {
  9861. border-width:0px;
  9862. position:absolute;
  9863. left:0px;
  9864. top:0px;
  9865. width:110px;
  9866. height:30px;
  9867. }
  9868. #u99559 {
  9869. border-width:0px;
  9870. position:absolute;
  9871. left:275px;
  9872. top:30px;
  9873. width:110px;
  9874. height:30px;
  9875. display:flex;
  9876. }
  9877. #u99559 .text {
  9878. position:absolute;
  9879. align-self:center;
  9880. padding:2px 2px 2px 2px;
  9881. box-sizing:border-box;
  9882. width:100%;
  9883. }
  9884. #u99559_text {
  9885. border-width:0px;
  9886. word-wrap:break-word;
  9887. text-transform:none;
  9888. visibility:hidden;
  9889. }
  9890. #u99560_img {
  9891. border-width:0px;
  9892. position:absolute;
  9893. left:0px;
  9894. top:0px;
  9895. width:110px;
  9896. height:30px;
  9897. }
  9898. #u99560 {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:385px;
  9902. top:30px;
  9903. width:110px;
  9904. height:30px;
  9905. display:flex;
  9906. }
  9907. #u99560 .text {
  9908. position:absolute;
  9909. align-self:center;
  9910. padding:2px 2px 2px 2px;
  9911. box-sizing:border-box;
  9912. width:100%;
  9913. }
  9914. #u99560_text {
  9915. border-width:0px;
  9916. word-wrap:break-word;
  9917. text-transform:none;
  9918. visibility:hidden;
  9919. }
  9920. #u99561_img {
  9921. border-width:0px;
  9922. position:absolute;
  9923. left:0px;
  9924. top:0px;
  9925. width:275px;
  9926. height:30px;
  9927. }
  9928. #u99561 {
  9929. border-width:0px;
  9930. position:absolute;
  9931. left:495px;
  9932. top:30px;
  9933. width:275px;
  9934. height:30px;
  9935. display:flex;
  9936. }
  9937. #u99561 .text {
  9938. position:absolute;
  9939. align-self:center;
  9940. padding:2px 2px 2px 2px;
  9941. box-sizing:border-box;
  9942. width:100%;
  9943. }
  9944. #u99561_text {
  9945. border-width:0px;
  9946. word-wrap:break-word;
  9947. text-transform:none;
  9948. visibility:hidden;
  9949. }
  9950. #u99562_img {
  9951. border-width:0px;
  9952. position:absolute;
  9953. left:0px;
  9954. top:0px;
  9955. width:133px;
  9956. height:30px;
  9957. }
  9958. #u99562 {
  9959. border-width:0px;
  9960. position:absolute;
  9961. left:770px;
  9962. top:30px;
  9963. width:133px;
  9964. height:30px;
  9965. display:flex;
  9966. color:#1890FF;
  9967. }
  9968. #u99562 .text {
  9969. position:absolute;
  9970. align-self:center;
  9971. padding:2px 2px 2px 2px;
  9972. box-sizing:border-box;
  9973. width:100%;
  9974. }
  9975. #u99562_text {
  9976. border-width:0px;
  9977. word-wrap:break-word;
  9978. text-transform:none;
  9979. }
  9980. #u99563_img {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:0px;
  9984. top:0px;
  9985. width:275px;
  9986. height:30px;
  9987. }
  9988. #u99563 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:0px;
  9992. top:60px;
  9993. width:275px;
  9994. height:30px;
  9995. display:flex;
  9996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9997. font-weight:400;
  9998. font-style:normal;
  9999. }
  10000. #u99563 .text {
  10001. position:absolute;
  10002. align-self:center;
  10003. padding:2px 2px 2px 2px;
  10004. box-sizing:border-box;
  10005. width:100%;
  10006. }
  10007. #u99563_text {
  10008. border-width:0px;
  10009. word-wrap:break-word;
  10010. text-transform:none;
  10011. }
  10012. #u99564_img {
  10013. border-width:0px;
  10014. position:absolute;
  10015. left:0px;
  10016. top:0px;
  10017. width:110px;
  10018. height:30px;
  10019. }
  10020. #u99564 {
  10021. border-width:0px;
  10022. position:absolute;
  10023. left:275px;
  10024. top:60px;
  10025. width:110px;
  10026. height:30px;
  10027. display:flex;
  10028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10029. font-weight:400;
  10030. font-style:normal;
  10031. }
  10032. #u99564 .text {
  10033. position:absolute;
  10034. align-self:center;
  10035. padding:2px 2px 2px 2px;
  10036. box-sizing:border-box;
  10037. width:100%;
  10038. }
  10039. #u99564_text {
  10040. border-width:0px;
  10041. word-wrap:break-word;
  10042. text-transform:none;
  10043. }
  10044. #u99565_img {
  10045. border-width:0px;
  10046. position:absolute;
  10047. left:0px;
  10048. top:0px;
  10049. width:110px;
  10050. height:30px;
  10051. }
  10052. #u99565 {
  10053. border-width:0px;
  10054. position:absolute;
  10055. left:385px;
  10056. top:60px;
  10057. width:110px;
  10058. height:30px;
  10059. display:flex;
  10060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10061. font-weight:400;
  10062. font-style:normal;
  10063. }
  10064. #u99565 .text {
  10065. position:absolute;
  10066. align-self:center;
  10067. padding:2px 2px 2px 2px;
  10068. box-sizing:border-box;
  10069. width:100%;
  10070. }
  10071. #u99565_text {
  10072. border-width:0px;
  10073. word-wrap:break-word;
  10074. text-transform:none;
  10075. }
  10076. #u99566_img {
  10077. border-width:0px;
  10078. position:absolute;
  10079. left:0px;
  10080. top:0px;
  10081. width:275px;
  10082. height:30px;
  10083. }
  10084. #u99566 {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:495px;
  10088. top:60px;
  10089. width:275px;
  10090. height:30px;
  10091. display:flex;
  10092. }
  10093. #u99566 .text {
  10094. position:absolute;
  10095. align-self:center;
  10096. padding:2px 2px 2px 2px;
  10097. box-sizing:border-box;
  10098. width:100%;
  10099. }
  10100. #u99566_text {
  10101. border-width:0px;
  10102. word-wrap:break-word;
  10103. text-transform:none;
  10104. visibility:hidden;
  10105. }
  10106. #u99567_img {
  10107. border-width:0px;
  10108. position:absolute;
  10109. left:0px;
  10110. top:0px;
  10111. width:133px;
  10112. height:30px;
  10113. }
  10114. #u99567 {
  10115. border-width:0px;
  10116. position:absolute;
  10117. left:770px;
  10118. top:60px;
  10119. width:133px;
  10120. height:30px;
  10121. display:flex;
  10122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10123. font-weight:400;
  10124. font-style:normal;
  10125. color:#1890FF;
  10126. }
  10127. #u99567 .text {
  10128. position:absolute;
  10129. align-self:center;
  10130. padding:2px 2px 2px 2px;
  10131. box-sizing:border-box;
  10132. width:100%;
  10133. }
  10134. #u99567_text {
  10135. border-width:0px;
  10136. word-wrap:break-word;
  10137. text-transform:none;
  10138. }
  10139. #u99568_input {
  10140. position:absolute;
  10141. left:0px;
  10142. top:0px;
  10143. width:95px;
  10144. height:24px;
  10145. padding:2px 2px 2px 2px;
  10146. font-family:'ArialMT', 'Arial', sans-serif;
  10147. font-weight:400;
  10148. font-style:normal;
  10149. font-size:13px;
  10150. letter-spacing:normal;
  10151. color:#000000;
  10152. vertical-align:none;
  10153. text-align:left;
  10154. text-transform:none;
  10155. background-color:transparent;
  10156. border-color:transparent;
  10157. }
  10158. #u99568_input.disabled {
  10159. position:absolute;
  10160. left:0px;
  10161. top:0px;
  10162. width:95px;
  10163. height:24px;
  10164. padding:2px 2px 2px 2px;
  10165. font-family:'ArialMT', 'Arial', sans-serif;
  10166. font-weight:400;
  10167. font-style:normal;
  10168. font-size:13px;
  10169. letter-spacing:normal;
  10170. color:#000000;
  10171. vertical-align:none;
  10172. text-align:left;
  10173. text-transform:none;
  10174. background-color:transparent;
  10175. border-color:transparent;
  10176. }
  10177. #u99568_div {
  10178. border-width:0px;
  10179. position:absolute;
  10180. left:0px;
  10181. top:0px;
  10182. width:95px;
  10183. height:24px;
  10184. background:inherit;
  10185. background-color:rgba(255, 255, 255, 1);
  10186. border:none;
  10187. border-radius:0px;
  10188. -moz-box-shadow:none;
  10189. -webkit-box-shadow:none;
  10190. box-shadow:none;
  10191. }
  10192. #u99568 {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:2122px;
  10196. top:-786px;
  10197. width:95px;
  10198. height:24px;
  10199. display:flex;
  10200. }
  10201. #u99568 .text {
  10202. position:absolute;
  10203. align-self:flex-start;
  10204. padding:2px 2px 2px 2px;
  10205. box-sizing:border-box;
  10206. width:100%;
  10207. }
  10208. #u99568_div.disabled {
  10209. border-width:0px;
  10210. position:absolute;
  10211. left:0px;
  10212. top:0px;
  10213. width:95px;
  10214. height:24px;
  10215. background:inherit;
  10216. background-color:rgba(240, 240, 240, 1);
  10217. border:none;
  10218. border-radius:0px;
  10219. -moz-box-shadow:none;
  10220. -webkit-box-shadow:none;
  10221. box-shadow:none;
  10222. }
  10223. #u99568.disabled {
  10224. }
  10225. .u99568_input_option {
  10226. }
  10227. #u99569_input {
  10228. position:absolute;
  10229. left:0px;
  10230. top:0px;
  10231. width:258px;
  10232. height:25px;
  10233. padding:2px 2px 2px 2px;
  10234. font-family:'ArialMT', 'Arial', sans-serif;
  10235. font-weight:400;
  10236. font-style:normal;
  10237. font-size:13px;
  10238. letter-spacing:normal;
  10239. color:#000000;
  10240. vertical-align:none;
  10241. text-align:left;
  10242. text-transform:none;
  10243. background-color:transparent;
  10244. border-color:transparent;
  10245. }
  10246. #u99569_input.disabled {
  10247. position:absolute;
  10248. left:0px;
  10249. top:0px;
  10250. width:258px;
  10251. height:25px;
  10252. padding:2px 2px 2px 2px;
  10253. font-family:'ArialMT', 'Arial', sans-serif;
  10254. font-weight:400;
  10255. font-style:normal;
  10256. font-size:13px;
  10257. letter-spacing:normal;
  10258. color:#000000;
  10259. vertical-align:none;
  10260. text-align:left;
  10261. text-transform:none;
  10262. background-color:transparent;
  10263. border-color:transparent;
  10264. }
  10265. #u99569_div {
  10266. border-width:0px;
  10267. position:absolute;
  10268. left:0px;
  10269. top:0px;
  10270. width:258px;
  10271. height:25px;
  10272. background:inherit;
  10273. background-color:rgba(255, 255, 255, 1);
  10274. border:none;
  10275. border-radius:0px;
  10276. -moz-box-shadow:none;
  10277. -webkit-box-shadow:none;
  10278. box-shadow:none;
  10279. }
  10280. #u99569 {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:1737px;
  10284. top:-787px;
  10285. width:258px;
  10286. height:25px;
  10287. display:flex;
  10288. }
  10289. #u99569 .text {
  10290. position:absolute;
  10291. align-self:center;
  10292. padding:2px 2px 2px 2px;
  10293. box-sizing:border-box;
  10294. width:100%;
  10295. }
  10296. #u99569_div.disabled {
  10297. border-width:0px;
  10298. position:absolute;
  10299. left:0px;
  10300. top:0px;
  10301. width:258px;
  10302. height:25px;
  10303. background:inherit;
  10304. background-color:rgba(240, 240, 240, 1);
  10305. border:none;
  10306. border-radius:0px;
  10307. -moz-box-shadow:none;
  10308. -webkit-box-shadow:none;
  10309. box-shadow:none;
  10310. }
  10311. #u99569.disabled {
  10312. }
  10313. #u99570_input {
  10314. position:absolute;
  10315. left:0px;
  10316. top:0px;
  10317. width:260px;
  10318. height:25px;
  10319. padding:2px 2px 2px 2px;
  10320. font-family:'ArialMT', 'Arial', sans-serif;
  10321. font-weight:400;
  10322. font-style:normal;
  10323. font-size:13px;
  10324. letter-spacing:normal;
  10325. color:#000000;
  10326. vertical-align:none;
  10327. text-align:left;
  10328. text-transform:none;
  10329. background-color:transparent;
  10330. border-color:transparent;
  10331. }
  10332. #u99570_input.disabled {
  10333. position:absolute;
  10334. left:0px;
  10335. top:0px;
  10336. width:260px;
  10337. height:25px;
  10338. padding:2px 2px 2px 2px;
  10339. font-family:'ArialMT', 'Arial', sans-serif;
  10340. font-weight:400;
  10341. font-style:normal;
  10342. font-size:13px;
  10343. letter-spacing:normal;
  10344. color:#000000;
  10345. vertical-align:none;
  10346. text-align:left;
  10347. text-transform:none;
  10348. background-color:transparent;
  10349. border-color:transparent;
  10350. }
  10351. #u99570_div {
  10352. border-width:0px;
  10353. position:absolute;
  10354. left:0px;
  10355. top:0px;
  10356. width:260px;
  10357. height:25px;
  10358. background:inherit;
  10359. background-color:rgba(255, 255, 255, 1);
  10360. border:none;
  10361. border-radius:0px;
  10362. -moz-box-shadow:none;
  10363. -webkit-box-shadow:none;
  10364. box-shadow:none;
  10365. }
  10366. #u99570 {
  10367. border-width:0px;
  10368. position:absolute;
  10369. left:2232px;
  10370. top:-786px;
  10371. width:260px;
  10372. height:25px;
  10373. display:flex;
  10374. }
  10375. #u99570 .text {
  10376. position:absolute;
  10377. align-self:center;
  10378. padding:2px 2px 2px 2px;
  10379. box-sizing:border-box;
  10380. width:100%;
  10381. }
  10382. #u99570_div.disabled {
  10383. border-width:0px;
  10384. position:absolute;
  10385. left:0px;
  10386. top:0px;
  10387. width:260px;
  10388. height:25px;
  10389. background:inherit;
  10390. background-color:rgba(240, 240, 240, 1);
  10391. border:none;
  10392. border-radius:0px;
  10393. -moz-box-shadow:none;
  10394. -webkit-box-shadow:none;
  10395. box-shadow:none;
  10396. }
  10397. #u99570.disabled {
  10398. }
  10399. #u99571_input {
  10400. position:absolute;
  10401. left:0px;
  10402. top:0px;
  10403. width:97px;
  10404. height:24px;
  10405. padding:2px 2px 2px 2px;
  10406. font-family:'ArialMT', 'Arial', sans-serif;
  10407. font-weight:400;
  10408. font-style:normal;
  10409. font-size:13px;
  10410. letter-spacing:normal;
  10411. color:#000000;
  10412. vertical-align:none;
  10413. text-align:left;
  10414. text-transform:none;
  10415. background-color:transparent;
  10416. border-color:transparent;
  10417. }
  10418. #u99571_input.disabled {
  10419. position:absolute;
  10420. left:0px;
  10421. top:0px;
  10422. width:97px;
  10423. height:24px;
  10424. padding:2px 2px 2px 2px;
  10425. font-family:'ArialMT', 'Arial', sans-serif;
  10426. font-weight:400;
  10427. font-style:normal;
  10428. font-size:13px;
  10429. letter-spacing:normal;
  10430. color:#000000;
  10431. vertical-align:none;
  10432. text-align:left;
  10433. text-transform:none;
  10434. background-color:transparent;
  10435. border-color:transparent;
  10436. }
  10437. #u99571_div {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:97px;
  10443. height:24px;
  10444. background:inherit;
  10445. background-color:rgba(255, 255, 255, 1);
  10446. border:none;
  10447. border-radius:0px;
  10448. -moz-box-shadow:none;
  10449. -webkit-box-shadow:none;
  10450. box-shadow:none;
  10451. }
  10452. #u99571 {
  10453. border-width:0px;
  10454. position:absolute;
  10455. left:2010px;
  10456. top:-786px;
  10457. width:97px;
  10458. height:24px;
  10459. display:flex;
  10460. }
  10461. #u99571 .text {
  10462. position:absolute;
  10463. align-self:flex-start;
  10464. padding:2px 2px 2px 2px;
  10465. box-sizing:border-box;
  10466. width:100%;
  10467. }
  10468. #u99571_div.disabled {
  10469. border-width:0px;
  10470. position:absolute;
  10471. left:0px;
  10472. top:0px;
  10473. width:97px;
  10474. height:24px;
  10475. background:inherit;
  10476. background-color:rgba(240, 240, 240, 1);
  10477. border:none;
  10478. border-radius:0px;
  10479. -moz-box-shadow:none;
  10480. -webkit-box-shadow:none;
  10481. box-shadow:none;
  10482. }
  10483. #u99571.disabled {
  10484. }
  10485. .u99571_input_option {
  10486. }
  10487. #u99572_div {
  10488. border-width:0px;
  10489. position:absolute;
  10490. left:0px;
  10491. top:0px;
  10492. width:109px;
  10493. height:30px;
  10494. background:inherit;
  10495. background-color:rgba(255, 255, 255, 0);
  10496. border:none;
  10497. border-radius:0px;
  10498. -moz-box-shadow:none;
  10499. -webkit-box-shadow:none;
  10500. box-shadow:none;
  10501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10502. font-weight:400;
  10503. font-style:normal;
  10504. font-size:18px;
  10505. color:#555555;
  10506. line-height:30px;
  10507. }
  10508. #u99572 {
  10509. border-width:0px;
  10510. position:absolute;
  10511. left:1728px;
  10512. top:-848px;
  10513. width:109px;
  10514. height:30px;
  10515. display:flex;
  10516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10517. font-weight:400;
  10518. font-style:normal;
  10519. font-size:18px;
  10520. color:#555555;
  10521. line-height:30px;
  10522. }
  10523. #u99572 .text {
  10524. position:absolute;
  10525. align-self:flex-start;
  10526. padding:0px 0px 0px 0px;
  10527. box-sizing:border-box;
  10528. width:100%;
  10529. }
  10530. #u99572_text {
  10531. border-width:0px;
  10532. white-space:nowrap;
  10533. text-transform:none;
  10534. }
  10535. #u99573_div {
  10536. border-width:0px;
  10537. position:absolute;
  10538. left:0px;
  10539. top:0px;
  10540. width:905px;
  10541. height:229px;
  10542. background:inherit;
  10543. background-color:rgba(255, 255, 255, 1);
  10544. box-sizing:border-box;
  10545. border-width:1px;
  10546. border-style:solid;
  10547. border-color:rgba(215, 215, 215, 1);
  10548. border-left:0px;
  10549. border-top:0px;
  10550. border-right:0px;
  10551. border-radius:0px;
  10552. border-bottom-right-radius:0px;
  10553. border-bottom-left-radius:0px;
  10554. -moz-box-shadow:none;
  10555. -webkit-box-shadow:none;
  10556. box-shadow:none;
  10557. }
  10558. #u99573 {
  10559. border-width:0px;
  10560. position:absolute;
  10561. left:1726px;
  10562. top:-694px;
  10563. width:905px;
  10564. height:229px;
  10565. display:flex;
  10566. }
  10567. #u99573 .text {
  10568. position:absolute;
  10569. align-self:center;
  10570. padding:2px 2px 2px 2px;
  10571. box-sizing:border-box;
  10572. width:100%;
  10573. }
  10574. #u99573_text {
  10575. border-width:0px;
  10576. word-wrap:break-word;
  10577. text-transform:none;
  10578. visibility:hidden;
  10579. }
  10580. #u99574_div {
  10581. border-width:0px;
  10582. position:absolute;
  10583. left:0px;
  10584. top:0px;
  10585. width:163px;
  10586. height:30px;
  10587. background:inherit;
  10588. background-color:rgba(255, 255, 255, 0);
  10589. border:none;
  10590. border-left:0px;
  10591. border-top:0px;
  10592. border-right:0px;
  10593. border-radius:0px;
  10594. border-bottom-right-radius:0px;
  10595. border-bottom-left-radius:0px;
  10596. -moz-box-shadow:none;
  10597. -webkit-box-shadow:none;
  10598. box-shadow:none;
  10599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10600. font-weight:400;
  10601. font-style:normal;
  10602. font-size:18px;
  10603. color:#555555;
  10604. line-height:30px;
  10605. }
  10606. #u99574 {
  10607. border-width:0px;
  10608. position:absolute;
  10609. left:1726px;
  10610. top:-684px;
  10611. width:163px;
  10612. height:30px;
  10613. display:flex;
  10614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10615. font-weight:400;
  10616. font-style:normal;
  10617. font-size:18px;
  10618. color:#555555;
  10619. line-height:30px;
  10620. }
  10621. #u99574 .text {
  10622. position:absolute;
  10623. align-self:flex-start;
  10624. padding:0px 0px 0px 0px;
  10625. box-sizing:border-box;
  10626. width:100%;
  10627. }
  10628. #u99574_text {
  10629. border-width:0px;
  10630. white-space:nowrap;
  10631. text-transform:none;
  10632. }
  10633. #u99575_div {
  10634. border-width:0px;
  10635. position:absolute;
  10636. left:0px;
  10637. top:0px;
  10638. width:121px;
  10639. height:20px;
  10640. background:inherit;
  10641. background-color:rgba(255, 255, 255, 0);
  10642. border:none;
  10643. border-radius:0px;
  10644. -moz-box-shadow:none;
  10645. -webkit-box-shadow:none;
  10646. box-shadow:none;
  10647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10648. font-weight:400;
  10649. font-style:normal;
  10650. font-size:10px;
  10651. color:#7F7F7F;
  10652. line-height:20px;
  10653. }
  10654. #u99575 {
  10655. border-width:0px;
  10656. position:absolute;
  10657. left:1728px;
  10658. top:-653px;
  10659. width:121px;
  10660. height:20px;
  10661. display:flex;
  10662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10663. font-weight:400;
  10664. font-style:normal;
  10665. font-size:10px;
  10666. color:#7F7F7F;
  10667. line-height:20px;
  10668. }
  10669. #u99575 .text {
  10670. position:absolute;
  10671. align-self:flex-start;
  10672. padding:0px 0px 0px 0px;
  10673. box-sizing:border-box;
  10674. width:100%;
  10675. }
  10676. #u99575_text {
  10677. border-width:0px;
  10678. white-space:nowrap;
  10679. text-transform:none;
  10680. }
  10681. #u99576_div {
  10682. border-width:0px;
  10683. position:absolute;
  10684. left:0px;
  10685. top:0px;
  10686. width:57px;
  10687. height:30px;
  10688. background:inherit;
  10689. background-color:rgba(255, 255, 255, 0);
  10690. border:none;
  10691. border-top:0px;
  10692. border-right:0px;
  10693. border-bottom:0px;
  10694. border-radius:0px;
  10695. border-top-left-radius:0px;
  10696. border-bottom-left-radius:0px;
  10697. -moz-box-shadow:none;
  10698. -webkit-box-shadow:none;
  10699. box-shadow:none;
  10700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10701. font-weight:400;
  10702. font-style:normal;
  10703. font-size:14px;
  10704. color:#1890FF;
  10705. }
  10706. #u99576 {
  10707. border-width:0px;
  10708. position:absolute;
  10709. left:2574px;
  10710. top:-619px;
  10711. width:57px;
  10712. height:30px;
  10713. display:flex;
  10714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10715. font-weight:400;
  10716. font-style:normal;
  10717. font-size:14px;
  10718. color:#1890FF;
  10719. }
  10720. #u99576 .text {
  10721. position:absolute;
  10722. align-self:center;
  10723. padding:5px 0px 5px 0px;
  10724. box-sizing:border-box;
  10725. width:100%;
  10726. }
  10727. #u99576_text {
  10728. border-width:0px;
  10729. white-space:nowrap;
  10730. text-transform:none;
  10731. }
  10732. #u99577_div {
  10733. border-width:0px;
  10734. position:absolute;
  10735. left:0px;
  10736. top:0px;
  10737. width:109px;
  10738. height:30px;
  10739. background:inherit;
  10740. background-color:rgba(255, 255, 255, 0);
  10741. border:none;
  10742. border-radius:0px;
  10743. -moz-box-shadow:none;
  10744. -webkit-box-shadow:none;
  10745. box-shadow:none;
  10746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10747. font-weight:400;
  10748. font-style:normal;
  10749. font-size:18px;
  10750. color:#555555;
  10751. line-height:30px;
  10752. }
  10753. #u99577 {
  10754. border-width:0px;
  10755. position:absolute;
  10756. left:1728px;
  10757. top:-619px;
  10758. width:109px;
  10759. height:30px;
  10760. display:flex;
  10761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10762. font-weight:400;
  10763. font-style:normal;
  10764. font-size:18px;
  10765. color:#555555;
  10766. line-height:30px;
  10767. }
  10768. #u99577 .text {
  10769. position:absolute;
  10770. align-self:flex-start;
  10771. padding:0px 0px 0px 0px;
  10772. box-sizing:border-box;
  10773. width:100%;
  10774. }
  10775. #u99577_text {
  10776. border-width:0px;
  10777. white-space:nowrap;
  10778. text-transform:none;
  10779. }
  10780. #u99578 {
  10781. border-width:0px;
  10782. position:absolute;
  10783. left:0px;
  10784. top:0px;
  10785. width:0px;
  10786. height:0px;
  10787. }
  10788. #u99579 {
  10789. border-width:0px;
  10790. position:absolute;
  10791. left:1728px;
  10792. top:-589px;
  10793. width:903px;
  10794. height:90px;
  10795. }
  10796. #u99580_img {
  10797. border-width:0px;
  10798. position:absolute;
  10799. left:0px;
  10800. top:0px;
  10801. width:313px;
  10802. height:30px;
  10803. }
  10804. #u99580 {
  10805. border-width:0px;
  10806. position:absolute;
  10807. left:0px;
  10808. top:0px;
  10809. width:313px;
  10810. height:30px;
  10811. display:flex;
  10812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10813. font-weight:400;
  10814. font-style:normal;
  10815. color:#FFFFFF;
  10816. }
  10817. #u99580 .text {
  10818. position:absolute;
  10819. align-self:center;
  10820. padding:2px 2px 2px 2px;
  10821. box-sizing:border-box;
  10822. width:100%;
  10823. }
  10824. #u99580_text {
  10825. border-width:0px;
  10826. word-wrap:break-word;
  10827. text-transform:none;
  10828. }
  10829. #u99581_img {
  10830. border-width:0px;
  10831. position:absolute;
  10832. left:0px;
  10833. top:0px;
  10834. width:125px;
  10835. height:30px;
  10836. }
  10837. #u99581 {
  10838. border-width:0px;
  10839. position:absolute;
  10840. left:313px;
  10841. top:0px;
  10842. width:125px;
  10843. height:30px;
  10844. display:flex;
  10845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10846. font-weight:400;
  10847. font-style:normal;
  10848. color:#FFFFFF;
  10849. }
  10850. #u99581 .text {
  10851. position:absolute;
  10852. align-self:center;
  10853. padding:2px 2px 2px 2px;
  10854. box-sizing:border-box;
  10855. width:100%;
  10856. }
  10857. #u99581_text {
  10858. border-width:0px;
  10859. word-wrap:break-word;
  10860. text-transform:none;
  10861. }
  10862. #u99582_img {
  10863. border-width:0px;
  10864. position:absolute;
  10865. left:0px;
  10866. top:0px;
  10867. width:313px;
  10868. height:30px;
  10869. }
  10870. #u99582 {
  10871. border-width:0px;
  10872. position:absolute;
  10873. left:438px;
  10874. top:0px;
  10875. width:313px;
  10876. height:30px;
  10877. display:flex;
  10878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10879. font-weight:400;
  10880. font-style:normal;
  10881. color:#FFFFFF;
  10882. }
  10883. #u99582 .text {
  10884. position:absolute;
  10885. align-self:center;
  10886. padding:2px 2px 2px 2px;
  10887. box-sizing:border-box;
  10888. width:100%;
  10889. }
  10890. #u99582_text {
  10891. border-width:0px;
  10892. word-wrap:break-word;
  10893. text-transform:none;
  10894. }
  10895. #u99583_img {
  10896. border-width:0px;
  10897. position:absolute;
  10898. left:0px;
  10899. top:0px;
  10900. width:152px;
  10901. height:30px;
  10902. }
  10903. #u99583 {
  10904. border-width:0px;
  10905. position:absolute;
  10906. left:751px;
  10907. top:0px;
  10908. width:152px;
  10909. height:30px;
  10910. display:flex;
  10911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10912. font-weight:400;
  10913. font-style:normal;
  10914. color:#FFFFFF;
  10915. }
  10916. #u99583 .text {
  10917. position:absolute;
  10918. align-self:center;
  10919. padding:2px 2px 2px 2px;
  10920. box-sizing:border-box;
  10921. width:100%;
  10922. }
  10923. #u99583_text {
  10924. border-width:0px;
  10925. word-wrap:break-word;
  10926. text-transform:none;
  10927. }
  10928. #u99584_img {
  10929. border-width:0px;
  10930. position:absolute;
  10931. left:0px;
  10932. top:0px;
  10933. width:313px;
  10934. height:30px;
  10935. }
  10936. #u99584 {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:0px;
  10940. top:30px;
  10941. width:313px;
  10942. height:30px;
  10943. display:flex;
  10944. }
  10945. #u99584 .text {
  10946. position:absolute;
  10947. align-self:center;
  10948. padding:2px 2px 2px 2px;
  10949. box-sizing:border-box;
  10950. width:100%;
  10951. }
  10952. #u99584_text {
  10953. border-width:0px;
  10954. word-wrap:break-word;
  10955. text-transform:none;
  10956. visibility:hidden;
  10957. }
  10958. #u99585_img {
  10959. border-width:0px;
  10960. position:absolute;
  10961. left:0px;
  10962. top:0px;
  10963. width:125px;
  10964. height:30px;
  10965. }
  10966. #u99585 {
  10967. border-width:0px;
  10968. position:absolute;
  10969. left:313px;
  10970. top:30px;
  10971. width:125px;
  10972. height:30px;
  10973. display:flex;
  10974. }
  10975. #u99585 .text {
  10976. position:absolute;
  10977. align-self:center;
  10978. padding:2px 2px 2px 2px;
  10979. box-sizing:border-box;
  10980. width:100%;
  10981. }
  10982. #u99585_text {
  10983. border-width:0px;
  10984. word-wrap:break-word;
  10985. text-transform:none;
  10986. visibility:hidden;
  10987. }
  10988. #u99586_img {
  10989. border-width:0px;
  10990. position:absolute;
  10991. left:0px;
  10992. top:0px;
  10993. width:313px;
  10994. height:30px;
  10995. }
  10996. #u99586 {
  10997. border-width:0px;
  10998. position:absolute;
  10999. left:438px;
  11000. top:30px;
  11001. width:313px;
  11002. height:30px;
  11003. display:flex;
  11004. }
  11005. #u99586 .text {
  11006. position:absolute;
  11007. align-self:center;
  11008. padding:2px 2px 2px 2px;
  11009. box-sizing:border-box;
  11010. width:100%;
  11011. }
  11012. #u99586_text {
  11013. border-width:0px;
  11014. word-wrap:break-word;
  11015. text-transform:none;
  11016. visibility:hidden;
  11017. }
  11018. #u99587_img {
  11019. border-width:0px;
  11020. position:absolute;
  11021. left:0px;
  11022. top:0px;
  11023. width:152px;
  11024. height:30px;
  11025. }
  11026. #u99587 {
  11027. border-width:0px;
  11028. position:absolute;
  11029. left:751px;
  11030. top:30px;
  11031. width:152px;
  11032. height:30px;
  11033. display:flex;
  11034. color:#1890FF;
  11035. }
  11036. #u99587 .text {
  11037. position:absolute;
  11038. align-self:center;
  11039. padding:2px 2px 2px 2px;
  11040. box-sizing:border-box;
  11041. width:100%;
  11042. }
  11043. #u99587_text {
  11044. border-width:0px;
  11045. word-wrap:break-word;
  11046. text-transform:none;
  11047. }
  11048. #u99588_img {
  11049. border-width:0px;
  11050. position:absolute;
  11051. left:0px;
  11052. top:0px;
  11053. width:313px;
  11054. height:30px;
  11055. }
  11056. #u99588 {
  11057. border-width:0px;
  11058. position:absolute;
  11059. left:0px;
  11060. top:60px;
  11061. width:313px;
  11062. height:30px;
  11063. display:flex;
  11064. }
  11065. #u99588 .text {
  11066. position:absolute;
  11067. align-self:center;
  11068. padding:2px 2px 2px 2px;
  11069. box-sizing:border-box;
  11070. width:100%;
  11071. }
  11072. #u99588_text {
  11073. border-width:0px;
  11074. word-wrap:break-word;
  11075. text-transform:none;
  11076. visibility:hidden;
  11077. }
  11078. #u99589_img {
  11079. border-width:0px;
  11080. position:absolute;
  11081. left:0px;
  11082. top:0px;
  11083. width:125px;
  11084. height:30px;
  11085. }
  11086. #u99589 {
  11087. border-width:0px;
  11088. position:absolute;
  11089. left:313px;
  11090. top:60px;
  11091. width:125px;
  11092. height:30px;
  11093. display:flex;
  11094. }
  11095. #u99589 .text {
  11096. position:absolute;
  11097. align-self:center;
  11098. padding:2px 2px 2px 2px;
  11099. box-sizing:border-box;
  11100. width:100%;
  11101. }
  11102. #u99589_text {
  11103. border-width:0px;
  11104. word-wrap:break-word;
  11105. text-transform:none;
  11106. visibility:hidden;
  11107. }
  11108. #u99590_img {
  11109. border-width:0px;
  11110. position:absolute;
  11111. left:0px;
  11112. top:0px;
  11113. width:313px;
  11114. height:30px;
  11115. }
  11116. #u99590 {
  11117. border-width:0px;
  11118. position:absolute;
  11119. left:438px;
  11120. top:60px;
  11121. width:313px;
  11122. height:30px;
  11123. display:flex;
  11124. }
  11125. #u99590 .text {
  11126. position:absolute;
  11127. align-self:center;
  11128. padding:2px 2px 2px 2px;
  11129. box-sizing:border-box;
  11130. width:100%;
  11131. }
  11132. #u99590_text {
  11133. border-width:0px;
  11134. word-wrap:break-word;
  11135. text-transform:none;
  11136. visibility:hidden;
  11137. }
  11138. #u99591_img {
  11139. border-width:0px;
  11140. position:absolute;
  11141. left:0px;
  11142. top:0px;
  11143. width:152px;
  11144. height:30px;
  11145. }
  11146. #u99591 {
  11147. border-width:0px;
  11148. position:absolute;
  11149. left:751px;
  11150. top:60px;
  11151. width:152px;
  11152. height:30px;
  11153. display:flex;
  11154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11155. font-weight:400;
  11156. font-style:normal;
  11157. color:#1890FF;
  11158. }
  11159. #u99591 .text {
  11160. position:absolute;
  11161. align-self:center;
  11162. padding:2px 2px 2px 2px;
  11163. box-sizing:border-box;
  11164. width:100%;
  11165. }
  11166. #u99591_text {
  11167. border-width:0px;
  11168. word-wrap:break-word;
  11169. text-transform:none;
  11170. }
  11171. #u99592_input {
  11172. position:absolute;
  11173. left:0px;
  11174. top:0px;
  11175. width:83px;
  11176. height:24px;
  11177. padding:2px 2px 2px 2px;
  11178. font-family:'ArialMT', 'Arial', sans-serif;
  11179. font-weight:400;
  11180. font-style:normal;
  11181. font-size:13px;
  11182. letter-spacing:normal;
  11183. color:#000000;
  11184. vertical-align:none;
  11185. text-align:left;
  11186. text-transform:none;
  11187. background-color:transparent;
  11188. border-color:transparent;
  11189. }
  11190. #u99592_input.disabled {
  11191. position:absolute;
  11192. left:0px;
  11193. top:0px;
  11194. width:83px;
  11195. height:24px;
  11196. padding:2px 2px 2px 2px;
  11197. font-family:'ArialMT', 'Arial', sans-serif;
  11198. font-weight:400;
  11199. font-style:normal;
  11200. font-size:13px;
  11201. letter-spacing:normal;
  11202. color:#000000;
  11203. vertical-align:none;
  11204. text-align:left;
  11205. text-transform:none;
  11206. background-color:transparent;
  11207. border-color:transparent;
  11208. }
  11209. #u99592_div {
  11210. border-width:0px;
  11211. position:absolute;
  11212. left:0px;
  11213. top:0px;
  11214. width:83px;
  11215. height:24px;
  11216. background:inherit;
  11217. background-color:rgba(255, 255, 255, 1);
  11218. border:none;
  11219. border-radius:0px;
  11220. -moz-box-shadow:none;
  11221. -webkit-box-shadow:none;
  11222. box-shadow:none;
  11223. }
  11224. #u99592 {
  11225. border-width:0px;
  11226. position:absolute;
  11227. left:2072px;
  11228. top:-557px;
  11229. width:83px;
  11230. height:24px;
  11231. display:flex;
  11232. }
  11233. #u99592 .text {
  11234. position:absolute;
  11235. align-self:flex-start;
  11236. padding:2px 2px 2px 2px;
  11237. box-sizing:border-box;
  11238. width:100%;
  11239. }
  11240. #u99592_div.disabled {
  11241. border-width:0px;
  11242. position:absolute;
  11243. left:0px;
  11244. top:0px;
  11245. width:83px;
  11246. height:24px;
  11247. background:inherit;
  11248. background-color:rgba(240, 240, 240, 1);
  11249. border:none;
  11250. border-radius:0px;
  11251. -moz-box-shadow:none;
  11252. -webkit-box-shadow:none;
  11253. box-shadow:none;
  11254. }
  11255. #u99592.disabled {
  11256. }
  11257. .u99592_input_option {
  11258. }
  11259. #u99593_input {
  11260. position:absolute;
  11261. left:0px;
  11262. top:0px;
  11263. width:225px;
  11264. height:25px;
  11265. padding:2px 2px 2px 2px;
  11266. font-family:'ArialMT', 'Arial', sans-serif;
  11267. font-weight:400;
  11268. font-style:normal;
  11269. font-size:13px;
  11270. letter-spacing:normal;
  11271. color:#000000;
  11272. vertical-align:none;
  11273. text-align:left;
  11274. text-transform:none;
  11275. background-color:transparent;
  11276. border-color:transparent;
  11277. }
  11278. #u99593_input.disabled {
  11279. position:absolute;
  11280. left:0px;
  11281. top:0px;
  11282. width:225px;
  11283. height:25px;
  11284. padding:2px 2px 2px 2px;
  11285. font-family:'ArialMT', 'Arial', sans-serif;
  11286. font-weight:400;
  11287. font-style:normal;
  11288. font-size:13px;
  11289. letter-spacing:normal;
  11290. color:#000000;
  11291. vertical-align:none;
  11292. text-align:left;
  11293. text-transform:none;
  11294. background-color:transparent;
  11295. border-color:transparent;
  11296. }
  11297. #u99593_div {
  11298. border-width:0px;
  11299. position:absolute;
  11300. left:0px;
  11301. top:0px;
  11302. width:225px;
  11303. height:25px;
  11304. background:inherit;
  11305. background-color:rgba(255, 255, 255, 1);
  11306. border:none;
  11307. border-radius:0px;
  11308. -moz-box-shadow:none;
  11309. -webkit-box-shadow:none;
  11310. box-shadow:none;
  11311. }
  11312. #u99593 {
  11313. border-width:0px;
  11314. position:absolute;
  11315. left:1736px;
  11316. top:-558px;
  11317. width:225px;
  11318. height:25px;
  11319. display:flex;
  11320. }
  11321. #u99593 .text {
  11322. position:absolute;
  11323. align-self:center;
  11324. padding:2px 2px 2px 2px;
  11325. box-sizing:border-box;
  11326. width:100%;
  11327. }
  11328. #u99593_div.disabled {
  11329. border-width:0px;
  11330. position:absolute;
  11331. left:0px;
  11332. top:0px;
  11333. width:225px;
  11334. height:25px;
  11335. background:inherit;
  11336. background-color:rgba(240, 240, 240, 1);
  11337. border:none;
  11338. border-radius:0px;
  11339. -moz-box-shadow:none;
  11340. -webkit-box-shadow:none;
  11341. box-shadow:none;
  11342. }
  11343. #u99593.disabled {
  11344. }
  11345. #u99594_input {
  11346. position:absolute;
  11347. left:0px;
  11348. top:0px;
  11349. width:227px;
  11350. height:25px;
  11351. padding:2px 2px 2px 2px;
  11352. font-family:'ArialMT', 'Arial', sans-serif;
  11353. font-weight:400;
  11354. font-style:normal;
  11355. font-size:13px;
  11356. letter-spacing:normal;
  11357. color:#000000;
  11358. vertical-align:none;
  11359. text-align:left;
  11360. text-transform:none;
  11361. background-color:transparent;
  11362. border-color:transparent;
  11363. }
  11364. #u99594_input.disabled {
  11365. position:absolute;
  11366. left:0px;
  11367. top:0px;
  11368. width:227px;
  11369. height:25px;
  11370. padding:2px 2px 2px 2px;
  11371. font-family:'ArialMT', 'Arial', sans-serif;
  11372. font-weight:400;
  11373. font-style:normal;
  11374. font-size:13px;
  11375. letter-spacing:normal;
  11376. color:#000000;
  11377. vertical-align:none;
  11378. text-align:left;
  11379. text-transform:none;
  11380. background-color:transparent;
  11381. border-color:transparent;
  11382. }
  11383. #u99594_div {
  11384. border-width:0px;
  11385. position:absolute;
  11386. left:0px;
  11387. top:0px;
  11388. width:227px;
  11389. height:25px;
  11390. background:inherit;
  11391. background-color:rgba(255, 255, 255, 1);
  11392. border:none;
  11393. border-radius:0px;
  11394. -moz-box-shadow:none;
  11395. -webkit-box-shadow:none;
  11396. box-shadow:none;
  11397. }
  11398. #u99594 {
  11399. border-width:0px;
  11400. position:absolute;
  11401. left:2168px;
  11402. top:-557px;
  11403. width:227px;
  11404. height:25px;
  11405. display:flex;
  11406. }
  11407. #u99594 .text {
  11408. position:absolute;
  11409. align-self:center;
  11410. padding:2px 2px 2px 2px;
  11411. box-sizing:border-box;
  11412. width:100%;
  11413. }
  11414. #u99594_div.disabled {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:0px;
  11418. top:0px;
  11419. width:227px;
  11420. height:25px;
  11421. background:inherit;
  11422. background-color:rgba(240, 240, 240, 1);
  11423. border:none;
  11424. border-radius:0px;
  11425. -moz-box-shadow:none;
  11426. -webkit-box-shadow:none;
  11427. box-shadow:none;
  11428. }
  11429. #u99594.disabled {
  11430. }
  11431. #u99595_img {
  11432. border-width:0px;
  11433. position:absolute;
  11434. left:0px;
  11435. top:0px;
  11436. width:836px;
  11437. height:116px;
  11438. }
  11439. #u99595 {
  11440. border-width:0px;
  11441. position:absolute;
  11442. left:479px;
  11443. top:-364px;
  11444. width:836px;
  11445. height:116px;
  11446. display:flex;
  11447. }
  11448. #u99595 .text {
  11449. position:absolute;
  11450. align-self:center;
  11451. padding:2px 2px 2px 2px;
  11452. box-sizing:border-box;
  11453. width:100%;
  11454. }
  11455. #u99595_text {
  11456. border-width:0px;
  11457. word-wrap:break-word;
  11458. text-transform:none;
  11459. visibility:hidden;
  11460. }