styles.css 196 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-87px;
  6. width:2057px;
  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. #u84931 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u84932_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u84932 {
  53. border-width:0px;
  54. position:absolute;
  55. left:87px;
  56. top:50px;
  57. width:1000px;
  58. height:1200px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u84932 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u84932_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u84933_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:490px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u84933 {
  107. border-width:0px;
  108. position:absolute;
  109. left:87px;
  110. top:50px;
  111. width:1000px;
  112. height:490px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u84933 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u84933_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u84934_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:101px;
  141. height:35px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-top:0px;
  146. border-right:0px;
  147. border-bottom:0px;
  148. border-radius:0px;
  149. border-top-left-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  155. font-weight:500;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u84934 {
  160. border-width:0px;
  161. position:absolute;
  162. left:107px;
  163. top:78px;
  164. width:101px;
  165. height:35px;
  166. display:flex;
  167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  168. font-weight:500;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u84934 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u84934_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u84935_div {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:43px;
  190. height:40px;
  191. background:inherit;
  192. background-color:rgba(255, 255, 255, 0);
  193. border:none;
  194. border-top:0px;
  195. border-right:0px;
  196. border-bottom:0px;
  197. border-radius:0px;
  198. border-top-left-radius:0px;
  199. border-bottom-left-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  204. font-weight:400;
  205. font-style:normal;
  206. color:#7F7F7F;
  207. line-height:40px;
  208. }
  209. #u84935 {
  210. border-width:0px;
  211. position:absolute;
  212. left:778px;
  213. top:115px;
  214. width:43px;
  215. height:40px;
  216. display:flex;
  217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  218. font-weight:400;
  219. font-style:normal;
  220. color:#7F7F7F;
  221. line-height:40px;
  222. }
  223. #u84935 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:0px 0px 0px 0px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u84935_text {
  231. border-width:0px;
  232. white-space:nowrap;
  233. text-transform:none;
  234. }
  235. #u84936_div {
  236. border-width:0px;
  237. position:absolute;
  238. left:0px;
  239. top:0px;
  240. width:109px;
  241. height:40px;
  242. background:inherit;
  243. background-color:rgba(255, 255, 255, 0);
  244. border:none;
  245. border-top:0px;
  246. border-right:0px;
  247. border-bottom:0px;
  248. border-radius:0px;
  249. border-top-left-radius:0px;
  250. border-bottom-left-radius:0px;
  251. -moz-box-shadow:none;
  252. -webkit-box-shadow:none;
  253. box-shadow:none;
  254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  255. font-weight:400;
  256. font-style:normal;
  257. line-height:40px;
  258. }
  259. #u84936 {
  260. border-width:0px;
  261. position:absolute;
  262. left:849px;
  263. top:115px;
  264. width:109px;
  265. height:40px;
  266. display:flex;
  267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  268. font-weight:400;
  269. font-style:normal;
  270. line-height:40px;
  271. }
  272. #u84936 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:0px 0px 0px 0px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u84936_text {
  280. border-width:0px;
  281. white-space:nowrap;
  282. text-transform:none;
  283. }
  284. #u84937_div {
  285. border-width:0px;
  286. position:absolute;
  287. left:0px;
  288. top:0px;
  289. width:43px;
  290. height:40px;
  291. background:inherit;
  292. background-color:rgba(255, 255, 255, 0);
  293. border:none;
  294. border-top:0px;
  295. border-right:0px;
  296. border-bottom:0px;
  297. border-radius:0px;
  298. border-top-left-radius:0px;
  299. border-bottom-left-radius:0px;
  300. -moz-box-shadow:none;
  301. -webkit-box-shadow:none;
  302. box-shadow:none;
  303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  304. font-weight:400;
  305. font-style:normal;
  306. color:#7F7F7F;
  307. line-height:40px;
  308. }
  309. #u84937 {
  310. border-width:0px;
  311. position:absolute;
  312. left:480px;
  313. top:115px;
  314. width:43px;
  315. height:40px;
  316. display:flex;
  317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  318. font-weight:400;
  319. font-style:normal;
  320. color:#7F7F7F;
  321. line-height:40px;
  322. }
  323. #u84937 .text {
  324. position:absolute;
  325. align-self:center;
  326. padding:0px 0px 0px 0px;
  327. box-sizing:border-box;
  328. width:100%;
  329. }
  330. #u84937_text {
  331. border-width:0px;
  332. white-space:nowrap;
  333. text-transform:none;
  334. }
  335. #u84938_div {
  336. border-width:0px;
  337. position:absolute;
  338. left:0px;
  339. top:0px;
  340. width:127px;
  341. height:40px;
  342. background:inherit;
  343. background-color:rgba(255, 255, 255, 0);
  344. border:none;
  345. border-top:0px;
  346. border-right:0px;
  347. border-bottom:0px;
  348. border-radius:0px;
  349. border-top-left-radius:0px;
  350. border-bottom-left-radius:0px;
  351. -moz-box-shadow:none;
  352. -webkit-box-shadow:none;
  353. box-shadow:none;
  354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  355. font-weight:400;
  356. font-style:normal;
  357. line-height:40px;
  358. }
  359. #u84938 {
  360. border-width:0px;
  361. position:absolute;
  362. left:550px;
  363. top:115px;
  364. width:127px;
  365. height:40px;
  366. display:flex;
  367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  368. font-weight:400;
  369. font-style:normal;
  370. line-height:40px;
  371. }
  372. #u84938 .text {
  373. position:absolute;
  374. align-self:center;
  375. padding:0px 0px 0px 0px;
  376. box-sizing:border-box;
  377. width:100%;
  378. }
  379. #u84938_text {
  380. border-width:0px;
  381. white-space:nowrap;
  382. text-transform:none;
  383. }
  384. #u84939_div {
  385. border-width:0px;
  386. position:absolute;
  387. left:0px;
  388. top:0px;
  389. width:71px;
  390. height:40px;
  391. background:inherit;
  392. background-color:rgba(255, 255, 255, 0);
  393. border:none;
  394. border-top:0px;
  395. border-right:0px;
  396. border-bottom:0px;
  397. border-radius:0px;
  398. border-top-left-radius:0px;
  399. border-bottom-left-radius:0px;
  400. -moz-box-shadow:none;
  401. -webkit-box-shadow:none;
  402. box-shadow:none;
  403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  404. font-weight:400;
  405. font-style:normal;
  406. color:#7F7F7F;
  407. }
  408. #u84939 {
  409. border-width:0px;
  410. position:absolute;
  411. left:125px;
  412. top:377px;
  413. width:71px;
  414. height:40px;
  415. display:flex;
  416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  417. font-weight:400;
  418. font-style:normal;
  419. color:#7F7F7F;
  420. }
  421. #u84939 .text {
  422. position:absolute;
  423. align-self:center;
  424. padding:0px 0px 0px 0px;
  425. box-sizing:border-box;
  426. width:100%;
  427. }
  428. #u84939_text {
  429. border-width:0px;
  430. white-space:nowrap;
  431. text-transform:none;
  432. }
  433. #u84940_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:57px;
  439. height:40px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-top:0px;
  444. border-right:0px;
  445. border-bottom:0px;
  446. border-radius:0px;
  447. border-top-left-radius:0px;
  448. border-bottom-left-radius:0px;
  449. -moz-box-shadow:none;
  450. -webkit-box-shadow:none;
  451. box-shadow:none;
  452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  453. font-weight:400;
  454. font-style:normal;
  455. }
  456. #u84940 {
  457. border-width:0px;
  458. position:absolute;
  459. left:210px;
  460. top:377px;
  461. width:57px;
  462. height:40px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. }
  468. #u84940 .text {
  469. position:absolute;
  470. align-self:center;
  471. padding:0px 0px 0px 0px;
  472. box-sizing:border-box;
  473. width:100%;
  474. }
  475. #u84940_text {
  476. border-width:0px;
  477. white-space:nowrap;
  478. text-transform:none;
  479. }
  480. #u84941_div {
  481. border-width:0px;
  482. position:absolute;
  483. left:0px;
  484. top:0px;
  485. width:71px;
  486. height:40px;
  487. background:inherit;
  488. background-color:rgba(255, 255, 255, 0);
  489. border:none;
  490. border-top:0px;
  491. border-right:0px;
  492. border-bottom:0px;
  493. border-radius:0px;
  494. border-top-left-radius:0px;
  495. border-bottom-left-radius:0px;
  496. -moz-box-shadow:none;
  497. -webkit-box-shadow:none;
  498. box-shadow:none;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. color:#7F7F7F;
  503. }
  504. #u84941 {
  505. border-width:0px;
  506. position:absolute;
  507. left:480px;
  508. top:377px;
  509. width:71px;
  510. height:40px;
  511. display:flex;
  512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  513. font-weight:400;
  514. font-style:normal;
  515. color:#7F7F7F;
  516. }
  517. #u84941 .text {
  518. position:absolute;
  519. align-self:center;
  520. padding:0px 0px 0px 0px;
  521. box-sizing:border-box;
  522. width:100%;
  523. }
  524. #u84941_text {
  525. border-width:0px;
  526. white-space:nowrap;
  527. text-transform:none;
  528. }
  529. #u84942_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:50px;
  535. height:40px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border:none;
  539. border-top:0px;
  540. border-right:0px;
  541. border-bottom:0px;
  542. border-radius:0px;
  543. border-top-left-radius:0px;
  544. border-bottom-left-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. }
  552. #u84942 {
  553. border-width:0px;
  554. position:absolute;
  555. left:569px;
  556. top:377px;
  557. width:50px;
  558. height:40px;
  559. display:flex;
  560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  561. font-weight:400;
  562. font-style:normal;
  563. }
  564. #u84942 .text {
  565. position:absolute;
  566. align-self:center;
  567. padding:0px 0px 0px 0px;
  568. box-sizing:border-box;
  569. width:100%;
  570. }
  571. #u84942_text {
  572. border-width:0px;
  573. white-space:nowrap;
  574. text-transform:none;
  575. }
  576. #u84943_div {
  577. border-width:0px;
  578. position:absolute;
  579. left:0px;
  580. top:0px;
  581. width:71px;
  582. height:40px;
  583. background:inherit;
  584. background-color:rgba(255, 255, 255, 0);
  585. border:none;
  586. border-top:0px;
  587. border-right:0px;
  588. border-bottom:0px;
  589. border-radius:0px;
  590. border-top-left-radius:0px;
  591. border-bottom-left-radius:0px;
  592. -moz-box-shadow:none;
  593. -webkit-box-shadow:none;
  594. box-shadow:none;
  595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  596. font-weight:400;
  597. font-style:normal;
  598. color:#7F7F7F;
  599. line-height:40px;
  600. }
  601. #u84943 {
  602. border-width:0px;
  603. position:absolute;
  604. left:125px;
  605. top:477px;
  606. width:71px;
  607. height:40px;
  608. display:flex;
  609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  610. font-weight:400;
  611. font-style:normal;
  612. color:#7F7F7F;
  613. line-height:40px;
  614. }
  615. #u84943 .text {
  616. position:absolute;
  617. align-self:center;
  618. padding:0px 0px 0px 0px;
  619. box-sizing:border-box;
  620. width:100%;
  621. }
  622. #u84943_text {
  623. border-width:0px;
  624. white-space:nowrap;
  625. text-transform:none;
  626. }
  627. #u84944_div {
  628. border-width:0px;
  629. position:absolute;
  630. left:0px;
  631. top:0px;
  632. width:71px;
  633. height:40px;
  634. background:inherit;
  635. background-color:rgba(255, 255, 255, 0);
  636. border:none;
  637. border-top:0px;
  638. border-right:0px;
  639. border-bottom:0px;
  640. border-radius:0px;
  641. border-top-left-radius:0px;
  642. border-bottom-left-radius:0px;
  643. -moz-box-shadow:none;
  644. -webkit-box-shadow:none;
  645. box-shadow:none;
  646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  647. font-weight:400;
  648. font-style:normal;
  649. color:#7F7F7F;
  650. }
  651. #u84944 {
  652. border-width:0px;
  653. position:absolute;
  654. left:778px;
  655. top:377px;
  656. width:71px;
  657. height:40px;
  658. display:flex;
  659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  660. font-weight:400;
  661. font-style:normal;
  662. color:#7F7F7F;
  663. }
  664. #u84944 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:0px 0px 0px 0px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u84944_text {
  672. border-width:0px;
  673. white-space:nowrap;
  674. text-transform:none;
  675. }
  676. #u84945_div {
  677. border-width:0px;
  678. position:absolute;
  679. left:0px;
  680. top:0px;
  681. width:43px;
  682. height:40px;
  683. background:inherit;
  684. background-color:rgba(255, 255, 255, 0);
  685. border:none;
  686. border-top:0px;
  687. border-right:0px;
  688. border-bottom:0px;
  689. border-radius:0px;
  690. border-top-left-radius:0px;
  691. border-bottom-left-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. }
  699. #u84945 {
  700. border-width:0px;
  701. position:absolute;
  702. left:877px;
  703. top:377px;
  704. width:43px;
  705. height:40px;
  706. display:flex;
  707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  708. font-weight:400;
  709. font-style:normal;
  710. }
  711. #u84945 .text {
  712. position:absolute;
  713. align-self:center;
  714. padding:0px 0px 0px 0px;
  715. box-sizing:border-box;
  716. width:100%;
  717. }
  718. #u84945_text {
  719. border-width:0px;
  720. white-space:nowrap;
  721. text-transform:none;
  722. }
  723. #u84946_div {
  724. border-width:0px;
  725. position:absolute;
  726. left:0px;
  727. top:0px;
  728. width:71px;
  729. height:40px;
  730. background:inherit;
  731. background-color:rgba(255, 255, 255, 0);
  732. border:none;
  733. border-top:0px;
  734. border-right:0px;
  735. border-bottom:0px;
  736. border-radius:0px;
  737. border-top-left-radius:0px;
  738. border-bottom-left-radius:0px;
  739. -moz-box-shadow:none;
  740. -webkit-box-shadow:none;
  741. box-shadow:none;
  742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  743. font-weight:400;
  744. font-style:normal;
  745. color:#7F7F7F;
  746. }
  747. #u84946 {
  748. border-width:0px;
  749. position:absolute;
  750. left:125px;
  751. top:417px;
  752. width:71px;
  753. height:40px;
  754. display:flex;
  755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  756. font-weight:400;
  757. font-style:normal;
  758. color:#7F7F7F;
  759. }
  760. #u84946 .text {
  761. position:absolute;
  762. align-self:center;
  763. padding:0px 0px 0px 0px;
  764. box-sizing:border-box;
  765. width:100%;
  766. }
  767. #u84946_text {
  768. border-width:0px;
  769. white-space:nowrap;
  770. text-transform:none;
  771. }
  772. #u84947_div {
  773. border-width:0px;
  774. position:absolute;
  775. left:0px;
  776. top:0px;
  777. width:193px;
  778. height:40px;
  779. background:inherit;
  780. background-color:rgba(255, 255, 255, 0);
  781. border:none;
  782. border-top:0px;
  783. border-right:0px;
  784. border-bottom:0px;
  785. border-radius:0px;
  786. border-top-left-radius:0px;
  787. border-bottom-left-radius:0px;
  788. -moz-box-shadow:none;
  789. -webkit-box-shadow:none;
  790. box-shadow:none;
  791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  792. font-weight:400;
  793. font-style:normal;
  794. }
  795. #u84947 {
  796. border-width:0px;
  797. position:absolute;
  798. left:210px;
  799. top:417px;
  800. width:193px;
  801. height:40px;
  802. display:flex;
  803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  804. font-weight:400;
  805. font-style:normal;
  806. }
  807. #u84947 .text {
  808. position:absolute;
  809. align-self:center;
  810. padding:0px 0px 0px 0px;
  811. box-sizing:border-box;
  812. width:100%;
  813. }
  814. #u84947_text {
  815. border-width:0px;
  816. white-space:nowrap;
  817. text-transform:none;
  818. }
  819. #u84948_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:85px;
  825. height:40px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-top:0px;
  830. border-right:0px;
  831. border-bottom:0px;
  832. border-radius:0px;
  833. border-top-left-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  839. font-weight:400;
  840. font-style:normal;
  841. color:#7F7F7F;
  842. }
  843. #u84948 {
  844. border-width:0px;
  845. position:absolute;
  846. left:480px;
  847. top:417px;
  848. width:85px;
  849. height:40px;
  850. display:flex;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. color:#7F7F7F;
  855. }
  856. #u84948 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:0px 0px 0px 0px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u84948_text {
  864. border-width:0px;
  865. white-space:nowrap;
  866. text-transform:none;
  867. }
  868. #u84949_div {
  869. border-width:0px;
  870. position:absolute;
  871. left:0px;
  872. top:0px;
  873. width:99px;
  874. height:40px;
  875. background:inherit;
  876. background-color:rgba(255, 255, 255, 0);
  877. border:none;
  878. border-top:0px;
  879. border-right:0px;
  880. border-bottom:0px;
  881. border-radius:0px;
  882. border-top-left-radius:0px;
  883. border-bottom-left-radius:0px;
  884. -moz-box-shadow:none;
  885. -webkit-box-shadow:none;
  886. box-shadow:none;
  887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  888. font-weight:400;
  889. font-style:normal;
  890. }
  891. #u84949 {
  892. border-width:0px;
  893. position:absolute;
  894. left:565px;
  895. top:417px;
  896. width:99px;
  897. height:40px;
  898. display:flex;
  899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  900. font-weight:400;
  901. font-style:normal;
  902. }
  903. #u84949 .text {
  904. position:absolute;
  905. align-self:center;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u84949_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u84950 {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:0px;
  921. height:0px;
  922. }
  923. #u84951_div {
  924. border-width:0px;
  925. position:absolute;
  926. left:0px;
  927. top:0px;
  928. width:327px;
  929. height:184px;
  930. background:inherit;
  931. background-color:rgba(51, 51, 51, 1);
  932. box-sizing:border-box;
  933. border-width:1px;
  934. border-style:solid;
  935. border-color:rgba(51, 51, 51, 1);
  936. border-radius:4px;
  937. -moz-box-shadow:none;
  938. -webkit-box-shadow:none;
  939. box-shadow:none;
  940. font-family:'Microsoft YaHei', sans-serif;
  941. font-weight:400;
  942. font-style:normal;
  943. font-size:14px;
  944. color:#CCCCCC;
  945. text-align:left;
  946. }
  947. #u84951 {
  948. border-width:0px;
  949. position:absolute;
  950. left:115px;
  951. top:123px;
  952. width:327px;
  953. height:184px;
  954. display:flex;
  955. font-family:'Microsoft YaHei', sans-serif;
  956. font-weight:400;
  957. font-style:normal;
  958. font-size:14px;
  959. color:#CCCCCC;
  960. text-align:left;
  961. }
  962. #u84951 .text {
  963. position:absolute;
  964. align-self:center;
  965. padding:2px 8px 2px 8px;
  966. box-sizing:border-box;
  967. width:100%;
  968. }
  969. #u84951_text {
  970. border-width:0px;
  971. word-wrap:break-word;
  972. text-transform:none;
  973. visibility:hidden;
  974. }
  975. #u84952_div {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:137px;
  981. height:47px;
  982. background:inherit;
  983. background-color:rgba(255, 255, 255, 0);
  984. border:none;
  985. border-radius:0px;
  986. -moz-box-shadow:none;
  987. -webkit-box-shadow:none;
  988. box-shadow:none;
  989. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  990. font-weight:500;
  991. font-style:normal;
  992. font-size:24px;
  993. color:#FFFFFF;
  994. line-height:40px;
  995. }
  996. #u84952 {
  997. border-width:0px;
  998. position:absolute;
  999. left:136px;
  1000. top:144px;
  1001. width:137px;
  1002. height:47px;
  1003. display:flex;
  1004. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1005. font-weight:500;
  1006. font-style:normal;
  1007. font-size:24px;
  1008. color:#FFFFFF;
  1009. line-height:40px;
  1010. }
  1011. #u84952 .text {
  1012. position:absolute;
  1013. align-self:flex-start;
  1014. padding:0px 0px 0px 0px;
  1015. box-sizing:border-box;
  1016. width:100%;
  1017. }
  1018. #u84952_text {
  1019. border-width:0px;
  1020. word-wrap:break-word;
  1021. text-transform:none;
  1022. }
  1023. #u84953_div {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:169px;
  1029. height:47px;
  1030. background:inherit;
  1031. background-color:rgba(255, 255, 255, 0);
  1032. border:none;
  1033. border-radius:0px;
  1034. -moz-box-shadow:none;
  1035. -webkit-box-shadow:none;
  1036. box-shadow:none;
  1037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1038. font-weight:400;
  1039. font-style:normal;
  1040. font-size:12px;
  1041. color:#FFFFFF;
  1042. line-height:40px;
  1043. }
  1044. #u84953 {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:136px;
  1048. top:260px;
  1049. width:169px;
  1050. height:47px;
  1051. display:flex;
  1052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1053. font-weight:400;
  1054. font-style:normal;
  1055. font-size:12px;
  1056. color:#FFFFFF;
  1057. line-height:40px;
  1058. }
  1059. #u84953 .text {
  1060. position:absolute;
  1061. align-self:flex-start;
  1062. padding:0px 0px 0px 0px;
  1063. box-sizing:border-box;
  1064. width:100%;
  1065. }
  1066. #u84953_text {
  1067. border-width:0px;
  1068. word-wrap:break-word;
  1069. text-transform:none;
  1070. }
  1071. #u84954_div {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:199px;
  1077. height:47px;
  1078. background:inherit;
  1079. background-color:rgba(255, 255, 255, 0);
  1080. border:none;
  1081. border-radius:0px;
  1082. -moz-box-shadow:none;
  1083. -webkit-box-shadow:none;
  1084. box-shadow:none;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:12px;
  1089. color:#FFFFFF;
  1090. line-height:40px;
  1091. }
  1092. #u84954 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:136px;
  1096. top:185px;
  1097. width:199px;
  1098. height:47px;
  1099. display:flex;
  1100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:12px;
  1104. color:#FFFFFF;
  1105. line-height:40px;
  1106. }
  1107. #u84954 .text {
  1108. position:absolute;
  1109. align-self:flex-start;
  1110. padding:0px 0px 0px 0px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u84954_text {
  1115. border-width:0px;
  1116. word-wrap:break-word;
  1117. text-transform:none;
  1118. }
  1119. #u84955_div {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:68px;
  1125. height:41px;
  1126. background:inherit;
  1127. background-color:rgba(255, 255, 255, 0);
  1128. border:none;
  1129. border-radius:0px;
  1130. -moz-box-shadow:none;
  1131. -webkit-box-shadow:none;
  1132. box-shadow:none;
  1133. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1134. font-weight:500;
  1135. font-style:normal;
  1136. font-size:100px;
  1137. color:rgba(255, 255, 255, 0.0980392156862745);
  1138. line-height:40px;
  1139. }
  1140. #u84955 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:375px;
  1144. top:144px;
  1145. width:68px;
  1146. height:41px;
  1147. display:flex;
  1148. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1149. font-weight:500;
  1150. font-style:normal;
  1151. font-size:100px;
  1152. color:rgba(255, 255, 255, 0.0980392156862745);
  1153. line-height:40px;
  1154. }
  1155. #u84955 .text {
  1156. position:absolute;
  1157. align-self:flex-start;
  1158. padding:0px 0px 0px 0px;
  1159. box-sizing:border-box;
  1160. width:100%;
  1161. }
  1162. #u84955_text {
  1163. border-width:0px;
  1164. word-wrap:break-word;
  1165. text-transform:none;
  1166. }
  1167. #u84956_img {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:66px;
  1173. height:66px;
  1174. }
  1175. #u84956 {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:357px;
  1179. top:182px;
  1180. width:66px;
  1181. height:66px;
  1182. display:flex;
  1183. }
  1184. #u84956 .text {
  1185. position:absolute;
  1186. align-self:center;
  1187. padding:2px 2px 2px 2px;
  1188. box-sizing:border-box;
  1189. width:100%;
  1190. }
  1191. #u84956_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u84957 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u84958_div {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:1000px;
  1211. height:640px;
  1212. background:inherit;
  1213. background-color:rgba(255, 255, 255, 1);
  1214. box-sizing:border-box;
  1215. border-width:1px;
  1216. border-style:solid;
  1217. border-color:rgba(215, 215, 215, 1);
  1218. border-radius:0px;
  1219. -moz-box-shadow:none;
  1220. -webkit-box-shadow:none;
  1221. box-shadow:none;
  1222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1223. font-weight:400;
  1224. font-style:normal;
  1225. font-size:14px;
  1226. color:#AAAAAA;
  1227. text-align:center;
  1228. line-height:30px;
  1229. }
  1230. #u84958 {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:87px;
  1234. top:550px;
  1235. width:1000px;
  1236. height:640px;
  1237. display:flex;
  1238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1239. font-weight:400;
  1240. font-style:normal;
  1241. font-size:14px;
  1242. color:#AAAAAA;
  1243. text-align:center;
  1244. line-height:30px;
  1245. }
  1246. #u84958 .text {
  1247. position:absolute;
  1248. align-self:center;
  1249. padding:5px 10px 5px 10px;
  1250. box-sizing:border-box;
  1251. width:100%;
  1252. }
  1253. #u84958_text {
  1254. border-width:0px;
  1255. word-wrap:break-word;
  1256. text-transform:none;
  1257. visibility:hidden;
  1258. }
  1259. #u84959_div {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:0px;
  1263. top:0px;
  1264. width:83px;
  1265. height:35px;
  1266. background:inherit;
  1267. background-color:rgba(255, 255, 255, 0);
  1268. border:none;
  1269. border-top:0px;
  1270. border-right:0px;
  1271. border-bottom:0px;
  1272. border-radius:0px;
  1273. border-top-left-radius:0px;
  1274. border-bottom-left-radius:0px;
  1275. -moz-box-shadow:none;
  1276. -webkit-box-shadow:none;
  1277. box-shadow:none;
  1278. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1279. font-weight:500;
  1280. font-style:normal;
  1281. font-size:18px;
  1282. color:#298FFF;
  1283. }
  1284. #u84959 {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:118px;
  1288. top:578px;
  1289. width:83px;
  1290. height:35px;
  1291. display:flex;
  1292. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1293. font-weight:500;
  1294. font-style:normal;
  1295. font-size:18px;
  1296. color:#298FFF;
  1297. }
  1298. #u84959 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:5px 10px 5px 0px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u84959_text {
  1306. border-width:0px;
  1307. white-space:nowrap;
  1308. text-transform:none;
  1309. }
  1310. #u84960 {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:114px;
  1314. top:663px;
  1315. width:949px;
  1316. height:282px;
  1317. }
  1318. #u84961_img {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:54px;
  1324. height:35px;
  1325. }
  1326. #u84961 {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:0px;
  1330. top:0px;
  1331. width:54px;
  1332. height:35px;
  1333. display:flex;
  1334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1335. font-weight:400;
  1336. font-style:normal;
  1337. font-size:12px;
  1338. color:#FFFFFF;
  1339. }
  1340. #u84961 .text {
  1341. position:absolute;
  1342. align-self:center;
  1343. padding:2px 2px 2px 0px;
  1344. box-sizing:border-box;
  1345. width:100%;
  1346. }
  1347. #u84961_text {
  1348. border-width:0px;
  1349. word-wrap:break-word;
  1350. text-transform:none;
  1351. }
  1352. #u84962_img {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:0px;
  1356. top:0px;
  1357. width:116px;
  1358. height:35px;
  1359. }
  1360. #u84962 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:54px;
  1364. top:0px;
  1365. width:116px;
  1366. height:35px;
  1367. display:flex;
  1368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1369. font-weight:400;
  1370. font-style:normal;
  1371. font-size:12px;
  1372. color:#FFFFFF;
  1373. }
  1374. #u84962 .text {
  1375. position:absolute;
  1376. align-self:center;
  1377. padding:2px 2px 2px 0px;
  1378. box-sizing:border-box;
  1379. width:100%;
  1380. }
  1381. #u84962_text {
  1382. border-width:0px;
  1383. word-wrap:break-word;
  1384. text-transform:none;
  1385. }
  1386. #u84963_img {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:140px;
  1392. height:35px;
  1393. }
  1394. #u84963 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:170px;
  1398. top:0px;
  1399. width:140px;
  1400. height:35px;
  1401. display:flex;
  1402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1403. font-weight:400;
  1404. font-style:normal;
  1405. font-size:12px;
  1406. color:#FFFFFF;
  1407. }
  1408. #u84963 .text {
  1409. position:absolute;
  1410. align-self:center;
  1411. padding:2px 2px 2px 0px;
  1412. box-sizing:border-box;
  1413. width:100%;
  1414. }
  1415. #u84963_text {
  1416. border-width:0px;
  1417. word-wrap:break-word;
  1418. text-transform:none;
  1419. }
  1420. #u84964_img {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:106px;
  1426. height:35px;
  1427. }
  1428. #u84964 {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:310px;
  1432. top:0px;
  1433. width:106px;
  1434. height:35px;
  1435. display:flex;
  1436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1437. font-weight:400;
  1438. font-style:normal;
  1439. font-size:12px;
  1440. color:#FFFFFF;
  1441. }
  1442. #u84964 .text {
  1443. position:absolute;
  1444. align-self:center;
  1445. padding:2px 2px 2px 0px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u84964_text {
  1450. border-width:0px;
  1451. word-wrap:break-word;
  1452. text-transform:none;
  1453. }
  1454. #u84965_img {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:0px;
  1458. top:0px;
  1459. width:110px;
  1460. height:35px;
  1461. }
  1462. #u84965 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:416px;
  1466. top:0px;
  1467. width:110px;
  1468. height:35px;
  1469. display:flex;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:12px;
  1474. color:#FFFFFF;
  1475. }
  1476. #u84965 .text {
  1477. position:absolute;
  1478. align-self:center;
  1479. padding:2px 2px 2px 0px;
  1480. box-sizing:border-box;
  1481. width:100%;
  1482. }
  1483. #u84965_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. }
  1488. #u84966_img {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:106px;
  1494. height:35px;
  1495. }
  1496. #u84966 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:526px;
  1500. top:0px;
  1501. width:106px;
  1502. height:35px;
  1503. display:flex;
  1504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1505. font-weight:400;
  1506. font-style:normal;
  1507. font-size:12px;
  1508. color:#FFFFFF;
  1509. }
  1510. #u84966 .text {
  1511. position:absolute;
  1512. align-self:center;
  1513. padding:2px 2px 2px 0px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u84966_text {
  1518. border-width:0px;
  1519. word-wrap:break-word;
  1520. text-transform:none;
  1521. }
  1522. #u84967_img {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:0px;
  1526. top:0px;
  1527. width:106px;
  1528. height:35px;
  1529. }
  1530. #u84967 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:632px;
  1534. top:0px;
  1535. width:106px;
  1536. height:35px;
  1537. display:flex;
  1538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:12px;
  1542. color:#FFFFFF;
  1543. }
  1544. #u84967 .text {
  1545. position:absolute;
  1546. align-self:center;
  1547. padding:2px 2px 2px 0px;
  1548. box-sizing:border-box;
  1549. width:100%;
  1550. }
  1551. #u84967_text {
  1552. border-width:0px;
  1553. word-wrap:break-word;
  1554. text-transform:none;
  1555. }
  1556. #u84968_img {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:106px;
  1562. height:35px;
  1563. }
  1564. #u84968 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:738px;
  1568. top:0px;
  1569. width:106px;
  1570. height:35px;
  1571. display:flex;
  1572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1573. font-weight:400;
  1574. font-style:normal;
  1575. font-size:12px;
  1576. color:#FFFFFF;
  1577. }
  1578. #u84968 .text {
  1579. position:absolute;
  1580. align-self:center;
  1581. padding:2px 2px 2px 0px;
  1582. box-sizing:border-box;
  1583. width:100%;
  1584. }
  1585. #u84968_text {
  1586. border-width:0px;
  1587. word-wrap:break-word;
  1588. text-transform:none;
  1589. }
  1590. #u84969_img {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:105px;
  1596. height:35px;
  1597. }
  1598. #u84969 {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:844px;
  1602. top:0px;
  1603. width:105px;
  1604. height:35px;
  1605. display:flex;
  1606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1607. font-weight:400;
  1608. font-style:normal;
  1609. font-size:12px;
  1610. color:#FFFFFF;
  1611. }
  1612. #u84969 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:2px 2px 2px 0px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u84969_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. }
  1624. #u84970_img {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:54px;
  1630. height:38px;
  1631. }
  1632. #u84970 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:0px;
  1636. top:35px;
  1637. width:54px;
  1638. height:38px;
  1639. display:flex;
  1640. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. font-size:12px;
  1644. }
  1645. #u84970 .text {
  1646. position:absolute;
  1647. align-self:center;
  1648. padding:2px 2px 2px 0px;
  1649. box-sizing:border-box;
  1650. width:100%;
  1651. }
  1652. #u84970_text {
  1653. border-width:0px;
  1654. word-wrap:break-word;
  1655. text-transform:none;
  1656. }
  1657. #u84971_img {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:0px;
  1661. top:0px;
  1662. width:116px;
  1663. height:38px;
  1664. }
  1665. #u84971 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:54px;
  1669. top:35px;
  1670. width:116px;
  1671. height:38px;
  1672. display:flex;
  1673. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:12px;
  1677. }
  1678. #u84971 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 0px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u84971_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. }
  1690. #u84972_img {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:140px;
  1696. height:38px;
  1697. }
  1698. #u84972 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:170px;
  1702. top:35px;
  1703. width:140px;
  1704. height:38px;
  1705. display:flex;
  1706. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:12px;
  1710. }
  1711. #u84972 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:2px 2px 2px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u84972_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. }
  1723. #u84973_img {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:106px;
  1729. height:38px;
  1730. }
  1731. #u84973 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:310px;
  1735. top:35px;
  1736. width:106px;
  1737. height:38px;
  1738. display:flex;
  1739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1740. font-weight:400;
  1741. font-style:normal;
  1742. font-size:12px;
  1743. color:#333333;
  1744. }
  1745. #u84973 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:2px 2px 2px 0px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u84973_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. }
  1757. #u84974_img {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:110px;
  1763. height:38px;
  1764. }
  1765. #u84974 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:416px;
  1769. top:35px;
  1770. width:110px;
  1771. height:38px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:12px;
  1777. color:#333333;
  1778. }
  1779. #u84974 .text {
  1780. position:absolute;
  1781. align-self:center;
  1782. padding:2px 2px 2px 0px;
  1783. box-sizing:border-box;
  1784. width:100%;
  1785. }
  1786. #u84974_text {
  1787. border-width:0px;
  1788. word-wrap:break-word;
  1789. text-transform:none;
  1790. }
  1791. #u84975_img {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:106px;
  1797. height:38px;
  1798. }
  1799. #u84975 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:526px;
  1803. top:35px;
  1804. width:106px;
  1805. height:38px;
  1806. display:flex;
  1807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:12px;
  1811. color:#333333;
  1812. }
  1813. #u84975 .text {
  1814. position:absolute;
  1815. align-self:center;
  1816. padding:2px 2px 2px 0px;
  1817. box-sizing:border-box;
  1818. width:100%;
  1819. }
  1820. #u84975_text {
  1821. border-width:0px;
  1822. word-wrap:break-word;
  1823. text-transform:none;
  1824. }
  1825. #u84976_img {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:106px;
  1831. height:38px;
  1832. }
  1833. #u84976 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:632px;
  1837. top:35px;
  1838. width:106px;
  1839. height:38px;
  1840. display:flex;
  1841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1842. font-weight:400;
  1843. font-style:normal;
  1844. font-size:12px;
  1845. color:#333333;
  1846. }
  1847. #u84976 .text {
  1848. position:absolute;
  1849. align-self:center;
  1850. padding:2px 2px 2px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u84976_text {
  1855. border-width:0px;
  1856. word-wrap:break-word;
  1857. text-transform:none;
  1858. visibility:hidden;
  1859. }
  1860. #u84977_img {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:106px;
  1866. height:38px;
  1867. }
  1868. #u84977 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:738px;
  1872. top:35px;
  1873. width:106px;
  1874. height:38px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:12px;
  1880. color:#333333;
  1881. }
  1882. #u84977 .text {
  1883. position:absolute;
  1884. align-self:center;
  1885. padding:2px 2px 2px 0px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u84977_text {
  1890. border-width:0px;
  1891. word-wrap:break-word;
  1892. text-transform:none;
  1893. visibility:hidden;
  1894. }
  1895. #u84978_img {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:105px;
  1901. height:38px;
  1902. }
  1903. #u84978 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:844px;
  1907. top:35px;
  1908. width:105px;
  1909. height:38px;
  1910. display:flex;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:12px;
  1915. color:#333333;
  1916. }
  1917. #u84978 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 0px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u84978_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. visibility:hidden;
  1929. }
  1930. #u84979_img {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:54px;
  1936. height:38px;
  1937. }
  1938. #u84979 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:73px;
  1943. width:54px;
  1944. height:38px;
  1945. display:flex;
  1946. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:12px;
  1950. color:#606266;
  1951. }
  1952. #u84979 .text {
  1953. position:absolute;
  1954. align-self:center;
  1955. padding:2px 2px 2px 0px;
  1956. box-sizing:border-box;
  1957. width:100%;
  1958. }
  1959. #u84979_text {
  1960. border-width:0px;
  1961. word-wrap:break-word;
  1962. text-transform:none;
  1963. }
  1964. #u84980_img {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:116px;
  1970. height:38px;
  1971. }
  1972. #u84980 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:54px;
  1976. top:73px;
  1977. width:116px;
  1978. height:38px;
  1979. display:flex;
  1980. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:12px;
  1984. color:#606266;
  1985. }
  1986. #u84980 .text {
  1987. position:absolute;
  1988. align-self:center;
  1989. padding:2px 2px 2px 0px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u84980_text {
  1994. border-width:0px;
  1995. word-wrap:break-word;
  1996. text-transform:none;
  1997. visibility:hidden;
  1998. }
  1999. #u84981_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:140px;
  2005. height:38px;
  2006. }
  2007. #u84981 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:170px;
  2011. top:73px;
  2012. width:140px;
  2013. height:38px;
  2014. display:flex;
  2015. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:12px;
  2019. color:#606266;
  2020. }
  2021. #u84981 .text {
  2022. position:absolute;
  2023. align-self:center;
  2024. padding:2px 2px 2px 0px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u84981_text {
  2029. border-width:0px;
  2030. word-wrap:break-word;
  2031. text-transform:none;
  2032. visibility:hidden;
  2033. }
  2034. #u84982_img {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:106px;
  2040. height:38px;
  2041. }
  2042. #u84982 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:310px;
  2046. top:73px;
  2047. width:106px;
  2048. height:38px;
  2049. display:flex;
  2050. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:12px;
  2054. color:#606266;
  2055. }
  2056. #u84982 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 0px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u84982_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. }
  2068. #u84983_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:110px;
  2074. height:38px;
  2075. }
  2076. #u84983 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:416px;
  2080. top:73px;
  2081. width:110px;
  2082. height:38px;
  2083. display:flex;
  2084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:12px;
  2088. text-decoration:underline ;
  2089. color:#333333;
  2090. }
  2091. #u84983 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u84983_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u84984_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:106px;
  2110. height:38px;
  2111. }
  2112. #u84984 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:526px;
  2116. top:73px;
  2117. width:106px;
  2118. height:38px;
  2119. display:flex;
  2120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. text-decoration:underline ;
  2125. color:#333333;
  2126. }
  2127. #u84984 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u84984_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. visibility:hidden;
  2139. }
  2140. #u84985_img {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:106px;
  2146. height:38px;
  2147. }
  2148. #u84985 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:632px;
  2152. top:73px;
  2153. width:106px;
  2154. height:38px;
  2155. display:flex;
  2156. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:12px;
  2160. text-decoration:underline ;
  2161. color:#333333;
  2162. }
  2163. #u84985 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u84985_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u84986_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:106px;
  2182. height:38px;
  2183. }
  2184. #u84986 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:738px;
  2188. top:73px;
  2189. width:106px;
  2190. height:38px;
  2191. display:flex;
  2192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. text-decoration:underline ;
  2197. color:#333333;
  2198. }
  2199. #u84986 .text {
  2200. position:absolute;
  2201. align-self:center;
  2202. padding:2px 2px 2px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u84986_text {
  2207. border-width:0px;
  2208. word-wrap:break-word;
  2209. text-transform:none;
  2210. visibility:hidden;
  2211. }
  2212. #u84987_img {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:105px;
  2218. height:38px;
  2219. }
  2220. #u84987 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:844px;
  2224. top:73px;
  2225. width:105px;
  2226. height:38px;
  2227. display:flex;
  2228. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:12px;
  2232. text-decoration:underline ;
  2233. color:#333333;
  2234. }
  2235. #u84987 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u84987_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u84988_img {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:54px;
  2254. height:35px;
  2255. }
  2256. #u84988 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:111px;
  2261. width:54px;
  2262. height:35px;
  2263. display:flex;
  2264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:12px;
  2268. color:#606266;
  2269. }
  2270. #u84988 .text {
  2271. position:absolute;
  2272. align-self:center;
  2273. padding:2px 2px 2px 0px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u84988_text {
  2278. border-width:0px;
  2279. word-wrap:break-word;
  2280. text-transform:none;
  2281. }
  2282. #u84989_img {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:116px;
  2288. height:35px;
  2289. }
  2290. #u84989 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:54px;
  2294. top:111px;
  2295. width:116px;
  2296. height:35px;
  2297. display:flex;
  2298. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:12px;
  2302. color:#606266;
  2303. }
  2304. #u84989 .text {
  2305. position:absolute;
  2306. align-self:center;
  2307. padding:2px 2px 2px 0px;
  2308. box-sizing:border-box;
  2309. width:100%;
  2310. }
  2311. #u84989_text {
  2312. border-width:0px;
  2313. word-wrap:break-word;
  2314. text-transform:none;
  2315. visibility:hidden;
  2316. }
  2317. #u84990_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:140px;
  2323. height:35px;
  2324. }
  2325. #u84990 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:170px;
  2329. top:111px;
  2330. width:140px;
  2331. height:35px;
  2332. display:flex;
  2333. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:12px;
  2337. color:#606266;
  2338. }
  2339. #u84990 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 0px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u84990_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. visibility:hidden;
  2351. }
  2352. #u84991_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:106px;
  2358. height:35px;
  2359. }
  2360. #u84991 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:310px;
  2364. top:111px;
  2365. width:106px;
  2366. height:35px;
  2367. display:flex;
  2368. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:12px;
  2372. color:#606266;
  2373. }
  2374. #u84991 .text {
  2375. position:absolute;
  2376. align-self:center;
  2377. padding:2px 2px 2px 0px;
  2378. box-sizing:border-box;
  2379. width:100%;
  2380. }
  2381. #u84991_text {
  2382. border-width:0px;
  2383. word-wrap:break-word;
  2384. text-transform:none;
  2385. visibility:hidden;
  2386. }
  2387. #u84992_img {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:0px;
  2391. top:0px;
  2392. width:110px;
  2393. height:35px;
  2394. }
  2395. #u84992 {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:416px;
  2399. top:111px;
  2400. width:110px;
  2401. height:35px;
  2402. display:flex;
  2403. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2404. font-weight:400;
  2405. font-style:normal;
  2406. font-size:12px;
  2407. text-decoration:underline ;
  2408. color:#333333;
  2409. }
  2410. #u84992 .text {
  2411. position:absolute;
  2412. align-self:center;
  2413. padding:2px 2px 2px 0px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u84992_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. visibility:hidden;
  2422. }
  2423. #u84993_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:106px;
  2429. height:35px;
  2430. }
  2431. #u84993 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:526px;
  2435. top:111px;
  2436. width:106px;
  2437. height:35px;
  2438. display:flex;
  2439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. font-size:12px;
  2443. text-decoration:underline ;
  2444. color:#333333;
  2445. }
  2446. #u84993 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u84993_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u84994_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:106px;
  2465. height:35px;
  2466. }
  2467. #u84994 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:632px;
  2471. top:111px;
  2472. width:106px;
  2473. height:35px;
  2474. display:flex;
  2475. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. text-decoration:underline ;
  2480. color:#333333;
  2481. }
  2482. #u84994 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 2px 2px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u84994_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. visibility:hidden;
  2494. }
  2495. #u84995_img {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:106px;
  2501. height:35px;
  2502. }
  2503. #u84995 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:738px;
  2507. top:111px;
  2508. width:106px;
  2509. height:35px;
  2510. display:flex;
  2511. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:12px;
  2515. text-decoration:underline ;
  2516. color:#333333;
  2517. }
  2518. #u84995 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 0px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u84995_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u84996_img {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:105px;
  2537. height:35px;
  2538. }
  2539. #u84996 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:844px;
  2543. top:111px;
  2544. width:105px;
  2545. height:35px;
  2546. display:flex;
  2547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:12px;
  2551. text-decoration:underline ;
  2552. color:#333333;
  2553. }
  2554. #u84996 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:2px 2px 2px 0px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u84996_text {
  2562. border-width:0px;
  2563. word-wrap:break-word;
  2564. text-transform:none;
  2565. visibility:hidden;
  2566. }
  2567. #u84997_img {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:54px;
  2573. height:35px;
  2574. }
  2575. #u84997 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:146px;
  2580. width:54px;
  2581. height:35px;
  2582. display:flex;
  2583. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:12px;
  2587. color:#606266;
  2588. }
  2589. #u84997 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:2px 2px 2px 0px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u84997_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. }
  2601. #u84998_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:116px;
  2607. height:35px;
  2608. }
  2609. #u84998 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:54px;
  2613. top:146px;
  2614. width:116px;
  2615. height:35px;
  2616. display:flex;
  2617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:12px;
  2621. color:#606266;
  2622. }
  2623. #u84998 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u84998_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. visibility:hidden;
  2635. }
  2636. #u84999_img {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:140px;
  2642. height:35px;
  2643. }
  2644. #u84999 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:170px;
  2648. top:146px;
  2649. width:140px;
  2650. height:35px;
  2651. display:flex;
  2652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:12px;
  2656. color:#606266;
  2657. }
  2658. #u84999 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 0px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u84999_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. visibility:hidden;
  2670. }
  2671. #u85000_img {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:106px;
  2677. height:35px;
  2678. }
  2679. #u85000 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:310px;
  2683. top:146px;
  2684. width:106px;
  2685. height:35px;
  2686. display:flex;
  2687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2688. font-weight:400;
  2689. font-style:normal;
  2690. font-size:12px;
  2691. color:#606266;
  2692. }
  2693. #u85000 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 0px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u85000_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u85001_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:110px;
  2712. height:35px;
  2713. }
  2714. #u85001 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:416px;
  2718. top:146px;
  2719. width:110px;
  2720. height:35px;
  2721. display:flex;
  2722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:12px;
  2726. text-decoration:underline ;
  2727. color:#333333;
  2728. }
  2729. #u85001 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 0px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u85001_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. visibility:hidden;
  2741. }
  2742. #u85002_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:106px;
  2748. height:35px;
  2749. }
  2750. #u85002 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:526px;
  2754. top:146px;
  2755. width:106px;
  2756. height:35px;
  2757. display:flex;
  2758. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:12px;
  2762. text-decoration:underline ;
  2763. color:#333333;
  2764. }
  2765. #u85002 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 0px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u85002_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. visibility:hidden;
  2777. }
  2778. #u85003_img {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:106px;
  2784. height:35px;
  2785. }
  2786. #u85003 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:632px;
  2790. top:146px;
  2791. width:106px;
  2792. height:35px;
  2793. display:flex;
  2794. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. font-size:12px;
  2798. text-decoration:underline ;
  2799. color:#333333;
  2800. }
  2801. #u85003 .text {
  2802. position:absolute;
  2803. align-self:center;
  2804. padding:2px 2px 2px 0px;
  2805. box-sizing:border-box;
  2806. width:100%;
  2807. }
  2808. #u85003_text {
  2809. border-width:0px;
  2810. word-wrap:break-word;
  2811. text-transform:none;
  2812. visibility:hidden;
  2813. }
  2814. #u85004_img {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:106px;
  2820. height:35px;
  2821. }
  2822. #u85004 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:738px;
  2826. top:146px;
  2827. width:106px;
  2828. height:35px;
  2829. display:flex;
  2830. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:12px;
  2834. text-decoration:underline ;
  2835. color:#333333;
  2836. }
  2837. #u85004 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u85004_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u85005_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:105px;
  2856. height:35px;
  2857. }
  2858. #u85005 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:844px;
  2862. top:146px;
  2863. width:105px;
  2864. height:35px;
  2865. display:flex;
  2866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:12px;
  2870. text-decoration:underline ;
  2871. color:#333333;
  2872. }
  2873. #u85005 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 2px 2px 0px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u85005_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u85006_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:54px;
  2892. height:35px;
  2893. }
  2894. #u85006 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:181px;
  2899. width:54px;
  2900. height:35px;
  2901. display:flex;
  2902. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:12px;
  2906. color:#606266;
  2907. }
  2908. #u85006 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 0px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u85006_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u85007_img {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:116px;
  2927. height:35px;
  2928. }
  2929. #u85007 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:54px;
  2933. top:181px;
  2934. width:116px;
  2935. height:35px;
  2936. display:flex;
  2937. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:12px;
  2941. color:#606266;
  2942. }
  2943. #u85007 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:2px 2px 2px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u85007_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. visibility:hidden;
  2955. }
  2956. #u85008_img {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:140px;
  2962. height:35px;
  2963. }
  2964. #u85008 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:170px;
  2968. top:181px;
  2969. width:140px;
  2970. height:35px;
  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. #u85008 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 0px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u85008_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. visibility:hidden;
  2990. }
  2991. #u85009_img {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:106px;
  2997. height:35px;
  2998. }
  2999. #u85009 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:310px;
  3003. top:181px;
  3004. width:106px;
  3005. height:35px;
  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. #u85009 .text {
  3014. position:absolute;
  3015. align-self:center;
  3016. padding:2px 2px 2px 0px;
  3017. box-sizing:border-box;
  3018. width:100%;
  3019. }
  3020. #u85009_text {
  3021. border-width:0px;
  3022. word-wrap:break-word;
  3023. text-transform:none;
  3024. visibility:hidden;
  3025. }
  3026. #u85010_img {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:110px;
  3032. height:35px;
  3033. }
  3034. #u85010 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:416px;
  3038. top:181px;
  3039. width:110px;
  3040. height:35px;
  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. text-decoration:underline ;
  3047. color:#333333;
  3048. }
  3049. #u85010 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u85010_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u85011_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:106px;
  3068. height:35px;
  3069. }
  3070. #u85011 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:526px;
  3074. top:181px;
  3075. width:106px;
  3076. height:35px;
  3077. display:flex;
  3078. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:12px;
  3082. text-decoration:underline ;
  3083. color:#333333;
  3084. }
  3085. #u85011 .text {
  3086. position:absolute;
  3087. align-self:center;
  3088. padding:2px 2px 2px 0px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u85011_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. visibility:hidden;
  3097. }
  3098. #u85012_img {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:106px;
  3104. height:35px;
  3105. }
  3106. #u85012 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:632px;
  3110. top:181px;
  3111. width:106px;
  3112. height:35px;
  3113. display:flex;
  3114. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:12px;
  3118. text-decoration:underline ;
  3119. color:#333333;
  3120. }
  3121. #u85012 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 0px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u85012_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. visibility:hidden;
  3133. }
  3134. #u85013_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:106px;
  3140. height:35px;
  3141. }
  3142. #u85013 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:738px;
  3146. top:181px;
  3147. width:106px;
  3148. height:35px;
  3149. display:flex;
  3150. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:12px;
  3154. text-decoration:underline ;
  3155. color:#333333;
  3156. }
  3157. #u85013 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u85013_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u85014_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:105px;
  3176. height:35px;
  3177. }
  3178. #u85014 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:844px;
  3182. top:181px;
  3183. width:105px;
  3184. height:35px;
  3185. display:flex;
  3186. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:12px;
  3190. text-decoration:underline ;
  3191. color:#333333;
  3192. }
  3193. #u85014 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u85014_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u85015_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:54px;
  3212. height:35px;
  3213. }
  3214. #u85015 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:216px;
  3219. width:54px;
  3220. height:35px;
  3221. display:flex;
  3222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. color:#606266;
  3227. }
  3228. #u85015 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u85015_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u85016_img {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:116px;
  3247. height:35px;
  3248. }
  3249. #u85016 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:54px;
  3253. top:216px;
  3254. width:116px;
  3255. height:35px;
  3256. display:flex;
  3257. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. font-size:12px;
  3261. color:#606266;
  3262. }
  3263. #u85016 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 0px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u85016_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u85017_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:140px;
  3282. height:35px;
  3283. }
  3284. #u85017 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:170px;
  3288. top:216px;
  3289. width:140px;
  3290. height:35px;
  3291. display:flex;
  3292. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. font-size:12px;
  3296. color:#606266;
  3297. }
  3298. #u85017 .text {
  3299. position:absolute;
  3300. align-self:center;
  3301. padding:2px 2px 2px 0px;
  3302. box-sizing:border-box;
  3303. width:100%;
  3304. }
  3305. #u85017_text {
  3306. border-width:0px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u85018_img {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:106px;
  3317. height:35px;
  3318. }
  3319. #u85018 {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:310px;
  3323. top:216px;
  3324. width:106px;
  3325. height:35px;
  3326. display:flex;
  3327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3328. font-weight:400;
  3329. font-style:normal;
  3330. font-size:12px;
  3331. color:#606266;
  3332. }
  3333. #u85018 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:2px 2px 2px 0px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u85018_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. visibility:hidden;
  3345. }
  3346. #u85019_img {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:110px;
  3352. height:35px;
  3353. }
  3354. #u85019 {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:416px;
  3358. top:216px;
  3359. width:110px;
  3360. height:35px;
  3361. display:flex;
  3362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3363. font-weight:400;
  3364. font-style:normal;
  3365. font-size:12px;
  3366. text-decoration:underline ;
  3367. color:#333333;
  3368. }
  3369. #u85019 .text {
  3370. position:absolute;
  3371. align-self:center;
  3372. padding:2px 2px 2px 0px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u85019_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u85020_img {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:106px;
  3388. height:35px;
  3389. }
  3390. #u85020 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:526px;
  3394. top:216px;
  3395. width:106px;
  3396. height:35px;
  3397. display:flex;
  3398. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:12px;
  3402. text-decoration:underline ;
  3403. color:#333333;
  3404. }
  3405. #u85020 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 0px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u85020_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u85021_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:106px;
  3424. height:35px;
  3425. }
  3426. #u85021 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:632px;
  3430. top:216px;
  3431. width:106px;
  3432. height:35px;
  3433. display:flex;
  3434. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:12px;
  3438. text-decoration:underline ;
  3439. color:#333333;
  3440. }
  3441. #u85021 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u85021_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u85022_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:106px;
  3460. height:35px;
  3461. }
  3462. #u85022 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:738px;
  3466. top:216px;
  3467. width:106px;
  3468. height:35px;
  3469. display:flex;
  3470. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:12px;
  3474. text-decoration:underline ;
  3475. color:#333333;
  3476. }
  3477. #u85022 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u85022_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u85023_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:105px;
  3496. height:35px;
  3497. }
  3498. #u85023 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:844px;
  3502. top:216px;
  3503. width:105px;
  3504. height:35px;
  3505. display:flex;
  3506. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:12px;
  3510. text-decoration:underline ;
  3511. color:#333333;
  3512. }
  3513. #u85023 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 0px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u85023_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u85024_img {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:54px;
  3532. height:31px;
  3533. }
  3534. #u85024 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:251px;
  3539. width:54px;
  3540. height:31px;
  3541. display:flex;
  3542. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3543. font-weight:400;
  3544. font-style:normal;
  3545. font-size:12px;
  3546. color:#606266;
  3547. }
  3548. #u85024 .text {
  3549. position:absolute;
  3550. align-self:center;
  3551. padding:2px 2px 2px 0px;
  3552. box-sizing:border-box;
  3553. width:100%;
  3554. }
  3555. #u85024_text {
  3556. border-width:0px;
  3557. word-wrap:break-word;
  3558. text-transform:none;
  3559. visibility:hidden;
  3560. }
  3561. #u85025_img {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:116px;
  3567. height:31px;
  3568. }
  3569. #u85025 {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:54px;
  3573. top:251px;
  3574. width:116px;
  3575. height:31px;
  3576. display:flex;
  3577. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3578. font-weight:400;
  3579. font-style:normal;
  3580. font-size:12px;
  3581. color:#606266;
  3582. }
  3583. #u85025 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 2px 2px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u85025_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. visibility:hidden;
  3595. }
  3596. #u85026_img {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:140px;
  3602. height:31px;
  3603. }
  3604. #u85026 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:170px;
  3608. top:251px;
  3609. width:140px;
  3610. height:31px;
  3611. display:flex;
  3612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3613. font-weight:400;
  3614. font-style:normal;
  3615. font-size:12px;
  3616. color:#606266;
  3617. }
  3618. #u85026 .text {
  3619. position:absolute;
  3620. align-self:center;
  3621. padding:2px 2px 2px 0px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u85026_text {
  3626. border-width:0px;
  3627. word-wrap:break-word;
  3628. text-transform:none;
  3629. visibility:hidden;
  3630. }
  3631. #u85027_img {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:106px;
  3637. height:31px;
  3638. }
  3639. #u85027 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:310px;
  3643. top:251px;
  3644. width:106px;
  3645. height:31px;
  3646. display:flex;
  3647. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. font-size:12px;
  3651. color:#606266;
  3652. }
  3653. #u85027 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 0px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u85027_text {
  3661. border-width:0px;
  3662. word-wrap:break-word;
  3663. text-transform:none;
  3664. visibility:hidden;
  3665. }
  3666. #u85028_img {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:110px;
  3672. height:31px;
  3673. }
  3674. #u85028 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:416px;
  3678. top:251px;
  3679. width:110px;
  3680. height:31px;
  3681. display:flex;
  3682. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:12px;
  3686. text-decoration:underline ;
  3687. color:#333333;
  3688. }
  3689. #u85028 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 0px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u85028_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u85029_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:106px;
  3708. height:31px;
  3709. }
  3710. #u85029 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:526px;
  3714. top:251px;
  3715. width:106px;
  3716. height:31px;
  3717. display:flex;
  3718. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:12px;
  3722. text-decoration:underline ;
  3723. color:#333333;
  3724. }
  3725. #u85029 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 0px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u85029_text {
  3733. border-width:0px;
  3734. word-wrap:break-word;
  3735. text-transform:none;
  3736. visibility:hidden;
  3737. }
  3738. #u85030_img {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:106px;
  3744. height:31px;
  3745. }
  3746. #u85030 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:632px;
  3750. top:251px;
  3751. width:106px;
  3752. height:31px;
  3753. display:flex;
  3754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:12px;
  3758. text-decoration:underline ;
  3759. color:#333333;
  3760. }
  3761. #u85030 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:2px 2px 2px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u85030_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. visibility:hidden;
  3773. }
  3774. #u85031_img {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:106px;
  3780. height:31px;
  3781. }
  3782. #u85031 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:738px;
  3786. top:251px;
  3787. width:106px;
  3788. height:31px;
  3789. display:flex;
  3790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:12px;
  3794. text-decoration:underline ;
  3795. color:#333333;
  3796. }
  3797. #u85031 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:2px 2px 2px 0px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u85031_text {
  3805. border-width:0px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. visibility:hidden;
  3809. }
  3810. #u85032_img {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:105px;
  3816. height:31px;
  3817. }
  3818. #u85032 {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:844px;
  3822. top:251px;
  3823. width:105px;
  3824. height:31px;
  3825. display:flex;
  3826. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3827. font-weight:400;
  3828. font-style:normal;
  3829. font-size:12px;
  3830. text-decoration:underline ;
  3831. color:#333333;
  3832. }
  3833. #u85032 .text {
  3834. position:absolute;
  3835. align-self:center;
  3836. padding:2px 2px 2px 0px;
  3837. box-sizing:border-box;
  3838. width:100%;
  3839. }
  3840. #u85032_text {
  3841. border-width:0px;
  3842. word-wrap:break-word;
  3843. text-transform:none;
  3844. visibility:hidden;
  3845. }
  3846. #u85033_div {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:0px;
  3850. top:0px;
  3851. width:55px;
  3852. height:30px;
  3853. background:inherit;
  3854. background-color:rgba(255, 255, 255, 1);
  3855. box-sizing:border-box;
  3856. border-width:1px;
  3857. border-style:solid;
  3858. border-color:rgba(170, 170, 170, 1);
  3859. border-radius:4px;
  3860. -moz-box-shadow:none;
  3861. -webkit-box-shadow:none;
  3862. box-shadow:none;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:12px;
  3867. color:#555555;
  3868. }
  3869. #u85033 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:1008px;
  3873. top:583px;
  3874. width:55px;
  3875. height:30px;
  3876. display:flex;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:12px;
  3881. color:#555555;
  3882. }
  3883. #u85033 .text {
  3884. position:absolute;
  3885. align-self:center;
  3886. padding:5px 15px 5px 15px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u85033_text {
  3891. border-width:0px;
  3892. white-space:nowrap;
  3893. text-transform:none;
  3894. }
  3895. #u85034 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:0px;
  3901. height:0px;
  3902. }
  3903. #u85035_div {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:140px;
  3909. height:30px;
  3910. background:inherit;
  3911. background-color:rgba(255, 255, 255, 1);
  3912. box-sizing:border-box;
  3913. border-width:1px;
  3914. border-style:solid;
  3915. border-color:rgba(215, 215, 215, 1);
  3916. border-radius:4px;
  3917. -moz-box-shadow:none;
  3918. -webkit-box-shadow:none;
  3919. box-shadow:none;
  3920. font-size:11px;
  3921. }
  3922. #u85035 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:264px;
  3926. top:623px;
  3927. width:140px;
  3928. height:30px;
  3929. display:flex;
  3930. font-size:11px;
  3931. }
  3932. #u85035 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 2px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u85035_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. visibility:hidden;
  3944. }
  3945. #u85036_input {
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:120px;
  3950. height:23px;
  3951. padding:2px 2px 2px 2px;
  3952. font-family:'ArialMT', 'Arial', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:11px;
  3956. letter-spacing:normal;
  3957. color:#AAAAAA;
  3958. vertical-align:none;
  3959. text-align:left;
  3960. text-transform:none;
  3961. background-color:transparent;
  3962. border-color:transparent;
  3963. }
  3964. #u85036_input.disabled {
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:120px;
  3969. height:23px;
  3970. padding:2px 2px 2px 2px;
  3971. font-family:'ArialMT', 'Arial', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:11px;
  3975. letter-spacing:normal;
  3976. color:#AAAAAA;
  3977. vertical-align:none;
  3978. text-align:left;
  3979. text-transform:none;
  3980. background-color:transparent;
  3981. border-color:transparent;
  3982. }
  3983. #u85036_div {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:120px;
  3989. height:23px;
  3990. background:inherit;
  3991. background-color:rgba(255, 255, 255, 1);
  3992. border:none;
  3993. border-radius:0px;
  3994. -moz-box-shadow:none;
  3995. -webkit-box-shadow:none;
  3996. box-shadow:none;
  3997. font-size:11px;
  3998. color:#AAAAAA;
  3999. }
  4000. #u85036 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:271px;
  4004. top:625px;
  4005. width:120px;
  4006. height:23px;
  4007. display:flex;
  4008. font-size:11px;
  4009. color:#AAAAAA;
  4010. }
  4011. #u85036 .text {
  4012. position:absolute;
  4013. align-self:flex-start;
  4014. padding:2px 2px 2px 2px;
  4015. box-sizing:border-box;
  4016. width:100%;
  4017. }
  4018. #u85036_div.disabled {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:120px;
  4024. height:23px;
  4025. background:inherit;
  4026. background-color:rgba(240, 240, 240, 1);
  4027. border:none;
  4028. border-radius:0px;
  4029. -moz-box-shadow:none;
  4030. -webkit-box-shadow:none;
  4031. box-shadow:none;
  4032. font-size:11px;
  4033. color:#AAAAAA;
  4034. }
  4035. #u85036.disabled {
  4036. }
  4037. .u85036_input_option {
  4038. font-size:11px;
  4039. }
  4040. #u85037 {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:0px;
  4046. height:0px;
  4047. }
  4048. #u85038_div {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:140px;
  4054. height:30px;
  4055. background:inherit;
  4056. background-color:rgba(255, 255, 255, 1);
  4057. box-sizing:border-box;
  4058. border-width:1px;
  4059. border-style:solid;
  4060. border-color:rgba(201, 201, 201, 1);
  4061. border-radius:4px;
  4062. -moz-box-shadow:none;
  4063. -webkit-box-shadow:none;
  4064. box-shadow:none;
  4065. font-family:'Microsoft YaHei', sans-serif;
  4066. font-weight:400;
  4067. font-style:normal;
  4068. font-size:14px;
  4069. color:#CCCCCC;
  4070. text-align:left;
  4071. }
  4072. #u85038 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:564px;
  4076. top:623px;
  4077. width:140px;
  4078. height:30px;
  4079. display:flex;
  4080. font-family:'Microsoft YaHei', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:14px;
  4084. color:#CCCCCC;
  4085. text-align:left;
  4086. }
  4087. #u85038 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 8px 2px 8px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u85038_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u85039_input {
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:127px;
  4105. height:25px;
  4106. padding:2px 2px 2px 2px;
  4107. font-family:'Microsoft YaHei', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:10px;
  4111. letter-spacing:normal;
  4112. color:#000000;
  4113. vertical-align:none;
  4114. text-align:left;
  4115. text-transform:none;
  4116. background-color:transparent;
  4117. border-color:transparent;
  4118. }
  4119. #u85039_input.disabled {
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:127px;
  4124. height:25px;
  4125. padding:2px 2px 2px 2px;
  4126. font-family:'Microsoft YaHei', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:10px;
  4130. letter-spacing:normal;
  4131. color:#000000;
  4132. vertical-align:none;
  4133. text-align:left;
  4134. text-transform:none;
  4135. background-color:transparent;
  4136. border-color:transparent;
  4137. }
  4138. #u85039_div {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:127px;
  4144. height:25px;
  4145. background:inherit;
  4146. background-color:rgba(255, 255, 255, 1);
  4147. border:none;
  4148. border-radius:0px;
  4149. -moz-box-shadow:none;
  4150. -webkit-box-shadow:none;
  4151. box-shadow:none;
  4152. font-family:'Microsoft YaHei', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:10px;
  4156. }
  4157. #u85039 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:572px;
  4161. top:624px;
  4162. width:127px;
  4163. height:25px;
  4164. display:flex;
  4165. font-family:'Microsoft YaHei', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:10px;
  4169. }
  4170. #u85039 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 2px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u85039_div.disabled {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:127px;
  4183. height:25px;
  4184. background:inherit;
  4185. background-color:rgba(240, 240, 240, 1);
  4186. border:none;
  4187. border-radius:0px;
  4188. -moz-box-shadow:none;
  4189. -webkit-box-shadow:none;
  4190. box-shadow:none;
  4191. font-family:'Microsoft YaHei', sans-serif;
  4192. font-weight:400;
  4193. font-style:normal;
  4194. font-size:10px;
  4195. }
  4196. #u85039.disabled {
  4197. }
  4198. #u85040_div {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:59px;
  4204. height:30px;
  4205. background:inherit;
  4206. background-color:rgba(41, 143, 255, 1);
  4207. border:none;
  4208. border-radius:4px;
  4209. -moz-box-shadow:none;
  4210. -webkit-box-shadow:none;
  4211. box-shadow:none;
  4212. font-family:'Microsoft YaHei', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:14px;
  4216. color:#FFFFFF;
  4217. }
  4218. #u85040 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:724px;
  4222. top:623px;
  4223. width:59px;
  4224. height:30px;
  4225. display:flex;
  4226. font-family:'Microsoft YaHei', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:14px;
  4230. color:#FFFFFF;
  4231. }
  4232. #u85040 .text {
  4233. position:absolute;
  4234. align-self:center;
  4235. padding:5px 15px 5px 15px;
  4236. box-sizing:border-box;
  4237. width:100%;
  4238. }
  4239. #u85040_text {
  4240. border-width:0px;
  4241. white-space:nowrap;
  4242. text-transform:none;
  4243. }
  4244. #u85041_div {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:55px;
  4250. height:30px;
  4251. background:inherit;
  4252. background-color:rgba(255, 255, 255, 1);
  4253. box-sizing:border-box;
  4254. border-width:1px;
  4255. border-style:solid;
  4256. border-color:rgba(170, 170, 170, 1);
  4257. border-radius:4px;
  4258. -moz-box-shadow:none;
  4259. -webkit-box-shadow:none;
  4260. box-shadow:none;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:12px;
  4265. color:#555555;
  4266. }
  4267. #u85041 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:793px;
  4271. top:623px;
  4272. width:55px;
  4273. height:30px;
  4274. display:flex;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:12px;
  4279. color:#555555;
  4280. }
  4281. #u85041 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:5px 15px 5px 15px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u85041_text {
  4289. border-width:0px;
  4290. white-space:nowrap;
  4291. text-transform:none;
  4292. }
  4293. #u85042 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:0px;
  4299. height:0px;
  4300. }
  4301. #u85043_div {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:140px;
  4307. height:30px;
  4308. background:inherit;
  4309. background-color:rgba(255, 255, 255, 1);
  4310. box-sizing:border-box;
  4311. border-width:1px;
  4312. border-style:solid;
  4313. border-color:rgba(215, 215, 215, 1);
  4314. border-radius:4px;
  4315. -moz-box-shadow:none;
  4316. -webkit-box-shadow:none;
  4317. box-shadow:none;
  4318. font-size:11px;
  4319. }
  4320. #u85043 {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:114px;
  4324. top:623px;
  4325. width:140px;
  4326. height:30px;
  4327. display:flex;
  4328. font-size:11px;
  4329. }
  4330. #u85043 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 2px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u85043_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u85044_input {
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:120px;
  4348. height:23px;
  4349. padding:2px 2px 2px 2px;
  4350. font-family:'ArialMT', 'Arial', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:11px;
  4354. letter-spacing:normal;
  4355. color:#AAAAAA;
  4356. vertical-align:none;
  4357. text-align:left;
  4358. text-transform:none;
  4359. background-color:transparent;
  4360. border-color:transparent;
  4361. }
  4362. #u85044_input.disabled {
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:120px;
  4367. height:23px;
  4368. padding:2px 2px 2px 2px;
  4369. font-family:'ArialMT', 'Arial', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:11px;
  4373. letter-spacing:normal;
  4374. color:#AAAAAA;
  4375. vertical-align:none;
  4376. text-align:left;
  4377. text-transform:none;
  4378. background-color:transparent;
  4379. border-color:transparent;
  4380. }
  4381. #u85044_div {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:120px;
  4387. height:23px;
  4388. background:inherit;
  4389. background-color:rgba(255, 255, 255, 1);
  4390. border:none;
  4391. border-radius:0px;
  4392. -moz-box-shadow:none;
  4393. -webkit-box-shadow:none;
  4394. box-shadow:none;
  4395. font-size:11px;
  4396. color:#AAAAAA;
  4397. }
  4398. #u85044 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:121px;
  4402. top:625px;
  4403. width:120px;
  4404. height:23px;
  4405. display:flex;
  4406. font-size:11px;
  4407. color:#AAAAAA;
  4408. }
  4409. #u85044 .text {
  4410. position:absolute;
  4411. align-self:flex-start;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u85044_div.disabled {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:120px;
  4422. height:23px;
  4423. background:inherit;
  4424. background-color:rgba(240, 240, 240, 1);
  4425. border:none;
  4426. border-radius:0px;
  4427. -moz-box-shadow:none;
  4428. -webkit-box-shadow:none;
  4429. box-shadow:none;
  4430. font-size:11px;
  4431. color:#AAAAAA;
  4432. }
  4433. #u85044.disabled {
  4434. }
  4435. .u85044_input_option {
  4436. font-size:11px;
  4437. }
  4438. #u85045 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:0px;
  4444. height:0px;
  4445. }
  4446. #u85046_div {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:140px;
  4452. height:30px;
  4453. background:inherit;
  4454. background-color:rgba(255, 255, 255, 1);
  4455. box-sizing:border-box;
  4456. border-width:1px;
  4457. border-style:solid;
  4458. border-color:rgba(215, 215, 215, 1);
  4459. border-radius:4px;
  4460. -moz-box-shadow:none;
  4461. -webkit-box-shadow:none;
  4462. box-shadow:none;
  4463. font-size:11px;
  4464. }
  4465. #u85046 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:414px;
  4469. top:623px;
  4470. width:140px;
  4471. height:30px;
  4472. display:flex;
  4473. font-size:11px;
  4474. }
  4475. #u85046 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 2px 2px 2px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u85046_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. visibility:hidden;
  4487. }
  4488. #u85047_input {
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:120px;
  4493. height:23px;
  4494. padding:2px 2px 2px 2px;
  4495. font-family:'ArialMT', 'Arial', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:11px;
  4499. letter-spacing:normal;
  4500. color:#AAAAAA;
  4501. vertical-align:none;
  4502. text-align:left;
  4503. text-transform:none;
  4504. background-color:transparent;
  4505. border-color:transparent;
  4506. }
  4507. #u85047_input.disabled {
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:120px;
  4512. height:23px;
  4513. padding:2px 2px 2px 2px;
  4514. font-family:'ArialMT', 'Arial', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:11px;
  4518. letter-spacing:normal;
  4519. color:#AAAAAA;
  4520. vertical-align:none;
  4521. text-align:left;
  4522. text-transform:none;
  4523. background-color:transparent;
  4524. border-color:transparent;
  4525. }
  4526. #u85047_div {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:120px;
  4532. height:23px;
  4533. background:inherit;
  4534. background-color:rgba(255, 255, 255, 1);
  4535. border:none;
  4536. border-radius:0px;
  4537. -moz-box-shadow:none;
  4538. -webkit-box-shadow:none;
  4539. box-shadow:none;
  4540. font-size:11px;
  4541. color:#AAAAAA;
  4542. }
  4543. #u85047 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:421px;
  4547. top:625px;
  4548. width:120px;
  4549. height:23px;
  4550. display:flex;
  4551. font-size:11px;
  4552. color:#AAAAAA;
  4553. }
  4554. #u85047 .text {
  4555. position:absolute;
  4556. align-self:flex-start;
  4557. padding:2px 2px 2px 2px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u85047_div.disabled {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:120px;
  4567. height:23px;
  4568. background:inherit;
  4569. background-color:rgba(240, 240, 240, 1);
  4570. border:none;
  4571. border-radius:0px;
  4572. -moz-box-shadow:none;
  4573. -webkit-box-shadow:none;
  4574. box-shadow:none;
  4575. font-size:11px;
  4576. color:#AAAAAA;
  4577. }
  4578. #u85047.disabled {
  4579. }
  4580. .u85047_input_option {
  4581. font-size:11px;
  4582. }
  4583. #u85048_div {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:83px;
  4589. height:35px;
  4590. background:inherit;
  4591. background-color:rgba(255, 255, 255, 0);
  4592. border:none;
  4593. border-top:0px;
  4594. border-right:0px;
  4595. border-bottom:0px;
  4596. border-radius:0px;
  4597. border-top-left-radius:0px;
  4598. border-bottom-left-radius:0px;
  4599. -moz-box-shadow:none;
  4600. -webkit-box-shadow:none;
  4601. box-shadow:none;
  4602. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4603. font-weight:500;
  4604. font-style:normal;
  4605. font-size:18px;
  4606. }
  4607. #u85048 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:221px;
  4611. top:578px;
  4612. width:83px;
  4613. height:35px;
  4614. display:flex;
  4615. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4616. font-weight:500;
  4617. font-style:normal;
  4618. font-size:18px;
  4619. }
  4620. #u85048 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:5px 10px 5px 0px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u85048_text {
  4628. border-width:0px;
  4629. white-space:nowrap;
  4630. text-transform:none;
  4631. }
  4632. #u85049_div {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:841px;
  4638. height:40px;
  4639. background:inherit;
  4640. background-color:rgba(255, 255, 255, 0);
  4641. border:none;
  4642. border-top:0px;
  4643. border-right:0px;
  4644. border-bottom:0px;
  4645. border-radius:0px;
  4646. border-top-left-radius:0px;
  4647. border-bottom-left-radius:0px;
  4648. -moz-box-shadow:none;
  4649. -webkit-box-shadow:none;
  4650. box-shadow:none;
  4651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4652. font-weight:400;
  4653. font-style:normal;
  4654. line-height:40px;
  4655. }
  4656. #u85049 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:210px;
  4660. top:477px;
  4661. width:841px;
  4662. height:40px;
  4663. display:flex;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. line-height:40px;
  4668. }
  4669. #u85049 .text {
  4670. position:absolute;
  4671. align-self:flex-start;
  4672. padding:0px 0px 0px 0px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u85049_text {
  4677. border-width:0px;
  4678. white-space:nowrap;
  4679. text-transform:none;
  4680. }
  4681. #u85050_div {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:71px;
  4687. height:40px;
  4688. background:inherit;
  4689. background-color:rgba(255, 255, 255, 0);
  4690. border:none;
  4691. border-top:0px;
  4692. border-right:0px;
  4693. border-bottom:0px;
  4694. border-radius:0px;
  4695. border-top-left-radius:0px;
  4696. border-bottom-left-radius:0px;
  4697. -moz-box-shadow:none;
  4698. -webkit-box-shadow:none;
  4699. box-shadow:none;
  4700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4701. font-weight:500;
  4702. font-style:normal;
  4703. }
  4704. #u85050 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:115px;
  4708. top:337px;
  4709. width:71px;
  4710. height:40px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4713. font-weight:500;
  4714. font-style:normal;
  4715. }
  4716. #u85050 .text {
  4717. position:absolute;
  4718. align-self:center;
  4719. padding:0px 0px 0px 0px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u85050_text {
  4724. border-width:0px;
  4725. white-space:nowrap;
  4726. text-transform:none;
  4727. }
  4728. #u85051 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:0px;
  4734. height:0px;
  4735. }
  4736. #u85052_div {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:0px;
  4740. top:0px;
  4741. width:1000px;
  4742. height:60px;
  4743. background:inherit;
  4744. background-color:rgba(255, 255, 255, 1);
  4745. box-sizing:border-box;
  4746. border-width:1px;
  4747. border-style:solid;
  4748. border-color:rgba(215, 215, 215, 1);
  4749. border-radius:0px;
  4750. -moz-box-shadow:none;
  4751. -webkit-box-shadow:none;
  4752. box-shadow:none;
  4753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4754. font-weight:400;
  4755. font-style:normal;
  4756. font-size:14px;
  4757. color:#AAAAAA;
  4758. text-align:center;
  4759. line-height:30px;
  4760. }
  4761. #u85052 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:87px;
  4765. top:1190px;
  4766. width:1000px;
  4767. height:60px;
  4768. display:flex;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:14px;
  4773. color:#AAAAAA;
  4774. text-align:center;
  4775. line-height:30px;
  4776. }
  4777. #u85052 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:5px 10px 5px 10px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u85052_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. visibility:hidden;
  4789. }
  4790. #u85053_div {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:79px;
  4796. height:30px;
  4797. background:inherit;
  4798. background-color:rgba(255, 255, 255, 1);
  4799. box-sizing:border-box;
  4800. border-width:1px;
  4801. border-style:solid;
  4802. border-color:rgba(170, 170, 170, 1);
  4803. border-radius:4px;
  4804. -moz-box-shadow:none;
  4805. -webkit-box-shadow:none;
  4806. box-shadow:none;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:14px;
  4811. }
  4812. #u85053 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:968px;
  4816. top:1205px;
  4817. width:79px;
  4818. height:30px;
  4819. display:flex;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:14px;
  4824. }
  4825. #u85053 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 2px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u85053_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. }
  4837. #u85054_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:71px;
  4843. height:40px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 0);
  4846. border:none;
  4847. border-top:0px;
  4848. border-right:0px;
  4849. border-bottom:0px;
  4850. border-radius:0px;
  4851. border-top-left-radius:0px;
  4852. border-bottom-left-radius:0px;
  4853. -moz-box-shadow:none;
  4854. -webkit-box-shadow:none;
  4855. box-shadow:none;
  4856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. color:#7F7F7F;
  4860. line-height:40px;
  4861. }
  4862. #u85054 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:480px;
  4866. top:235px;
  4867. width:71px;
  4868. height:40px;
  4869. display:flex;
  4870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4871. font-weight:400;
  4872. font-style:normal;
  4873. color:#7F7F7F;
  4874. line-height:40px;
  4875. }
  4876. #u85054 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:0px 0px 0px 0px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u85054_text {
  4884. border-width:0px;
  4885. white-space:nowrap;
  4886. text-transform:none;
  4887. }
  4888. #u85055_div {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:29px;
  4894. height:40px;
  4895. background:inherit;
  4896. background-color:rgba(255, 255, 255, 0);
  4897. border:none;
  4898. border-top:0px;
  4899. border-right:0px;
  4900. border-bottom:0px;
  4901. border-radius:0px;
  4902. border-top-left-radius:0px;
  4903. border-bottom-left-radius:0px;
  4904. -moz-box-shadow:none;
  4905. -webkit-box-shadow:none;
  4906. box-shadow:none;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. line-height:40px;
  4911. }
  4912. #u85055 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:550px;
  4916. top:235px;
  4917. width:29px;
  4918. height:40px;
  4919. display:flex;
  4920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4921. font-weight:400;
  4922. font-style:normal;
  4923. line-height:40px;
  4924. }
  4925. #u85055 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:0px 0px 0px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u85055_text {
  4933. border-width:0px;
  4934. white-space:nowrap;
  4935. text-transform:none;
  4936. }
  4937. #u85056_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:71px;
  4943. height:40px;
  4944. background:inherit;
  4945. background-color:rgba(255, 255, 255, 0);
  4946. border:none;
  4947. border-top:0px;
  4948. border-right:0px;
  4949. border-bottom:0px;
  4950. border-radius:0px;
  4951. border-top-left-radius:0px;
  4952. border-bottom-left-radius:0px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. color:#7F7F7F;
  4960. line-height:40px;
  4961. }
  4962. #u85056 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:778px;
  4966. top:235px;
  4967. width:71px;
  4968. height:40px;
  4969. display:flex;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. color:#7F7F7F;
  4974. line-height:40px;
  4975. }
  4976. #u85056 .text {
  4977. position:absolute;
  4978. align-self:center;
  4979. padding:0px 0px 0px 0px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u85056_text {
  4984. border-width:0px;
  4985. white-space:nowrap;
  4986. text-transform:none;
  4987. }
  4988. #u85057_div {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:141px;
  4994. height:40px;
  4995. background:inherit;
  4996. background-color:rgba(255, 255, 255, 0);
  4997. border:none;
  4998. border-top:0px;
  4999. border-right:0px;
  5000. border-bottom:0px;
  5001. border-radius:0px;
  5002. border-top-left-radius:0px;
  5003. border-bottom-left-radius:0px;
  5004. -moz-box-shadow:none;
  5005. -webkit-box-shadow:none;
  5006. box-shadow:none;
  5007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. line-height:40px;
  5011. }
  5012. #u85057 {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:849px;
  5016. top:235px;
  5017. width:141px;
  5018. height:40px;
  5019. display:flex;
  5020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5021. font-weight:400;
  5022. font-style:normal;
  5023. line-height:40px;
  5024. }
  5025. #u85057 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:0px 0px 0px 0px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u85057_text {
  5033. border-width:0px;
  5034. white-space:nowrap;
  5035. text-transform:none;
  5036. }
  5037. #u85058_div {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:43px;
  5043. height:40px;
  5044. background:inherit;
  5045. background-color:rgba(255, 255, 255, 0);
  5046. border:none;
  5047. border-top:0px;
  5048. border-right:0px;
  5049. border-bottom:0px;
  5050. border-radius:0px;
  5051. border-top-left-radius:0px;
  5052. border-bottom-left-radius:0px;
  5053. -moz-box-shadow:none;
  5054. -webkit-box-shadow:none;
  5055. box-shadow:none;
  5056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. color:#7F7F7F;
  5060. line-height:40px;
  5061. }
  5062. #u85058 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:480px;
  5066. top:275px;
  5067. width:43px;
  5068. height:40px;
  5069. display:flex;
  5070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5071. font-weight:400;
  5072. font-style:normal;
  5073. color:#7F7F7F;
  5074. line-height:40px;
  5075. }
  5076. #u85058 .text {
  5077. position:absolute;
  5078. align-self:center;
  5079. padding:0px 0px 0px 0px;
  5080. box-sizing:border-box;
  5081. width:100%;
  5082. }
  5083. #u85058_text {
  5084. border-width:0px;
  5085. white-space:nowrap;
  5086. text-transform:none;
  5087. }
  5088. #u85059_div {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:29px;
  5094. height:40px;
  5095. background:inherit;
  5096. background-color:rgba(255, 255, 255, 0);
  5097. border:none;
  5098. border-top:0px;
  5099. border-right:0px;
  5100. border-bottom:0px;
  5101. border-radius:0px;
  5102. border-top-left-radius:0px;
  5103. border-bottom-left-radius:0px;
  5104. -moz-box-shadow:none;
  5105. -webkit-box-shadow:none;
  5106. box-shadow:none;
  5107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5108. font-weight:400;
  5109. font-style:normal;
  5110. line-height:40px;
  5111. }
  5112. #u85059 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:550px;
  5116. top:275px;
  5117. width:29px;
  5118. height:40px;
  5119. display:flex;
  5120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. line-height:40px;
  5124. }
  5125. #u85059 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:0px 0px 0px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u85059_text {
  5133. border-width:0px;
  5134. white-space:nowrap;
  5135. text-transform:none;
  5136. }
  5137. #u85060_div {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:57px;
  5143. height:40px;
  5144. background:inherit;
  5145. background-color:rgba(255, 255, 255, 0);
  5146. border:none;
  5147. border-top:0px;
  5148. border-right:0px;
  5149. border-bottom:0px;
  5150. border-radius:0px;
  5151. border-top-left-radius:0px;
  5152. border-bottom-left-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. color:#7F7F7F;
  5160. line-height:40px;
  5161. }
  5162. #u85060 {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:778px;
  5166. top:275px;
  5167. width:57px;
  5168. height:40px;
  5169. display:flex;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. color:#7F7F7F;
  5174. line-height:40px;
  5175. }
  5176. #u85060 .text {
  5177. position:absolute;
  5178. align-self:center;
  5179. padding:0px 0px 0px 0px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u85060_text {
  5184. border-width:0px;
  5185. white-space:nowrap;
  5186. text-transform:none;
  5187. }
  5188. #u85061_div {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:82px;
  5194. height:40px;
  5195. background:inherit;
  5196. background-color:rgba(255, 255, 255, 0);
  5197. border:none;
  5198. border-top:0px;
  5199. border-right:0px;
  5200. border-bottom:0px;
  5201. border-radius:0px;
  5202. border-top-left-radius:0px;
  5203. border-bottom-left-radius:0px;
  5204. -moz-box-shadow:none;
  5205. -webkit-box-shadow:none;
  5206. box-shadow:none;
  5207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. line-height:40px;
  5211. }
  5212. #u85061 {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:849px;
  5216. top:275px;
  5217. width:82px;
  5218. height:40px;
  5219. display:flex;
  5220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5221. font-weight:400;
  5222. font-style:normal;
  5223. line-height:40px;
  5224. }
  5225. #u85061 .text {
  5226. position:absolute;
  5227. align-self:center;
  5228. padding:0px 0px 0px 0px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u85061_text {
  5233. border-width:0px;
  5234. white-space:nowrap;
  5235. text-transform:none;
  5236. }
  5237. #u85062_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:57px;
  5243. height:40px;
  5244. background:inherit;
  5245. background-color:rgba(255, 255, 255, 0);
  5246. border:none;
  5247. border-top:0px;
  5248. border-right:0px;
  5249. border-bottom:0px;
  5250. border-radius:0px;
  5251. border-top-left-radius:0px;
  5252. border-bottom-left-radius:0px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. color:#7F7F7F;
  5260. line-height:40px;
  5261. }
  5262. #u85062 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:778px;
  5266. top:155px;
  5267. width:57px;
  5268. height:40px;
  5269. display:flex;
  5270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. color:#7F7F7F;
  5274. line-height:40px;
  5275. }
  5276. #u85062 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:0px 0px 0px 0px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u85062_text {
  5284. border-width:0px;
  5285. white-space:nowrap;
  5286. text-transform:none;
  5287. }
  5288. #u85063_div {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:117px;
  5294. height:40px;
  5295. background:inherit;
  5296. background-color:rgba(255, 255, 255, 0);
  5297. border:none;
  5298. border-top:0px;
  5299. border-right:0px;
  5300. border-bottom:0px;
  5301. border-radius:0px;
  5302. border-top-left-radius:0px;
  5303. border-bottom-left-radius:0px;
  5304. -moz-box-shadow:none;
  5305. -webkit-box-shadow:none;
  5306. box-shadow:none;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. line-height:40px;
  5311. }
  5312. #u85063 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:849px;
  5316. top:155px;
  5317. width:117px;
  5318. height:40px;
  5319. display:flex;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. line-height:40px;
  5324. }
  5325. #u85063 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:0px 0px 0px 0px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u85063_text {
  5333. border-width:0px;
  5334. white-space:nowrap;
  5335. text-transform:none;
  5336. }
  5337. #u85064_div {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:57px;
  5343. height:40px;
  5344. background:inherit;
  5345. background-color:rgba(255, 255, 255, 0);
  5346. border:none;
  5347. border-top:0px;
  5348. border-right:0px;
  5349. border-bottom:0px;
  5350. border-radius:0px;
  5351. border-top-left-radius:0px;
  5352. border-bottom-left-radius:0px;
  5353. -moz-box-shadow:none;
  5354. -webkit-box-shadow:none;
  5355. box-shadow:none;
  5356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. color:#7F7F7F;
  5360. line-height:40px;
  5361. }
  5362. #u85064 {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:480px;
  5366. top:155px;
  5367. width:57px;
  5368. height:40px;
  5369. display:flex;
  5370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5371. font-weight:400;
  5372. font-style:normal;
  5373. color:#7F7F7F;
  5374. line-height:40px;
  5375. }
  5376. #u85064 .text {
  5377. position:absolute;
  5378. align-self:center;
  5379. padding:0px 0px 0px 0px;
  5380. box-sizing:border-box;
  5381. width:100%;
  5382. }
  5383. #u85064_text {
  5384. border-width:0px;
  5385. white-space:nowrap;
  5386. text-transform:none;
  5387. }
  5388. #u85065_div {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:85px;
  5394. height:40px;
  5395. background:inherit;
  5396. background-color:rgba(255, 255, 255, 0);
  5397. border:none;
  5398. border-top:0px;
  5399. border-right:0px;
  5400. border-bottom:0px;
  5401. border-radius:0px;
  5402. border-top-left-radius:0px;
  5403. border-bottom-left-radius:0px;
  5404. -moz-box-shadow:none;
  5405. -webkit-box-shadow:none;
  5406. box-shadow:none;
  5407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. line-height:40px;
  5411. }
  5412. #u85065 {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:550px;
  5416. top:155px;
  5417. width:85px;
  5418. height:40px;
  5419. display:flex;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. line-height:40px;
  5424. }
  5425. #u85065 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:0px 0px 0px 0px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u85065_text {
  5433. border-width:0px;
  5434. white-space:nowrap;
  5435. text-transform:none;
  5436. }
  5437. #u85066_div {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:43px;
  5443. height:40px;
  5444. background:inherit;
  5445. background-color:rgba(255, 255, 255, 0);
  5446. border:none;
  5447. border-top:0px;
  5448. border-right:0px;
  5449. border-bottom:0px;
  5450. border-radius:0px;
  5451. border-top-left-radius:0px;
  5452. border-bottom-left-radius:0px;
  5453. -moz-box-shadow:none;
  5454. -webkit-box-shadow:none;
  5455. box-shadow:none;
  5456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5457. font-weight:400;
  5458. font-style:normal;
  5459. color:#7F7F7F;
  5460. line-height:40px;
  5461. }
  5462. #u85066 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:480px;
  5466. top:195px;
  5467. width:43px;
  5468. height:40px;
  5469. display:flex;
  5470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5471. font-weight:400;
  5472. font-style:normal;
  5473. color:#7F7F7F;
  5474. line-height:40px;
  5475. }
  5476. #u85066 .text {
  5477. position:absolute;
  5478. align-self:center;
  5479. padding:0px 0px 0px 0px;
  5480. box-sizing:border-box;
  5481. width:100%;
  5482. }
  5483. #u85066_text {
  5484. border-width:0px;
  5485. white-space:nowrap;
  5486. text-transform:none;
  5487. }
  5488. #u85067_div {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:0px;
  5492. top:0px;
  5493. width:57px;
  5494. height:40px;
  5495. background:inherit;
  5496. background-color:rgba(255, 255, 255, 0);
  5497. border:none;
  5498. border-top:0px;
  5499. border-right:0px;
  5500. border-bottom:0px;
  5501. border-radius:0px;
  5502. border-top-left-radius:0px;
  5503. border-bottom-left-radius:0px;
  5504. -moz-box-shadow:none;
  5505. -webkit-box-shadow:none;
  5506. box-shadow:none;
  5507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. line-height:40px;
  5511. }
  5512. #u85067 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:550px;
  5516. top:195px;
  5517. width:57px;
  5518. height:40px;
  5519. display:flex;
  5520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. line-height:40px;
  5524. }
  5525. #u85067 .text {
  5526. position:absolute;
  5527. align-self:center;
  5528. padding:0px 0px 0px 0px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u85067_text {
  5533. border-width:0px;
  5534. white-space:nowrap;
  5535. text-transform:none;
  5536. }
  5537. #u85068_div {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:57px;
  5543. height:40px;
  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-Regular', 'PingFang SC', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. color:#7F7F7F;
  5560. line-height:40px;
  5561. }
  5562. #u85068 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:778px;
  5566. top:195px;
  5567. width:57px;
  5568. height:40px;
  5569. display:flex;
  5570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5571. font-weight:400;
  5572. font-style:normal;
  5573. color:#7F7F7F;
  5574. line-height:40px;
  5575. }
  5576. #u85068 .text {
  5577. position:absolute;
  5578. align-self:center;
  5579. padding:0px 0px 0px 0px;
  5580. box-sizing:border-box;
  5581. width:100%;
  5582. }
  5583. #u85068_text {
  5584. border-width:0px;
  5585. white-space:nowrap;
  5586. text-transform:none;
  5587. }
  5588. #u85069_div {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:197px;
  5594. height:40px;
  5595. background:inherit;
  5596. background-color:rgba(255, 255, 255, 0);
  5597. border:none;
  5598. border-top:0px;
  5599. border-right:0px;
  5600. border-bottom:0px;
  5601. border-radius:0px;
  5602. border-top-left-radius:0px;
  5603. border-bottom-left-radius:0px;
  5604. -moz-box-shadow:none;
  5605. -webkit-box-shadow:none;
  5606. box-shadow:none;
  5607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. line-height:40px;
  5611. }
  5612. #u85069 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:849px;
  5616. top:195px;
  5617. width:197px;
  5618. height:40px;
  5619. display:flex;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. line-height:40px;
  5624. }
  5625. #u85069 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:0px 0px 0px 0px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u85069_text {
  5633. border-width:0px;
  5634. white-space:nowrap;
  5635. text-transform:none;
  5636. }
  5637. #u85070 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:0px;
  5643. height:0px;
  5644. }
  5645. #u85071_div {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:40px;
  5651. height:40px;
  5652. background:inherit;
  5653. background-color:rgba(255, 255, 255, 0);
  5654. border:none;
  5655. border-top:0px;
  5656. border-right:0px;
  5657. border-bottom:0px;
  5658. border-radius:0px;
  5659. border-top-left-radius:0px;
  5660. border-bottom-left-radius:0px;
  5661. -moz-box-shadow:none;
  5662. -webkit-box-shadow:none;
  5663. box-shadow:none;
  5664. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5665. font-weight:500;
  5666. font-style:normal;
  5667. font-size:18px;
  5668. text-align:center;
  5669. }
  5670. #u85071 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:1035px;
  5674. top:53px;
  5675. width:40px;
  5676. height:40px;
  5677. display:flex;
  5678. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5679. font-weight:500;
  5680. font-style:normal;
  5681. font-size:18px;
  5682. text-align:center;
  5683. }
  5684. #u85071 .text {
  5685. position:absolute;
  5686. align-self:center;
  5687. padding:5px 10px 5px 0px;
  5688. box-sizing:border-box;
  5689. width:100%;
  5690. }
  5691. #u85071_text {
  5692. border-width:0px;
  5693. word-wrap:break-word;
  5694. text-transform:none;
  5695. }
  5696. #u85072_img {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:13px;
  5702. height:13px;
  5703. }
  5704. #u85072 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:1023px;
  5708. top:69px;
  5709. width:13px;
  5710. height:13px;
  5711. display:flex;
  5712. }
  5713. #u85072 .text {
  5714. position:absolute;
  5715. align-self:center;
  5716. padding:2px 2px 2px 2px;
  5717. box-sizing:border-box;
  5718. width:100%;
  5719. }
  5720. #u85072_text {
  5721. border-width:0px;
  5722. word-wrap:break-word;
  5723. text-transform:none;
  5724. visibility:hidden;
  5725. }
  5726. #u85073 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:0px;
  5732. height:0px;
  5733. }
  5734. #u85074_div {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:1000px;
  5740. height:1200px;
  5741. background:inherit;
  5742. background-color:rgba(242, 242, 242, 1);
  5743. box-sizing:border-box;
  5744. border-width:1px;
  5745. border-style:solid;
  5746. border-color:rgba(215, 215, 215, 1);
  5747. border-radius:0px;
  5748. -moz-box-shadow:none;
  5749. -webkit-box-shadow:none;
  5750. box-shadow:none;
  5751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:14px;
  5755. color:#AAAAAA;
  5756. text-align:center;
  5757. line-height:30px;
  5758. }
  5759. #u85074 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:1144px;
  5763. top:50px;
  5764. width:1000px;
  5765. height:1200px;
  5766. display:flex;
  5767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:14px;
  5771. color:#AAAAAA;
  5772. text-align:center;
  5773. line-height:30px;
  5774. }
  5775. #u85074 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:5px 10px 5px 10px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u85074_text {
  5783. border-width:0px;
  5784. word-wrap:break-word;
  5785. text-transform:none;
  5786. visibility:hidden;
  5787. }
  5788. #u85075_div {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:1000px;
  5794. height:490px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 1);
  5797. box-sizing:border-box;
  5798. border-width:1px;
  5799. border-style:solid;
  5800. border-color:rgba(215, 215, 215, 1);
  5801. border-radius:0px;
  5802. -moz-box-shadow:none;
  5803. -webkit-box-shadow:none;
  5804. box-shadow:none;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:14px;
  5809. color:#AAAAAA;
  5810. text-align:center;
  5811. line-height:30px;
  5812. }
  5813. #u85075 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:1144px;
  5817. top:50px;
  5818. width:1000px;
  5819. height:490px;
  5820. display:flex;
  5821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. font-size:14px;
  5825. color:#AAAAAA;
  5826. text-align:center;
  5827. line-height:30px;
  5828. }
  5829. #u85075 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:5px 10px 5px 10px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u85075_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u85076_div {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:101px;
  5848. height:35px;
  5849. background:inherit;
  5850. background-color:rgba(255, 255, 255, 0);
  5851. border:none;
  5852. border-top:0px;
  5853. border-right:0px;
  5854. border-bottom:0px;
  5855. border-radius:0px;
  5856. border-top-left-radius:0px;
  5857. border-bottom-left-radius:0px;
  5858. -moz-box-shadow:none;
  5859. -webkit-box-shadow:none;
  5860. box-shadow:none;
  5861. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5862. font-weight:500;
  5863. font-style:normal;
  5864. font-size:18px;
  5865. }
  5866. #u85076 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:1164px;
  5870. top:78px;
  5871. width:101px;
  5872. height:35px;
  5873. display:flex;
  5874. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5875. font-weight:500;
  5876. font-style:normal;
  5877. font-size:18px;
  5878. }
  5879. #u85076 .text {
  5880. position:absolute;
  5881. align-self:center;
  5882. padding:5px 10px 5px 0px;
  5883. box-sizing:border-box;
  5884. width:100%;
  5885. }
  5886. #u85076_text {
  5887. border-width:0px;
  5888. white-space:nowrap;
  5889. text-transform:none;
  5890. }
  5891. #u85077_div {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:43px;
  5897. height:40px;
  5898. background:inherit;
  5899. background-color:rgba(255, 255, 255, 0);
  5900. border:none;
  5901. border-top:0px;
  5902. border-right:0px;
  5903. border-bottom:0px;
  5904. border-radius:0px;
  5905. border-top-left-radius:0px;
  5906. border-bottom-left-radius:0px;
  5907. -moz-box-shadow:none;
  5908. -webkit-box-shadow:none;
  5909. box-shadow:none;
  5910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. color:#7F7F7F;
  5914. line-height:40px;
  5915. }
  5916. #u85077 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:1835px;
  5920. top:115px;
  5921. width:43px;
  5922. height:40px;
  5923. display:flex;
  5924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. color:#7F7F7F;
  5928. line-height:40px;
  5929. }
  5930. #u85077 .text {
  5931. position:absolute;
  5932. align-self:center;
  5933. padding:0px 0px 0px 0px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u85077_text {
  5938. border-width:0px;
  5939. white-space:nowrap;
  5940. text-transform:none;
  5941. }
  5942. #u85078_div {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:109px;
  5948. height:40px;
  5949. background:inherit;
  5950. background-color:rgba(255, 255, 255, 0);
  5951. border:none;
  5952. border-top:0px;
  5953. border-right:0px;
  5954. border-bottom:0px;
  5955. border-radius:0px;
  5956. border-top-left-radius:0px;
  5957. border-bottom-left-radius:0px;
  5958. -moz-box-shadow:none;
  5959. -webkit-box-shadow:none;
  5960. box-shadow:none;
  5961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. line-height:40px;
  5965. }
  5966. #u85078 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:1906px;
  5970. top:115px;
  5971. width:109px;
  5972. height:40px;
  5973. display:flex;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. line-height:40px;
  5978. }
  5979. #u85078 .text {
  5980. position:absolute;
  5981. align-self:center;
  5982. padding:0px 0px 0px 0px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u85078_text {
  5987. border-width:0px;
  5988. white-space:nowrap;
  5989. text-transform:none;
  5990. }
  5991. #u85079_div {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:43px;
  5997. height:40px;
  5998. background:inherit;
  5999. background-color:rgba(255, 255, 255, 0);
  6000. border:none;
  6001. border-top:0px;
  6002. border-right:0px;
  6003. border-bottom:0px;
  6004. border-radius:0px;
  6005. border-top-left-radius:0px;
  6006. border-bottom-left-radius:0px;
  6007. -moz-box-shadow:none;
  6008. -webkit-box-shadow:none;
  6009. box-shadow:none;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. color:#7F7F7F;
  6014. line-height:40px;
  6015. }
  6016. #u85079 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:1537px;
  6020. top:115px;
  6021. width:43px;
  6022. height:40px;
  6023. display:flex;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. color:#7F7F7F;
  6028. line-height:40px;
  6029. }
  6030. #u85079 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:0px 0px 0px 0px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u85079_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u85080_div {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:127px;
  6048. height:40px;
  6049. background:inherit;
  6050. background-color:rgba(255, 255, 255, 0);
  6051. border:none;
  6052. border-top:0px;
  6053. border-right:0px;
  6054. border-bottom:0px;
  6055. border-radius:0px;
  6056. border-top-left-radius:0px;
  6057. border-bottom-left-radius:0px;
  6058. -moz-box-shadow:none;
  6059. -webkit-box-shadow:none;
  6060. box-shadow:none;
  6061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6062. font-weight:400;
  6063. font-style:normal;
  6064. line-height:40px;
  6065. }
  6066. #u85080 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:1607px;
  6070. top:115px;
  6071. width:127px;
  6072. height:40px;
  6073. display:flex;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. line-height:40px;
  6078. }
  6079. #u85080 .text {
  6080. position:absolute;
  6081. align-self:center;
  6082. padding:0px 0px 0px 0px;
  6083. box-sizing:border-box;
  6084. width:100%;
  6085. }
  6086. #u85080_text {
  6087. border-width:0px;
  6088. white-space:nowrap;
  6089. text-transform:none;
  6090. }
  6091. #u85081_div {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:71px;
  6097. height:40px;
  6098. background:inherit;
  6099. background-color:rgba(255, 255, 255, 0);
  6100. border:none;
  6101. border-top:0px;
  6102. border-right:0px;
  6103. border-bottom:0px;
  6104. border-radius:0px;
  6105. border-top-left-radius:0px;
  6106. border-bottom-left-radius:0px;
  6107. -moz-box-shadow:none;
  6108. -webkit-box-shadow:none;
  6109. box-shadow:none;
  6110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. color:#7F7F7F;
  6114. }
  6115. #u85081 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:1182px;
  6119. top:377px;
  6120. width:71px;
  6121. height:40px;
  6122. display:flex;
  6123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. color:#7F7F7F;
  6127. }
  6128. #u85081 .text {
  6129. position:absolute;
  6130. align-self:center;
  6131. padding:0px 0px 0px 0px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u85081_text {
  6136. border-width:0px;
  6137. white-space:nowrap;
  6138. text-transform:none;
  6139. }
  6140. #u85082_div {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:57px;
  6146. height:40px;
  6147. background:inherit;
  6148. background-color:rgba(255, 255, 255, 0);
  6149. border:none;
  6150. border-top:0px;
  6151. border-right:0px;
  6152. border-bottom:0px;
  6153. border-radius:0px;
  6154. border-top-left-radius:0px;
  6155. border-bottom-left-radius:0px;
  6156. -moz-box-shadow:none;
  6157. -webkit-box-shadow:none;
  6158. box-shadow:none;
  6159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. }
  6163. #u85082 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:1267px;
  6167. top:377px;
  6168. width:57px;
  6169. height:40px;
  6170. display:flex;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. }
  6175. #u85082 .text {
  6176. position:absolute;
  6177. align-self:center;
  6178. padding:0px 0px 0px 0px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u85082_text {
  6183. border-width:0px;
  6184. white-space:nowrap;
  6185. text-transform:none;
  6186. }
  6187. #u85083_div {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:71px;
  6193. height:40px;
  6194. background:inherit;
  6195. background-color:rgba(255, 255, 255, 0);
  6196. border:none;
  6197. border-top:0px;
  6198. border-right:0px;
  6199. border-bottom:0px;
  6200. border-radius:0px;
  6201. border-top-left-radius:0px;
  6202. border-bottom-left-radius:0px;
  6203. -moz-box-shadow:none;
  6204. -webkit-box-shadow:none;
  6205. box-shadow:none;
  6206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. color:#7F7F7F;
  6210. }
  6211. #u85083 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:1537px;
  6215. top:377px;
  6216. width:71px;
  6217. height:40px;
  6218. display:flex;
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. color:#7F7F7F;
  6223. }
  6224. #u85083 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:0px 0px 0px 0px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u85083_text {
  6232. border-width:0px;
  6233. white-space:nowrap;
  6234. text-transform:none;
  6235. }
  6236. #u85084_div {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:50px;
  6242. height:40px;
  6243. background:inherit;
  6244. background-color:rgba(255, 255, 255, 0);
  6245. border:none;
  6246. border-top:0px;
  6247. border-right:0px;
  6248. border-bottom:0px;
  6249. border-radius:0px;
  6250. border-top-left-radius:0px;
  6251. border-bottom-left-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. }
  6259. #u85084 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:1626px;
  6263. top:377px;
  6264. width:50px;
  6265. height:40px;
  6266. display:flex;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. }
  6271. #u85084 .text {
  6272. position:absolute;
  6273. align-self:center;
  6274. padding:0px 0px 0px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u85084_text {
  6279. border-width:0px;
  6280. white-space:nowrap;
  6281. text-transform:none;
  6282. }
  6283. #u85085_div {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:71px;
  6289. height:40px;
  6290. background:inherit;
  6291. background-color:rgba(255, 255, 255, 0);
  6292. border:none;
  6293. border-top:0px;
  6294. border-right:0px;
  6295. border-bottom:0px;
  6296. border-radius:0px;
  6297. border-top-left-radius:0px;
  6298. border-bottom-left-radius:0px;
  6299. -moz-box-shadow:none;
  6300. -webkit-box-shadow:none;
  6301. box-shadow:none;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. color:#7F7F7F;
  6306. line-height:40px;
  6307. }
  6308. #u85085 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:1182px;
  6312. top:477px;
  6313. width:71px;
  6314. height:40px;
  6315. display:flex;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. color:#7F7F7F;
  6320. line-height:40px;
  6321. }
  6322. #u85085 .text {
  6323. position:absolute;
  6324. align-self:center;
  6325. padding:0px 0px 0px 0px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u85085_text {
  6330. border-width:0px;
  6331. white-space:nowrap;
  6332. text-transform:none;
  6333. }
  6334. #u85086_div {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:71px;
  6340. height:40px;
  6341. background:inherit;
  6342. background-color:rgba(255, 255, 255, 0);
  6343. border:none;
  6344. border-top:0px;
  6345. border-right:0px;
  6346. border-bottom:0px;
  6347. border-radius:0px;
  6348. border-top-left-radius:0px;
  6349. border-bottom-left-radius:0px;
  6350. -moz-box-shadow:none;
  6351. -webkit-box-shadow:none;
  6352. box-shadow:none;
  6353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6354. font-weight:400;
  6355. font-style:normal;
  6356. color:#7F7F7F;
  6357. }
  6358. #u85086 {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:1835px;
  6362. top:377px;
  6363. width:71px;
  6364. height:40px;
  6365. display:flex;
  6366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. color:#7F7F7F;
  6370. }
  6371. #u85086 .text {
  6372. position:absolute;
  6373. align-self:center;
  6374. padding:0px 0px 0px 0px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u85086_text {
  6379. border-width:0px;
  6380. white-space:nowrap;
  6381. text-transform:none;
  6382. }
  6383. #u85087_div {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:0px;
  6387. top:0px;
  6388. width:43px;
  6389. height:40px;
  6390. background:inherit;
  6391. background-color:rgba(255, 255, 255, 0);
  6392. border:none;
  6393. border-top:0px;
  6394. border-right:0px;
  6395. border-bottom:0px;
  6396. border-radius:0px;
  6397. border-top-left-radius:0px;
  6398. border-bottom-left-radius:0px;
  6399. -moz-box-shadow:none;
  6400. -webkit-box-shadow:none;
  6401. box-shadow:none;
  6402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6403. font-weight:400;
  6404. font-style:normal;
  6405. }
  6406. #u85087 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:1934px;
  6410. top:377px;
  6411. width:43px;
  6412. height:40px;
  6413. display:flex;
  6414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. }
  6418. #u85087 .text {
  6419. position:absolute;
  6420. align-self:center;
  6421. padding:0px 0px 0px 0px;
  6422. box-sizing:border-box;
  6423. width:100%;
  6424. }
  6425. #u85087_text {
  6426. border-width:0px;
  6427. white-space:nowrap;
  6428. text-transform:none;
  6429. }
  6430. #u85088_div {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:71px;
  6436. height:40px;
  6437. background:inherit;
  6438. background-color:rgba(255, 255, 255, 0);
  6439. border:none;
  6440. border-top:0px;
  6441. border-right:0px;
  6442. border-bottom:0px;
  6443. border-radius:0px;
  6444. border-top-left-radius:0px;
  6445. border-bottom-left-radius:0px;
  6446. -moz-box-shadow:none;
  6447. -webkit-box-shadow:none;
  6448. box-shadow:none;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. color:#7F7F7F;
  6453. }
  6454. #u85088 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:1182px;
  6458. top:417px;
  6459. width:71px;
  6460. height:40px;
  6461. display:flex;
  6462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6463. font-weight:400;
  6464. font-style:normal;
  6465. color:#7F7F7F;
  6466. }
  6467. #u85088 .text {
  6468. position:absolute;
  6469. align-self:center;
  6470. padding:0px 0px 0px 0px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u85088_text {
  6475. border-width:0px;
  6476. white-space:nowrap;
  6477. text-transform:none;
  6478. }
  6479. #u85089_div {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:193px;
  6485. height:40px;
  6486. background:inherit;
  6487. background-color:rgba(255, 255, 255, 0);
  6488. border:none;
  6489. border-top:0px;
  6490. border-right:0px;
  6491. border-bottom:0px;
  6492. border-radius:0px;
  6493. border-top-left-radius:0px;
  6494. border-bottom-left-radius:0px;
  6495. -moz-box-shadow:none;
  6496. -webkit-box-shadow:none;
  6497. box-shadow:none;
  6498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. }
  6502. #u85089 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:1267px;
  6506. top:417px;
  6507. width:193px;
  6508. height:40px;
  6509. display:flex;
  6510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. }
  6514. #u85089 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:0px 0px 0px 0px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u85089_text {
  6522. border-width:0px;
  6523. white-space:nowrap;
  6524. text-transform:none;
  6525. }
  6526. #u85090_div {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:85px;
  6532. height:40px;
  6533. background:inherit;
  6534. background-color:rgba(255, 255, 255, 0);
  6535. border:none;
  6536. border-top:0px;
  6537. border-right:0px;
  6538. border-bottom:0px;
  6539. border-radius:0px;
  6540. border-top-left-radius:0px;
  6541. border-bottom-left-radius:0px;
  6542. -moz-box-shadow:none;
  6543. -webkit-box-shadow:none;
  6544. box-shadow:none;
  6545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. color:#7F7F7F;
  6549. }
  6550. #u85090 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:1537px;
  6554. top:417px;
  6555. width:85px;
  6556. height:40px;
  6557. display:flex;
  6558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. color:#7F7F7F;
  6562. }
  6563. #u85090 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:0px 0px 0px 0px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u85090_text {
  6571. border-width:0px;
  6572. white-space:nowrap;
  6573. text-transform:none;
  6574. }
  6575. #u85091_div {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:99px;
  6581. height:40px;
  6582. background:inherit;
  6583. background-color:rgba(255, 255, 255, 0);
  6584. border:none;
  6585. border-top:0px;
  6586. border-right:0px;
  6587. border-bottom:0px;
  6588. border-radius:0px;
  6589. border-top-left-radius:0px;
  6590. border-bottom-left-radius:0px;
  6591. -moz-box-shadow:none;
  6592. -webkit-box-shadow:none;
  6593. box-shadow:none;
  6594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6595. font-weight:400;
  6596. font-style:normal;
  6597. }
  6598. #u85091 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:1622px;
  6602. top:417px;
  6603. width:99px;
  6604. height:40px;
  6605. display:flex;
  6606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. }
  6610. #u85091 .text {
  6611. position:absolute;
  6612. align-self:center;
  6613. padding:0px 0px 0px 0px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u85091_text {
  6618. border-width:0px;
  6619. white-space:nowrap;
  6620. text-transform:none;
  6621. }
  6622. #u85092 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:0px;
  6628. height:0px;
  6629. }
  6630. #u85093_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:327px;
  6636. height:184px;
  6637. background:inherit;
  6638. background-color:rgba(51, 51, 51, 1);
  6639. box-sizing:border-box;
  6640. border-width:1px;
  6641. border-style:solid;
  6642. border-color:rgba(51, 51, 51, 1);
  6643. border-radius:4px;
  6644. -moz-box-shadow:none;
  6645. -webkit-box-shadow:none;
  6646. box-shadow:none;
  6647. font-family:'Microsoft YaHei', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:14px;
  6651. color:#CCCCCC;
  6652. text-align:left;
  6653. }
  6654. #u85093 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:1172px;
  6658. top:123px;
  6659. width:327px;
  6660. height:184px;
  6661. display:flex;
  6662. font-family:'Microsoft YaHei', sans-serif;
  6663. font-weight:400;
  6664. font-style:normal;
  6665. font-size:14px;
  6666. color:#CCCCCC;
  6667. text-align:left;
  6668. }
  6669. #u85093 .text {
  6670. position:absolute;
  6671. align-self:center;
  6672. padding:2px 8px 2px 8px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u85093_text {
  6677. border-width:0px;
  6678. word-wrap:break-word;
  6679. text-transform:none;
  6680. visibility:hidden;
  6681. }
  6682. #u85094_div {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:137px;
  6688. height:47px;
  6689. background:inherit;
  6690. background-color:rgba(255, 255, 255, 0);
  6691. border:none;
  6692. border-radius:0px;
  6693. -moz-box-shadow:none;
  6694. -webkit-box-shadow:none;
  6695. box-shadow:none;
  6696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6697. font-weight:500;
  6698. font-style:normal;
  6699. font-size:24px;
  6700. color:#FFFFFF;
  6701. line-height:40px;
  6702. }
  6703. #u85094 {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:1193px;
  6707. top:144px;
  6708. width:137px;
  6709. height:47px;
  6710. display:flex;
  6711. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6712. font-weight:500;
  6713. font-style:normal;
  6714. font-size:24px;
  6715. color:#FFFFFF;
  6716. line-height:40px;
  6717. }
  6718. #u85094 .text {
  6719. position:absolute;
  6720. align-self:flex-start;
  6721. padding:0px 0px 0px 0px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u85094_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. }
  6730. #u85095_div {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:0px;
  6734. top:0px;
  6735. width:169px;
  6736. height:47px;
  6737. background:inherit;
  6738. background-color:rgba(255, 255, 255, 0);
  6739. border:none;
  6740. border-radius:0px;
  6741. -moz-box-shadow:none;
  6742. -webkit-box-shadow:none;
  6743. box-shadow:none;
  6744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6745. font-weight:400;
  6746. font-style:normal;
  6747. font-size:12px;
  6748. color:#FFFFFF;
  6749. line-height:40px;
  6750. }
  6751. #u85095 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:1193px;
  6755. top:260px;
  6756. width:169px;
  6757. height:47px;
  6758. display:flex;
  6759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6760. font-weight:400;
  6761. font-style:normal;
  6762. font-size:12px;
  6763. color:#FFFFFF;
  6764. line-height:40px;
  6765. }
  6766. #u85095 .text {
  6767. position:absolute;
  6768. align-self:flex-start;
  6769. padding:0px 0px 0px 0px;
  6770. box-sizing:border-box;
  6771. width:100%;
  6772. }
  6773. #u85095_text {
  6774. border-width:0px;
  6775. word-wrap:break-word;
  6776. text-transform:none;
  6777. }
  6778. #u85096_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:199px;
  6784. height:47px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 0);
  6787. border:none;
  6788. border-radius:0px;
  6789. -moz-box-shadow:none;
  6790. -webkit-box-shadow:none;
  6791. box-shadow:none;
  6792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:12px;
  6796. color:#FFFFFF;
  6797. line-height:40px;
  6798. }
  6799. #u85096 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:1193px;
  6803. top:185px;
  6804. width:199px;
  6805. height:47px;
  6806. display:flex;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:12px;
  6811. color:#FFFFFF;
  6812. line-height:40px;
  6813. }
  6814. #u85096 .text {
  6815. position:absolute;
  6816. align-self:flex-start;
  6817. padding:0px 0px 0px 0px;
  6818. box-sizing:border-box;
  6819. width:100%;
  6820. }
  6821. #u85096_text {
  6822. border-width:0px;
  6823. word-wrap:break-word;
  6824. text-transform:none;
  6825. }
  6826. #u85097_div {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:68px;
  6832. height:41px;
  6833. background:inherit;
  6834. background-color:rgba(255, 255, 255, 0);
  6835. border:none;
  6836. border-radius:0px;
  6837. -moz-box-shadow:none;
  6838. -webkit-box-shadow:none;
  6839. box-shadow:none;
  6840. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6841. font-weight:500;
  6842. font-style:normal;
  6843. font-size:100px;
  6844. color:rgba(255, 255, 255, 0.0980392156862745);
  6845. line-height:40px;
  6846. }
  6847. #u85097 {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:1432px;
  6851. top:144px;
  6852. width:68px;
  6853. height:41px;
  6854. display:flex;
  6855. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6856. font-weight:500;
  6857. font-style:normal;
  6858. font-size:100px;
  6859. color:rgba(255, 255, 255, 0.0980392156862745);
  6860. line-height:40px;
  6861. }
  6862. #u85097 .text {
  6863. position:absolute;
  6864. align-self:flex-start;
  6865. padding:0px 0px 0px 0px;
  6866. box-sizing:border-box;
  6867. width:100%;
  6868. }
  6869. #u85097_text {
  6870. border-width:0px;
  6871. word-wrap:break-word;
  6872. text-transform:none;
  6873. }
  6874. #u85098_img {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:66px;
  6880. height:66px;
  6881. }
  6882. #u85098 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:1414px;
  6886. top:182px;
  6887. width:66px;
  6888. height:66px;
  6889. display:flex;
  6890. }
  6891. #u85098 .text {
  6892. position:absolute;
  6893. align-self:center;
  6894. padding:2px 2px 2px 2px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u85098_text {
  6899. border-width:0px;
  6900. word-wrap:break-word;
  6901. text-transform:none;
  6902. visibility:hidden;
  6903. }
  6904. #u85099 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:0px;
  6908. top:0px;
  6909. width:0px;
  6910. height:0px;
  6911. }
  6912. #u85100_div {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:1000px;
  6918. height:640px;
  6919. background:inherit;
  6920. background-color:rgba(255, 255, 255, 1);
  6921. box-sizing:border-box;
  6922. border-width:1px;
  6923. border-style:solid;
  6924. border-color:rgba(215, 215, 215, 1);
  6925. border-radius:0px;
  6926. -moz-box-shadow:none;
  6927. -webkit-box-shadow:none;
  6928. box-shadow:none;
  6929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6930. font-weight:400;
  6931. font-style:normal;
  6932. font-size:14px;
  6933. color:#AAAAAA;
  6934. text-align:center;
  6935. line-height:30px;
  6936. }
  6937. #u85100 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:1144px;
  6941. top:550px;
  6942. width:1000px;
  6943. height:640px;
  6944. display:flex;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:14px;
  6949. color:#AAAAAA;
  6950. text-align:center;
  6951. line-height:30px;
  6952. }
  6953. #u85100 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:5px 10px 5px 10px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u85100_text {
  6961. border-width:0px;
  6962. word-wrap:break-word;
  6963. text-transform:none;
  6964. visibility:hidden;
  6965. }
  6966. #u85101_div {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:83px;
  6972. height:35px;
  6973. background:inherit;
  6974. background-color:rgba(255, 255, 255, 0);
  6975. border:none;
  6976. border-top:0px;
  6977. border-right:0px;
  6978. border-bottom:0px;
  6979. border-radius:0px;
  6980. border-top-left-radius:0px;
  6981. border-bottom-left-radius:0px;
  6982. -moz-box-shadow:none;
  6983. -webkit-box-shadow:none;
  6984. box-shadow:none;
  6985. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6986. font-weight:500;
  6987. font-style:normal;
  6988. font-size:18px;
  6989. }
  6990. #u85101 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:1175px;
  6994. top:578px;
  6995. width:83px;
  6996. height:35px;
  6997. display:flex;
  6998. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6999. font-weight:500;
  7000. font-style:normal;
  7001. font-size:18px;
  7002. }
  7003. #u85101 .text {
  7004. position:absolute;
  7005. align-self:center;
  7006. padding:5px 10px 5px 0px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u85101_text {
  7011. border-width:0px;
  7012. white-space:nowrap;
  7013. text-transform:none;
  7014. }
  7015. #u85102 {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:1171px;
  7019. top:663px;
  7020. width:949px;
  7021. height:282px;
  7022. }
  7023. #u85103_img {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:69px;
  7029. height:35px;
  7030. }
  7031. #u85103 {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:69px;
  7037. height:35px;
  7038. display:flex;
  7039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:12px;
  7043. color:#FFFFFF;
  7044. }
  7045. #u85103 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:2px 2px 2px 0px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u85103_text {
  7053. border-width:0px;
  7054. word-wrap:break-word;
  7055. text-transform:none;
  7056. }
  7057. #u85104_img {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:0px;
  7061. top:0px;
  7062. width:149px;
  7063. height:35px;
  7064. }
  7065. #u85104 {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:69px;
  7069. top:0px;
  7070. width:149px;
  7071. height:35px;
  7072. display:flex;
  7073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7074. font-weight:400;
  7075. font-style:normal;
  7076. font-size:12px;
  7077. color:#FFFFFF;
  7078. }
  7079. #u85104 .text {
  7080. position:absolute;
  7081. align-self:center;
  7082. padding:2px 2px 2px 0px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u85104_text {
  7087. border-width:0px;
  7088. word-wrap:break-word;
  7089. text-transform:none;
  7090. }
  7091. #u85105_img {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:180px;
  7097. height:35px;
  7098. }
  7099. #u85105 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:218px;
  7103. top:0px;
  7104. width:180px;
  7105. height:35px;
  7106. display:flex;
  7107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. font-size:12px;
  7111. color:#FFFFFF;
  7112. }
  7113. #u85105 .text {
  7114. position:absolute;
  7115. align-self:center;
  7116. padding:2px 2px 2px 0px;
  7117. box-sizing:border-box;
  7118. width:100%;
  7119. }
  7120. #u85105_text {
  7121. border-width:0px;
  7122. word-wrap:break-word;
  7123. text-transform:none;
  7124. }
  7125. #u85106_img {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:136px;
  7131. height:35px;
  7132. }
  7133. #u85106 {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:398px;
  7137. top:0px;
  7138. width:136px;
  7139. height:35px;
  7140. display:flex;
  7141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:12px;
  7145. color:#FFFFFF;
  7146. }
  7147. #u85106 .text {
  7148. position:absolute;
  7149. align-self:center;
  7150. padding:2px 2px 2px 0px;
  7151. box-sizing:border-box;
  7152. width:100%;
  7153. }
  7154. #u85106_text {
  7155. border-width:0px;
  7156. word-wrap:break-word;
  7157. text-transform:none;
  7158. }
  7159. #u85107_img {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:0px;
  7164. width:141px;
  7165. height:35px;
  7166. }
  7167. #u85107 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:534px;
  7171. top:0px;
  7172. width:141px;
  7173. height:35px;
  7174. display:flex;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:12px;
  7179. color:#FFFFFF;
  7180. }
  7181. #u85107 .text {
  7182. position:absolute;
  7183. align-self:center;
  7184. padding:2px 2px 2px 0px;
  7185. box-sizing:border-box;
  7186. width:100%;
  7187. }
  7188. #u85107_text {
  7189. border-width:0px;
  7190. word-wrap:break-word;
  7191. text-transform:none;
  7192. }
  7193. #u85108_img {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:136px;
  7199. height:35px;
  7200. }
  7201. #u85108 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:675px;
  7205. top:0px;
  7206. width:136px;
  7207. height:35px;
  7208. display:flex;
  7209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:12px;
  7213. color:#FFFFFF;
  7214. }
  7215. #u85108 .text {
  7216. position:absolute;
  7217. align-self:center;
  7218. padding:2px 2px 2px 0px;
  7219. box-sizing:border-box;
  7220. width:100%;
  7221. }
  7222. #u85108_text {
  7223. border-width:0px;
  7224. word-wrap:break-word;
  7225. text-transform:none;
  7226. }
  7227. #u85109_img {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:138px;
  7233. height:35px;
  7234. }
  7235. #u85109 {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:811px;
  7239. top:0px;
  7240. width:138px;
  7241. height:35px;
  7242. display:flex;
  7243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7244. font-weight:400;
  7245. font-style:normal;
  7246. font-size:12px;
  7247. color:#FFFFFF;
  7248. }
  7249. #u85109 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 2px 2px 0px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u85109_text {
  7257. border-width:0px;
  7258. word-wrap:break-word;
  7259. text-transform:none;
  7260. }
  7261. #u85110_img {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:69px;
  7267. height:38px;
  7268. }
  7269. #u85110 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:35px;
  7274. width:69px;
  7275. height:38px;
  7276. display:flex;
  7277. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:12px;
  7281. }
  7282. #u85110 .text {
  7283. position:absolute;
  7284. align-self:center;
  7285. padding:2px 2px 2px 0px;
  7286. box-sizing:border-box;
  7287. width:100%;
  7288. }
  7289. #u85110_text {
  7290. border-width:0px;
  7291. word-wrap:break-word;
  7292. text-transform:none;
  7293. }
  7294. #u85111_img {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:149px;
  7300. height:38px;
  7301. }
  7302. #u85111 {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:69px;
  7306. top:35px;
  7307. width:149px;
  7308. height:38px;
  7309. display:flex;
  7310. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. }
  7315. #u85111 .text {
  7316. position:absolute;
  7317. align-self:center;
  7318. padding:2px 2px 2px 0px;
  7319. box-sizing:border-box;
  7320. width:100%;
  7321. }
  7322. #u85111_text {
  7323. border-width:0px;
  7324. word-wrap:break-word;
  7325. text-transform:none;
  7326. }
  7327. #u85112_img {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:180px;
  7333. height:38px;
  7334. }
  7335. #u85112 {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:218px;
  7339. top:35px;
  7340. width:180px;
  7341. height:38px;
  7342. display:flex;
  7343. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. font-size:12px;
  7347. }
  7348. #u85112 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:2px 2px 2px 0px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u85112_text {
  7356. border-width:0px;
  7357. word-wrap:break-word;
  7358. text-transform:none;
  7359. visibility:hidden;
  7360. }
  7361. #u85113_img {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:0px;
  7365. top:0px;
  7366. width:136px;
  7367. height:38px;
  7368. }
  7369. #u85113 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:398px;
  7373. top:35px;
  7374. width:136px;
  7375. height:38px;
  7376. display:flex;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:12px;
  7381. color:#333333;
  7382. }
  7383. #u85113 .text {
  7384. position:absolute;
  7385. align-self:center;
  7386. padding:2px 2px 2px 0px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u85113_text {
  7391. border-width:0px;
  7392. word-wrap:break-word;
  7393. text-transform:none;
  7394. visibility:hidden;
  7395. }
  7396. #u85114_img {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:141px;
  7402. height:38px;
  7403. }
  7404. #u85114 {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:534px;
  7408. top:35px;
  7409. width:141px;
  7410. height:38px;
  7411. display:flex;
  7412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7413. font-weight:400;
  7414. font-style:normal;
  7415. font-size:12px;
  7416. color:#333333;
  7417. }
  7418. #u85114 .text {
  7419. position:absolute;
  7420. align-self:center;
  7421. padding:2px 2px 2px 0px;
  7422. box-sizing:border-box;
  7423. width:100%;
  7424. }
  7425. #u85114_text {
  7426. border-width:0px;
  7427. word-wrap:break-word;
  7428. text-transform:none;
  7429. }
  7430. #u85115_img {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:136px;
  7436. height:38px;
  7437. }
  7438. #u85115 {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:675px;
  7442. top:35px;
  7443. width:136px;
  7444. height:38px;
  7445. display:flex;
  7446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. font-size:12px;
  7450. color:#333333;
  7451. }
  7452. #u85115 .text {
  7453. position:absolute;
  7454. align-self:center;
  7455. padding:2px 2px 2px 0px;
  7456. box-sizing:border-box;
  7457. width:100%;
  7458. }
  7459. #u85115_text {
  7460. border-width:0px;
  7461. word-wrap:break-word;
  7462. text-transform:none;
  7463. }
  7464. #u85116_img {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:138px;
  7470. height:38px;
  7471. }
  7472. #u85116 {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:811px;
  7476. top:35px;
  7477. width:138px;
  7478. height:38px;
  7479. display:flex;
  7480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7481. font-weight:400;
  7482. font-style:normal;
  7483. font-size:12px;
  7484. color:#333333;
  7485. }
  7486. #u85116 .text {
  7487. position:absolute;
  7488. align-self:center;
  7489. padding:2px 2px 2px 0px;
  7490. box-sizing:border-box;
  7491. width:100%;
  7492. }
  7493. #u85116_text {
  7494. border-width:0px;
  7495. word-wrap:break-word;
  7496. text-transform:none;
  7497. visibility:hidden;
  7498. }
  7499. #u85117_img {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:69px;
  7505. height:38px;
  7506. }
  7507. #u85117 {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:0px;
  7511. top:73px;
  7512. width:69px;
  7513. height:38px;
  7514. display:flex;
  7515. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7516. font-weight:400;
  7517. font-style:normal;
  7518. font-size:12px;
  7519. color:#606266;
  7520. }
  7521. #u85117 .text {
  7522. position:absolute;
  7523. align-self:center;
  7524. padding:2px 2px 2px 0px;
  7525. box-sizing:border-box;
  7526. width:100%;
  7527. }
  7528. #u85117_text {
  7529. border-width:0px;
  7530. word-wrap:break-word;
  7531. text-transform:none;
  7532. }
  7533. #u85118_img {
  7534. border-width:0px;
  7535. position:absolute;
  7536. left:0px;
  7537. top:0px;
  7538. width:149px;
  7539. height:38px;
  7540. }
  7541. #u85118 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:69px;
  7545. top:73px;
  7546. width:149px;
  7547. height:38px;
  7548. display:flex;
  7549. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:12px;
  7553. color:#606266;
  7554. }
  7555. #u85118 .text {
  7556. position:absolute;
  7557. align-self:center;
  7558. padding:2px 2px 2px 0px;
  7559. box-sizing:border-box;
  7560. width:100%;
  7561. }
  7562. #u85118_text {
  7563. border-width:0px;
  7564. word-wrap:break-word;
  7565. text-transform:none;
  7566. visibility:hidden;
  7567. }
  7568. #u85119_img {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:0px;
  7572. top:0px;
  7573. width:180px;
  7574. height:38px;
  7575. }
  7576. #u85119 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:218px;
  7580. top:73px;
  7581. width:180px;
  7582. height:38px;
  7583. display:flex;
  7584. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:12px;
  7588. color:#606266;
  7589. }
  7590. #u85119 .text {
  7591. position:absolute;
  7592. align-self:center;
  7593. padding:2px 2px 2px 0px;
  7594. box-sizing:border-box;
  7595. width:100%;
  7596. }
  7597. #u85119_text {
  7598. border-width:0px;
  7599. word-wrap:break-word;
  7600. text-transform:none;
  7601. visibility:hidden;
  7602. }
  7603. #u85120_img {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:136px;
  7609. height:38px;
  7610. }
  7611. #u85120 {
  7612. border-width:0px;
  7613. position:absolute;
  7614. left:398px;
  7615. top:73px;
  7616. width:136px;
  7617. height:38px;
  7618. display:flex;
  7619. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:12px;
  7623. color:#606266;
  7624. }
  7625. #u85120 .text {
  7626. position:absolute;
  7627. align-self:center;
  7628. padding:2px 2px 2px 0px;
  7629. box-sizing:border-box;
  7630. width:100%;
  7631. }
  7632. #u85120_text {
  7633. border-width:0px;
  7634. word-wrap:break-word;
  7635. text-transform:none;
  7636. visibility:hidden;
  7637. }
  7638. #u85121_img {
  7639. border-width:0px;
  7640. position:absolute;
  7641. left:0px;
  7642. top:0px;
  7643. width:141px;
  7644. height:38px;
  7645. }
  7646. #u85121 {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:534px;
  7650. top:73px;
  7651. width:141px;
  7652. height:38px;
  7653. display:flex;
  7654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. font-size:12px;
  7658. text-decoration:underline ;
  7659. color:#333333;
  7660. }
  7661. #u85121 .text {
  7662. position:absolute;
  7663. align-self:center;
  7664. padding:2px 2px 2px 0px;
  7665. box-sizing:border-box;
  7666. width:100%;
  7667. }
  7668. #u85121_text {
  7669. border-width:0px;
  7670. word-wrap:break-word;
  7671. text-transform:none;
  7672. visibility:hidden;
  7673. }
  7674. #u85122_img {
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:0px;
  7678. top:0px;
  7679. width:136px;
  7680. height:38px;
  7681. }
  7682. #u85122 {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:675px;
  7686. top:73px;
  7687. width:136px;
  7688. height:38px;
  7689. display:flex;
  7690. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7691. font-weight:400;
  7692. font-style:normal;
  7693. font-size:12px;
  7694. text-decoration:underline ;
  7695. color:#333333;
  7696. }
  7697. #u85122 .text {
  7698. position:absolute;
  7699. align-self:center;
  7700. padding:2px 2px 2px 0px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u85122_text {
  7705. border-width:0px;
  7706. word-wrap:break-word;
  7707. text-transform:none;
  7708. visibility:hidden;
  7709. }
  7710. #u85123_img {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:138px;
  7716. height:38px;
  7717. }
  7718. #u85123 {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:811px;
  7722. top:73px;
  7723. width:138px;
  7724. height:38px;
  7725. display:flex;
  7726. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7727. font-weight:400;
  7728. font-style:normal;
  7729. font-size:12px;
  7730. text-decoration:underline ;
  7731. color:#333333;
  7732. }
  7733. #u85123 .text {
  7734. position:absolute;
  7735. align-self:center;
  7736. padding:2px 2px 2px 0px;
  7737. box-sizing:border-box;
  7738. width:100%;
  7739. }
  7740. #u85123_text {
  7741. border-width:0px;
  7742. word-wrap:break-word;
  7743. text-transform:none;
  7744. visibility:hidden;
  7745. }
  7746. #u85124_img {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:69px;
  7752. height:35px;
  7753. }
  7754. #u85124 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:111px;
  7759. width:69px;
  7760. height:35px;
  7761. display:flex;
  7762. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:12px;
  7766. color:#606266;
  7767. }
  7768. #u85124 .text {
  7769. position:absolute;
  7770. align-self:center;
  7771. padding:2px 2px 2px 0px;
  7772. box-sizing:border-box;
  7773. width:100%;
  7774. }
  7775. #u85124_text {
  7776. border-width:0px;
  7777. word-wrap:break-word;
  7778. text-transform:none;
  7779. }
  7780. #u85125_img {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:149px;
  7786. height:35px;
  7787. }
  7788. #u85125 {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:69px;
  7792. top:111px;
  7793. width:149px;
  7794. height:35px;
  7795. display:flex;
  7796. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7797. font-weight:400;
  7798. font-style:normal;
  7799. font-size:12px;
  7800. color:#606266;
  7801. }
  7802. #u85125 .text {
  7803. position:absolute;
  7804. align-self:center;
  7805. padding:2px 2px 2px 0px;
  7806. box-sizing:border-box;
  7807. width:100%;
  7808. }
  7809. #u85125_text {
  7810. border-width:0px;
  7811. word-wrap:break-word;
  7812. text-transform:none;
  7813. visibility:hidden;
  7814. }
  7815. #u85126_img {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:0px;
  7819. top:0px;
  7820. width:180px;
  7821. height:35px;
  7822. }
  7823. #u85126 {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:218px;
  7827. top:111px;
  7828. width:180px;
  7829. height:35px;
  7830. display:flex;
  7831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7832. font-weight:400;
  7833. font-style:normal;
  7834. font-size:12px;
  7835. color:#606266;
  7836. }
  7837. #u85126 .text {
  7838. position:absolute;
  7839. align-self:center;
  7840. padding:2px 2px 2px 0px;
  7841. box-sizing:border-box;
  7842. width:100%;
  7843. }
  7844. #u85126_text {
  7845. border-width:0px;
  7846. word-wrap:break-word;
  7847. text-transform:none;
  7848. visibility:hidden;
  7849. }
  7850. #u85127_img {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:0px;
  7854. top:0px;
  7855. width:136px;
  7856. height:35px;
  7857. }
  7858. #u85127 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:398px;
  7862. top:111px;
  7863. width:136px;
  7864. height:35px;
  7865. display:flex;
  7866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7867. font-weight:400;
  7868. font-style:normal;
  7869. font-size:12px;
  7870. color:#606266;
  7871. }
  7872. #u85127 .text {
  7873. position:absolute;
  7874. align-self:center;
  7875. padding:2px 2px 2px 0px;
  7876. box-sizing:border-box;
  7877. width:100%;
  7878. }
  7879. #u85127_text {
  7880. border-width:0px;
  7881. word-wrap:break-word;
  7882. text-transform:none;
  7883. visibility:hidden;
  7884. }
  7885. #u85128_img {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:141px;
  7891. height:35px;
  7892. }
  7893. #u85128 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:534px;
  7897. top:111px;
  7898. width:141px;
  7899. height:35px;
  7900. display:flex;
  7901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:12px;
  7905. text-decoration:underline ;
  7906. color:#333333;
  7907. }
  7908. #u85128 .text {
  7909. position:absolute;
  7910. align-self:center;
  7911. padding:2px 2px 2px 0px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u85128_text {
  7916. border-width:0px;
  7917. word-wrap:break-word;
  7918. text-transform:none;
  7919. visibility:hidden;
  7920. }
  7921. #u85129_img {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:136px;
  7927. height:35px;
  7928. }
  7929. #u85129 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:675px;
  7933. top:111px;
  7934. width:136px;
  7935. height:35px;
  7936. display:flex;
  7937. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:12px;
  7941. text-decoration:underline ;
  7942. color:#333333;
  7943. }
  7944. #u85129 .text {
  7945. position:absolute;
  7946. align-self:center;
  7947. padding:2px 2px 2px 0px;
  7948. box-sizing:border-box;
  7949. width:100%;
  7950. }
  7951. #u85129_text {
  7952. border-width:0px;
  7953. word-wrap:break-word;
  7954. text-transform:none;
  7955. visibility:hidden;
  7956. }
  7957. #u85130_img {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:0px;
  7961. top:0px;
  7962. width:138px;
  7963. height:35px;
  7964. }
  7965. #u85130 {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:811px;
  7969. top:111px;
  7970. width:138px;
  7971. height:35px;
  7972. display:flex;
  7973. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7974. font-weight:400;
  7975. font-style:normal;
  7976. font-size:12px;
  7977. text-decoration:underline ;
  7978. color:#333333;
  7979. }
  7980. #u85130 .text {
  7981. position:absolute;
  7982. align-self:center;
  7983. padding:2px 2px 2px 0px;
  7984. box-sizing:border-box;
  7985. width:100%;
  7986. }
  7987. #u85130_text {
  7988. border-width:0px;
  7989. word-wrap:break-word;
  7990. text-transform:none;
  7991. visibility:hidden;
  7992. }
  7993. #u85131_img {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:0px;
  7997. top:0px;
  7998. width:69px;
  7999. height:35px;
  8000. }
  8001. #u85131 {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:0px;
  8005. top:146px;
  8006. width:69px;
  8007. height:35px;
  8008. display:flex;
  8009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8010. font-weight:400;
  8011. font-style:normal;
  8012. font-size:12px;
  8013. color:#606266;
  8014. }
  8015. #u85131 .text {
  8016. position:absolute;
  8017. align-self:center;
  8018. padding:2px 2px 2px 0px;
  8019. box-sizing:border-box;
  8020. width:100%;
  8021. }
  8022. #u85131_text {
  8023. border-width:0px;
  8024. word-wrap:break-word;
  8025. text-transform:none;
  8026. }
  8027. #u85132_img {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:149px;
  8033. height:35px;
  8034. }
  8035. #u85132 {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:69px;
  8039. top:146px;
  8040. width:149px;
  8041. height:35px;
  8042. display:flex;
  8043. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8044. font-weight:400;
  8045. font-style:normal;
  8046. font-size:12px;
  8047. color:#606266;
  8048. }
  8049. #u85132 .text {
  8050. position:absolute;
  8051. align-self:center;
  8052. padding:2px 2px 2px 0px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u85132_text {
  8057. border-width:0px;
  8058. word-wrap:break-word;
  8059. text-transform:none;
  8060. visibility:hidden;
  8061. }
  8062. #u85133_img {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:0px;
  8066. top:0px;
  8067. width:180px;
  8068. height:35px;
  8069. }
  8070. #u85133 {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:218px;
  8074. top:146px;
  8075. width:180px;
  8076. height:35px;
  8077. display:flex;
  8078. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8079. font-weight:400;
  8080. font-style:normal;
  8081. font-size:12px;
  8082. color:#606266;
  8083. }
  8084. #u85133 .text {
  8085. position:absolute;
  8086. align-self:center;
  8087. padding:2px 2px 2px 0px;
  8088. box-sizing:border-box;
  8089. width:100%;
  8090. }
  8091. #u85133_text {
  8092. border-width:0px;
  8093. word-wrap:break-word;
  8094. text-transform:none;
  8095. visibility:hidden;
  8096. }
  8097. #u85134_img {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:0px;
  8101. top:0px;
  8102. width:136px;
  8103. height:35px;
  8104. }
  8105. #u85134 {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:398px;
  8109. top:146px;
  8110. width:136px;
  8111. height:35px;
  8112. display:flex;
  8113. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8114. font-weight:400;
  8115. font-style:normal;
  8116. font-size:12px;
  8117. color:#606266;
  8118. }
  8119. #u85134 .text {
  8120. position:absolute;
  8121. align-self:center;
  8122. padding:2px 2px 2px 0px;
  8123. box-sizing:border-box;
  8124. width:100%;
  8125. }
  8126. #u85134_text {
  8127. border-width:0px;
  8128. word-wrap:break-word;
  8129. text-transform:none;
  8130. visibility:hidden;
  8131. }
  8132. #u85135_img {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:141px;
  8138. height:35px;
  8139. }
  8140. #u85135 {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:534px;
  8144. top:146px;
  8145. width:141px;
  8146. height:35px;
  8147. display:flex;
  8148. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8149. font-weight:400;
  8150. font-style:normal;
  8151. font-size:12px;
  8152. text-decoration:underline ;
  8153. color:#333333;
  8154. }
  8155. #u85135 .text {
  8156. position:absolute;
  8157. align-self:center;
  8158. padding:2px 2px 2px 0px;
  8159. box-sizing:border-box;
  8160. width:100%;
  8161. }
  8162. #u85135_text {
  8163. border-width:0px;
  8164. word-wrap:break-word;
  8165. text-transform:none;
  8166. visibility:hidden;
  8167. }
  8168. #u85136_img {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:0px;
  8172. top:0px;
  8173. width:136px;
  8174. height:35px;
  8175. }
  8176. #u85136 {
  8177. border-width:0px;
  8178. position:absolute;
  8179. left:675px;
  8180. top:146px;
  8181. width:136px;
  8182. height:35px;
  8183. display:flex;
  8184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8185. font-weight:400;
  8186. font-style:normal;
  8187. font-size:12px;
  8188. text-decoration:underline ;
  8189. color:#333333;
  8190. }
  8191. #u85136 .text {
  8192. position:absolute;
  8193. align-self:center;
  8194. padding:2px 2px 2px 0px;
  8195. box-sizing:border-box;
  8196. width:100%;
  8197. }
  8198. #u85136_text {
  8199. border-width:0px;
  8200. word-wrap:break-word;
  8201. text-transform:none;
  8202. visibility:hidden;
  8203. }
  8204. #u85137_img {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:138px;
  8210. height:35px;
  8211. }
  8212. #u85137 {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:811px;
  8216. top:146px;
  8217. width:138px;
  8218. height:35px;
  8219. display:flex;
  8220. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8221. font-weight:400;
  8222. font-style:normal;
  8223. font-size:12px;
  8224. text-decoration:underline ;
  8225. color:#333333;
  8226. }
  8227. #u85137 .text {
  8228. position:absolute;
  8229. align-self:center;
  8230. padding:2px 2px 2px 0px;
  8231. box-sizing:border-box;
  8232. width:100%;
  8233. }
  8234. #u85137_text {
  8235. border-width:0px;
  8236. word-wrap:break-word;
  8237. text-transform:none;
  8238. visibility:hidden;
  8239. }
  8240. #u85138_img {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:69px;
  8246. height:35px;
  8247. }
  8248. #u85138 {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:181px;
  8253. width:69px;
  8254. height:35px;
  8255. display:flex;
  8256. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. font-size:12px;
  8260. color:#606266;
  8261. }
  8262. #u85138 .text {
  8263. position:absolute;
  8264. align-self:center;
  8265. padding:2px 2px 2px 0px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u85138_text {
  8270. border-width:0px;
  8271. word-wrap:break-word;
  8272. text-transform:none;
  8273. visibility:hidden;
  8274. }
  8275. #u85139_img {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:149px;
  8281. height:35px;
  8282. }
  8283. #u85139 {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:69px;
  8287. top:181px;
  8288. width:149px;
  8289. height:35px;
  8290. display:flex;
  8291. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:12px;
  8295. color:#606266;
  8296. }
  8297. #u85139 .text {
  8298. position:absolute;
  8299. align-self:center;
  8300. padding:2px 2px 2px 0px;
  8301. box-sizing:border-box;
  8302. width:100%;
  8303. }
  8304. #u85139_text {
  8305. border-width:0px;
  8306. word-wrap:break-word;
  8307. text-transform:none;
  8308. visibility:hidden;
  8309. }
  8310. #u85140_img {
  8311. border-width:0px;
  8312. position:absolute;
  8313. left:0px;
  8314. top:0px;
  8315. width:180px;
  8316. height:35px;
  8317. }
  8318. #u85140 {
  8319. border-width:0px;
  8320. position:absolute;
  8321. left:218px;
  8322. top:181px;
  8323. width:180px;
  8324. height:35px;
  8325. display:flex;
  8326. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8327. font-weight:400;
  8328. font-style:normal;
  8329. font-size:12px;
  8330. color:#606266;
  8331. }
  8332. #u85140 .text {
  8333. position:absolute;
  8334. align-self:center;
  8335. padding:2px 2px 2px 0px;
  8336. box-sizing:border-box;
  8337. width:100%;
  8338. }
  8339. #u85140_text {
  8340. border-width:0px;
  8341. word-wrap:break-word;
  8342. text-transform:none;
  8343. visibility:hidden;
  8344. }
  8345. #u85141_img {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:0px;
  8349. top:0px;
  8350. width:136px;
  8351. height:35px;
  8352. }
  8353. #u85141 {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:398px;
  8357. top:181px;
  8358. width:136px;
  8359. height:35px;
  8360. display:flex;
  8361. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8362. font-weight:400;
  8363. font-style:normal;
  8364. font-size:12px;
  8365. color:#606266;
  8366. }
  8367. #u85141 .text {
  8368. position:absolute;
  8369. align-self:center;
  8370. padding:2px 2px 2px 0px;
  8371. box-sizing:border-box;
  8372. width:100%;
  8373. }
  8374. #u85141_text {
  8375. border-width:0px;
  8376. word-wrap:break-word;
  8377. text-transform:none;
  8378. visibility:hidden;
  8379. }
  8380. #u85142_img {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:0px;
  8384. top:0px;
  8385. width:141px;
  8386. height:35px;
  8387. }
  8388. #u85142 {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:534px;
  8392. top:181px;
  8393. width:141px;
  8394. height:35px;
  8395. display:flex;
  8396. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8397. font-weight:400;
  8398. font-style:normal;
  8399. font-size:12px;
  8400. text-decoration:underline ;
  8401. color:#333333;
  8402. }
  8403. #u85142 .text {
  8404. position:absolute;
  8405. align-self:center;
  8406. padding:2px 2px 2px 0px;
  8407. box-sizing:border-box;
  8408. width:100%;
  8409. }
  8410. #u85142_text {
  8411. border-width:0px;
  8412. word-wrap:break-word;
  8413. text-transform:none;
  8414. visibility:hidden;
  8415. }
  8416. #u85143_img {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:136px;
  8422. height:35px;
  8423. }
  8424. #u85143 {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:675px;
  8428. top:181px;
  8429. width:136px;
  8430. height:35px;
  8431. display:flex;
  8432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8433. font-weight:400;
  8434. font-style:normal;
  8435. font-size:12px;
  8436. text-decoration:underline ;
  8437. color:#333333;
  8438. }
  8439. #u85143 .text {
  8440. position:absolute;
  8441. align-self:center;
  8442. padding:2px 2px 2px 0px;
  8443. box-sizing:border-box;
  8444. width:100%;
  8445. }
  8446. #u85143_text {
  8447. border-width:0px;
  8448. word-wrap:break-word;
  8449. text-transform:none;
  8450. visibility:hidden;
  8451. }
  8452. #u85144_img {
  8453. border-width:0px;
  8454. position:absolute;
  8455. left:0px;
  8456. top:0px;
  8457. width:138px;
  8458. height:35px;
  8459. }
  8460. #u85144 {
  8461. border-width:0px;
  8462. position:absolute;
  8463. left:811px;
  8464. top:181px;
  8465. width:138px;
  8466. height:35px;
  8467. display:flex;
  8468. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8469. font-weight:400;
  8470. font-style:normal;
  8471. font-size:12px;
  8472. text-decoration:underline ;
  8473. color:#333333;
  8474. }
  8475. #u85144 .text {
  8476. position:absolute;
  8477. align-self:center;
  8478. padding:2px 2px 2px 0px;
  8479. box-sizing:border-box;
  8480. width:100%;
  8481. }
  8482. #u85144_text {
  8483. border-width:0px;
  8484. word-wrap:break-word;
  8485. text-transform:none;
  8486. visibility:hidden;
  8487. }
  8488. #u85145_img {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:69px;
  8494. height:35px;
  8495. }
  8496. #u85145 {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:0px;
  8500. top:216px;
  8501. width:69px;
  8502. height:35px;
  8503. display:flex;
  8504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8505. font-weight:400;
  8506. font-style:normal;
  8507. font-size:12px;
  8508. color:#606266;
  8509. }
  8510. #u85145 .text {
  8511. position:absolute;
  8512. align-self:center;
  8513. padding:2px 2px 2px 0px;
  8514. box-sizing:border-box;
  8515. width:100%;
  8516. }
  8517. #u85145_text {
  8518. border-width:0px;
  8519. word-wrap:break-word;
  8520. text-transform:none;
  8521. visibility:hidden;
  8522. }
  8523. #u85146_img {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:149px;
  8529. height:35px;
  8530. }
  8531. #u85146 {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:69px;
  8535. top:216px;
  8536. width:149px;
  8537. height:35px;
  8538. display:flex;
  8539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8540. font-weight:400;
  8541. font-style:normal;
  8542. font-size:12px;
  8543. color:#606266;
  8544. }
  8545. #u85146 .text {
  8546. position:absolute;
  8547. align-self:center;
  8548. padding:2px 2px 2px 0px;
  8549. box-sizing:border-box;
  8550. width:100%;
  8551. }
  8552. #u85146_text {
  8553. border-width:0px;
  8554. word-wrap:break-word;
  8555. text-transform:none;
  8556. visibility:hidden;
  8557. }
  8558. #u85147_img {
  8559. border-width:0px;
  8560. position:absolute;
  8561. left:0px;
  8562. top:0px;
  8563. width:180px;
  8564. height:35px;
  8565. }
  8566. #u85147 {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:218px;
  8570. top:216px;
  8571. width:180px;
  8572. height:35px;
  8573. display:flex;
  8574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8575. font-weight:400;
  8576. font-style:normal;
  8577. font-size:12px;
  8578. color:#606266;
  8579. }
  8580. #u85147 .text {
  8581. position:absolute;
  8582. align-self:center;
  8583. padding:2px 2px 2px 0px;
  8584. box-sizing:border-box;
  8585. width:100%;
  8586. }
  8587. #u85147_text {
  8588. border-width:0px;
  8589. word-wrap:break-word;
  8590. text-transform:none;
  8591. visibility:hidden;
  8592. }
  8593. #u85148_img {
  8594. border-width:0px;
  8595. position:absolute;
  8596. left:0px;
  8597. top:0px;
  8598. width:136px;
  8599. height:35px;
  8600. }
  8601. #u85148 {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:398px;
  8605. top:216px;
  8606. width:136px;
  8607. height:35px;
  8608. display:flex;
  8609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:12px;
  8613. color:#606266;
  8614. }
  8615. #u85148 .text {
  8616. position:absolute;
  8617. align-self:center;
  8618. padding:2px 2px 2px 0px;
  8619. box-sizing:border-box;
  8620. width:100%;
  8621. }
  8622. #u85148_text {
  8623. border-width:0px;
  8624. word-wrap:break-word;
  8625. text-transform:none;
  8626. visibility:hidden;
  8627. }
  8628. #u85149_img {
  8629. border-width:0px;
  8630. position:absolute;
  8631. left:0px;
  8632. top:0px;
  8633. width:141px;
  8634. height:35px;
  8635. }
  8636. #u85149 {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:534px;
  8640. top:216px;
  8641. width:141px;
  8642. height:35px;
  8643. display:flex;
  8644. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8645. font-weight:400;
  8646. font-style:normal;
  8647. font-size:12px;
  8648. text-decoration:underline ;
  8649. color:#333333;
  8650. }
  8651. #u85149 .text {
  8652. position:absolute;
  8653. align-self:center;
  8654. padding:2px 2px 2px 0px;
  8655. box-sizing:border-box;
  8656. width:100%;
  8657. }
  8658. #u85149_text {
  8659. border-width:0px;
  8660. word-wrap:break-word;
  8661. text-transform:none;
  8662. visibility:hidden;
  8663. }
  8664. #u85150_img {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:0px;
  8668. top:0px;
  8669. width:136px;
  8670. height:35px;
  8671. }
  8672. #u85150 {
  8673. border-width:0px;
  8674. position:absolute;
  8675. left:675px;
  8676. top:216px;
  8677. width:136px;
  8678. height:35px;
  8679. display:flex;
  8680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8681. font-weight:400;
  8682. font-style:normal;
  8683. font-size:12px;
  8684. text-decoration:underline ;
  8685. color:#333333;
  8686. }
  8687. #u85150 .text {
  8688. position:absolute;
  8689. align-self:center;
  8690. padding:2px 2px 2px 0px;
  8691. box-sizing:border-box;
  8692. width:100%;
  8693. }
  8694. #u85150_text {
  8695. border-width:0px;
  8696. word-wrap:break-word;
  8697. text-transform:none;
  8698. visibility:hidden;
  8699. }
  8700. #u85151_img {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:0px;
  8704. top:0px;
  8705. width:138px;
  8706. height:35px;
  8707. }
  8708. #u85151 {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:811px;
  8712. top:216px;
  8713. width:138px;
  8714. height:35px;
  8715. display:flex;
  8716. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8717. font-weight:400;
  8718. font-style:normal;
  8719. font-size:12px;
  8720. text-decoration:underline ;
  8721. color:#333333;
  8722. }
  8723. #u85151 .text {
  8724. position:absolute;
  8725. align-self:center;
  8726. padding:2px 2px 2px 0px;
  8727. box-sizing:border-box;
  8728. width:100%;
  8729. }
  8730. #u85151_text {
  8731. border-width:0px;
  8732. word-wrap:break-word;
  8733. text-transform:none;
  8734. visibility:hidden;
  8735. }
  8736. #u85152_img {
  8737. border-width:0px;
  8738. position:absolute;
  8739. left:0px;
  8740. top:0px;
  8741. width:69px;
  8742. height:31px;
  8743. }
  8744. #u85152 {
  8745. border-width:0px;
  8746. position:absolute;
  8747. left:0px;
  8748. top:251px;
  8749. width:69px;
  8750. height:31px;
  8751. display:flex;
  8752. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8753. font-weight:400;
  8754. font-style:normal;
  8755. font-size:12px;
  8756. color:#606266;
  8757. }
  8758. #u85152 .text {
  8759. position:absolute;
  8760. align-self:center;
  8761. padding:2px 2px 2px 0px;
  8762. box-sizing:border-box;
  8763. width:100%;
  8764. }
  8765. #u85152_text {
  8766. border-width:0px;
  8767. word-wrap:break-word;
  8768. text-transform:none;
  8769. visibility:hidden;
  8770. }
  8771. #u85153_img {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:0px;
  8775. top:0px;
  8776. width:149px;
  8777. height:31px;
  8778. }
  8779. #u85153 {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:69px;
  8783. top:251px;
  8784. width:149px;
  8785. height:31px;
  8786. display:flex;
  8787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8788. font-weight:400;
  8789. font-style:normal;
  8790. font-size:12px;
  8791. color:#606266;
  8792. }
  8793. #u85153 .text {
  8794. position:absolute;
  8795. align-self:center;
  8796. padding:2px 2px 2px 0px;
  8797. box-sizing:border-box;
  8798. width:100%;
  8799. }
  8800. #u85153_text {
  8801. border-width:0px;
  8802. word-wrap:break-word;
  8803. text-transform:none;
  8804. visibility:hidden;
  8805. }
  8806. #u85154_img {
  8807. border-width:0px;
  8808. position:absolute;
  8809. left:0px;
  8810. top:0px;
  8811. width:180px;
  8812. height:31px;
  8813. }
  8814. #u85154 {
  8815. border-width:0px;
  8816. position:absolute;
  8817. left:218px;
  8818. top:251px;
  8819. width:180px;
  8820. height:31px;
  8821. display:flex;
  8822. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8823. font-weight:400;
  8824. font-style:normal;
  8825. font-size:12px;
  8826. color:#606266;
  8827. }
  8828. #u85154 .text {
  8829. position:absolute;
  8830. align-self:center;
  8831. padding:2px 2px 2px 0px;
  8832. box-sizing:border-box;
  8833. width:100%;
  8834. }
  8835. #u85154_text {
  8836. border-width:0px;
  8837. word-wrap:break-word;
  8838. text-transform:none;
  8839. visibility:hidden;
  8840. }
  8841. #u85155_img {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:0px;
  8845. top:0px;
  8846. width:136px;
  8847. height:31px;
  8848. }
  8849. #u85155 {
  8850. border-width:0px;
  8851. position:absolute;
  8852. left:398px;
  8853. top:251px;
  8854. width:136px;
  8855. height:31px;
  8856. display:flex;
  8857. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8858. font-weight:400;
  8859. font-style:normal;
  8860. font-size:12px;
  8861. color:#606266;
  8862. }
  8863. #u85155 .text {
  8864. position:absolute;
  8865. align-self:center;
  8866. padding:2px 2px 2px 0px;
  8867. box-sizing:border-box;
  8868. width:100%;
  8869. }
  8870. #u85155_text {
  8871. border-width:0px;
  8872. word-wrap:break-word;
  8873. text-transform:none;
  8874. visibility:hidden;
  8875. }
  8876. #u85156_img {
  8877. border-width:0px;
  8878. position:absolute;
  8879. left:0px;
  8880. top:0px;
  8881. width:141px;
  8882. height:31px;
  8883. }
  8884. #u85156 {
  8885. border-width:0px;
  8886. position:absolute;
  8887. left:534px;
  8888. top:251px;
  8889. width:141px;
  8890. height:31px;
  8891. display:flex;
  8892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8893. font-weight:400;
  8894. font-style:normal;
  8895. font-size:12px;
  8896. text-decoration:underline ;
  8897. color:#333333;
  8898. }
  8899. #u85156 .text {
  8900. position:absolute;
  8901. align-self:center;
  8902. padding:2px 2px 2px 0px;
  8903. box-sizing:border-box;
  8904. width:100%;
  8905. }
  8906. #u85156_text {
  8907. border-width:0px;
  8908. word-wrap:break-word;
  8909. text-transform:none;
  8910. visibility:hidden;
  8911. }
  8912. #u85157_img {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:0px;
  8916. top:0px;
  8917. width:136px;
  8918. height:31px;
  8919. }
  8920. #u85157 {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:675px;
  8924. top:251px;
  8925. width:136px;
  8926. height:31px;
  8927. display:flex;
  8928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8929. font-weight:400;
  8930. font-style:normal;
  8931. font-size:12px;
  8932. text-decoration:underline ;
  8933. color:#333333;
  8934. }
  8935. #u85157 .text {
  8936. position:absolute;
  8937. align-self:center;
  8938. padding:2px 2px 2px 0px;
  8939. box-sizing:border-box;
  8940. width:100%;
  8941. }
  8942. #u85157_text {
  8943. border-width:0px;
  8944. word-wrap:break-word;
  8945. text-transform:none;
  8946. visibility:hidden;
  8947. }
  8948. #u85158_img {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:138px;
  8954. height:31px;
  8955. }
  8956. #u85158 {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:811px;
  8960. top:251px;
  8961. width:138px;
  8962. height:31px;
  8963. display:flex;
  8964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. font-size:12px;
  8968. text-decoration:underline ;
  8969. color:#333333;
  8970. }
  8971. #u85158 .text {
  8972. position:absolute;
  8973. align-self:center;
  8974. padding:2px 2px 2px 0px;
  8975. box-sizing:border-box;
  8976. width:100%;
  8977. }
  8978. #u85158_text {
  8979. border-width:0px;
  8980. word-wrap:break-word;
  8981. text-transform:none;
  8982. visibility:hidden;
  8983. }
  8984. #u85159_div {
  8985. border-width:0px;
  8986. position:absolute;
  8987. left:0px;
  8988. top:0px;
  8989. width:55px;
  8990. height:30px;
  8991. background:inherit;
  8992. background-color:rgba(255, 255, 255, 1);
  8993. box-sizing:border-box;
  8994. border-width:1px;
  8995. border-style:solid;
  8996. border-color:rgba(170, 170, 170, 1);
  8997. border-radius:4px;
  8998. -moz-box-shadow:none;
  8999. -webkit-box-shadow:none;
  9000. box-shadow:none;
  9001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9002. font-weight:400;
  9003. font-style:normal;
  9004. font-size:12px;
  9005. color:#555555;
  9006. }
  9007. #u85159 {
  9008. border-width:0px;
  9009. position:absolute;
  9010. left:2065px;
  9011. top:583px;
  9012. width:55px;
  9013. height:30px;
  9014. display:flex;
  9015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9016. font-weight:400;
  9017. font-style:normal;
  9018. font-size:12px;
  9019. color:#555555;
  9020. }
  9021. #u85159 .text {
  9022. position:absolute;
  9023. align-self:center;
  9024. padding:5px 15px 5px 15px;
  9025. box-sizing:border-box;
  9026. width:100%;
  9027. }
  9028. #u85159_text {
  9029. border-width:0px;
  9030. white-space:nowrap;
  9031. text-transform:none;
  9032. }
  9033. #u85160_div {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:0px;
  9037. top:0px;
  9038. width:55px;
  9039. height:30px;
  9040. background:inherit;
  9041. background-color:rgba(255, 255, 255, 1);
  9042. box-sizing:border-box;
  9043. border-width:1px;
  9044. border-style:solid;
  9045. border-color:rgba(170, 170, 170, 1);
  9046. border-radius:4px;
  9047. -moz-box-shadow:none;
  9048. -webkit-box-shadow:none;
  9049. box-shadow:none;
  9050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9051. font-weight:400;
  9052. font-style:normal;
  9053. font-size:12px;
  9054. color:#555555;
  9055. }
  9056. #u85160 {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:1691px;
  9060. top:623px;
  9061. width:55px;
  9062. height:30px;
  9063. display:flex;
  9064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9065. font-weight:400;
  9066. font-style:normal;
  9067. font-size:12px;
  9068. color:#555555;
  9069. }
  9070. #u85160 .text {
  9071. position:absolute;
  9072. align-self:center;
  9073. padding:5px 15px 5px 15px;
  9074. box-sizing:border-box;
  9075. width:100%;
  9076. }
  9077. #u85160_text {
  9078. border-width:0px;
  9079. white-space:nowrap;
  9080. text-transform:none;
  9081. }
  9082. #u85161_div {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:83px;
  9088. height:35px;
  9089. background:inherit;
  9090. background-color:rgba(255, 255, 255, 0);
  9091. border:none;
  9092. border-top:0px;
  9093. border-right:0px;
  9094. border-bottom:0px;
  9095. border-radius:0px;
  9096. border-top-left-radius:0px;
  9097. border-bottom-left-radius:0px;
  9098. -moz-box-shadow:none;
  9099. -webkit-box-shadow:none;
  9100. box-shadow:none;
  9101. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9102. font-weight:500;
  9103. font-style:normal;
  9104. font-size:18px;
  9105. color:#298FFF;
  9106. }
  9107. #u85161 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:1278px;
  9111. top:578px;
  9112. width:83px;
  9113. height:35px;
  9114. display:flex;
  9115. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9116. font-weight:500;
  9117. font-style:normal;
  9118. font-size:18px;
  9119. color:#298FFF;
  9120. }
  9121. #u85161 .text {
  9122. position:absolute;
  9123. align-self:center;
  9124. padding:5px 10px 5px 0px;
  9125. box-sizing:border-box;
  9126. width:100%;
  9127. }
  9128. #u85161_text {
  9129. border-width:0px;
  9130. white-space:nowrap;
  9131. text-transform:none;
  9132. }
  9133. #u85162_div {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:59px;
  9139. height:30px;
  9140. background:inherit;
  9141. background-color:rgba(41, 143, 255, 1);
  9142. border:none;
  9143. border-radius:4px;
  9144. -moz-box-shadow:none;
  9145. -webkit-box-shadow:none;
  9146. box-shadow:none;
  9147. font-family:'Microsoft YaHei', sans-serif;
  9148. font-weight:400;
  9149. font-style:normal;
  9150. font-size:14px;
  9151. color:#FFFFFF;
  9152. }
  9153. #u85162 {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:1622px;
  9157. top:623px;
  9158. width:59px;
  9159. height:30px;
  9160. display:flex;
  9161. font-family:'Microsoft YaHei', sans-serif;
  9162. font-weight:400;
  9163. font-style:normal;
  9164. font-size:14px;
  9165. color:#FFFFFF;
  9166. }
  9167. #u85162 .text {
  9168. position:absolute;
  9169. align-self:center;
  9170. padding:5px 15px 5px 15px;
  9171. box-sizing:border-box;
  9172. width:100%;
  9173. }
  9174. #u85162_text {
  9175. border-width:0px;
  9176. white-space:nowrap;
  9177. text-transform:none;
  9178. }
  9179. #u85163 {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:0px;
  9183. top:0px;
  9184. width:0px;
  9185. height:0px;
  9186. }
  9187. #u85164_div {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:140px;
  9193. height:30px;
  9194. background:inherit;
  9195. background-color:rgba(255, 255, 255, 1);
  9196. box-sizing:border-box;
  9197. border-width:1px;
  9198. border-style:solid;
  9199. border-color:rgba(215, 215, 215, 1);
  9200. border-radius:4px;
  9201. -moz-box-shadow:none;
  9202. -webkit-box-shadow:none;
  9203. box-shadow:none;
  9204. font-size:11px;
  9205. }
  9206. #u85164 {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:1172px;
  9210. top:623px;
  9211. width:140px;
  9212. height:30px;
  9213. display:flex;
  9214. font-size:11px;
  9215. }
  9216. #u85164 .text {
  9217. position:absolute;
  9218. align-self:center;
  9219. padding:2px 2px 2px 2px;
  9220. box-sizing:border-box;
  9221. width:100%;
  9222. }
  9223. #u85164_text {
  9224. border-width:0px;
  9225. word-wrap:break-word;
  9226. text-transform:none;
  9227. visibility:hidden;
  9228. }
  9229. #u85165_input {
  9230. position:absolute;
  9231. left:0px;
  9232. top:0px;
  9233. width:120px;
  9234. height:23px;
  9235. padding:2px 2px 2px 2px;
  9236. font-family:'ArialMT', 'Arial', sans-serif;
  9237. font-weight:400;
  9238. font-style:normal;
  9239. font-size:11px;
  9240. letter-spacing:normal;
  9241. color:#AAAAAA;
  9242. vertical-align:none;
  9243. text-align:left;
  9244. text-transform:none;
  9245. background-color:transparent;
  9246. border-color:transparent;
  9247. }
  9248. #u85165_input.disabled {
  9249. position:absolute;
  9250. left:0px;
  9251. top:0px;
  9252. width:120px;
  9253. height:23px;
  9254. padding:2px 2px 2px 2px;
  9255. font-family:'ArialMT', 'Arial', sans-serif;
  9256. font-weight:400;
  9257. font-style:normal;
  9258. font-size:11px;
  9259. letter-spacing:normal;
  9260. color:#AAAAAA;
  9261. vertical-align:none;
  9262. text-align:left;
  9263. text-transform:none;
  9264. background-color:transparent;
  9265. border-color:transparent;
  9266. }
  9267. #u85165_div {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:0px;
  9271. top:0px;
  9272. width:120px;
  9273. height:23px;
  9274. background:inherit;
  9275. background-color:rgba(255, 255, 255, 1);
  9276. border:none;
  9277. border-radius:0px;
  9278. -moz-box-shadow:none;
  9279. -webkit-box-shadow:none;
  9280. box-shadow:none;
  9281. font-size:11px;
  9282. color:#AAAAAA;
  9283. }
  9284. #u85165 {
  9285. border-width:0px;
  9286. position:absolute;
  9287. left:1179px;
  9288. top:625px;
  9289. width:120px;
  9290. height:23px;
  9291. display:flex;
  9292. font-size:11px;
  9293. color:#AAAAAA;
  9294. }
  9295. #u85165 .text {
  9296. position:absolute;
  9297. align-self:flex-start;
  9298. padding:2px 2px 2px 2px;
  9299. box-sizing:border-box;
  9300. width:100%;
  9301. }
  9302. #u85165_div.disabled {
  9303. border-width:0px;
  9304. position:absolute;
  9305. left:0px;
  9306. top:0px;
  9307. width:120px;
  9308. height:23px;
  9309. background:inherit;
  9310. background-color:rgba(240, 240, 240, 1);
  9311. border:none;
  9312. border-radius:0px;
  9313. -moz-box-shadow:none;
  9314. -webkit-box-shadow:none;
  9315. box-shadow:none;
  9316. font-size:11px;
  9317. color:#AAAAAA;
  9318. }
  9319. #u85165.disabled {
  9320. }
  9321. .u85165_input_option {
  9322. font-size:11px;
  9323. }
  9324. #u85166 {
  9325. border-width:0px;
  9326. position:absolute;
  9327. left:0px;
  9328. top:0px;
  9329. width:0px;
  9330. height:0px;
  9331. }
  9332. #u85167_div {
  9333. border-width:0px;
  9334. position:absolute;
  9335. left:0px;
  9336. top:0px;
  9337. width:140px;
  9338. height:30px;
  9339. background:inherit;
  9340. background-color:rgba(255, 255, 255, 1);
  9341. box-sizing:border-box;
  9342. border-width:1px;
  9343. border-style:solid;
  9344. border-color:rgba(215, 215, 215, 1);
  9345. border-radius:4px;
  9346. -moz-box-shadow:none;
  9347. -webkit-box-shadow:none;
  9348. box-shadow:none;
  9349. font-size:11px;
  9350. }
  9351. #u85167 {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:1322px;
  9355. top:623px;
  9356. width:140px;
  9357. height:30px;
  9358. display:flex;
  9359. font-size:11px;
  9360. }
  9361. #u85167 .text {
  9362. position:absolute;
  9363. align-self:center;
  9364. padding:2px 2px 2px 2px;
  9365. box-sizing:border-box;
  9366. width:100%;
  9367. }
  9368. #u85167_text {
  9369. border-width:0px;
  9370. word-wrap:break-word;
  9371. text-transform:none;
  9372. visibility:hidden;
  9373. }
  9374. #u85168_input {
  9375. position:absolute;
  9376. left:0px;
  9377. top:0px;
  9378. width:120px;
  9379. height:23px;
  9380. padding:2px 2px 2px 2px;
  9381. font-family:'ArialMT', 'Arial', sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:11px;
  9385. letter-spacing:normal;
  9386. color:#AAAAAA;
  9387. vertical-align:none;
  9388. text-align:left;
  9389. text-transform:none;
  9390. background-color:transparent;
  9391. border-color:transparent;
  9392. }
  9393. #u85168_input.disabled {
  9394. position:absolute;
  9395. left:0px;
  9396. top:0px;
  9397. width:120px;
  9398. height:23px;
  9399. padding:2px 2px 2px 2px;
  9400. font-family:'ArialMT', 'Arial', sans-serif;
  9401. font-weight:400;
  9402. font-style:normal;
  9403. font-size:11px;
  9404. letter-spacing:normal;
  9405. color:#AAAAAA;
  9406. vertical-align:none;
  9407. text-align:left;
  9408. text-transform:none;
  9409. background-color:transparent;
  9410. border-color:transparent;
  9411. }
  9412. #u85168_div {
  9413. border-width:0px;
  9414. position:absolute;
  9415. left:0px;
  9416. top:0px;
  9417. width:120px;
  9418. height:23px;
  9419. background:inherit;
  9420. background-color:rgba(255, 255, 255, 1);
  9421. border:none;
  9422. border-radius:0px;
  9423. -moz-box-shadow:none;
  9424. -webkit-box-shadow:none;
  9425. box-shadow:none;
  9426. font-size:11px;
  9427. color:#AAAAAA;
  9428. }
  9429. #u85168 {
  9430. border-width:0px;
  9431. position:absolute;
  9432. left:1329px;
  9433. top:625px;
  9434. width:120px;
  9435. height:23px;
  9436. display:flex;
  9437. font-size:11px;
  9438. color:#AAAAAA;
  9439. }
  9440. #u85168 .text {
  9441. position:absolute;
  9442. align-self:flex-start;
  9443. padding:2px 2px 2px 2px;
  9444. box-sizing:border-box;
  9445. width:100%;
  9446. }
  9447. #u85168_div.disabled {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:0px;
  9451. top:0px;
  9452. width:120px;
  9453. height:23px;
  9454. background:inherit;
  9455. background-color:rgba(240, 240, 240, 1);
  9456. border:none;
  9457. border-radius:0px;
  9458. -moz-box-shadow:none;
  9459. -webkit-box-shadow:none;
  9460. box-shadow:none;
  9461. font-size:11px;
  9462. color:#AAAAAA;
  9463. }
  9464. #u85168.disabled {
  9465. }
  9466. .u85168_input_option {
  9467. font-size:11px;
  9468. }
  9469. #u85169 {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:0px;
  9473. top:0px;
  9474. width:0px;
  9475. height:0px;
  9476. }
  9477. #u85170_div {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:0px;
  9481. top:0px;
  9482. width:140px;
  9483. height:30px;
  9484. background:inherit;
  9485. background-color:rgba(255, 255, 255, 1);
  9486. box-sizing:border-box;
  9487. border-width:1px;
  9488. border-style:solid;
  9489. border-color:rgba(215, 215, 215, 1);
  9490. border-radius:4px;
  9491. -moz-box-shadow:none;
  9492. -webkit-box-shadow:none;
  9493. box-shadow:none;
  9494. font-size:11px;
  9495. }
  9496. #u85170 {
  9497. border-width:0px;
  9498. position:absolute;
  9499. left:1472px;
  9500. top:623px;
  9501. width:140px;
  9502. height:30px;
  9503. display:flex;
  9504. font-size:11px;
  9505. }
  9506. #u85170 .text {
  9507. position:absolute;
  9508. align-self:center;
  9509. padding:2px 2px 2px 2px;
  9510. box-sizing:border-box;
  9511. width:100%;
  9512. }
  9513. #u85170_text {
  9514. border-width:0px;
  9515. word-wrap:break-word;
  9516. text-transform:none;
  9517. visibility:hidden;
  9518. }
  9519. #u85171_input {
  9520. position:absolute;
  9521. left:0px;
  9522. top:0px;
  9523. width:120px;
  9524. height:23px;
  9525. padding:2px 2px 2px 2px;
  9526. font-family:'ArialMT', 'Arial', sans-serif;
  9527. font-weight:400;
  9528. font-style:normal;
  9529. font-size:11px;
  9530. letter-spacing:normal;
  9531. color:#AAAAAA;
  9532. vertical-align:none;
  9533. text-align:left;
  9534. text-transform:none;
  9535. background-color:transparent;
  9536. border-color:transparent;
  9537. }
  9538. #u85171_input.disabled {
  9539. position:absolute;
  9540. left:0px;
  9541. top:0px;
  9542. width:120px;
  9543. height:23px;
  9544. padding:2px 2px 2px 2px;
  9545. font-family:'ArialMT', 'Arial', sans-serif;
  9546. font-weight:400;
  9547. font-style:normal;
  9548. font-size:11px;
  9549. letter-spacing:normal;
  9550. color:#AAAAAA;
  9551. vertical-align:none;
  9552. text-align:left;
  9553. text-transform:none;
  9554. background-color:transparent;
  9555. border-color:transparent;
  9556. }
  9557. #u85171_div {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:120px;
  9563. height:23px;
  9564. background:inherit;
  9565. background-color:rgba(255, 255, 255, 1);
  9566. border:none;
  9567. border-radius:0px;
  9568. -moz-box-shadow:none;
  9569. -webkit-box-shadow:none;
  9570. box-shadow:none;
  9571. font-size:11px;
  9572. color:#AAAAAA;
  9573. }
  9574. #u85171 {
  9575. border-width:0px;
  9576. position:absolute;
  9577. left:1479px;
  9578. top:625px;
  9579. width:120px;
  9580. height:23px;
  9581. display:flex;
  9582. font-size:11px;
  9583. color:#AAAAAA;
  9584. }
  9585. #u85171 .text {
  9586. position:absolute;
  9587. align-self:flex-start;
  9588. padding:2px 2px 2px 2px;
  9589. box-sizing:border-box;
  9590. width:100%;
  9591. }
  9592. #u85171_div.disabled {
  9593. border-width:0px;
  9594. position:absolute;
  9595. left:0px;
  9596. top:0px;
  9597. width:120px;
  9598. height:23px;
  9599. background:inherit;
  9600. background-color:rgba(240, 240, 240, 1);
  9601. border:none;
  9602. border-radius:0px;
  9603. -moz-box-shadow:none;
  9604. -webkit-box-shadow:none;
  9605. box-shadow:none;
  9606. font-size:11px;
  9607. color:#AAAAAA;
  9608. }
  9609. #u85171.disabled {
  9610. }
  9611. .u85171_input_option {
  9612. font-size:11px;
  9613. }
  9614. #u85172_div {
  9615. border-width:0px;
  9616. position:absolute;
  9617. left:0px;
  9618. top:0px;
  9619. width:841px;
  9620. height:40px;
  9621. background:inherit;
  9622. background-color:rgba(255, 255, 255, 0);
  9623. border:none;
  9624. border-top:0px;
  9625. border-right:0px;
  9626. border-bottom:0px;
  9627. border-radius:0px;
  9628. border-top-left-radius:0px;
  9629. border-bottom-left-radius:0px;
  9630. -moz-box-shadow:none;
  9631. -webkit-box-shadow:none;
  9632. box-shadow:none;
  9633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9634. font-weight:400;
  9635. font-style:normal;
  9636. line-height:40px;
  9637. }
  9638. #u85172 {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:1267px;
  9642. top:477px;
  9643. width:841px;
  9644. height:40px;
  9645. display:flex;
  9646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. line-height:40px;
  9650. }
  9651. #u85172 .text {
  9652. position:absolute;
  9653. align-self:flex-start;
  9654. padding:0px 0px 0px 0px;
  9655. box-sizing:border-box;
  9656. width:100%;
  9657. }
  9658. #u85172_text {
  9659. border-width:0px;
  9660. white-space:nowrap;
  9661. text-transform:none;
  9662. }
  9663. #u85173_div {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:0px;
  9667. top:0px;
  9668. width:71px;
  9669. height:40px;
  9670. background:inherit;
  9671. background-color:rgba(255, 255, 255, 0);
  9672. border:none;
  9673. border-top:0px;
  9674. border-right:0px;
  9675. border-bottom:0px;
  9676. border-radius:0px;
  9677. border-top-left-radius:0px;
  9678. border-bottom-left-radius:0px;
  9679. -moz-box-shadow:none;
  9680. -webkit-box-shadow:none;
  9681. box-shadow:none;
  9682. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9683. font-weight:500;
  9684. font-style:normal;
  9685. }
  9686. #u85173 {
  9687. border-width:0px;
  9688. position:absolute;
  9689. left:1172px;
  9690. top:337px;
  9691. width:71px;
  9692. height:40px;
  9693. display:flex;
  9694. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9695. font-weight:500;
  9696. font-style:normal;
  9697. }
  9698. #u85173 .text {
  9699. position:absolute;
  9700. align-self:center;
  9701. padding:0px 0px 0px 0px;
  9702. box-sizing:border-box;
  9703. width:100%;
  9704. }
  9705. #u85173_text {
  9706. border-width:0px;
  9707. white-space:nowrap;
  9708. text-transform:none;
  9709. }
  9710. #u85174 {
  9711. border-width:0px;
  9712. position:absolute;
  9713. left:0px;
  9714. top:0px;
  9715. width:0px;
  9716. height:0px;
  9717. }
  9718. #u85175_div {
  9719. border-width:0px;
  9720. position:absolute;
  9721. left:0px;
  9722. top:0px;
  9723. width:1000px;
  9724. height:60px;
  9725. background:inherit;
  9726. background-color:rgba(255, 255, 255, 1);
  9727. box-sizing:border-box;
  9728. border-width:1px;
  9729. border-style:solid;
  9730. border-color:rgba(215, 215, 215, 1);
  9731. border-radius:0px;
  9732. -moz-box-shadow:none;
  9733. -webkit-box-shadow:none;
  9734. box-shadow:none;
  9735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9736. font-weight:400;
  9737. font-style:normal;
  9738. font-size:14px;
  9739. color:#AAAAAA;
  9740. text-align:center;
  9741. line-height:30px;
  9742. }
  9743. #u85175 {
  9744. border-width:0px;
  9745. position:absolute;
  9746. left:1144px;
  9747. top:1190px;
  9748. width:1000px;
  9749. height:60px;
  9750. display:flex;
  9751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9752. font-weight:400;
  9753. font-style:normal;
  9754. font-size:14px;
  9755. color:#AAAAAA;
  9756. text-align:center;
  9757. line-height:30px;
  9758. }
  9759. #u85175 .text {
  9760. position:absolute;
  9761. align-self:center;
  9762. padding:5px 10px 5px 10px;
  9763. box-sizing:border-box;
  9764. width:100%;
  9765. }
  9766. #u85175_text {
  9767. border-width:0px;
  9768. word-wrap:break-word;
  9769. text-transform:none;
  9770. visibility:hidden;
  9771. }
  9772. #u85176_div {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:0px;
  9776. top:0px;
  9777. width:79px;
  9778. height:30px;
  9779. background:inherit;
  9780. background-color:rgba(255, 255, 255, 1);
  9781. box-sizing:border-box;
  9782. border-width:1px;
  9783. border-style:solid;
  9784. border-color:rgba(170, 170, 170, 1);
  9785. border-radius:4px;
  9786. -moz-box-shadow:none;
  9787. -webkit-box-shadow:none;
  9788. box-shadow:none;
  9789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9790. font-weight:400;
  9791. font-style:normal;
  9792. font-size:14px;
  9793. }
  9794. #u85176 {
  9795. border-width:0px;
  9796. position:absolute;
  9797. left:2025px;
  9798. top:1205px;
  9799. width:79px;
  9800. height:30px;
  9801. display:flex;
  9802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9803. font-weight:400;
  9804. font-style:normal;
  9805. font-size:14px;
  9806. }
  9807. #u85176 .text {
  9808. position:absolute;
  9809. align-self:center;
  9810. padding:2px 2px 2px 2px;
  9811. box-sizing:border-box;
  9812. width:100%;
  9813. }
  9814. #u85176_text {
  9815. border-width:0px;
  9816. word-wrap:break-word;
  9817. text-transform:none;
  9818. }
  9819. #u85177_div {
  9820. border-width:0px;
  9821. position:absolute;
  9822. left:0px;
  9823. top:0px;
  9824. width:71px;
  9825. height:40px;
  9826. background:inherit;
  9827. background-color:rgba(255, 255, 255, 0);
  9828. border:none;
  9829. border-top:0px;
  9830. border-right:0px;
  9831. border-bottom:0px;
  9832. border-radius:0px;
  9833. border-top-left-radius:0px;
  9834. border-bottom-left-radius:0px;
  9835. -moz-box-shadow:none;
  9836. -webkit-box-shadow:none;
  9837. box-shadow:none;
  9838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9839. font-weight:400;
  9840. font-style:normal;
  9841. color:#7F7F7F;
  9842. line-height:40px;
  9843. }
  9844. #u85177 {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:1537px;
  9848. top:235px;
  9849. width:71px;
  9850. height:40px;
  9851. display:flex;
  9852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9853. font-weight:400;
  9854. font-style:normal;
  9855. color:#7F7F7F;
  9856. line-height:40px;
  9857. }
  9858. #u85177 .text {
  9859. position:absolute;
  9860. align-self:center;
  9861. padding:0px 0px 0px 0px;
  9862. box-sizing:border-box;
  9863. width:100%;
  9864. }
  9865. #u85177_text {
  9866. border-width:0px;
  9867. white-space:nowrap;
  9868. text-transform:none;
  9869. }
  9870. #u85178_div {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:0px;
  9874. top:0px;
  9875. width:29px;
  9876. height:40px;
  9877. background:inherit;
  9878. background-color:rgba(255, 255, 255, 0);
  9879. border:none;
  9880. border-top:0px;
  9881. border-right:0px;
  9882. border-bottom:0px;
  9883. border-radius:0px;
  9884. border-top-left-radius:0px;
  9885. border-bottom-left-radius:0px;
  9886. -moz-box-shadow:none;
  9887. -webkit-box-shadow:none;
  9888. box-shadow:none;
  9889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9890. font-weight:400;
  9891. font-style:normal;
  9892. line-height:40px;
  9893. }
  9894. #u85178 {
  9895. border-width:0px;
  9896. position:absolute;
  9897. left:1607px;
  9898. top:235px;
  9899. width:29px;
  9900. height:40px;
  9901. display:flex;
  9902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9903. font-weight:400;
  9904. font-style:normal;
  9905. line-height:40px;
  9906. }
  9907. #u85178 .text {
  9908. position:absolute;
  9909. align-self:center;
  9910. padding:0px 0px 0px 0px;
  9911. box-sizing:border-box;
  9912. width:100%;
  9913. }
  9914. #u85178_text {
  9915. border-width:0px;
  9916. white-space:nowrap;
  9917. text-transform:none;
  9918. }
  9919. #u85179_div {
  9920. border-width:0px;
  9921. position:absolute;
  9922. left:0px;
  9923. top:0px;
  9924. width:71px;
  9925. height:40px;
  9926. background:inherit;
  9927. background-color:rgba(255, 255, 255, 0);
  9928. border:none;
  9929. border-top:0px;
  9930. border-right:0px;
  9931. border-bottom:0px;
  9932. border-radius:0px;
  9933. border-top-left-radius:0px;
  9934. border-bottom-left-radius:0px;
  9935. -moz-box-shadow:none;
  9936. -webkit-box-shadow:none;
  9937. box-shadow:none;
  9938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9939. font-weight:400;
  9940. font-style:normal;
  9941. color:#7F7F7F;
  9942. line-height:40px;
  9943. }
  9944. #u85179 {
  9945. border-width:0px;
  9946. position:absolute;
  9947. left:1835px;
  9948. top:235px;
  9949. width:71px;
  9950. height:40px;
  9951. display:flex;
  9952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9953. font-weight:400;
  9954. font-style:normal;
  9955. color:#7F7F7F;
  9956. line-height:40px;
  9957. }
  9958. #u85179 .text {
  9959. position:absolute;
  9960. align-self:center;
  9961. padding:0px 0px 0px 0px;
  9962. box-sizing:border-box;
  9963. width:100%;
  9964. }
  9965. #u85179_text {
  9966. border-width:0px;
  9967. white-space:nowrap;
  9968. text-transform:none;
  9969. }
  9970. #u85180_div {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:0px;
  9974. top:0px;
  9975. width:141px;
  9976. height:40px;
  9977. background:inherit;
  9978. background-color:rgba(255, 255, 255, 0);
  9979. border:none;
  9980. border-top:0px;
  9981. border-right:0px;
  9982. border-bottom:0px;
  9983. border-radius:0px;
  9984. border-top-left-radius:0px;
  9985. border-bottom-left-radius:0px;
  9986. -moz-box-shadow:none;
  9987. -webkit-box-shadow:none;
  9988. box-shadow:none;
  9989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9990. font-weight:400;
  9991. font-style:normal;
  9992. line-height:40px;
  9993. }
  9994. #u85180 {
  9995. border-width:0px;
  9996. position:absolute;
  9997. left:1906px;
  9998. top:235px;
  9999. width:141px;
  10000. height:40px;
  10001. display:flex;
  10002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10003. font-weight:400;
  10004. font-style:normal;
  10005. line-height:40px;
  10006. }
  10007. #u85180 .text {
  10008. position:absolute;
  10009. align-self:center;
  10010. padding:0px 0px 0px 0px;
  10011. box-sizing:border-box;
  10012. width:100%;
  10013. }
  10014. #u85180_text {
  10015. border-width:0px;
  10016. white-space:nowrap;
  10017. text-transform:none;
  10018. }
  10019. #u85181_div {
  10020. border-width:0px;
  10021. position:absolute;
  10022. left:0px;
  10023. top:0px;
  10024. width:43px;
  10025. height:40px;
  10026. background:inherit;
  10027. background-color:rgba(255, 255, 255, 0);
  10028. border:none;
  10029. border-top:0px;
  10030. border-right:0px;
  10031. border-bottom:0px;
  10032. border-radius:0px;
  10033. border-top-left-radius:0px;
  10034. border-bottom-left-radius:0px;
  10035. -moz-box-shadow:none;
  10036. -webkit-box-shadow:none;
  10037. box-shadow:none;
  10038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10039. font-weight:400;
  10040. font-style:normal;
  10041. color:#7F7F7F;
  10042. line-height:40px;
  10043. }
  10044. #u85181 {
  10045. border-width:0px;
  10046. position:absolute;
  10047. left:1537px;
  10048. top:275px;
  10049. width:43px;
  10050. height:40px;
  10051. display:flex;
  10052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10053. font-weight:400;
  10054. font-style:normal;
  10055. color:#7F7F7F;
  10056. line-height:40px;
  10057. }
  10058. #u85181 .text {
  10059. position:absolute;
  10060. align-self:center;
  10061. padding:0px 0px 0px 0px;
  10062. box-sizing:border-box;
  10063. width:100%;
  10064. }
  10065. #u85181_text {
  10066. border-width:0px;
  10067. white-space:nowrap;
  10068. text-transform:none;
  10069. }
  10070. #u85182_div {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:0px;
  10074. top:0px;
  10075. width:29px;
  10076. height:40px;
  10077. background:inherit;
  10078. background-color:rgba(255, 255, 255, 0);
  10079. border:none;
  10080. border-top:0px;
  10081. border-right:0px;
  10082. border-bottom:0px;
  10083. border-radius:0px;
  10084. border-top-left-radius:0px;
  10085. border-bottom-left-radius:0px;
  10086. -moz-box-shadow:none;
  10087. -webkit-box-shadow:none;
  10088. box-shadow:none;
  10089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10090. font-weight:400;
  10091. font-style:normal;
  10092. line-height:40px;
  10093. }
  10094. #u85182 {
  10095. border-width:0px;
  10096. position:absolute;
  10097. left:1607px;
  10098. top:275px;
  10099. width:29px;
  10100. height:40px;
  10101. display:flex;
  10102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10103. font-weight:400;
  10104. font-style:normal;
  10105. line-height:40px;
  10106. }
  10107. #u85182 .text {
  10108. position:absolute;
  10109. align-self:center;
  10110. padding:0px 0px 0px 0px;
  10111. box-sizing:border-box;
  10112. width:100%;
  10113. }
  10114. #u85182_text {
  10115. border-width:0px;
  10116. white-space:nowrap;
  10117. text-transform:none;
  10118. }
  10119. #u85183_div {
  10120. border-width:0px;
  10121. position:absolute;
  10122. left:0px;
  10123. top:0px;
  10124. width:57px;
  10125. height:40px;
  10126. background:inherit;
  10127. background-color:rgba(255, 255, 255, 0);
  10128. border:none;
  10129. border-top:0px;
  10130. border-right:0px;
  10131. border-bottom:0px;
  10132. border-radius:0px;
  10133. border-top-left-radius:0px;
  10134. border-bottom-left-radius:0px;
  10135. -moz-box-shadow:none;
  10136. -webkit-box-shadow:none;
  10137. box-shadow:none;
  10138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10139. font-weight:400;
  10140. font-style:normal;
  10141. color:#7F7F7F;
  10142. line-height:40px;
  10143. }
  10144. #u85183 {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:1835px;
  10148. top:275px;
  10149. width:57px;
  10150. height:40px;
  10151. display:flex;
  10152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10153. font-weight:400;
  10154. font-style:normal;
  10155. color:#7F7F7F;
  10156. line-height:40px;
  10157. }
  10158. #u85183 .text {
  10159. position:absolute;
  10160. align-self:center;
  10161. padding:0px 0px 0px 0px;
  10162. box-sizing:border-box;
  10163. width:100%;
  10164. }
  10165. #u85183_text {
  10166. border-width:0px;
  10167. white-space:nowrap;
  10168. text-transform:none;
  10169. }
  10170. #u85184_div {
  10171. border-width:0px;
  10172. position:absolute;
  10173. left:0px;
  10174. top:0px;
  10175. width:82px;
  10176. height:40px;
  10177. background:inherit;
  10178. background-color:rgba(255, 255, 255, 0);
  10179. border:none;
  10180. border-top:0px;
  10181. border-right:0px;
  10182. border-bottom:0px;
  10183. border-radius:0px;
  10184. border-top-left-radius:0px;
  10185. border-bottom-left-radius:0px;
  10186. -moz-box-shadow:none;
  10187. -webkit-box-shadow:none;
  10188. box-shadow:none;
  10189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10190. font-weight:400;
  10191. font-style:normal;
  10192. line-height:40px;
  10193. }
  10194. #u85184 {
  10195. border-width:0px;
  10196. position:absolute;
  10197. left:1906px;
  10198. top:275px;
  10199. width:82px;
  10200. height:40px;
  10201. display:flex;
  10202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10203. font-weight:400;
  10204. font-style:normal;
  10205. line-height:40px;
  10206. }
  10207. #u85184 .text {
  10208. position:absolute;
  10209. align-self:center;
  10210. padding:0px 0px 0px 0px;
  10211. box-sizing:border-box;
  10212. width:100%;
  10213. }
  10214. #u85184_text {
  10215. border-width:0px;
  10216. white-space:nowrap;
  10217. text-transform:none;
  10218. }
  10219. #u85185_div {
  10220. border-width:0px;
  10221. position:absolute;
  10222. left:0px;
  10223. top:0px;
  10224. width:57px;
  10225. height:40px;
  10226. background:inherit;
  10227. background-color:rgba(255, 255, 255, 0);
  10228. border:none;
  10229. border-top:0px;
  10230. border-right:0px;
  10231. border-bottom:0px;
  10232. border-radius:0px;
  10233. border-top-left-radius:0px;
  10234. border-bottom-left-radius:0px;
  10235. -moz-box-shadow:none;
  10236. -webkit-box-shadow:none;
  10237. box-shadow:none;
  10238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10239. font-weight:400;
  10240. font-style:normal;
  10241. color:#7F7F7F;
  10242. line-height:40px;
  10243. }
  10244. #u85185 {
  10245. border-width:0px;
  10246. position:absolute;
  10247. left:1835px;
  10248. top:155px;
  10249. width:57px;
  10250. height:40px;
  10251. display:flex;
  10252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10253. font-weight:400;
  10254. font-style:normal;
  10255. color:#7F7F7F;
  10256. line-height:40px;
  10257. }
  10258. #u85185 .text {
  10259. position:absolute;
  10260. align-self:center;
  10261. padding:0px 0px 0px 0px;
  10262. box-sizing:border-box;
  10263. width:100%;
  10264. }
  10265. #u85185_text {
  10266. border-width:0px;
  10267. white-space:nowrap;
  10268. text-transform:none;
  10269. }
  10270. #u85186_div {
  10271. border-width:0px;
  10272. position:absolute;
  10273. left:0px;
  10274. top:0px;
  10275. width:117px;
  10276. height:40px;
  10277. background:inherit;
  10278. background-color:rgba(255, 255, 255, 0);
  10279. border:none;
  10280. border-top:0px;
  10281. border-right:0px;
  10282. border-bottom:0px;
  10283. border-radius:0px;
  10284. border-top-left-radius:0px;
  10285. border-bottom-left-radius:0px;
  10286. -moz-box-shadow:none;
  10287. -webkit-box-shadow:none;
  10288. box-shadow:none;
  10289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10290. font-weight:400;
  10291. font-style:normal;
  10292. line-height:40px;
  10293. }
  10294. #u85186 {
  10295. border-width:0px;
  10296. position:absolute;
  10297. left:1906px;
  10298. top:155px;
  10299. width:117px;
  10300. height:40px;
  10301. display:flex;
  10302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10303. font-weight:400;
  10304. font-style:normal;
  10305. line-height:40px;
  10306. }
  10307. #u85186 .text {
  10308. position:absolute;
  10309. align-self:center;
  10310. padding:0px 0px 0px 0px;
  10311. box-sizing:border-box;
  10312. width:100%;
  10313. }
  10314. #u85186_text {
  10315. border-width:0px;
  10316. white-space:nowrap;
  10317. text-transform:none;
  10318. }
  10319. #u85187_div {
  10320. border-width:0px;
  10321. position:absolute;
  10322. left:0px;
  10323. top:0px;
  10324. width:57px;
  10325. height:40px;
  10326. background:inherit;
  10327. background-color:rgba(255, 255, 255, 0);
  10328. border:none;
  10329. border-top:0px;
  10330. border-right:0px;
  10331. border-bottom:0px;
  10332. border-radius:0px;
  10333. border-top-left-radius:0px;
  10334. border-bottom-left-radius:0px;
  10335. -moz-box-shadow:none;
  10336. -webkit-box-shadow:none;
  10337. box-shadow:none;
  10338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10339. font-weight:400;
  10340. font-style:normal;
  10341. color:#7F7F7F;
  10342. line-height:40px;
  10343. }
  10344. #u85187 {
  10345. border-width:0px;
  10346. position:absolute;
  10347. left:1537px;
  10348. top:155px;
  10349. width:57px;
  10350. height:40px;
  10351. display:flex;
  10352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10353. font-weight:400;
  10354. font-style:normal;
  10355. color:#7F7F7F;
  10356. line-height:40px;
  10357. }
  10358. #u85187 .text {
  10359. position:absolute;
  10360. align-self:center;
  10361. padding:0px 0px 0px 0px;
  10362. box-sizing:border-box;
  10363. width:100%;
  10364. }
  10365. #u85187_text {
  10366. border-width:0px;
  10367. white-space:nowrap;
  10368. text-transform:none;
  10369. }
  10370. #u85188_div {
  10371. border-width:0px;
  10372. position:absolute;
  10373. left:0px;
  10374. top:0px;
  10375. width:85px;
  10376. height:40px;
  10377. background:inherit;
  10378. background-color:rgba(255, 255, 255, 0);
  10379. border:none;
  10380. border-top:0px;
  10381. border-right:0px;
  10382. border-bottom:0px;
  10383. border-radius:0px;
  10384. border-top-left-radius:0px;
  10385. border-bottom-left-radius:0px;
  10386. -moz-box-shadow:none;
  10387. -webkit-box-shadow:none;
  10388. box-shadow:none;
  10389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10390. font-weight:400;
  10391. font-style:normal;
  10392. line-height:40px;
  10393. }
  10394. #u85188 {
  10395. border-width:0px;
  10396. position:absolute;
  10397. left:1607px;
  10398. top:155px;
  10399. width:85px;
  10400. height:40px;
  10401. display:flex;
  10402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10403. font-weight:400;
  10404. font-style:normal;
  10405. line-height:40px;
  10406. }
  10407. #u85188 .text {
  10408. position:absolute;
  10409. align-self:center;
  10410. padding:0px 0px 0px 0px;
  10411. box-sizing:border-box;
  10412. width:100%;
  10413. }
  10414. #u85188_text {
  10415. border-width:0px;
  10416. white-space:nowrap;
  10417. text-transform:none;
  10418. }
  10419. #u85189_div {
  10420. border-width:0px;
  10421. position:absolute;
  10422. left:0px;
  10423. top:0px;
  10424. width:43px;
  10425. height:40px;
  10426. background:inherit;
  10427. background-color:rgba(255, 255, 255, 0);
  10428. border:none;
  10429. border-top:0px;
  10430. border-right:0px;
  10431. border-bottom:0px;
  10432. border-radius:0px;
  10433. border-top-left-radius:0px;
  10434. border-bottom-left-radius:0px;
  10435. -moz-box-shadow:none;
  10436. -webkit-box-shadow:none;
  10437. box-shadow:none;
  10438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10439. font-weight:400;
  10440. font-style:normal;
  10441. color:#7F7F7F;
  10442. line-height:40px;
  10443. }
  10444. #u85189 {
  10445. border-width:0px;
  10446. position:absolute;
  10447. left:1537px;
  10448. top:195px;
  10449. width:43px;
  10450. height:40px;
  10451. display:flex;
  10452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10453. font-weight:400;
  10454. font-style:normal;
  10455. color:#7F7F7F;
  10456. line-height:40px;
  10457. }
  10458. #u85189 .text {
  10459. position:absolute;
  10460. align-self:center;
  10461. padding:0px 0px 0px 0px;
  10462. box-sizing:border-box;
  10463. width:100%;
  10464. }
  10465. #u85189_text {
  10466. border-width:0px;
  10467. white-space:nowrap;
  10468. text-transform:none;
  10469. }
  10470. #u85190_div {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:0px;
  10474. top:0px;
  10475. width:57px;
  10476. height:40px;
  10477. background:inherit;
  10478. background-color:rgba(255, 255, 255, 0);
  10479. border:none;
  10480. border-top:0px;
  10481. border-right:0px;
  10482. border-bottom:0px;
  10483. border-radius:0px;
  10484. border-top-left-radius:0px;
  10485. border-bottom-left-radius:0px;
  10486. -moz-box-shadow:none;
  10487. -webkit-box-shadow:none;
  10488. box-shadow:none;
  10489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10490. font-weight:400;
  10491. font-style:normal;
  10492. line-height:40px;
  10493. }
  10494. #u85190 {
  10495. border-width:0px;
  10496. position:absolute;
  10497. left:1607px;
  10498. top:195px;
  10499. width:57px;
  10500. height:40px;
  10501. display:flex;
  10502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10503. font-weight:400;
  10504. font-style:normal;
  10505. line-height:40px;
  10506. }
  10507. #u85190 .text {
  10508. position:absolute;
  10509. align-self:center;
  10510. padding:0px 0px 0px 0px;
  10511. box-sizing:border-box;
  10512. width:100%;
  10513. }
  10514. #u85190_text {
  10515. border-width:0px;
  10516. white-space:nowrap;
  10517. text-transform:none;
  10518. }
  10519. #u85191_div {
  10520. border-width:0px;
  10521. position:absolute;
  10522. left:0px;
  10523. top:0px;
  10524. width:57px;
  10525. height:40px;
  10526. background:inherit;
  10527. background-color:rgba(255, 255, 255, 0);
  10528. border:none;
  10529. border-top:0px;
  10530. border-right:0px;
  10531. border-bottom:0px;
  10532. border-radius:0px;
  10533. border-top-left-radius:0px;
  10534. border-bottom-left-radius:0px;
  10535. -moz-box-shadow:none;
  10536. -webkit-box-shadow:none;
  10537. box-shadow:none;
  10538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10539. font-weight:400;
  10540. font-style:normal;
  10541. color:#7F7F7F;
  10542. line-height:40px;
  10543. }
  10544. #u85191 {
  10545. border-width:0px;
  10546. position:absolute;
  10547. left:1835px;
  10548. top:195px;
  10549. width:57px;
  10550. height:40px;
  10551. display:flex;
  10552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10553. font-weight:400;
  10554. font-style:normal;
  10555. color:#7F7F7F;
  10556. line-height:40px;
  10557. }
  10558. #u85191 .text {
  10559. position:absolute;
  10560. align-self:center;
  10561. padding:0px 0px 0px 0px;
  10562. box-sizing:border-box;
  10563. width:100%;
  10564. }
  10565. #u85191_text {
  10566. border-width:0px;
  10567. white-space:nowrap;
  10568. text-transform:none;
  10569. }
  10570. #u85192_div {
  10571. border-width:0px;
  10572. position:absolute;
  10573. left:0px;
  10574. top:0px;
  10575. width:197px;
  10576. height:40px;
  10577. background:inherit;
  10578. background-color:rgba(255, 255, 255, 0);
  10579. border:none;
  10580. border-top:0px;
  10581. border-right:0px;
  10582. border-bottom:0px;
  10583. border-radius:0px;
  10584. border-top-left-radius:0px;
  10585. border-bottom-left-radius:0px;
  10586. -moz-box-shadow:none;
  10587. -webkit-box-shadow:none;
  10588. box-shadow:none;
  10589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10590. font-weight:400;
  10591. font-style:normal;
  10592. line-height:40px;
  10593. }
  10594. #u85192 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:1906px;
  10598. top:195px;
  10599. width:197px;
  10600. height:40px;
  10601. display:flex;
  10602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10603. font-weight:400;
  10604. font-style:normal;
  10605. line-height:40px;
  10606. }
  10607. #u85192 .text {
  10608. position:absolute;
  10609. align-self:center;
  10610. padding:0px 0px 0px 0px;
  10611. box-sizing:border-box;
  10612. width:100%;
  10613. }
  10614. #u85192_text {
  10615. border-width:0px;
  10616. white-space:nowrap;
  10617. text-transform:none;
  10618. }
  10619. #u85193 {
  10620. border-width:0px;
  10621. position:absolute;
  10622. left:0px;
  10623. top:0px;
  10624. width:0px;
  10625. height:0px;
  10626. }
  10627. #u85194_div {
  10628. border-width:0px;
  10629. position:absolute;
  10630. left:0px;
  10631. top:0px;
  10632. width:40px;
  10633. height:40px;
  10634. background:inherit;
  10635. background-color:rgba(255, 255, 255, 0);
  10636. border:none;
  10637. border-top:0px;
  10638. border-right:0px;
  10639. border-bottom:0px;
  10640. border-radius:0px;
  10641. border-top-left-radius:0px;
  10642. border-bottom-left-radius:0px;
  10643. -moz-box-shadow:none;
  10644. -webkit-box-shadow:none;
  10645. box-shadow:none;
  10646. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10647. font-weight:500;
  10648. font-style:normal;
  10649. font-size:18px;
  10650. text-align:center;
  10651. }
  10652. #u85194 {
  10653. border-width:0px;
  10654. position:absolute;
  10655. left:2092px;
  10656. top:53px;
  10657. width:40px;
  10658. height:40px;
  10659. display:flex;
  10660. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10661. font-weight:500;
  10662. font-style:normal;
  10663. font-size:18px;
  10664. text-align:center;
  10665. }
  10666. #u85194 .text {
  10667. position:absolute;
  10668. align-self:center;
  10669. padding:5px 10px 5px 0px;
  10670. box-sizing:border-box;
  10671. width:100%;
  10672. }
  10673. #u85194_text {
  10674. border-width:0px;
  10675. word-wrap:break-word;
  10676. text-transform:none;
  10677. }
  10678. #u85195_img {
  10679. border-width:0px;
  10680. position:absolute;
  10681. left:0px;
  10682. top:0px;
  10683. width:13px;
  10684. height:13px;
  10685. }
  10686. #u85195 {
  10687. border-width:0px;
  10688. position:absolute;
  10689. left:2080px;
  10690. top:69px;
  10691. width:13px;
  10692. height:13px;
  10693. display:flex;
  10694. }
  10695. #u85195 .text {
  10696. position:absolute;
  10697. align-self:center;
  10698. padding:2px 2px 2px 2px;
  10699. box-sizing:border-box;
  10700. width:100%;
  10701. }
  10702. #u85195_text {
  10703. border-width:0px;
  10704. word-wrap:break-word;
  10705. text-transform:none;
  10706. visibility:hidden;
  10707. }