styles.css 142 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2444px;
  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. #u94919_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. #u94919 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u94919 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u94919_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u94920_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. #u94920 {
  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. #u94920 .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. #u94920_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u94921_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. #u94921 {
  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. #u94921 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u94921_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u94922 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u94923_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u94923 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u94923 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u94923_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u94924_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. #u94924 {
  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. #u94924 .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. #u94924_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u94925_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. #u94925 {
  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. #u94925 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u94925_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u94926 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u94927_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. #u94927_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. #u94927_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. #u94927 {
  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. #u94927 .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. #u94927_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. #u94927.disabled {
  356. }
  357. .u94927_input_option {
  358. font-size:14px;
  359. }
  360. #u94928_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u94928 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u94928 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u94928_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u94929_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. #u94929 {
  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. #u94929 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u94929_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u94930_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. #u94930 {
  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. #u94930 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u94930_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u94931 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u94932_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. #u94932 {
  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. #u94932 .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. #u94932_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u94933_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u94933 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u94933 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u94933_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u94934 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u94935_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. #u94935 {
  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. #u94935 .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. #u94935_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u94936_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u94936 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u94936 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u94936_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u94937 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u94938_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. #u94938 {
  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. #u94938 .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. #u94938_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u94939_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u94939 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u94939 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u94939_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u94940 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u94941_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. #u94941 {
  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. #u94941 .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. #u94941_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u94942_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u94942 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u94942 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u94942_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u94943 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u94944_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. #u94944 {
  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. #u94944 .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. #u94944_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u94945_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u94945 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u94945 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u94945_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u94946 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u94947_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. #u94947 {
  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. #u94947 .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. #u94947_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u94948_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u94948 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u94948 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u94948_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u94949 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u94950_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. #u94950 {
  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. #u94950 .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. #u94950_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u94951_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u94951 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u94951 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u94951_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u94952 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u94953_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. #u94953 {
  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. #u94953 .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. #u94953_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u94954_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u94954 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u94954 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u94954_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u94955 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u94956_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. #u94956 {
  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. #u94956 .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. #u94956_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u94957_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u94957 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u94957 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u94957_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u94958 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u94959_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. #u94959 {
  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. #u94959 .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. #u94959_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u94960_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u94960 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u94960 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u94960_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u94961_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. #u94961 {
  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. #u94961 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u94961_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u94962_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u94962 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u94962 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u94962_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u94963_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. #u94963 {
  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. #u94963 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u94963_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u94964_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u94964 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u94964 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u94964_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u94965 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u94966_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. #u94966 {
  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. #u94966 .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. #u94966_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u94967_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u94967 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u94967 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u94967_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u94968 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u94969_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. #u94969 {
  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. #u94969 .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. #u94969_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u94970_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u94970 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u94970 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u94970_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u94971_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. #u94971 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1259px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u94971 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u94971_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u94972 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:350px;
  1679. top:193px;
  1680. width:1219px;
  1681. height:313px;
  1682. }
  1683. #u94973_img {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:212px;
  1689. height:35px;
  1690. }
  1691. #u94973 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:212px;
  1697. height:35px;
  1698. display:flex;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:12px;
  1703. color:#FFFFFF;
  1704. }
  1705. #u94973 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u94973_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u94974_img {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:135px;
  1723. height:35px;
  1724. }
  1725. #u94974 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:212px;
  1729. top:0px;
  1730. width:135px;
  1731. height:35px;
  1732. display:flex;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:12px;
  1737. color:#FFFFFF;
  1738. }
  1739. #u94974 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u94974_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. }
  1751. #u94975_img {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:125px;
  1757. height:35px;
  1758. }
  1759. #u94975 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:347px;
  1763. top:0px;
  1764. width:125px;
  1765. height:35px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:12px;
  1771. color:#FFFFFF;
  1772. }
  1773. #u94975 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:2px 2px 2px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u94975_text {
  1781. border-width:0px;
  1782. word-wrap:break-word;
  1783. text-transform:none;
  1784. }
  1785. #u94976_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:125px;
  1791. height:35px;
  1792. }
  1793. #u94976 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:472px;
  1797. top:0px;
  1798. width:125px;
  1799. height:35px;
  1800. display:flex;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:12px;
  1805. color:#FFFFFF;
  1806. }
  1807. #u94976 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:2px 2px 2px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u94976_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u94977_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:125px;
  1825. height:35px;
  1826. }
  1827. #u94977 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:597px;
  1831. top:0px;
  1832. width:125px;
  1833. height:35px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:12px;
  1839. color:#FFFFFF;
  1840. }
  1841. #u94977 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u94977_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. }
  1853. #u94978_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:135px;
  1859. height:35px;
  1860. }
  1861. #u94978 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:722px;
  1865. top:0px;
  1866. width:135px;
  1867. height:35px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. color:#FFFFFF;
  1874. }
  1875. #u94978 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u94978_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u94979_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:125px;
  1893. height:35px;
  1894. }
  1895. #u94979 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:857px;
  1899. top:0px;
  1900. width:125px;
  1901. height:35px;
  1902. display:flex;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:12px;
  1907. color:#FFFFFF;
  1908. }
  1909. #u94979 .text {
  1910. position:absolute;
  1911. align-self:center;
  1912. padding:2px 2px 2px 0px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u94979_text {
  1917. border-width:0px;
  1918. word-wrap:break-word;
  1919. text-transform:none;
  1920. }
  1921. #u94980_img {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:130px;
  1927. height:35px;
  1928. }
  1929. #u94980 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:982px;
  1933. top:0px;
  1934. width:130px;
  1935. height:35px;
  1936. display:flex;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#FFFFFF;
  1942. }
  1943. #u94980 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 2px 2px 0px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u94980_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. }
  1955. #u94981_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:107px;
  1961. height:35px;
  1962. }
  1963. #u94981 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:1112px;
  1967. top:0px;
  1968. width:107px;
  1969. height:35px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. color:#FFFFFF;
  1976. }
  1977. #u94981 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u94981_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u94982_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:212px;
  1995. height:44px;
  1996. }
  1997. #u94982 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:35px;
  2002. width:212px;
  2003. height:44px;
  2004. display:flex;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. color:#333333;
  2010. line-height:40px;
  2011. }
  2012. #u94982 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 0px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u94982_text {
  2020. border-width:0px;
  2021. word-wrap:break-word;
  2022. text-transform:none;
  2023. }
  2024. #u94983_img {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:135px;
  2030. height:44px;
  2031. }
  2032. #u94983 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:212px;
  2036. top:35px;
  2037. width:135px;
  2038. height:44px;
  2039. display:flex;
  2040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:12px;
  2044. color:#333333;
  2045. line-height:40px;
  2046. }
  2047. #u94983 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 0px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u94983_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. visibility:hidden;
  2059. }
  2060. #u94984_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:125px;
  2066. height:44px;
  2067. }
  2068. #u94984 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:347px;
  2072. top:35px;
  2073. width:125px;
  2074. height:44px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:12px;
  2080. color:#333333;
  2081. line-height:40px;
  2082. }
  2083. #u94984 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u94984_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. visibility:hidden;
  2095. }
  2096. #u94985_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:125px;
  2102. height:44px;
  2103. }
  2104. #u94985 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:472px;
  2108. top:35px;
  2109. width:125px;
  2110. height:44px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. color:#333333;
  2117. line-height:40px;
  2118. }
  2119. #u94985 .text {
  2120. position:absolute;
  2121. align-self:center;
  2122. padding:2px 2px 2px 0px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u94985_text {
  2127. border-width:0px;
  2128. word-wrap:break-word;
  2129. text-transform:none;
  2130. visibility:hidden;
  2131. }
  2132. #u94986_img {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:125px;
  2138. height:44px;
  2139. }
  2140. #u94986 {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:597px;
  2144. top:35px;
  2145. width:125px;
  2146. height:44px;
  2147. display:flex;
  2148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2149. font-weight:400;
  2150. font-style:normal;
  2151. font-size:12px;
  2152. color:#333333;
  2153. line-height:40px;
  2154. }
  2155. #u94986 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 2px 2px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u94986_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. visibility:hidden;
  2167. }
  2168. #u94987_img {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:135px;
  2174. height:44px;
  2175. }
  2176. #u94987 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:722px;
  2180. top:35px;
  2181. width:135px;
  2182. height:44px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:12px;
  2188. color:#333333;
  2189. line-height:40px;
  2190. }
  2191. #u94987 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u94987_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. visibility:hidden;
  2203. }
  2204. #u94988_img {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:125px;
  2210. height:44px;
  2211. }
  2212. #u94988 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:857px;
  2216. top:35px;
  2217. width:125px;
  2218. height:44px;
  2219. display:flex;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:12px;
  2224. color:#333333;
  2225. line-height:40px;
  2226. }
  2227. #u94988 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u94988_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u94989_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:130px;
  2246. height:44px;
  2247. }
  2248. #u94989 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:982px;
  2252. top:35px;
  2253. width:130px;
  2254. height:44px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:12px;
  2260. color:#333333;
  2261. line-height:40px;
  2262. }
  2263. #u94989 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:2px 2px 2px 0px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u94989_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. visibility:hidden;
  2275. }
  2276. #u94990_img {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:107px;
  2282. height:44px;
  2283. }
  2284. #u94990 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:1112px;
  2288. top:35px;
  2289. width:107px;
  2290. height:44px;
  2291. display:flex;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:12px;
  2296. color:#298FFF;
  2297. line-height:35px;
  2298. }
  2299. #u94990 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 2px 2px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u94990_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. }
  2311. #u94991_img {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:212px;
  2317. height:44px;
  2318. }
  2319. #u94991 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:79px;
  2324. width:212px;
  2325. height:44px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:12px;
  2331. color:#333333;
  2332. line-height:40px;
  2333. }
  2334. #u94991 .text {
  2335. position:absolute;
  2336. align-self:center;
  2337. padding:2px 2px 2px 0px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u94991_text {
  2342. border-width:0px;
  2343. word-wrap:break-word;
  2344. text-transform:none;
  2345. }
  2346. #u94992_img {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:135px;
  2352. height:44px;
  2353. }
  2354. #u94992 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:212px;
  2358. top:79px;
  2359. width:135px;
  2360. height:44px;
  2361. display:flex;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:12px;
  2366. color:#333333;
  2367. line-height:40px;
  2368. }
  2369. #u94992 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 0px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u94992_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. visibility:hidden;
  2381. }
  2382. #u94993_img {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:125px;
  2388. height:44px;
  2389. }
  2390. #u94993 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:347px;
  2394. top:79px;
  2395. width:125px;
  2396. height:44px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:12px;
  2402. color:#333333;
  2403. line-height:40px;
  2404. }
  2405. #u94993 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 2px 2px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u94993_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. visibility:hidden;
  2417. }
  2418. #u94994_img {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:125px;
  2424. height:44px;
  2425. }
  2426. #u94994 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:472px;
  2430. top:79px;
  2431. width:125px;
  2432. height:44px;
  2433. display:flex;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:12px;
  2438. color:#333333;
  2439. line-height:40px;
  2440. }
  2441. #u94994 .text {
  2442. position:absolute;
  2443. align-self:center;
  2444. padding:2px 2px 2px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u94994_text {
  2449. border-width:0px;
  2450. word-wrap:break-word;
  2451. text-transform:none;
  2452. visibility:hidden;
  2453. }
  2454. #u94995_img {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:125px;
  2460. height:44px;
  2461. }
  2462. #u94995 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:597px;
  2466. top:79px;
  2467. width:125px;
  2468. height:44px;
  2469. display:flex;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:12px;
  2474. color:#333333;
  2475. line-height:40px;
  2476. }
  2477. #u94995 .text {
  2478. position:absolute;
  2479. align-self:center;
  2480. padding:2px 2px 2px 0px;
  2481. box-sizing:border-box;
  2482. width:100%;
  2483. }
  2484. #u94995_text {
  2485. border-width:0px;
  2486. word-wrap:break-word;
  2487. text-transform:none;
  2488. visibility:hidden;
  2489. }
  2490. #u94996_img {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:135px;
  2496. height:44px;
  2497. }
  2498. #u94996 {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:722px;
  2502. top:79px;
  2503. width:135px;
  2504. height:44px;
  2505. display:flex;
  2506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2507. font-weight:400;
  2508. font-style:normal;
  2509. font-size:12px;
  2510. color:#333333;
  2511. line-height:40px;
  2512. }
  2513. #u94996 .text {
  2514. position:absolute;
  2515. align-self:center;
  2516. padding:2px 2px 2px 0px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u94996_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. visibility:hidden;
  2525. }
  2526. #u94997_img {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:125px;
  2532. height:44px;
  2533. }
  2534. #u94997 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:857px;
  2538. top:79px;
  2539. width:125px;
  2540. height:44px;
  2541. display:flex;
  2542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. font-size:12px;
  2546. color:#333333;
  2547. line-height:40px;
  2548. }
  2549. #u94997 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:2px 2px 2px 0px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u94997_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u94998_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:130px;
  2568. height:44px;
  2569. }
  2570. #u94998 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:982px;
  2574. top:79px;
  2575. width:130px;
  2576. height:44px;
  2577. display:flex;
  2578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:12px;
  2582. color:#333333;
  2583. line-height:40px;
  2584. }
  2585. #u94998 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 0px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u94998_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u94999_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:107px;
  2604. height:44px;
  2605. }
  2606. #u94999 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:1112px;
  2610. top:79px;
  2611. width:107px;
  2612. height:44px;
  2613. display:flex;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:12px;
  2618. color:#1890FF;
  2619. }
  2620. #u94999 .text {
  2621. position:absolute;
  2622. align-self:center;
  2623. padding:2px 2px 2px 0px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u94999_text {
  2628. border-width:0px;
  2629. word-wrap:break-word;
  2630. text-transform:none;
  2631. visibility:hidden;
  2632. }
  2633. #u95000_img {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:212px;
  2639. height:38px;
  2640. }
  2641. #u95000 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:123px;
  2646. width:212px;
  2647. height:38px;
  2648. display:flex;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:12px;
  2653. color:#333333;
  2654. line-height:40px;
  2655. }
  2656. #u95000 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:2px 2px 2px 0px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u95000_text {
  2664. border-width:0px;
  2665. word-wrap:break-word;
  2666. text-transform:none;
  2667. visibility:hidden;
  2668. }
  2669. #u95001_img {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:135px;
  2675. height:38px;
  2676. }
  2677. #u95001 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:212px;
  2681. top:123px;
  2682. width:135px;
  2683. height:38px;
  2684. display:flex;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:12px;
  2689. color:#333333;
  2690. line-height:40px;
  2691. }
  2692. #u95001 .text {
  2693. position:absolute;
  2694. align-self:center;
  2695. padding:2px 2px 2px 0px;
  2696. box-sizing:border-box;
  2697. width:100%;
  2698. }
  2699. #u95001_text {
  2700. border-width:0px;
  2701. word-wrap:break-word;
  2702. text-transform:none;
  2703. visibility:hidden;
  2704. }
  2705. #u95002_img {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:125px;
  2711. height:38px;
  2712. }
  2713. #u95002 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:347px;
  2717. top:123px;
  2718. width:125px;
  2719. height:38px;
  2720. display:flex;
  2721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:12px;
  2725. color:#333333;
  2726. line-height:40px;
  2727. }
  2728. #u95002 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 2px 2px 0px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u95002_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. visibility:hidden;
  2740. }
  2741. #u95003_img {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:125px;
  2747. height:38px;
  2748. }
  2749. #u95003 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:472px;
  2753. top:123px;
  2754. width:125px;
  2755. height:38px;
  2756. display:flex;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:12px;
  2761. color:#333333;
  2762. line-height:40px;
  2763. }
  2764. #u95003 .text {
  2765. position:absolute;
  2766. align-self:center;
  2767. padding:2px 2px 2px 0px;
  2768. box-sizing:border-box;
  2769. width:100%;
  2770. }
  2771. #u95003_text {
  2772. border-width:0px;
  2773. word-wrap:break-word;
  2774. text-transform:none;
  2775. visibility:hidden;
  2776. }
  2777. #u95004_img {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:125px;
  2783. height:38px;
  2784. }
  2785. #u95004 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:597px;
  2789. top:123px;
  2790. width:125px;
  2791. height:38px;
  2792. display:flex;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:12px;
  2797. color:#333333;
  2798. line-height:40px;
  2799. }
  2800. #u95004 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:2px 2px 2px 0px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u95004_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. visibility:hidden;
  2812. }
  2813. #u95005_img {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:135px;
  2819. height:38px;
  2820. }
  2821. #u95005 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:722px;
  2825. top:123px;
  2826. width:135px;
  2827. height:38px;
  2828. display:flex;
  2829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2830. font-weight:400;
  2831. font-style:normal;
  2832. font-size:12px;
  2833. color:#333333;
  2834. line-height:40px;
  2835. }
  2836. #u95005 .text {
  2837. position:absolute;
  2838. align-self:center;
  2839. padding:2px 2px 2px 0px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u95005_text {
  2844. border-width:0px;
  2845. word-wrap:break-word;
  2846. text-transform:none;
  2847. visibility:hidden;
  2848. }
  2849. #u95006_img {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:125px;
  2855. height:38px;
  2856. }
  2857. #u95006 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:857px;
  2861. top:123px;
  2862. width:125px;
  2863. height:38px;
  2864. display:flex;
  2865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2866. font-weight:400;
  2867. font-style:normal;
  2868. font-size:12px;
  2869. color:#333333;
  2870. line-height:40px;
  2871. }
  2872. #u95006 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u95006_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u95007_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:130px;
  2891. height:38px;
  2892. }
  2893. #u95007 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:982px;
  2897. top:123px;
  2898. width:130px;
  2899. height:38px;
  2900. display:flex;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:12px;
  2905. color:#333333;
  2906. line-height:40px;
  2907. }
  2908. #u95007 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 0px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u95007_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u95008_img {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:107px;
  2927. height:38px;
  2928. }
  2929. #u95008 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:1112px;
  2933. top:123px;
  2934. width:107px;
  2935. height:38px;
  2936. display:flex;
  2937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:12px;
  2941. color:#1890FF;
  2942. }
  2943. #u95008 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:2px 2px 2px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u95008_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. visibility:hidden;
  2955. }
  2956. #u95009_img {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:212px;
  2962. height:38px;
  2963. }
  2964. #u95009 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:161px;
  2969. width:212px;
  2970. height:38px;
  2971. display:flex;
  2972. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:12px;
  2976. color:#606266;
  2977. }
  2978. #u95009 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 0px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u95009_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. visibility:hidden;
  2990. }
  2991. #u95010_img {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:135px;
  2997. height:38px;
  2998. }
  2999. #u95010 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:212px;
  3003. top:161px;
  3004. width:135px;
  3005. height:38px;
  3006. display:flex;
  3007. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3008. font-weight:400;
  3009. font-style:normal;
  3010. font-size:12px;
  3011. color:#606266;
  3012. }
  3013. #u95010 .text {
  3014. position:absolute;
  3015. align-self:center;
  3016. padding:2px 2px 2px 0px;
  3017. box-sizing:border-box;
  3018. width:100%;
  3019. }
  3020. #u95010_text {
  3021. border-width:0px;
  3022. word-wrap:break-word;
  3023. text-transform:none;
  3024. visibility:hidden;
  3025. }
  3026. #u95011_img {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:125px;
  3032. height:38px;
  3033. }
  3034. #u95011 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:347px;
  3038. top:161px;
  3039. width:125px;
  3040. height:38px;
  3041. display:flex;
  3042. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:12px;
  3046. color:#606266;
  3047. }
  3048. #u95011 .text {
  3049. position:absolute;
  3050. align-self:center;
  3051. padding:2px 2px 2px 0px;
  3052. box-sizing:border-box;
  3053. width:100%;
  3054. }
  3055. #u95011_text {
  3056. border-width:0px;
  3057. word-wrap:break-word;
  3058. text-transform:none;
  3059. visibility:hidden;
  3060. }
  3061. #u95012_img {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:125px;
  3067. height:38px;
  3068. }
  3069. #u95012 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:472px;
  3073. top:161px;
  3074. width:125px;
  3075. height:38px;
  3076. display:flex;
  3077. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3078. font-weight:400;
  3079. font-style:normal;
  3080. font-size:12px;
  3081. color:#606266;
  3082. }
  3083. #u95012 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 0px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u95012_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. visibility:hidden;
  3095. }
  3096. #u95013_img {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:125px;
  3102. height:38px;
  3103. }
  3104. #u95013 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:597px;
  3108. top:161px;
  3109. width:125px;
  3110. height:38px;
  3111. display:flex;
  3112. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3113. font-weight:400;
  3114. font-style:normal;
  3115. font-size:12px;
  3116. color:#606266;
  3117. }
  3118. #u95013 .text {
  3119. position:absolute;
  3120. align-self:center;
  3121. padding:2px 2px 2px 0px;
  3122. box-sizing:border-box;
  3123. width:100%;
  3124. }
  3125. #u95013_text {
  3126. border-width:0px;
  3127. word-wrap:break-word;
  3128. text-transform:none;
  3129. visibility:hidden;
  3130. }
  3131. #u95014_img {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:135px;
  3137. height:38px;
  3138. }
  3139. #u95014 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:722px;
  3143. top:161px;
  3144. width:135px;
  3145. height:38px;
  3146. display:flex;
  3147. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:12px;
  3151. color:#606266;
  3152. }
  3153. #u95014 .text {
  3154. position:absolute;
  3155. align-self:center;
  3156. padding:2px 2px 2px 0px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u95014_text {
  3161. border-width:0px;
  3162. word-wrap:break-word;
  3163. text-transform:none;
  3164. visibility:hidden;
  3165. }
  3166. #u95015_img {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:125px;
  3172. height:38px;
  3173. }
  3174. #u95015 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:857px;
  3178. top:161px;
  3179. width:125px;
  3180. height:38px;
  3181. display:flex;
  3182. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3183. font-weight:400;
  3184. font-style:normal;
  3185. font-size:12px;
  3186. color:#606266;
  3187. }
  3188. #u95015 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 0px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u95015_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. visibility:hidden;
  3200. }
  3201. #u95016_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:130px;
  3207. height:38px;
  3208. }
  3209. #u95016 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:982px;
  3213. top:161px;
  3214. width:130px;
  3215. height:38px;
  3216. display:flex;
  3217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:12px;
  3221. color:#606266;
  3222. }
  3223. #u95016 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 0px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u95016_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. visibility:hidden;
  3235. }
  3236. #u95017_img {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:107px;
  3242. height:38px;
  3243. }
  3244. #u95017 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:1112px;
  3248. top:161px;
  3249. width:107px;
  3250. height:38px;
  3251. display:flex;
  3252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:12px;
  3256. color:#606266;
  3257. }
  3258. #u95017 .text {
  3259. position:absolute;
  3260. align-self:center;
  3261. padding:2px 2px 2px 0px;
  3262. box-sizing:border-box;
  3263. width:100%;
  3264. }
  3265. #u95017_text {
  3266. border-width:0px;
  3267. word-wrap:break-word;
  3268. text-transform:none;
  3269. visibility:hidden;
  3270. }
  3271. #u95018_img {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:212px;
  3277. height:38px;
  3278. }
  3279. #u95018 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:199px;
  3284. width:212px;
  3285. height:38px;
  3286. display:flex;
  3287. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:12px;
  3291. color:#606266;
  3292. }
  3293. #u95018 .text {
  3294. position:absolute;
  3295. align-self:center;
  3296. padding:2px 2px 2px 0px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u95018_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. visibility:hidden;
  3305. }
  3306. #u95019_img {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:135px;
  3312. height:38px;
  3313. }
  3314. #u95019 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:212px;
  3318. top:199px;
  3319. width:135px;
  3320. height:38px;
  3321. display:flex;
  3322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3323. font-weight:400;
  3324. font-style:normal;
  3325. font-size:12px;
  3326. color:#606266;
  3327. }
  3328. #u95019 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:2px 2px 2px 0px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u95019_text {
  3336. border-width:0px;
  3337. word-wrap:break-word;
  3338. text-transform:none;
  3339. visibility:hidden;
  3340. }
  3341. #u95020_img {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:125px;
  3347. height:38px;
  3348. }
  3349. #u95020 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:347px;
  3353. top:199px;
  3354. width:125px;
  3355. height:38px;
  3356. display:flex;
  3357. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:12px;
  3361. color:#606266;
  3362. }
  3363. #u95020 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 2px 2px 0px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u95020_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. visibility:hidden;
  3375. }
  3376. #u95021_img {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:0px;
  3380. top:0px;
  3381. width:125px;
  3382. height:38px;
  3383. }
  3384. #u95021 {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:472px;
  3388. top:199px;
  3389. width:125px;
  3390. height:38px;
  3391. display:flex;
  3392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3393. font-weight:400;
  3394. font-style:normal;
  3395. font-size:12px;
  3396. color:#606266;
  3397. }
  3398. #u95021 .text {
  3399. position:absolute;
  3400. align-self:center;
  3401. padding:2px 2px 2px 0px;
  3402. box-sizing:border-box;
  3403. width:100%;
  3404. }
  3405. #u95021_text {
  3406. border-width:0px;
  3407. word-wrap:break-word;
  3408. text-transform:none;
  3409. visibility:hidden;
  3410. }
  3411. #u95022_img {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:125px;
  3417. height:38px;
  3418. }
  3419. #u95022 {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:597px;
  3423. top:199px;
  3424. width:125px;
  3425. height:38px;
  3426. display:flex;
  3427. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3428. font-weight:400;
  3429. font-style:normal;
  3430. font-size:12px;
  3431. color:#606266;
  3432. }
  3433. #u95022 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 0px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u95022_text {
  3441. border-width:0px;
  3442. word-wrap:break-word;
  3443. text-transform:none;
  3444. visibility:hidden;
  3445. }
  3446. #u95023_img {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:135px;
  3452. height:38px;
  3453. }
  3454. #u95023 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:722px;
  3458. top:199px;
  3459. width:135px;
  3460. height:38px;
  3461. display:flex;
  3462. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:12px;
  3466. color:#606266;
  3467. }
  3468. #u95023 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:2px 2px 2px 0px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u95023_text {
  3476. border-width:0px;
  3477. word-wrap:break-word;
  3478. text-transform:none;
  3479. visibility:hidden;
  3480. }
  3481. #u95024_img {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:125px;
  3487. height:38px;
  3488. }
  3489. #u95024 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:857px;
  3493. top:199px;
  3494. width:125px;
  3495. height:38px;
  3496. display:flex;
  3497. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:12px;
  3501. color:#606266;
  3502. }
  3503. #u95024 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:2px 2px 2px 0px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u95024_text {
  3511. border-width:0px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. visibility:hidden;
  3515. }
  3516. #u95025_img {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:130px;
  3522. height:38px;
  3523. }
  3524. #u95025 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:982px;
  3528. top:199px;
  3529. width:130px;
  3530. height:38px;
  3531. display:flex;
  3532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:12px;
  3536. color:#606266;
  3537. }
  3538. #u95025 .text {
  3539. position:absolute;
  3540. align-self:center;
  3541. padding:2px 2px 2px 0px;
  3542. box-sizing:border-box;
  3543. width:100%;
  3544. }
  3545. #u95025_text {
  3546. border-width:0px;
  3547. word-wrap:break-word;
  3548. text-transform:none;
  3549. visibility:hidden;
  3550. }
  3551. #u95026_img {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:107px;
  3557. height:38px;
  3558. }
  3559. #u95026 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:1112px;
  3563. top:199px;
  3564. width:107px;
  3565. height:38px;
  3566. display:flex;
  3567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:12px;
  3571. color:#606266;
  3572. }
  3573. #u95026 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 0px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u95026_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. visibility:hidden;
  3585. }
  3586. #u95027_img {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:212px;
  3592. height:38px;
  3593. }
  3594. #u95027 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:237px;
  3599. width:212px;
  3600. height:38px;
  3601. display:flex;
  3602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3603. font-weight:400;
  3604. font-style:normal;
  3605. font-size:12px;
  3606. color:#606266;
  3607. }
  3608. #u95027 .text {
  3609. position:absolute;
  3610. align-self:center;
  3611. padding:2px 2px 2px 0px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u95027_text {
  3616. border-width:0px;
  3617. word-wrap:break-word;
  3618. text-transform:none;
  3619. visibility:hidden;
  3620. }
  3621. #u95028_img {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:135px;
  3627. height:38px;
  3628. }
  3629. #u95028 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:212px;
  3633. top:237px;
  3634. width:135px;
  3635. height:38px;
  3636. display:flex;
  3637. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3638. font-weight:400;
  3639. font-style:normal;
  3640. font-size:12px;
  3641. color:#606266;
  3642. }
  3643. #u95028 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 2px 2px 0px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u95028_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. visibility:hidden;
  3655. }
  3656. #u95029_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:125px;
  3662. height:38px;
  3663. }
  3664. #u95029 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:347px;
  3668. top:237px;
  3669. width:125px;
  3670. height:38px;
  3671. display:flex;
  3672. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:12px;
  3676. color:#606266;
  3677. }
  3678. #u95029 .text {
  3679. position:absolute;
  3680. align-self:center;
  3681. padding:2px 2px 2px 0px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u95029_text {
  3686. border-width:0px;
  3687. word-wrap:break-word;
  3688. text-transform:none;
  3689. visibility:hidden;
  3690. }
  3691. #u95030_img {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:125px;
  3697. height:38px;
  3698. }
  3699. #u95030 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:472px;
  3703. top:237px;
  3704. width:125px;
  3705. height:38px;
  3706. display:flex;
  3707. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:12px;
  3711. color:#606266;
  3712. }
  3713. #u95030 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 0px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u95030_text {
  3721. border-width:0px;
  3722. word-wrap:break-word;
  3723. text-transform:none;
  3724. visibility:hidden;
  3725. }
  3726. #u95031_img {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:125px;
  3732. height:38px;
  3733. }
  3734. #u95031 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:597px;
  3738. top:237px;
  3739. width:125px;
  3740. height:38px;
  3741. display:flex;
  3742. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:12px;
  3746. color:#606266;
  3747. }
  3748. #u95031 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 2px 2px 0px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u95031_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u95032_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:135px;
  3767. height:38px;
  3768. }
  3769. #u95032 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:722px;
  3773. top:237px;
  3774. width:135px;
  3775. height:38px;
  3776. display:flex;
  3777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:12px;
  3781. color:#606266;
  3782. }
  3783. #u95032 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 0px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u95032_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. visibility:hidden;
  3795. }
  3796. #u95033_img {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:125px;
  3802. height:38px;
  3803. }
  3804. #u95033 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:857px;
  3808. top:237px;
  3809. width:125px;
  3810. height:38px;
  3811. display:flex;
  3812. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. font-size:12px;
  3816. color:#606266;
  3817. }
  3818. #u95033 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u95033_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. visibility:hidden;
  3830. }
  3831. #u95034_img {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:130px;
  3837. height:38px;
  3838. }
  3839. #u95034 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:982px;
  3843. top:237px;
  3844. width:130px;
  3845. height:38px;
  3846. display:flex;
  3847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:12px;
  3851. color:#606266;
  3852. }
  3853. #u95034 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:2px 2px 2px 0px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u95034_text {
  3861. border-width:0px;
  3862. word-wrap:break-word;
  3863. text-transform:none;
  3864. visibility:hidden;
  3865. }
  3866. #u95035_img {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:107px;
  3872. height:38px;
  3873. }
  3874. #u95035 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:1112px;
  3878. top:237px;
  3879. width:107px;
  3880. height:38px;
  3881. display:flex;
  3882. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3883. font-weight:400;
  3884. font-style:normal;
  3885. font-size:12px;
  3886. color:#606266;
  3887. }
  3888. #u95035 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:2px 2px 2px 0px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u95035_text {
  3896. border-width:0px;
  3897. word-wrap:break-word;
  3898. text-transform:none;
  3899. visibility:hidden;
  3900. }
  3901. #u95036_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:212px;
  3907. height:38px;
  3908. }
  3909. #u95036 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:275px;
  3914. width:212px;
  3915. height:38px;
  3916. display:flex;
  3917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. font-size:12px;
  3921. color:#606266;
  3922. }
  3923. #u95036 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:2px 2px 2px 0px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u95036_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u95037_img {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:135px;
  3942. height:38px;
  3943. }
  3944. #u95037 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:212px;
  3948. top:275px;
  3949. width:135px;
  3950. height:38px;
  3951. display:flex;
  3952. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:12px;
  3956. color:#606266;
  3957. }
  3958. #u95037 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:2px 2px 2px 0px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u95037_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u95038_img {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:125px;
  3977. height:38px;
  3978. }
  3979. #u95038 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:347px;
  3983. top:275px;
  3984. width:125px;
  3985. height:38px;
  3986. display:flex;
  3987. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. font-size:12px;
  3991. color:#606266;
  3992. }
  3993. #u95038 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 0px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u95038_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u95039_img {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:125px;
  4012. height:38px;
  4013. }
  4014. #u95039 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:472px;
  4018. top:275px;
  4019. width:125px;
  4020. height:38px;
  4021. display:flex;
  4022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:12px;
  4026. color:#606266;
  4027. }
  4028. #u95039 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 0px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u95039_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u95040_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:125px;
  4047. height:38px;
  4048. }
  4049. #u95040 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:597px;
  4053. top:275px;
  4054. width:125px;
  4055. height:38px;
  4056. display:flex;
  4057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. color:#606266;
  4062. }
  4063. #u95040 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u95040_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u95041_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:135px;
  4082. height:38px;
  4083. }
  4084. #u95041 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:722px;
  4088. top:275px;
  4089. width:135px;
  4090. height:38px;
  4091. display:flex;
  4092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:12px;
  4096. color:#606266;
  4097. }
  4098. #u95041 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u95041_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u95042_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:125px;
  4117. height:38px;
  4118. }
  4119. #u95042 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:857px;
  4123. top:275px;
  4124. width:125px;
  4125. height:38px;
  4126. display:flex;
  4127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:12px;
  4131. color:#606266;
  4132. }
  4133. #u95042 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 0px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u95042_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. visibility:hidden;
  4145. }
  4146. #u95043_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:130px;
  4152. height:38px;
  4153. }
  4154. #u95043 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:982px;
  4158. top:275px;
  4159. width:130px;
  4160. height:38px;
  4161. display:flex;
  4162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:12px;
  4166. color:#606266;
  4167. }
  4168. #u95043 .text {
  4169. position:absolute;
  4170. align-self:center;
  4171. padding:2px 2px 2px 0px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u95043_text {
  4176. border-width:0px;
  4177. word-wrap:break-word;
  4178. text-transform:none;
  4179. visibility:hidden;
  4180. }
  4181. #u95044_img {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:107px;
  4187. height:38px;
  4188. }
  4189. #u95044 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:1112px;
  4193. top:275px;
  4194. width:107px;
  4195. height:38px;
  4196. display:flex;
  4197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:12px;
  4201. color:#606266;
  4202. }
  4203. #u95044 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u95044_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u95045_div {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:60px;
  4222. height:30px;
  4223. background:inherit;
  4224. background-color:rgba(255, 255, 255, 1);
  4225. box-sizing:border-box;
  4226. border-width:1px;
  4227. border-style:solid;
  4228. border-color:rgba(170, 170, 170, 1);
  4229. border-radius:4px;
  4230. -moz-box-shadow:none;
  4231. -webkit-box-shadow:none;
  4232. box-shadow:none;
  4233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:14px;
  4237. }
  4238. #u95045 {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:490px;
  4242. top:153px;
  4243. width:60px;
  4244. height:30px;
  4245. display:flex;
  4246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4247. font-weight:400;
  4248. font-style:normal;
  4249. font-size:14px;
  4250. }
  4251. #u95045 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 2px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u95045_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. }
  4263. #u95046_div {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:60px;
  4269. height:30px;
  4270. background:inherit;
  4271. background-color:rgba(255, 255, 255, 1);
  4272. box-sizing:border-box;
  4273. border-width:1px;
  4274. border-style:solid;
  4275. border-color:rgba(170, 170, 170, 1);
  4276. border-radius:4px;
  4277. -moz-box-shadow:none;
  4278. -webkit-box-shadow:none;
  4279. box-shadow:none;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:14px;
  4284. }
  4285. #u95046 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:420px;
  4289. top:153px;
  4290. width:60px;
  4291. height:30px;
  4292. display:flex;
  4293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4294. font-weight:400;
  4295. font-style:normal;
  4296. font-size:14px;
  4297. }
  4298. #u95046 .text {
  4299. position:absolute;
  4300. align-self:center;
  4301. padding:2px 2px 2px 2px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u95046_text {
  4306. border-width:0px;
  4307. word-wrap:break-word;
  4308. text-transform:none;
  4309. }
  4310. #u95047_div {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:60px;
  4316. height:30px;
  4317. background:inherit;
  4318. background-color:rgba(24, 144, 255, 1);
  4319. border:none;
  4320. border-radius:4px;
  4321. -moz-box-shadow:none;
  4322. -webkit-box-shadow:none;
  4323. box-shadow:none;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:14px;
  4328. color:#FFFFFF;
  4329. }
  4330. #u95047 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:350px;
  4334. top:153px;
  4335. width:60px;
  4336. height:30px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:14px;
  4342. color:#FFFFFF;
  4343. }
  4344. #u95047 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u95047_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u95048_div {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:73px;
  4362. height:50px;
  4363. background:inherit;
  4364. background-color:rgba(255, 255, 255, 0);
  4365. border:none;
  4366. border-left:0px;
  4367. border-top:0px;
  4368. border-right:0px;
  4369. border-radius:0px;
  4370. border-bottom-right-radius:0px;
  4371. border-bottom-left-radius:0px;
  4372. -moz-box-shadow:none;
  4373. -webkit-box-shadow:none;
  4374. box-shadow:none;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:18px;
  4379. }
  4380. #u95048 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:349px;
  4384. top:52px;
  4385. width:73px;
  4386. height:50px;
  4387. display:flex;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:18px;
  4392. }
  4393. #u95048 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:0px 0px 0px 0px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u95048_text {
  4401. border-width:0px;
  4402. white-space:nowrap;
  4403. text-transform:none;
  4404. }
  4405. #u95049 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:0px;
  4411. height:0px;
  4412. }
  4413. #u95050_div {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:100px;
  4419. height:100px;
  4420. background:inherit;
  4421. background-color:rgba(255, 255, 255, 1);
  4422. box-sizing:border-box;
  4423. border-width:1px;
  4424. border-style:solid;
  4425. border-color:rgba(242, 242, 242, 1);
  4426. border-radius:4px;
  4427. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4428. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4429. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:14px;
  4434. text-align:left;
  4435. }
  4436. #u95050 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:1437px;
  4440. top:259px;
  4441. width:100px;
  4442. height:100px;
  4443. display:flex;
  4444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:14px;
  4448. text-align:left;
  4449. }
  4450. #u95050 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 2px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u95050_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u95051_div {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:83px;
  4469. height:40px;
  4470. background:inherit;
  4471. background-color:rgba(255, 255, 255, 1);
  4472. box-sizing:border-box;
  4473. border-width:1px;
  4474. border-style:solid;
  4475. border-color:rgba(215, 215, 215, 1);
  4476. border-left:0px;
  4477. border-top:0px;
  4478. border-right:0px;
  4479. border-radius:0px;
  4480. border-bottom-right-radius:0px;
  4481. border-bottom-left-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:14px;
  4489. }
  4490. #u95051 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:1445px;
  4494. top:269px;
  4495. width:83px;
  4496. height:40px;
  4497. display:flex;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:14px;
  4502. }
  4503. #u95051 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 2px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u95051_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. }
  4515. #u95052_div {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:83px;
  4521. height:40px;
  4522. background:inherit;
  4523. background-color:rgba(255, 255, 255, 1);
  4524. border:none;
  4525. border-left:0px;
  4526. border-top:0px;
  4527. border-right:0px;
  4528. border-radius:0px;
  4529. border-bottom-right-radius:0px;
  4530. border-bottom-left-radius:0px;
  4531. -moz-box-shadow:none;
  4532. -webkit-box-shadow:none;
  4533. box-shadow:none;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:14px;
  4538. }
  4539. #u95052 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:1445px;
  4543. top:309px;
  4544. width:83px;
  4545. height:40px;
  4546. display:flex;
  4547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:14px;
  4551. }
  4552. #u95052 .text {
  4553. position:absolute;
  4554. align-self:center;
  4555. padding:2px 2px 2px 2px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u95052_text {
  4560. border-width:0px;
  4561. word-wrap:break-word;
  4562. text-transform:none;
  4563. }
  4564. #u95053_div {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:60px;
  4570. height:30px;
  4571. background:inherit;
  4572. background-color:rgba(24, 144, 255, 1);
  4573. border:none;
  4574. border-radius:4px;
  4575. -moz-box-shadow:none;
  4576. -webkit-box-shadow:none;
  4577. box-shadow:none;
  4578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4579. font-weight:400;
  4580. font-style:normal;
  4581. font-size:14px;
  4582. color:#FFFFFF;
  4583. }
  4584. #u95053 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:1102px;
  4588. top:102px;
  4589. width:60px;
  4590. height:30px;
  4591. display:flex;
  4592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:14px;
  4596. color:#FFFFFF;
  4597. }
  4598. #u95053 .text {
  4599. position:absolute;
  4600. align-self:center;
  4601. padding:2px 2px 2px 2px;
  4602. box-sizing:border-box;
  4603. width:100%;
  4604. }
  4605. #u95053_text {
  4606. border-width:0px;
  4607. word-wrap:break-word;
  4608. text-transform:none;
  4609. }
  4610. #u95054_div {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:60px;
  4616. height:30px;
  4617. background:inherit;
  4618. background-color:rgba(255, 255, 255, 1);
  4619. box-sizing:border-box;
  4620. border-width:1px;
  4621. border-style:solid;
  4622. border-color:rgba(170, 170, 170, 1);
  4623. border-radius:4px;
  4624. -moz-box-shadow:none;
  4625. -webkit-box-shadow:none;
  4626. box-shadow:none;
  4627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:14px;
  4631. }
  4632. #u95054 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:1172px;
  4636. top:102px;
  4637. width:60px;
  4638. height:30px;
  4639. display:flex;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:14px;
  4644. }
  4645. #u95054 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 2px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u95054_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. }
  4657. #u95055 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:0px;
  4663. height:0px;
  4664. }
  4665. #u95056_div {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:140px;
  4671. height:30px;
  4672. background:inherit;
  4673. background-color:rgba(255, 255, 255, 1);
  4674. box-sizing:border-box;
  4675. border-width:1px;
  4676. border-style:solid;
  4677. border-color:rgba(215, 215, 215, 1);
  4678. border-radius:4px;
  4679. -moz-box-shadow:none;
  4680. -webkit-box-shadow:none;
  4681. box-shadow:none;
  4682. font-size:14px;
  4683. }
  4684. #u95056 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:350px;
  4688. top:103px;
  4689. width:140px;
  4690. height:30px;
  4691. display:flex;
  4692. font-size:14px;
  4693. }
  4694. #u95056 .text {
  4695. position:absolute;
  4696. align-self:center;
  4697. padding:2px 2px 2px 2px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u95056_text {
  4702. border-width:0px;
  4703. word-wrap:break-word;
  4704. text-transform:none;
  4705. visibility:hidden;
  4706. }
  4707. #u95057_input {
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:134px;
  4712. height:23px;
  4713. padding:2px 2px 2px 2px;
  4714. font-family:'ArialMT', 'Arial', sans-serif;
  4715. font-weight:400;
  4716. font-style:normal;
  4717. font-size:14px;
  4718. letter-spacing:normal;
  4719. color:#AAAAAA;
  4720. vertical-align:none;
  4721. text-align:left;
  4722. text-transform:none;
  4723. background-color:transparent;
  4724. border-color:transparent;
  4725. }
  4726. #u95057_input.disabled {
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:134px;
  4731. height:23px;
  4732. padding:2px 2px 2px 2px;
  4733. font-family:'ArialMT', 'Arial', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:14px;
  4737. letter-spacing:normal;
  4738. color:#AAAAAA;
  4739. vertical-align:none;
  4740. text-align:left;
  4741. text-transform:none;
  4742. background-color:transparent;
  4743. border-color:transparent;
  4744. }
  4745. #u95057_div {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:134px;
  4751. height:23px;
  4752. background:inherit;
  4753. background-color:rgba(255, 255, 255, 1);
  4754. border:none;
  4755. border-radius:0px;
  4756. -moz-box-shadow:none;
  4757. -webkit-box-shadow:none;
  4758. box-shadow:none;
  4759. font-size:14px;
  4760. color:#AAAAAA;
  4761. }
  4762. #u95057 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:354px;
  4766. top:105px;
  4767. width:134px;
  4768. height:23px;
  4769. display:flex;
  4770. font-size:14px;
  4771. color:#AAAAAA;
  4772. }
  4773. #u95057 .text {
  4774. position:absolute;
  4775. align-self:flex-start;
  4776. padding:2px 2px 2px 2px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u95057_div.disabled {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:134px;
  4786. height:23px;
  4787. background:inherit;
  4788. background-color:rgba(240, 240, 240, 1);
  4789. border:none;
  4790. border-radius:0px;
  4791. -moz-box-shadow:none;
  4792. -webkit-box-shadow:none;
  4793. box-shadow:none;
  4794. font-size:14px;
  4795. color:#AAAAAA;
  4796. }
  4797. #u95057.disabled {
  4798. }
  4799. .u95057_input_option {
  4800. font-size:14px;
  4801. }
  4802. #u95058 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:0px;
  4808. height:0px;
  4809. }
  4810. #u95059_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:140px;
  4816. height:30px;
  4817. background:inherit;
  4818. background-color:rgba(255, 255, 255, 1);
  4819. box-sizing:border-box;
  4820. border-width:1px;
  4821. border-style:solid;
  4822. border-color:rgba(201, 201, 201, 1);
  4823. border-radius:4px;
  4824. -moz-box-shadow:none;
  4825. -webkit-box-shadow:none;
  4826. box-shadow:none;
  4827. font-family:'Microsoft YaHei', sans-serif;
  4828. font-weight:400;
  4829. font-style:normal;
  4830. font-size:14px;
  4831. color:#CCCCCC;
  4832. text-align:left;
  4833. }
  4834. #u95059 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:502px;
  4838. top:103px;
  4839. width:140px;
  4840. height:30px;
  4841. display:flex;
  4842. font-family:'Microsoft YaHei', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:14px;
  4846. color:#CCCCCC;
  4847. text-align:left;
  4848. }
  4849. #u95059 .text {
  4850. position:absolute;
  4851. align-self:center;
  4852. padding:2px 8px 2px 8px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u95059_text {
  4857. border-width:0px;
  4858. word-wrap:break-word;
  4859. text-transform:none;
  4860. visibility:hidden;
  4861. }
  4862. #u95060_input {
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:127px;
  4867. height:25px;
  4868. padding:2px 2px 2px 2px;
  4869. font-family:'Microsoft YaHei', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. font-size:10px;
  4873. letter-spacing:normal;
  4874. color:#000000;
  4875. vertical-align:none;
  4876. text-align:left;
  4877. text-transform:none;
  4878. background-color:transparent;
  4879. border-color:transparent;
  4880. }
  4881. #u95060_input.disabled {
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:127px;
  4886. height:25px;
  4887. padding:2px 2px 2px 2px;
  4888. font-family:'Microsoft YaHei', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:10px;
  4892. letter-spacing:normal;
  4893. color:#000000;
  4894. vertical-align:none;
  4895. text-align:left;
  4896. text-transform:none;
  4897. background-color:transparent;
  4898. border-color:transparent;
  4899. }
  4900. #u95060_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:127px;
  4906. height:25px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 1);
  4909. border:none;
  4910. border-radius:0px;
  4911. -moz-box-shadow:none;
  4912. -webkit-box-shadow:none;
  4913. box-shadow:none;
  4914. font-family:'Microsoft YaHei', sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. font-size:10px;
  4918. }
  4919. #u95060 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:510px;
  4923. top:104px;
  4924. width:127px;
  4925. height:25px;
  4926. display:flex;
  4927. font-family:'Microsoft YaHei', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:10px;
  4931. }
  4932. #u95060 .text {
  4933. position:absolute;
  4934. align-self:center;
  4935. padding:2px 2px 2px 2px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u95060_div.disabled {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:127px;
  4945. height:25px;
  4946. background:inherit;
  4947. background-color:rgba(240, 240, 240, 1);
  4948. border:none;
  4949. border-radius:0px;
  4950. -moz-box-shadow:none;
  4951. -webkit-box-shadow:none;
  4952. box-shadow:none;
  4953. font-family:'Microsoft YaHei', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:10px;
  4957. }
  4958. #u95060.disabled {
  4959. }
  4960. #u95061 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:0px;
  4966. height:0px;
  4967. }
  4968. #u95062_div {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:140px;
  4974. height:30px;
  4975. background:inherit;
  4976. background-color:rgba(255, 255, 255, 1);
  4977. box-sizing:border-box;
  4978. border-width:1px;
  4979. border-style:solid;
  4980. border-color:rgba(201, 201, 201, 1);
  4981. border-radius:4px;
  4982. -moz-box-shadow:none;
  4983. -webkit-box-shadow:none;
  4984. box-shadow:none;
  4985. font-family:'Microsoft YaHei', sans-serif;
  4986. font-weight:400;
  4987. font-style:normal;
  4988. font-size:14px;
  4989. color:#CCCCCC;
  4990. text-align:left;
  4991. }
  4992. #u95062 {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:652px;
  4996. top:103px;
  4997. width:140px;
  4998. height:30px;
  4999. display:flex;
  5000. font-family:'Microsoft YaHei', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:14px;
  5004. color:#CCCCCC;
  5005. text-align:left;
  5006. }
  5007. #u95062 .text {
  5008. position:absolute;
  5009. align-self:center;
  5010. padding:2px 8px 2px 8px;
  5011. box-sizing:border-box;
  5012. width:100%;
  5013. }
  5014. #u95062_text {
  5015. border-width:0px;
  5016. word-wrap:break-word;
  5017. text-transform:none;
  5018. visibility:hidden;
  5019. }
  5020. #u95063_input {
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:127px;
  5025. height:25px;
  5026. padding:2px 2px 2px 2px;
  5027. font-family:'Microsoft YaHei', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:10px;
  5031. letter-spacing:normal;
  5032. color:#000000;
  5033. vertical-align:none;
  5034. text-align:left;
  5035. text-transform:none;
  5036. background-color:transparent;
  5037. border-color:transparent;
  5038. }
  5039. #u95063_input.disabled {
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:127px;
  5044. height:25px;
  5045. padding:2px 2px 2px 2px;
  5046. font-family:'Microsoft YaHei', sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. font-size:10px;
  5050. letter-spacing:normal;
  5051. color:#000000;
  5052. vertical-align:none;
  5053. text-align:left;
  5054. text-transform:none;
  5055. background-color:transparent;
  5056. border-color:transparent;
  5057. }
  5058. #u95063_div {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:127px;
  5064. height:25px;
  5065. background:inherit;
  5066. background-color:rgba(255, 255, 255, 1);
  5067. border:none;
  5068. border-radius:0px;
  5069. -moz-box-shadow:none;
  5070. -webkit-box-shadow:none;
  5071. box-shadow:none;
  5072. font-family:'Microsoft YaHei', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:10px;
  5076. }
  5077. #u95063 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:660px;
  5081. top:104px;
  5082. width:127px;
  5083. height:25px;
  5084. display:flex;
  5085. font-family:'Microsoft YaHei', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:10px;
  5089. }
  5090. #u95063 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 2px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u95063_div.disabled {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:127px;
  5103. height:25px;
  5104. background:inherit;
  5105. background-color:rgba(240, 240, 240, 1);
  5106. border:none;
  5107. border-radius:0px;
  5108. -moz-box-shadow:none;
  5109. -webkit-box-shadow:none;
  5110. box-shadow:none;
  5111. font-family:'Microsoft YaHei', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:10px;
  5115. }
  5116. #u95063.disabled {
  5117. }
  5118. #u95064 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:0px;
  5124. height:0px;
  5125. }
  5126. #u95065_div {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:140px;
  5132. height:30px;
  5133. background:inherit;
  5134. background-color:rgba(255, 255, 255, 1);
  5135. box-sizing:border-box;
  5136. border-width:1px;
  5137. border-style:solid;
  5138. border-color:rgba(215, 215, 215, 1);
  5139. border-radius:4px;
  5140. -moz-box-shadow:none;
  5141. -webkit-box-shadow:none;
  5142. box-shadow:none;
  5143. font-size:14px;
  5144. }
  5145. #u95065 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:952px;
  5149. top:103px;
  5150. width:140px;
  5151. height:30px;
  5152. display:flex;
  5153. font-size:14px;
  5154. }
  5155. #u95065 .text {
  5156. position:absolute;
  5157. align-self:center;
  5158. padding:2px 2px 2px 2px;
  5159. box-sizing:border-box;
  5160. width:100%;
  5161. }
  5162. #u95065_text {
  5163. border-width:0px;
  5164. word-wrap:break-word;
  5165. text-transform:none;
  5166. visibility:hidden;
  5167. }
  5168. #u95066_input {
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:134px;
  5173. height:23px;
  5174. padding:2px 2px 2px 2px;
  5175. font-family:'ArialMT', 'Arial', sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. font-size:14px;
  5179. letter-spacing:normal;
  5180. color:#AAAAAA;
  5181. vertical-align:none;
  5182. text-align:left;
  5183. text-transform:none;
  5184. background-color:transparent;
  5185. border-color:transparent;
  5186. }
  5187. #u95066_input.disabled {
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:134px;
  5192. height:23px;
  5193. padding:2px 2px 2px 2px;
  5194. font-family:'ArialMT', 'Arial', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:14px;
  5198. letter-spacing:normal;
  5199. color:#AAAAAA;
  5200. vertical-align:none;
  5201. text-align:left;
  5202. text-transform:none;
  5203. background-color:transparent;
  5204. border-color:transparent;
  5205. }
  5206. #u95066_div {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:134px;
  5212. height:23px;
  5213. background:inherit;
  5214. background-color:rgba(255, 255, 255, 1);
  5215. border:none;
  5216. border-radius:0px;
  5217. -moz-box-shadow:none;
  5218. -webkit-box-shadow:none;
  5219. box-shadow:none;
  5220. font-size:14px;
  5221. color:#AAAAAA;
  5222. }
  5223. #u95066 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:956px;
  5227. top:105px;
  5228. width:134px;
  5229. height:23px;
  5230. display:flex;
  5231. font-size:14px;
  5232. color:#AAAAAA;
  5233. }
  5234. #u95066 .text {
  5235. position:absolute;
  5236. align-self:flex-start;
  5237. padding:2px 2px 2px 2px;
  5238. box-sizing:border-box;
  5239. width:100%;
  5240. }
  5241. #u95066_div.disabled {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:134px;
  5247. height:23px;
  5248. background:inherit;
  5249. background-color:rgba(240, 240, 240, 1);
  5250. border:none;
  5251. border-radius:0px;
  5252. -moz-box-shadow:none;
  5253. -webkit-box-shadow:none;
  5254. box-shadow:none;
  5255. font-size:14px;
  5256. color:#AAAAAA;
  5257. }
  5258. #u95066.disabled {
  5259. }
  5260. .u95066_input_option {
  5261. font-size:14px;
  5262. }
  5263. #u95067 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:0px;
  5269. height:0px;
  5270. }
  5271. #u95068_div {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:140px;
  5277. height:30px;
  5278. background:inherit;
  5279. background-color:rgba(255, 255, 255, 1);
  5280. box-sizing:border-box;
  5281. border-width:1px;
  5282. border-style:solid;
  5283. border-color:rgba(201, 201, 201, 1);
  5284. border-radius:4px;
  5285. -moz-box-shadow:none;
  5286. -webkit-box-shadow:none;
  5287. box-shadow:none;
  5288. font-family:'Microsoft YaHei', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:14px;
  5292. color:#CCCCCC;
  5293. text-align:left;
  5294. }
  5295. #u95068 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:802px;
  5299. top:103px;
  5300. width:140px;
  5301. height:30px;
  5302. display:flex;
  5303. font-family:'Microsoft YaHei', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:14px;
  5307. color:#CCCCCC;
  5308. text-align:left;
  5309. }
  5310. #u95068 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 8px 2px 8px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u95068_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u95069_input {
  5324. position:absolute;
  5325. left:0px;
  5326. top:0px;
  5327. width:127px;
  5328. height:25px;
  5329. padding:2px 2px 2px 2px;
  5330. font-family:'Microsoft YaHei', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:10px;
  5334. letter-spacing:normal;
  5335. color:#000000;
  5336. vertical-align:none;
  5337. text-align:left;
  5338. text-transform:none;
  5339. background-color:transparent;
  5340. border-color:transparent;
  5341. }
  5342. #u95069_input.disabled {
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:127px;
  5347. height:25px;
  5348. padding:2px 2px 2px 2px;
  5349. font-family:'Microsoft YaHei', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:10px;
  5353. letter-spacing:normal;
  5354. color:#000000;
  5355. vertical-align:none;
  5356. text-align:left;
  5357. text-transform:none;
  5358. background-color:transparent;
  5359. border-color:transparent;
  5360. }
  5361. #u95069_div {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:127px;
  5367. height:25px;
  5368. background:inherit;
  5369. background-color:rgba(255, 255, 255, 1);
  5370. border:none;
  5371. border-radius:0px;
  5372. -moz-box-shadow:none;
  5373. -webkit-box-shadow:none;
  5374. box-shadow:none;
  5375. font-family:'Microsoft YaHei', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:10px;
  5379. }
  5380. #u95069 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:810px;
  5384. top:104px;
  5385. width:127px;
  5386. height:25px;
  5387. display:flex;
  5388. font-family:'Microsoft YaHei', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:10px;
  5392. }
  5393. #u95069 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:2px 2px 2px 2px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u95069_div.disabled {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:127px;
  5406. height:25px;
  5407. background:inherit;
  5408. background-color:rgba(240, 240, 240, 1);
  5409. border:none;
  5410. border-radius:0px;
  5411. -moz-box-shadow:none;
  5412. -webkit-box-shadow:none;
  5413. box-shadow:none;
  5414. font-family:'Microsoft YaHei', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:10px;
  5418. }
  5419. #u95069.disabled {
  5420. }
  5421. #u95070 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:0px;
  5427. height:0px;
  5428. }
  5429. #u95071_div {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:800px;
  5435. height:1142px;
  5436. background:inherit;
  5437. background-color:rgba(255, 255, 255, 1);
  5438. box-sizing:border-box;
  5439. border-width:1px;
  5440. border-style:solid;
  5441. border-color:rgba(242, 242, 242, 1);
  5442. border-radius:0px;
  5443. -moz-box-shadow:none;
  5444. -webkit-box-shadow:none;
  5445. box-shadow:none;
  5446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:14px;
  5450. color:#AAAAAA;
  5451. text-align:center;
  5452. line-height:30px;
  5453. }
  5454. #u95071 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:1644px;
  5458. top:84px;
  5459. width:800px;
  5460. height:1142px;
  5461. display:flex;
  5462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:14px;
  5466. color:#AAAAAA;
  5467. text-align:center;
  5468. line-height:30px;
  5469. }
  5470. #u95071 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:5px 10px 5px 10px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u95071_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u95072_div {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:800px;
  5489. height:60px;
  5490. background:inherit;
  5491. background-color:rgba(255, 255, 255, 1);
  5492. box-sizing:border-box;
  5493. border-width:1px;
  5494. border-style:solid;
  5495. border-color:rgba(242, 242, 242, 1);
  5496. border-radius:0px;
  5497. -moz-box-shadow:none;
  5498. -webkit-box-shadow:none;
  5499. box-shadow:none;
  5500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5501. font-weight:400;
  5502. font-style:normal;
  5503. font-size:14px;
  5504. color:#AAAAAA;
  5505. text-align:center;
  5506. line-height:30px;
  5507. }
  5508. #u95072 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:1644px;
  5512. top:25px;
  5513. width:800px;
  5514. height:60px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:14px;
  5520. color:#AAAAAA;
  5521. text-align:center;
  5522. line-height:30px;
  5523. }
  5524. #u95072 .text {
  5525. position:absolute;
  5526. align-self:center;
  5527. padding:5px 10px 5px 10px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u95072_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. visibility:hidden;
  5536. }
  5537. #u95073_div {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:92px;
  5543. height:35px;
  5544. background:inherit;
  5545. background-color:rgba(255, 255, 255, 0);
  5546. border:none;
  5547. border-top:0px;
  5548. border-right:0px;
  5549. border-bottom:0px;
  5550. border-radius:0px;
  5551. border-top-left-radius:0px;
  5552. border-bottom-left-radius:0px;
  5553. -moz-box-shadow:none;
  5554. -webkit-box-shadow:none;
  5555. box-shadow:none;
  5556. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5557. font-weight:500;
  5558. font-style:normal;
  5559. font-size:18px;
  5560. }
  5561. #u95073 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:1675px;
  5565. top:38px;
  5566. width:92px;
  5567. height:35px;
  5568. display:flex;
  5569. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5570. font-weight:500;
  5571. font-style:normal;
  5572. font-size:18px;
  5573. }
  5574. #u95073 .text {
  5575. position:absolute;
  5576. align-self:center;
  5577. padding:5px 10px 5px 0px;
  5578. box-sizing:border-box;
  5579. width:100%;
  5580. }
  5581. #u95073_text {
  5582. border-width:0px;
  5583. white-space:nowrap;
  5584. text-transform:none;
  5585. }
  5586. #u95074 {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:0px;
  5592. height:0px;
  5593. }
  5594. #u95075_div {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:0px;
  5598. top:0px;
  5599. width:800px;
  5600. height:60px;
  5601. background:inherit;
  5602. background-color:rgba(255, 255, 255, 1);
  5603. box-sizing:border-box;
  5604. border-width:1px;
  5605. border-style:solid;
  5606. border-color:rgba(215, 215, 215, 1);
  5607. border-radius:0px;
  5608. -moz-box-shadow:none;
  5609. -webkit-box-shadow:none;
  5610. box-shadow:none;
  5611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. font-size:14px;
  5615. color:#AAAAAA;
  5616. text-align:center;
  5617. line-height:30px;
  5618. }
  5619. #u95075 {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:1644px;
  5623. top:1166px;
  5624. width:800px;
  5625. height:60px;
  5626. display:flex;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:14px;
  5631. color:#AAAAAA;
  5632. text-align:center;
  5633. line-height:30px;
  5634. }
  5635. #u95075 .text {
  5636. position:absolute;
  5637. align-self:center;
  5638. padding:5px 10px 5px 10px;
  5639. box-sizing:border-box;
  5640. width:100%;
  5641. }
  5642. #u95075_text {
  5643. border-width:0px;
  5644. word-wrap:break-word;
  5645. text-transform:none;
  5646. visibility:hidden;
  5647. }
  5648. #u95076_img {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:80px;
  5654. height:30px;
  5655. }
  5656. #u95076 {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:2324px;
  5660. top:1181px;
  5661. width:80px;
  5662. height:30px;
  5663. display:flex;
  5664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:14px;
  5668. color:#FFFFFF;
  5669. }
  5670. #u95076 .text {
  5671. position:absolute;
  5672. align-self:center;
  5673. padding:2px 2px 2px 2px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u95076_text {
  5678. border-width:0px;
  5679. word-wrap:break-word;
  5680. text-transform:none;
  5681. }
  5682. #u95077_div {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:80px;
  5688. height:30px;
  5689. background:inherit;
  5690. background-color:rgba(255, 255, 255, 1);
  5691. box-sizing:border-box;
  5692. border-width:1px;
  5693. border-style:solid;
  5694. border-color:rgba(170, 170, 170, 1);
  5695. border-radius:4px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:14px;
  5703. }
  5704. #u95077 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:2234px;
  5708. top:1181px;
  5709. width:80px;
  5710. height:30px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:14px;
  5716. }
  5717. #u95077 .text {
  5718. position:absolute;
  5719. align-self:center;
  5720. padding:2px 2px 2px 2px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u95077_text {
  5725. border-width:0px;
  5726. word-wrap:break-word;
  5727. text-transform:none;
  5728. }
  5729. #u95078 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:0px;
  5735. height:0px;
  5736. }
  5737. #u95079_div {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:300px;
  5743. height:40px;
  5744. background:inherit;
  5745. background-color:rgba(255, 255, 255, 1);
  5746. box-sizing:border-box;
  5747. border-width:1px;
  5748. border-style:solid;
  5749. border-color:rgba(201, 201, 201, 1);
  5750. border-radius:4px;
  5751. -moz-box-shadow:none;
  5752. -webkit-box-shadow:none;
  5753. box-shadow:none;
  5754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5755. font-weight:400;
  5756. font-style:normal;
  5757. font-size:14px;
  5758. text-align:right;
  5759. }
  5760. #u95079 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:1893px;
  5764. top:163px;
  5765. width:300px;
  5766. height:40px;
  5767. display:flex;
  5768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. text-align:right;
  5773. }
  5774. #u95079 .text {
  5775. position:absolute;
  5776. align-self:center;
  5777. padding:2px 8px 2px 8px;
  5778. box-sizing:border-box;
  5779. width:100%;
  5780. }
  5781. #u95079_text {
  5782. border-width:0px;
  5783. word-wrap:break-word;
  5784. text-transform:none;
  5785. visibility:hidden;
  5786. }
  5787. #u95080_input {
  5788. position:absolute;
  5789. left:0px;
  5790. top:0px;
  5791. width:242px;
  5792. height:33px;
  5793. padding:2px 2px 2px 2px;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:14px;
  5798. letter-spacing:normal;
  5799. color:#D7D7D7;
  5800. vertical-align:none;
  5801. text-align:left;
  5802. text-transform:none;
  5803. background-color:transparent;
  5804. border-color:transparent;
  5805. }
  5806. #u95080_input.disabled {
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:242px;
  5811. height:33px;
  5812. padding:2px 2px 2px 2px;
  5813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5814. font-weight:400;
  5815. font-style:normal;
  5816. font-size:14px;
  5817. letter-spacing:normal;
  5818. color:#D7D7D7;
  5819. vertical-align:none;
  5820. text-align:left;
  5821. text-transform:none;
  5822. background-color:transparent;
  5823. border-color:transparent;
  5824. }
  5825. #u95080_div {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:242px;
  5831. height:33px;
  5832. background:inherit;
  5833. background-color:rgba(255, 255, 255, 0);
  5834. border:none;
  5835. border-radius:0px;
  5836. -moz-box-shadow:none;
  5837. -webkit-box-shadow:none;
  5838. box-shadow:none;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:14px;
  5843. color:#D7D7D7;
  5844. }
  5845. #u95080 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:1905px;
  5849. top:166px;
  5850. width:242px;
  5851. height:33px;
  5852. display:flex;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:14px;
  5857. color:#D7D7D7;
  5858. }
  5859. #u95080 .text {
  5860. position:absolute;
  5861. align-self:center;
  5862. padding:2px 2px 2px 2px;
  5863. box-sizing:border-box;
  5864. width:100%;
  5865. }
  5866. #u95080_div.disabled {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:242px;
  5872. height:33px;
  5873. background:inherit;
  5874. background-color:rgba(240, 240, 240, 1);
  5875. border:none;
  5876. border-radius:0px;
  5877. -moz-box-shadow:none;
  5878. -webkit-box-shadow:none;
  5879. box-shadow:none;
  5880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5881. font-weight:400;
  5882. font-style:normal;
  5883. font-size:14px;
  5884. color:#D7D7D7;
  5885. }
  5886. #u95080.disabled {
  5887. }
  5888. #u95081_div {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:40px;
  5894. height:40px;
  5895. background:inherit;
  5896. background-color:rgba(255, 255, 255, 0);
  5897. border:none;
  5898. border-top:0px;
  5899. border-right:0px;
  5900. border-bottom:0px;
  5901. border-radius:0px;
  5902. border-top-left-radius:0px;
  5903. border-bottom-left-radius:0px;
  5904. -moz-box-shadow:none;
  5905. -webkit-box-shadow:none;
  5906. box-shadow:none;
  5907. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5908. font-weight:500;
  5909. font-style:normal;
  5910. font-size:24px;
  5911. text-align:center;
  5912. }
  5913. #u95081 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:2404px;
  5917. top:25px;
  5918. width:40px;
  5919. height:40px;
  5920. display:flex;
  5921. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5922. font-weight:500;
  5923. font-style:normal;
  5924. font-size:24px;
  5925. text-align:center;
  5926. }
  5927. #u95081 .text {
  5928. position:absolute;
  5929. align-self:center;
  5930. padding:5px 10px 5px 0px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u95081_text {
  5935. border-width:0px;
  5936. word-wrap:break-word;
  5937. text-transform:none;
  5938. }
  5939. #u95082 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:0px;
  5944. width:0px;
  5945. height:0px;
  5946. }
  5947. #u95083_div {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:300px;
  5953. height:80px;
  5954. background:inherit;
  5955. background-color:rgba(255, 255, 255, 1);
  5956. box-sizing:border-box;
  5957. border-width:1px;
  5958. border-style:solid;
  5959. border-color:rgba(201, 201, 201, 1);
  5960. border-radius:4px;
  5961. -moz-box-shadow:none;
  5962. -webkit-box-shadow:none;
  5963. box-shadow:none;
  5964. font-family:'Microsoft YaHei', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:14px;
  5968. color:#CCCCCC;
  5969. text-align:left;
  5970. }
  5971. #u95083 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:1893px;
  5975. top:650px;
  5976. width:300px;
  5977. height:80px;
  5978. display:flex;
  5979. font-family:'Microsoft YaHei', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:14px;
  5983. color:#CCCCCC;
  5984. text-align:left;
  5985. }
  5986. #u95083 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:2px 8px 2px 8px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u95083_text {
  5994. border-width:0px;
  5995. word-wrap:break-word;
  5996. text-transform:none;
  5997. visibility:hidden;
  5998. }
  5999. #u95084_input {
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:273px;
  6004. height:33px;
  6005. padding:2px 2px 2px 2px;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:14px;
  6010. letter-spacing:normal;
  6011. color:#D7D7D7;
  6012. vertical-align:none;
  6013. text-align:left;
  6014. text-transform:none;
  6015. background-color:transparent;
  6016. border-color:transparent;
  6017. }
  6018. #u95084_input.disabled {
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:273px;
  6023. height:33px;
  6024. padding:2px 2px 2px 2px;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:14px;
  6029. letter-spacing:normal;
  6030. color:#D7D7D7;
  6031. vertical-align:none;
  6032. text-align:left;
  6033. text-transform:none;
  6034. background-color:transparent;
  6035. border-color:transparent;
  6036. }
  6037. #u95084_div {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:0px;
  6041. top:0px;
  6042. width:273px;
  6043. height:33px;
  6044. background:inherit;
  6045. background-color:rgba(255, 255, 255, 0);
  6046. border:none;
  6047. border-radius:0px;
  6048. -moz-box-shadow:none;
  6049. -webkit-box-shadow:none;
  6050. box-shadow:none;
  6051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:14px;
  6055. color:#D7D7D7;
  6056. }
  6057. #u95084 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:1905px;
  6061. top:653px;
  6062. width:273px;
  6063. height:33px;
  6064. display:flex;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:14px;
  6069. color:#D7D7D7;
  6070. }
  6071. #u95084 .text {
  6072. position:absolute;
  6073. align-self:center;
  6074. padding:2px 2px 2px 2px;
  6075. box-sizing:border-box;
  6076. width:100%;
  6077. }
  6078. #u95084_div.disabled {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:0px;
  6082. top:0px;
  6083. width:273px;
  6084. height:33px;
  6085. background:inherit;
  6086. background-color:rgba(240, 240, 240, 1);
  6087. border:none;
  6088. border-radius:0px;
  6089. -moz-box-shadow:none;
  6090. -webkit-box-shadow:none;
  6091. box-shadow:none;
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:14px;
  6096. color:#D7D7D7;
  6097. }
  6098. #u95084.disabled {
  6099. }
  6100. #u95085_div {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:71px;
  6106. height:40px;
  6107. background:inherit;
  6108. background-color:rgba(255, 255, 255, 0);
  6109. border:none;
  6110. border-left:0px;
  6111. border-top:0px;
  6112. border-right:0px;
  6113. border-radius:0px;
  6114. border-bottom-right-radius:0px;
  6115. border-bottom-left-radius:0px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:14px;
  6123. }
  6124. #u95085 {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:1893px;
  6128. top:610px;
  6129. width:71px;
  6130. height:40px;
  6131. display:flex;
  6132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. font-size:14px;
  6136. }
  6137. #u95085 .text {
  6138. position:absolute;
  6139. align-self:center;
  6140. padding:0px 0px 0px 0px;
  6141. box-sizing:border-box;
  6142. width:100%;
  6143. }
  6144. #u95085_text {
  6145. border-width:0px;
  6146. white-space:nowrap;
  6147. text-transform:none;
  6148. }
  6149. #u95086_div {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:0px;
  6153. top:0px;
  6154. width:36px;
  6155. height:40px;
  6156. background:inherit;
  6157. background-color:rgba(255, 255, 255, 0);
  6158. border:none;
  6159. border-left:0px;
  6160. border-top:0px;
  6161. border-right:0px;
  6162. border-radius:0px;
  6163. border-bottom-right-radius:0px;
  6164. border-bottom-left-radius:0px;
  6165. -moz-box-shadow:none;
  6166. -webkit-box-shadow:none;
  6167. box-shadow:none;
  6168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6169. font-weight:400;
  6170. font-style:normal;
  6171. font-size:14px;
  6172. }
  6173. #u95086 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:1893px;
  6177. top:124px;
  6178. width:36px;
  6179. height:40px;
  6180. display:flex;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:14px;
  6185. }
  6186. #u95086 .text {
  6187. position:absolute;
  6188. align-self:center;
  6189. padding:0px 0px 0px 0px;
  6190. box-sizing:border-box;
  6191. width:100%;
  6192. }
  6193. #u95086_text {
  6194. border-width:0px;
  6195. white-space:nowrap;
  6196. text-transform:none;
  6197. }
  6198. #u95087 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:0px;
  6204. height:0px;
  6205. }
  6206. #u95088_div {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:300px;
  6212. height:40px;
  6213. background:inherit;
  6214. background-color:rgba(255, 255, 255, 1);
  6215. box-sizing:border-box;
  6216. border-width:1px;
  6217. border-style:solid;
  6218. border-color:rgba(201, 201, 201, 1);
  6219. border-radius:4px;
  6220. -moz-box-shadow:none;
  6221. -webkit-box-shadow:none;
  6222. box-shadow:none;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:14px;
  6227. text-align:right;
  6228. }
  6229. #u95088 {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:1893px;
  6233. top:252px;
  6234. width:300px;
  6235. height:40px;
  6236. display:flex;
  6237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:14px;
  6241. text-align:right;
  6242. }
  6243. #u95088 .text {
  6244. position:absolute;
  6245. align-self:center;
  6246. padding:2px 8px 2px 8px;
  6247. box-sizing:border-box;
  6248. width:100%;
  6249. }
  6250. #u95088_text {
  6251. border-width:0px;
  6252. word-wrap:break-word;
  6253. text-transform:none;
  6254. visibility:hidden;
  6255. }
  6256. #u95089_input {
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:242px;
  6261. height:33px;
  6262. padding:2px 2px 2px 2px;
  6263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6264. font-weight:400;
  6265. font-style:normal;
  6266. font-size:14px;
  6267. letter-spacing:normal;
  6268. color:#D7D7D7;
  6269. vertical-align:none;
  6270. text-align:left;
  6271. text-transform:none;
  6272. background-color:transparent;
  6273. border-color:transparent;
  6274. }
  6275. #u95089_input.disabled {
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:242px;
  6280. height:33px;
  6281. padding:2px 2px 2px 2px;
  6282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:14px;
  6286. letter-spacing:normal;
  6287. color:#D7D7D7;
  6288. vertical-align:none;
  6289. text-align:left;
  6290. text-transform:none;
  6291. background-color:transparent;
  6292. border-color:transparent;
  6293. }
  6294. #u95089_div {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:242px;
  6300. height:33px;
  6301. background:inherit;
  6302. background-color:rgba(255, 255, 255, 0);
  6303. border:none;
  6304. border-radius:0px;
  6305. -moz-box-shadow:none;
  6306. -webkit-box-shadow:none;
  6307. box-shadow:none;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:14px;
  6312. color:#D7D7D7;
  6313. }
  6314. #u95089 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:1905px;
  6318. top:255px;
  6319. width:242px;
  6320. height:33px;
  6321. display:flex;
  6322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:14px;
  6326. color:#D7D7D7;
  6327. }
  6328. #u95089 .text {
  6329. position:absolute;
  6330. align-self:center;
  6331. padding:2px 2px 2px 2px;
  6332. box-sizing:border-box;
  6333. width:100%;
  6334. }
  6335. #u95089_div.disabled {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:0px;
  6339. top:0px;
  6340. width:242px;
  6341. height:33px;
  6342. background:inherit;
  6343. background-color:rgba(240, 240, 240, 1);
  6344. border:none;
  6345. border-radius:0px;
  6346. -moz-box-shadow:none;
  6347. -webkit-box-shadow:none;
  6348. box-shadow:none;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:14px;
  6353. color:#D7D7D7;
  6354. }
  6355. #u95089.disabled {
  6356. }
  6357. #u95090_div {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:0px;
  6361. top:0px;
  6362. width:36px;
  6363. height:40px;
  6364. background:inherit;
  6365. background-color:rgba(255, 255, 255, 0);
  6366. border:none;
  6367. border-left:0px;
  6368. border-top:0px;
  6369. border-right:0px;
  6370. border-radius:0px;
  6371. border-bottom-right-radius:0px;
  6372. border-bottom-left-radius:0px;
  6373. -moz-box-shadow:none;
  6374. -webkit-box-shadow:none;
  6375. box-shadow:none;
  6376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:14px;
  6380. }
  6381. #u95090 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:1893px;
  6385. top:292px;
  6386. width:36px;
  6387. height:40px;
  6388. display:flex;
  6389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6390. font-weight:400;
  6391. font-style:normal;
  6392. font-size:14px;
  6393. }
  6394. #u95090 .text {
  6395. position:absolute;
  6396. align-self:center;
  6397. padding:0px 0px 0px 0px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u95090_text {
  6402. border-width:0px;
  6403. white-space:nowrap;
  6404. text-transform:none;
  6405. }
  6406. #u95091 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:0px;
  6412. height:0px;
  6413. }
  6414. #u95092_div {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:300px;
  6420. height:40px;
  6421. background:inherit;
  6422. background-color:rgba(255, 255, 255, 1);
  6423. box-sizing:border-box;
  6424. border-width:1px;
  6425. border-style:solid;
  6426. border-color:rgba(215, 215, 215, 1);
  6427. border-radius:4px;
  6428. -moz-box-shadow:none;
  6429. -webkit-box-shadow:none;
  6430. box-shadow:none;
  6431. font-size:14px;
  6432. }
  6433. #u95092 {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:1893px;
  6437. top:332px;
  6438. width:300px;
  6439. height:40px;
  6440. display:flex;
  6441. font-size:14px;
  6442. }
  6443. #u95092 .text {
  6444. position:absolute;
  6445. align-self:center;
  6446. padding:2px 2px 2px 2px;
  6447. box-sizing:border-box;
  6448. width:100%;
  6449. }
  6450. #u95092_text {
  6451. border-width:0px;
  6452. word-wrap:break-word;
  6453. text-transform:none;
  6454. visibility:hidden;
  6455. }
  6456. #u95093_input {
  6457. position:absolute;
  6458. left:0px;
  6459. top:0px;
  6460. width:286px;
  6461. height:31px;
  6462. padding:2px 2px 2px 2px;
  6463. font-family:'ArialMT', 'Arial', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:14px;
  6467. letter-spacing:normal;
  6468. color:#AAAAAA;
  6469. vertical-align:none;
  6470. text-align:left;
  6471. text-transform:none;
  6472. background-color:transparent;
  6473. border-color:transparent;
  6474. }
  6475. #u95093_input.disabled {
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:286px;
  6480. height:31px;
  6481. padding:2px 2px 2px 2px;
  6482. font-family:'ArialMT', 'Arial', sans-serif;
  6483. font-weight:400;
  6484. font-style:normal;
  6485. font-size:14px;
  6486. letter-spacing:normal;
  6487. color:#AAAAAA;
  6488. vertical-align:none;
  6489. text-align:left;
  6490. text-transform:none;
  6491. background-color:transparent;
  6492. border-color:transparent;
  6493. }
  6494. #u95093_div {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:286px;
  6500. height:31px;
  6501. background:inherit;
  6502. background-color:rgba(255, 255, 255, 1);
  6503. border:none;
  6504. border-radius:0px;
  6505. -moz-box-shadow:none;
  6506. -webkit-box-shadow:none;
  6507. box-shadow:none;
  6508. font-size:14px;
  6509. color:#AAAAAA;
  6510. }
  6511. #u95093 {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:1902px;
  6515. top:335px;
  6516. width:286px;
  6517. height:31px;
  6518. display:flex;
  6519. font-size:14px;
  6520. color:#AAAAAA;
  6521. }
  6522. #u95093 .text {
  6523. position:absolute;
  6524. align-self:flex-start;
  6525. padding:2px 2px 2px 2px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u95093_div.disabled {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:286px;
  6535. height:31px;
  6536. background:inherit;
  6537. background-color:rgba(240, 240, 240, 1);
  6538. border:none;
  6539. border-radius:0px;
  6540. -moz-box-shadow:none;
  6541. -webkit-box-shadow:none;
  6542. box-shadow:none;
  6543. font-size:14px;
  6544. color:#AAAAAA;
  6545. }
  6546. #u95093.disabled {
  6547. }
  6548. .u95093_input_option {
  6549. font-size:14px;
  6550. }
  6551. #u95094_div {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:50px;
  6557. height:40px;
  6558. background:inherit;
  6559. background-color:rgba(255, 255, 255, 0);
  6560. border:none;
  6561. border-left:0px;
  6562. border-top:0px;
  6563. border-right:0px;
  6564. border-radius:0px;
  6565. border-bottom-right-radius:0px;
  6566. border-bottom-left-radius:0px;
  6567. -moz-box-shadow:none;
  6568. -webkit-box-shadow:none;
  6569. box-shadow:none;
  6570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6571. font-weight:400;
  6572. font-style:normal;
  6573. font-size:14px;
  6574. }
  6575. #u95094 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:1893px;
  6579. top:213px;
  6580. width:50px;
  6581. height:40px;
  6582. display:flex;
  6583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6584. font-weight:400;
  6585. font-style:normal;
  6586. font-size:14px;
  6587. }
  6588. #u95094 .text {
  6589. position:absolute;
  6590. align-self:center;
  6591. padding:0px 0px 0px 0px;
  6592. box-sizing:border-box;
  6593. width:100%;
  6594. }
  6595. #u95094_text {
  6596. border-width:0px;
  6597. white-space:nowrap;
  6598. text-transform:none;
  6599. }
  6600. #u95095 {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:0px;
  6606. height:0px;
  6607. }
  6608. #u95096_div {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:300px;
  6614. height:40px;
  6615. background:inherit;
  6616. background-color:rgba(255, 255, 255, 1);
  6617. box-sizing:border-box;
  6618. border-width:1px;
  6619. border-style:solid;
  6620. border-color:rgba(201, 201, 201, 1);
  6621. border-radius:4px;
  6622. -moz-box-shadow:none;
  6623. -webkit-box-shadow:none;
  6624. box-shadow:none;
  6625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6626. font-weight:400;
  6627. font-style:normal;
  6628. font-size:14px;
  6629. text-align:right;
  6630. }
  6631. #u95096 {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:1893px;
  6635. top:411px;
  6636. width:300px;
  6637. height:40px;
  6638. display:flex;
  6639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:14px;
  6643. text-align:right;
  6644. }
  6645. #u95096 .text {
  6646. position:absolute;
  6647. align-self:center;
  6648. padding:2px 8px 2px 8px;
  6649. box-sizing:border-box;
  6650. width:100%;
  6651. }
  6652. #u95096_text {
  6653. border-width:0px;
  6654. word-wrap:break-word;
  6655. text-transform:none;
  6656. visibility:hidden;
  6657. }
  6658. #u95097_input {
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:242px;
  6663. height:33px;
  6664. padding:2px 2px 2px 2px;
  6665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. font-size:14px;
  6669. letter-spacing:normal;
  6670. color:#D7D7D7;
  6671. vertical-align:none;
  6672. text-align:left;
  6673. text-transform:none;
  6674. background-color:transparent;
  6675. border-color:transparent;
  6676. }
  6677. #u95097_input.disabled {
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:242px;
  6682. height:33px;
  6683. padding:2px 2px 2px 2px;
  6684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6685. font-weight:400;
  6686. font-style:normal;
  6687. font-size:14px;
  6688. letter-spacing:normal;
  6689. color:#D7D7D7;
  6690. vertical-align:none;
  6691. text-align:left;
  6692. text-transform:none;
  6693. background-color:transparent;
  6694. border-color:transparent;
  6695. }
  6696. #u95097_div {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:0px;
  6700. top:0px;
  6701. width:242px;
  6702. height:33px;
  6703. background:inherit;
  6704. background-color:rgba(255, 255, 255, 0);
  6705. border:none;
  6706. border-radius:0px;
  6707. -moz-box-shadow:none;
  6708. -webkit-box-shadow:none;
  6709. box-shadow:none;
  6710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6711. font-weight:400;
  6712. font-style:normal;
  6713. font-size:14px;
  6714. color:#D7D7D7;
  6715. }
  6716. #u95097 {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:1905px;
  6720. top:414px;
  6721. width:242px;
  6722. height:33px;
  6723. display:flex;
  6724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6725. font-weight:400;
  6726. font-style:normal;
  6727. font-size:14px;
  6728. color:#D7D7D7;
  6729. }
  6730. #u95097 .text {
  6731. position:absolute;
  6732. align-self:center;
  6733. padding:2px 2px 2px 2px;
  6734. box-sizing:border-box;
  6735. width:100%;
  6736. }
  6737. #u95097_div.disabled {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:0px;
  6741. top:0px;
  6742. width:242px;
  6743. height:33px;
  6744. background:inherit;
  6745. background-color:rgba(240, 240, 240, 1);
  6746. border:none;
  6747. border-radius:0px;
  6748. -moz-box-shadow:none;
  6749. -webkit-box-shadow:none;
  6750. box-shadow:none;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:14px;
  6755. color:#D7D7D7;
  6756. }
  6757. #u95097.disabled {
  6758. }
  6759. #u95098_div {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:0px;
  6763. top:0px;
  6764. width:64px;
  6765. height:40px;
  6766. background:inherit;
  6767. background-color:rgba(255, 255, 255, 0);
  6768. border:none;
  6769. border-left:0px;
  6770. border-top:0px;
  6771. border-right:0px;
  6772. border-radius:0px;
  6773. border-bottom-right-radius:0px;
  6774. border-bottom-left-radius:0px;
  6775. -moz-box-shadow:none;
  6776. -webkit-box-shadow:none;
  6777. box-shadow:none;
  6778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6779. font-weight:400;
  6780. font-style:normal;
  6781. font-size:14px;
  6782. }
  6783. #u95098 {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:1893px;
  6787. top:372px;
  6788. width:64px;
  6789. height:40px;
  6790. display:flex;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:14px;
  6795. }
  6796. #u95098 .text {
  6797. position:absolute;
  6798. align-self:center;
  6799. padding:0px 0px 0px 0px;
  6800. box-sizing:border-box;
  6801. width:100%;
  6802. }
  6803. #u95098_text {
  6804. border-width:0px;
  6805. white-space:nowrap;
  6806. text-transform:none;
  6807. }
  6808. #u95099_div {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:0px;
  6812. top:0px;
  6813. width:160px;
  6814. height:160px;
  6815. background:inherit;
  6816. background-color:rgba(255, 255, 255, 1);
  6817. box-sizing:border-box;
  6818. border-width:1px;
  6819. border-style:solid;
  6820. border-color:rgba(201, 201, 201, 1);
  6821. border-radius:4px;
  6822. -moz-box-shadow:none;
  6823. -webkit-box-shadow:none;
  6824. box-shadow:none;
  6825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6826. font-weight:400;
  6827. font-style:normal;
  6828. }
  6829. #u95099 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:1683px;
  6833. top:123px;
  6834. width:160px;
  6835. height:160px;
  6836. display:flex;
  6837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. }
  6841. #u95099 .text {
  6842. position:absolute;
  6843. align-self:center;
  6844. padding:2px 8px 2px 8px;
  6845. box-sizing:border-box;
  6846. width:100%;
  6847. }
  6848. #u95099_text {
  6849. border-width:0px;
  6850. word-wrap:break-word;
  6851. text-transform:none;
  6852. }
  6853. #u95100_div {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:0px;
  6857. top:0px;
  6858. width:29px;
  6859. height:40px;
  6860. background:inherit;
  6861. background-color:rgba(255, 255, 255, 0);
  6862. border:none;
  6863. border-left:0px;
  6864. border-top:0px;
  6865. border-right:0px;
  6866. border-radius:0px;
  6867. border-bottom-right-radius:0px;
  6868. border-bottom-left-radius:0px;
  6869. -moz-box-shadow:none;
  6870. -webkit-box-shadow:none;
  6871. box-shadow:none;
  6872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6873. font-weight:400;
  6874. font-style:normal;
  6875. font-size:14px;
  6876. }
  6877. #u95100 {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:1893px;
  6881. top:531px;
  6882. width:29px;
  6883. height:40px;
  6884. display:flex;
  6885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:14px;
  6889. }
  6890. #u95100 .text {
  6891. position:absolute;
  6892. align-self:center;
  6893. padding:0px 0px 0px 0px;
  6894. box-sizing:border-box;
  6895. width:100%;
  6896. }
  6897. #u95100_text {
  6898. border-width:0px;
  6899. white-space:nowrap;
  6900. text-transform:none;
  6901. }
  6902. #u95101_img {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:0px;
  6906. top:0px;
  6907. width:50px;
  6908. height:31px;
  6909. }
  6910. #u95101 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:1893px;
  6914. top:571px;
  6915. width:50px;
  6916. height:31px;
  6917. display:flex;
  6918. }
  6919. #u95101 .text {
  6920. position:absolute;
  6921. align-self:center;
  6922. padding:2px 2px 2px 2px;
  6923. box-sizing:border-box;
  6924. width:100%;
  6925. }
  6926. #u95101_text {
  6927. border-width:0px;
  6928. word-wrap:break-word;
  6929. text-transform:none;
  6930. visibility:hidden;
  6931. }
  6932. #u95102 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:0px;
  6938. height:0px;
  6939. }
  6940. #u95103_div {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:0px;
  6944. top:0px;
  6945. width:300px;
  6946. height:40px;
  6947. background:inherit;
  6948. background-color:rgba(255, 255, 255, 1);
  6949. box-sizing:border-box;
  6950. border-width:1px;
  6951. border-style:solid;
  6952. border-color:rgba(201, 201, 201, 1);
  6953. border-radius:4px;
  6954. -moz-box-shadow:none;
  6955. -webkit-box-shadow:none;
  6956. box-shadow:none;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:14px;
  6961. text-align:right;
  6962. }
  6963. #u95103 {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:1893px;
  6967. top:490px;
  6968. width:300px;
  6969. height:40px;
  6970. display:flex;
  6971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6972. font-weight:400;
  6973. font-style:normal;
  6974. font-size:14px;
  6975. text-align:right;
  6976. }
  6977. #u95103 .text {
  6978. position:absolute;
  6979. align-self:center;
  6980. padding:2px 8px 2px 8px;
  6981. box-sizing:border-box;
  6982. width:100%;
  6983. }
  6984. #u95103_text {
  6985. border-width:0px;
  6986. word-wrap:break-word;
  6987. text-transform:none;
  6988. visibility:hidden;
  6989. }
  6990. #u95104_input {
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:242px;
  6995. height:33px;
  6996. padding:2px 2px 2px 2px;
  6997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:14px;
  7001. letter-spacing:normal;
  7002. color:#D7D7D7;
  7003. vertical-align:none;
  7004. text-align:left;
  7005. text-transform:none;
  7006. background-color:transparent;
  7007. border-color:transparent;
  7008. }
  7009. #u95104_input.disabled {
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:242px;
  7014. height:33px;
  7015. padding:2px 2px 2px 2px;
  7016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7017. font-weight:400;
  7018. font-style:normal;
  7019. font-size:14px;
  7020. letter-spacing:normal;
  7021. color:#D7D7D7;
  7022. vertical-align:none;
  7023. text-align:left;
  7024. text-transform:none;
  7025. background-color:transparent;
  7026. border-color:transparent;
  7027. }
  7028. #u95104_div {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:242px;
  7034. height:33px;
  7035. background:inherit;
  7036. background-color:rgba(255, 255, 255, 0);
  7037. border:none;
  7038. border-radius:0px;
  7039. -moz-box-shadow:none;
  7040. -webkit-box-shadow:none;
  7041. box-shadow:none;
  7042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7043. font-weight:400;
  7044. font-style:normal;
  7045. font-size:14px;
  7046. color:#D7D7D7;
  7047. }
  7048. #u95104 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:1905px;
  7052. top:493px;
  7053. width:242px;
  7054. height:33px;
  7055. display:flex;
  7056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:14px;
  7060. color:#D7D7D7;
  7061. }
  7062. #u95104 .text {
  7063. position:absolute;
  7064. align-self:center;
  7065. padding:2px 2px 2px 2px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u95104_div.disabled {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:0px;
  7073. top:0px;
  7074. width:242px;
  7075. height:33px;
  7076. background:inherit;
  7077. background-color:rgba(240, 240, 240, 1);
  7078. border:none;
  7079. border-radius:0px;
  7080. -moz-box-shadow:none;
  7081. -webkit-box-shadow:none;
  7082. box-shadow:none;
  7083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. font-size:14px;
  7087. color:#D7D7D7;
  7088. }
  7089. #u95104.disabled {
  7090. }
  7091. #u95105_div {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:57px;
  7097. height:40px;
  7098. background:inherit;
  7099. background-color:rgba(255, 255, 255, 0);
  7100. border:none;
  7101. border-left:0px;
  7102. border-top:0px;
  7103. border-right:0px;
  7104. border-radius:0px;
  7105. border-bottom-right-radius:0px;
  7106. border-bottom-left-radius:0px;
  7107. -moz-box-shadow:none;
  7108. -webkit-box-shadow:none;
  7109. box-shadow:none;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:14px;
  7114. }
  7115. #u95105 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:1893px;
  7119. top:451px;
  7120. width:57px;
  7121. height:40px;
  7122. display:flex;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:14px;
  7127. }
  7128. #u95105 .text {
  7129. position:absolute;
  7130. align-self:center;
  7131. padding:0px 0px 0px 0px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u95105_text {
  7136. border-width:0px;
  7137. white-space:nowrap;
  7138. text-transform:none;
  7139. }
  7140. #u95106_div {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:0px;
  7144. top:0px;
  7145. width:73px;
  7146. height:40px;
  7147. background:inherit;
  7148. background-color:rgba(255, 255, 255, 0);
  7149. border:none;
  7150. border-left:0px;
  7151. border-top:0px;
  7152. border-right:0px;
  7153. border-radius:0px;
  7154. border-bottom-right-radius:0px;
  7155. border-bottom-left-radius:0px;
  7156. -moz-box-shadow:none;
  7157. -webkit-box-shadow:none;
  7158. box-shadow:none;
  7159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7160. font-weight:400;
  7161. font-style:normal;
  7162. font-size:12px;
  7163. color:#1890FF;
  7164. }
  7165. #u95106 {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:2203px;
  7169. top:163px;
  7170. width:73px;
  7171. height:40px;
  7172. display:flex;
  7173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7174. font-weight:400;
  7175. font-style:normal;
  7176. font-size:12px;
  7177. color:#1890FF;
  7178. }
  7179. #u95106 .text {
  7180. position:absolute;
  7181. align-self:center;
  7182. padding:0px 0px 0px 0px;
  7183. box-sizing:border-box;
  7184. width:100%;
  7185. }
  7186. #u95106_text {
  7187. border-width:0px;
  7188. white-space:nowrap;
  7189. text-transform:none;
  7190. }
  7191. #u95107 {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:0px;
  7197. height:0px;
  7198. }
  7199. #u95108_div {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:0px;
  7203. top:0px;
  7204. width:200px;
  7205. height:1180px;
  7206. background:inherit;
  7207. background-color:rgba(255, 255, 255, 1);
  7208. border:none;
  7209. border-radius:0px;
  7210. -moz-box-shadow:none;
  7211. -webkit-box-shadow:none;
  7212. box-shadow:none;
  7213. }
  7214. #u95108 {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:120px;
  7218. top:50px;
  7219. width:200px;
  7220. height:1180px;
  7221. display:flex;
  7222. }
  7223. #u95108 .text {
  7224. position:absolute;
  7225. align-self:center;
  7226. padding:2px 2px 2px 2px;
  7227. box-sizing:border-box;
  7228. width:100%;
  7229. }
  7230. #u95108_text {
  7231. border-width:0px;
  7232. word-wrap:break-word;
  7233. text-transform:none;
  7234. visibility:hidden;
  7235. }
  7236. #u95109_div {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:0px;
  7240. top:0px;
  7241. width:200px;
  7242. height:60px;
  7243. background:inherit;
  7244. background-color:rgba(224, 231, 247, 1);
  7245. border:none;
  7246. border-radius:0px;
  7247. -moz-box-shadow:none;
  7248. -webkit-box-shadow:none;
  7249. box-shadow:none;
  7250. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7251. font-weight:500;
  7252. font-style:normal;
  7253. font-size:18px;
  7254. }
  7255. #u95109 {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:120px;
  7259. top:50px;
  7260. width:200px;
  7261. height:60px;
  7262. display:flex;
  7263. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7264. font-weight:500;
  7265. font-style:normal;
  7266. font-size:18px;
  7267. }
  7268. #u95109 .text {
  7269. position:absolute;
  7270. align-self:center;
  7271. padding:0px 0px 0px 20px;
  7272. box-sizing:border-box;
  7273. width:100%;
  7274. }
  7275. #u95109_text {
  7276. border-width:0px;
  7277. word-wrap:break-word;
  7278. text-transform:none;
  7279. }
  7280. #u95110_div {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:0px;
  7284. top:0px;
  7285. width:65px;
  7286. height:22px;
  7287. background:inherit;
  7288. background-color:rgba(255, 255, 255, 0);
  7289. border:none;
  7290. border-radius:0px;
  7291. -moz-box-shadow:none;
  7292. -webkit-box-shadow:none;
  7293. box-shadow:none;
  7294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7295. font-weight:400;
  7296. font-style:normal;
  7297. font-size:16px;
  7298. }
  7299. #u95110 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:145px;
  7303. top:163px;
  7304. width:65px;
  7305. height:22px;
  7306. display:flex;
  7307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:16px;
  7311. }
  7312. #u95110 .text {
  7313. position:absolute;
  7314. align-self:flex-start;
  7315. padding:0px 0px 0px 0px;
  7316. box-sizing:border-box;
  7317. width:100%;
  7318. }
  7319. #u95110_text {
  7320. border-width:0px;
  7321. white-space:nowrap;
  7322. text-transform:none;
  7323. }
  7324. #u95111_div {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:65px;
  7330. height:22px;
  7331. background:inherit;
  7332. background-color:rgba(255, 255, 255, 0);
  7333. border:none;
  7334. border-radius:0px;
  7335. -moz-box-shadow:none;
  7336. -webkit-box-shadow:none;
  7337. box-shadow:none;
  7338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7339. font-weight:400;
  7340. font-style:normal;
  7341. font-size:16px;
  7342. }
  7343. #u95111 {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:145px;
  7347. top:205px;
  7348. width:65px;
  7349. height:22px;
  7350. display:flex;
  7351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7352. font-weight:400;
  7353. font-style:normal;
  7354. font-size:16px;
  7355. }
  7356. #u95111 .text {
  7357. position:absolute;
  7358. align-self:flex-start;
  7359. padding:0px 0px 0px 0px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u95111_text {
  7364. border-width:0px;
  7365. white-space:nowrap;
  7366. text-transform:none;
  7367. }
  7368. #u95112_div {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:0px;
  7372. top:0px;
  7373. width:65px;
  7374. height:22px;
  7375. background:inherit;
  7376. background-color:rgba(255, 255, 255, 0);
  7377. border:none;
  7378. border-radius:0px;
  7379. -moz-box-shadow:none;
  7380. -webkit-box-shadow:none;
  7381. box-shadow:none;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:16px;
  7386. }
  7387. #u95112 {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:145px;
  7391. top:247px;
  7392. width:65px;
  7393. height:22px;
  7394. display:flex;
  7395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7396. font-weight:400;
  7397. font-style:normal;
  7398. font-size:16px;
  7399. }
  7400. #u95112 .text {
  7401. position:absolute;
  7402. align-self:flex-start;
  7403. padding:0px 0px 0px 0px;
  7404. box-sizing:border-box;
  7405. width:100%;
  7406. }
  7407. #u95112_text {
  7408. border-width:0px;
  7409. white-space:nowrap;
  7410. text-transform:none;
  7411. }
  7412. #u95113_div {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:81px;
  7418. height:22px;
  7419. background:inherit;
  7420. background-color:rgba(255, 255, 255, 0);
  7421. border:none;
  7422. border-radius:0px;
  7423. -moz-box-shadow:none;
  7424. -webkit-box-shadow:none;
  7425. box-shadow:none;
  7426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7427. font-weight:400;
  7428. font-style:normal;
  7429. font-size:16px;
  7430. }
  7431. #u95113 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:145px;
  7435. top:289px;
  7436. width:81px;
  7437. height:22px;
  7438. display:flex;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:16px;
  7443. }
  7444. #u95113 .text {
  7445. position:absolute;
  7446. align-self:flex-start;
  7447. padding:0px 0px 0px 0px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u95113_text {
  7452. border-width:0px;
  7453. white-space:nowrap;
  7454. text-transform:none;
  7455. }
  7456. #u95114_div {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:65px;
  7462. height:22px;
  7463. background:inherit;
  7464. background-color:rgba(255, 255, 255, 0);
  7465. border:none;
  7466. border-radius:0px;
  7467. -moz-box-shadow:none;
  7468. -webkit-box-shadow:none;
  7469. box-shadow:none;
  7470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7471. font-weight:400;
  7472. font-style:normal;
  7473. font-size:16px;
  7474. }
  7475. #u95114 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:145px;
  7479. top:331px;
  7480. width:65px;
  7481. height:22px;
  7482. display:flex;
  7483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7484. font-weight:400;
  7485. font-style:normal;
  7486. font-size:16px;
  7487. }
  7488. #u95114 .text {
  7489. position:absolute;
  7490. align-self:flex-start;
  7491. padding:0px 0px 0px 0px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u95114_text {
  7496. border-width:0px;
  7497. white-space:nowrap;
  7498. text-transform:none;
  7499. }
  7500. #u95115_div {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:0px;
  7504. top:0px;
  7505. width:65px;
  7506. height:22px;
  7507. background:inherit;
  7508. background-color:rgba(255, 255, 255, 0);
  7509. border:none;
  7510. border-radius:0px;
  7511. -moz-box-shadow:none;
  7512. -webkit-box-shadow:none;
  7513. box-shadow:none;
  7514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7515. font-weight:400;
  7516. font-style:normal;
  7517. font-size:16px;
  7518. }
  7519. #u95115 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:143px;
  7523. top:426px;
  7524. width:65px;
  7525. height:22px;
  7526. display:flex;
  7527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7528. font-weight:400;
  7529. font-style:normal;
  7530. font-size:16px;
  7531. }
  7532. #u95115 .text {
  7533. position:absolute;
  7534. align-self:flex-start;
  7535. padding:0px 0px 0px 0px;
  7536. box-sizing:border-box;
  7537. width:100%;
  7538. }
  7539. #u95115_text {
  7540. border-width:0px;
  7541. white-space:nowrap;
  7542. text-transform:none;
  7543. }
  7544. #u95116_img {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:201px;
  7550. height:2px;
  7551. }
  7552. #u95116 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:120px;
  7556. top:373px;
  7557. width:200px;
  7558. height:1px;
  7559. display:flex;
  7560. }
  7561. #u95116 .text {
  7562. position:absolute;
  7563. align-self:center;
  7564. padding:2px 2px 2px 2px;
  7565. box-sizing:border-box;
  7566. width:100%;
  7567. }
  7568. #u95116_text {
  7569. border-width:0px;
  7570. word-wrap:break-word;
  7571. text-transform:none;
  7572. visibility:hidden;
  7573. }
  7574. #u95117_div {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:49px;
  7580. height:17px;
  7581. background:inherit;
  7582. background-color:rgba(255, 255, 255, 0);
  7583. border:none;
  7584. border-radius:0px;
  7585. -moz-box-shadow:none;
  7586. -webkit-box-shadow:none;
  7587. box-shadow:none;
  7588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7589. font-weight:400;
  7590. font-style:normal;
  7591. font-size:12px;
  7592. color:#AAAAAA;
  7593. }
  7594. #u95117 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:143px;
  7598. top:393px;
  7599. width:49px;
  7600. height:17px;
  7601. display:flex;
  7602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7603. font-weight:400;
  7604. font-style:normal;
  7605. font-size:12px;
  7606. color:#AAAAAA;
  7607. }
  7608. #u95117 .text {
  7609. position:absolute;
  7610. align-self:flex-start;
  7611. padding:0px 0px 0px 0px;
  7612. box-sizing:border-box;
  7613. width:100%;
  7614. }
  7615. #u95117_text {
  7616. border-width:0px;
  7617. white-space:nowrap;
  7618. text-transform:none;
  7619. }
  7620. #u95118_div {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:0px;
  7624. top:0px;
  7625. width:49px;
  7626. height:17px;
  7627. background:inherit;
  7628. background-color:rgba(255, 255, 255, 0);
  7629. border:none;
  7630. border-radius:0px;
  7631. -moz-box-shadow:none;
  7632. -webkit-box-shadow:none;
  7633. box-shadow:none;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:12px;
  7638. color:#AAAAAA;
  7639. }
  7640. #u95118 {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:143px;
  7644. top:130px;
  7645. width:49px;
  7646. height:17px;
  7647. display:flex;
  7648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:12px;
  7652. color:#AAAAAA;
  7653. }
  7654. #u95118 .text {
  7655. position:absolute;
  7656. align-self:flex-start;
  7657. padding:0px 0px 0px 0px;
  7658. box-sizing:border-box;
  7659. width:100%;
  7660. }
  7661. #u95118_text {
  7662. border-width:0px;
  7663. white-space:nowrap;
  7664. text-transform:none;
  7665. }
  7666. #u95119_div {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:97px;
  7672. height:22px;
  7673. background:inherit;
  7674. background-color:rgba(255, 255, 255, 0);
  7675. border:none;
  7676. border-radius:0px;
  7677. -moz-box-shadow:none;
  7678. -webkit-box-shadow:none;
  7679. box-shadow:none;
  7680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7681. font-weight:400;
  7682. font-style:normal;
  7683. font-size:16px;
  7684. }
  7685. #u95119 {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:143px;
  7689. top:521px;
  7690. width:97px;
  7691. height:22px;
  7692. display:flex;
  7693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7694. font-weight:400;
  7695. font-style:normal;
  7696. font-size:16px;
  7697. }
  7698. #u95119 .text {
  7699. position:absolute;
  7700. align-self:flex-start;
  7701. padding:0px 0px 0px 0px;
  7702. box-sizing:border-box;
  7703. width:100%;
  7704. }
  7705. #u95119_text {
  7706. border-width:0px;
  7707. white-space:nowrap;
  7708. text-transform:none;
  7709. }
  7710. #u95120_img {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:201px;
  7716. height:2px;
  7717. }
  7718. #u95120 {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:120px;
  7722. top:468px;
  7723. width:200px;
  7724. height:1px;
  7725. display:flex;
  7726. }
  7727. #u95120 .text {
  7728. position:absolute;
  7729. align-self:center;
  7730. padding:2px 2px 2px 2px;
  7731. box-sizing:border-box;
  7732. width:100%;
  7733. }
  7734. #u95120_text {
  7735. border-width:0px;
  7736. word-wrap:break-word;
  7737. text-transform:none;
  7738. visibility:hidden;
  7739. }
  7740. #u95121_div {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:0px;
  7744. top:0px;
  7745. width:49px;
  7746. height:17px;
  7747. background:inherit;
  7748. background-color:rgba(255, 255, 255, 0);
  7749. border:none;
  7750. border-radius:0px;
  7751. -moz-box-shadow:none;
  7752. -webkit-box-shadow:none;
  7753. box-shadow:none;
  7754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7755. font-weight:400;
  7756. font-style:normal;
  7757. font-size:12px;
  7758. color:#AAAAAA;
  7759. }
  7760. #u95121 {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:143px;
  7764. top:488px;
  7765. width:49px;
  7766. height:17px;
  7767. display:flex;
  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. #u95121 .text {
  7775. position:absolute;
  7776. align-self:flex-start;
  7777. padding:0px 0px 0px 0px;
  7778. box-sizing:border-box;
  7779. width:100%;
  7780. }
  7781. #u95121_text {
  7782. border-width:0px;
  7783. white-space:nowrap;
  7784. text-transform:none;
  7785. }
  7786. #u95122_div {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:0px;
  7790. top:0px;
  7791. width:97px;
  7792. height:22px;
  7793. background:inherit;
  7794. background-color:rgba(255, 255, 255, 0);
  7795. border:none;
  7796. border-radius:0px;
  7797. -moz-box-shadow:none;
  7798. -webkit-box-shadow:none;
  7799. box-shadow:none;
  7800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7801. font-weight:400;
  7802. font-style:normal;
  7803. font-size:16px;
  7804. }
  7805. #u95122 {
  7806. border-width:0px;
  7807. position:absolute;
  7808. left:143px;
  7809. top:563px;
  7810. width:97px;
  7811. height:22px;
  7812. display:flex;
  7813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7814. font-weight:400;
  7815. font-style:normal;
  7816. font-size:16px;
  7817. }
  7818. #u95122 .text {
  7819. position:absolute;
  7820. align-self:flex-start;
  7821. padding:0px 0px 0px 0px;
  7822. box-sizing:border-box;
  7823. width:100%;
  7824. }
  7825. #u95122_text {
  7826. border-width:0px;
  7827. white-space:nowrap;
  7828. text-transform:none;
  7829. }
  7830. #u95123_div {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:0px;
  7834. top:0px;
  7835. width:97px;
  7836. height:22px;
  7837. background:inherit;
  7838. background-color:rgba(255, 255, 255, 0);
  7839. border:none;
  7840. border-radius:0px;
  7841. -moz-box-shadow:none;
  7842. -webkit-box-shadow:none;
  7843. box-shadow:none;
  7844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7845. font-weight:400;
  7846. font-style:normal;
  7847. font-size:16px;
  7848. }
  7849. #u95123 {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:143px;
  7853. top:605px;
  7854. width:97px;
  7855. height:22px;
  7856. display:flex;
  7857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7858. font-weight:400;
  7859. font-style:normal;
  7860. font-size:16px;
  7861. }
  7862. #u95123 .text {
  7863. position:absolute;
  7864. align-self:flex-start;
  7865. padding:0px 0px 0px 0px;
  7866. box-sizing:border-box;
  7867. width:100%;
  7868. }
  7869. #u95123_text {
  7870. border-width:0px;
  7871. white-space:nowrap;
  7872. text-transform:none;
  7873. }
  7874. #u95124_div {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:0px;
  7878. top:0px;
  7879. width:65px;
  7880. height:22px;
  7881. background:inherit;
  7882. background-color:rgba(255, 255, 255, 0);
  7883. border:none;
  7884. border-radius:0px;
  7885. -moz-box-shadow:none;
  7886. -webkit-box-shadow:none;
  7887. box-shadow:none;
  7888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7889. font-weight:400;
  7890. font-style:normal;
  7891. font-size:16px;
  7892. }
  7893. #u95124 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:143px;
  7897. top:647px;
  7898. width:65px;
  7899. height:22px;
  7900. display:flex;
  7901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:16px;
  7905. }
  7906. #u95124 .text {
  7907. position:absolute;
  7908. align-self:flex-start;
  7909. padding:0px 0px 0px 0px;
  7910. box-sizing:border-box;
  7911. width:100%;
  7912. }
  7913. #u95124_text {
  7914. border-width:0px;
  7915. white-space:nowrap;
  7916. text-transform:none;
  7917. }