styles.css 196 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704
  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. #u86984 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u86985_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. #u86985 {
  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. #u86985 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u86985_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u86986_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. #u86986 {
  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. #u86986 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u86986_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u86987_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. #u86987 {
  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. #u86987 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u86987_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u86988_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. #u86988 {
  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. #u86988 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:0px 0px 0px 0px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u86988_text {
  231. border-width:0px;
  232. white-space:nowrap;
  233. text-transform:none;
  234. }
  235. #u86989_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. #u86989 {
  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. #u86989 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:0px 0px 0px 0px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u86989_text {
  280. border-width:0px;
  281. white-space:nowrap;
  282. text-transform:none;
  283. }
  284. #u86990_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. #u86990 {
  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. #u86990 .text {
  324. position:absolute;
  325. align-self:center;
  326. padding:0px 0px 0px 0px;
  327. box-sizing:border-box;
  328. width:100%;
  329. }
  330. #u86990_text {
  331. border-width:0px;
  332. white-space:nowrap;
  333. text-transform:none;
  334. }
  335. #u86991_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. #u86991 {
  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. #u86991 .text {
  373. position:absolute;
  374. align-self:center;
  375. padding:0px 0px 0px 0px;
  376. box-sizing:border-box;
  377. width:100%;
  378. }
  379. #u86991_text {
  380. border-width:0px;
  381. white-space:nowrap;
  382. text-transform:none;
  383. }
  384. #u86992_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. #u86992 {
  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. #u86992 .text {
  422. position:absolute;
  423. align-self:center;
  424. padding:0px 0px 0px 0px;
  425. box-sizing:border-box;
  426. width:100%;
  427. }
  428. #u86992_text {
  429. border-width:0px;
  430. white-space:nowrap;
  431. text-transform:none;
  432. }
  433. #u86993_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. #u86993 {
  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. #u86993 .text {
  469. position:absolute;
  470. align-self:center;
  471. padding:0px 0px 0px 0px;
  472. box-sizing:border-box;
  473. width:100%;
  474. }
  475. #u86993_text {
  476. border-width:0px;
  477. white-space:nowrap;
  478. text-transform:none;
  479. }
  480. #u86994_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. #u86994 {
  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. #u86994 .text {
  518. position:absolute;
  519. align-self:center;
  520. padding:0px 0px 0px 0px;
  521. box-sizing:border-box;
  522. width:100%;
  523. }
  524. #u86994_text {
  525. border-width:0px;
  526. white-space:nowrap;
  527. text-transform:none;
  528. }
  529. #u86995_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. #u86995 {
  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. #u86995 .text {
  565. position:absolute;
  566. align-self:center;
  567. padding:0px 0px 0px 0px;
  568. box-sizing:border-box;
  569. width:100%;
  570. }
  571. #u86995_text {
  572. border-width:0px;
  573. white-space:nowrap;
  574. text-transform:none;
  575. }
  576. #u86996_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. #u86996 {
  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. #u86996 .text {
  616. position:absolute;
  617. align-self:center;
  618. padding:0px 0px 0px 0px;
  619. box-sizing:border-box;
  620. width:100%;
  621. }
  622. #u86996_text {
  623. border-width:0px;
  624. white-space:nowrap;
  625. text-transform:none;
  626. }
  627. #u86997_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. #u86997 {
  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. #u86997 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:0px 0px 0px 0px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u86997_text {
  672. border-width:0px;
  673. white-space:nowrap;
  674. text-transform:none;
  675. }
  676. #u86998_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. #u86998 {
  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. #u86998 .text {
  712. position:absolute;
  713. align-self:center;
  714. padding:0px 0px 0px 0px;
  715. box-sizing:border-box;
  716. width:100%;
  717. }
  718. #u86998_text {
  719. border-width:0px;
  720. white-space:nowrap;
  721. text-transform:none;
  722. }
  723. #u86999_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. #u86999 {
  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. #u86999 .text {
  761. position:absolute;
  762. align-self:center;
  763. padding:0px 0px 0px 0px;
  764. box-sizing:border-box;
  765. width:100%;
  766. }
  767. #u86999_text {
  768. border-width:0px;
  769. white-space:nowrap;
  770. text-transform:none;
  771. }
  772. #u87000_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. #u87000 {
  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. #u87000 .text {
  808. position:absolute;
  809. align-self:center;
  810. padding:0px 0px 0px 0px;
  811. box-sizing:border-box;
  812. width:100%;
  813. }
  814. #u87000_text {
  815. border-width:0px;
  816. white-space:nowrap;
  817. text-transform:none;
  818. }
  819. #u87001_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. #u87001 {
  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. #u87001 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:0px 0px 0px 0px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u87001_text {
  864. border-width:0px;
  865. white-space:nowrap;
  866. text-transform:none;
  867. }
  868. #u87002_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. #u87002 {
  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. #u87002 .text {
  904. position:absolute;
  905. align-self:center;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u87002_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u87003 {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:0px;
  921. height:0px;
  922. }
  923. #u87004_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. #u87004 {
  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. #u87004 .text {
  963. position:absolute;
  964. align-self:center;
  965. padding:2px 8px 2px 8px;
  966. box-sizing:border-box;
  967. width:100%;
  968. }
  969. #u87004_text {
  970. border-width:0px;
  971. word-wrap:break-word;
  972. text-transform:none;
  973. visibility:hidden;
  974. }
  975. #u87005_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. #u87005 {
  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. #u87005 .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. #u87005_text {
  1019. border-width:0px;
  1020. word-wrap:break-word;
  1021. text-transform:none;
  1022. }
  1023. #u87006_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. #u87006 {
  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. #u87006 .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. #u87006_text {
  1067. border-width:0px;
  1068. word-wrap:break-word;
  1069. text-transform:none;
  1070. }
  1071. #u87007_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. #u87007 {
  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. #u87007 .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. #u87007_text {
  1115. border-width:0px;
  1116. word-wrap:break-word;
  1117. text-transform:none;
  1118. }
  1119. #u87008_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. #u87008 {
  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. #u87008 .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. #u87008_text {
  1163. border-width:0px;
  1164. word-wrap:break-word;
  1165. text-transform:none;
  1166. }
  1167. #u87009_img {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:66px;
  1173. height:66px;
  1174. }
  1175. #u87009 {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:357px;
  1179. top:182px;
  1180. width:66px;
  1181. height:66px;
  1182. display:flex;
  1183. }
  1184. #u87009 .text {
  1185. position:absolute;
  1186. align-self:center;
  1187. padding:2px 2px 2px 2px;
  1188. box-sizing:border-box;
  1189. width:100%;
  1190. }
  1191. #u87009_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u87010 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u87011_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. #u87011 {
  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. #u87011 .text {
  1247. position:absolute;
  1248. align-self:center;
  1249. padding:5px 10px 5px 10px;
  1250. box-sizing:border-box;
  1251. width:100%;
  1252. }
  1253. #u87011_text {
  1254. border-width:0px;
  1255. word-wrap:break-word;
  1256. text-transform:none;
  1257. visibility:hidden;
  1258. }
  1259. #u87012_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. #u87012 {
  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. #u87012 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:5px 10px 5px 0px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u87012_text {
  1306. border-width:0px;
  1307. white-space:nowrap;
  1308. text-transform:none;
  1309. }
  1310. #u87013 {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:114px;
  1314. top:663px;
  1315. width:949px;
  1316. height:282px;
  1317. }
  1318. #u87014_img {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:54px;
  1324. height:35px;
  1325. }
  1326. #u87014 {
  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. #u87014 .text {
  1341. position:absolute;
  1342. align-self:center;
  1343. padding:2px 2px 2px 0px;
  1344. box-sizing:border-box;
  1345. width:100%;
  1346. }
  1347. #u87014_text {
  1348. border-width:0px;
  1349. word-wrap:break-word;
  1350. text-transform:none;
  1351. }
  1352. #u87015_img {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:0px;
  1356. top:0px;
  1357. width:116px;
  1358. height:35px;
  1359. }
  1360. #u87015 {
  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. #u87015 .text {
  1375. position:absolute;
  1376. align-self:center;
  1377. padding:2px 2px 2px 0px;
  1378. box-sizing:border-box;
  1379. width:100%;
  1380. }
  1381. #u87015_text {
  1382. border-width:0px;
  1383. word-wrap:break-word;
  1384. text-transform:none;
  1385. }
  1386. #u87016_img {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:140px;
  1392. height:35px;
  1393. }
  1394. #u87016 {
  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. #u87016 .text {
  1409. position:absolute;
  1410. align-self:center;
  1411. padding:2px 2px 2px 0px;
  1412. box-sizing:border-box;
  1413. width:100%;
  1414. }
  1415. #u87016_text {
  1416. border-width:0px;
  1417. word-wrap:break-word;
  1418. text-transform:none;
  1419. }
  1420. #u87017_img {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:106px;
  1426. height:35px;
  1427. }
  1428. #u87017 {
  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. #u87017 .text {
  1443. position:absolute;
  1444. align-self:center;
  1445. padding:2px 2px 2px 0px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u87017_text {
  1450. border-width:0px;
  1451. word-wrap:break-word;
  1452. text-transform:none;
  1453. }
  1454. #u87018_img {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:0px;
  1458. top:0px;
  1459. width:110px;
  1460. height:35px;
  1461. }
  1462. #u87018 {
  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. #u87018 .text {
  1477. position:absolute;
  1478. align-self:center;
  1479. padding:2px 2px 2px 0px;
  1480. box-sizing:border-box;
  1481. width:100%;
  1482. }
  1483. #u87018_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. }
  1488. #u87019_img {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:106px;
  1494. height:35px;
  1495. }
  1496. #u87019 {
  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. #u87019 .text {
  1511. position:absolute;
  1512. align-self:center;
  1513. padding:2px 2px 2px 0px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u87019_text {
  1518. border-width:0px;
  1519. word-wrap:break-word;
  1520. text-transform:none;
  1521. }
  1522. #u87020_img {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:0px;
  1526. top:0px;
  1527. width:106px;
  1528. height:35px;
  1529. }
  1530. #u87020 {
  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. #u87020 .text {
  1545. position:absolute;
  1546. align-self:center;
  1547. padding:2px 2px 2px 0px;
  1548. box-sizing:border-box;
  1549. width:100%;
  1550. }
  1551. #u87020_text {
  1552. border-width:0px;
  1553. word-wrap:break-word;
  1554. text-transform:none;
  1555. }
  1556. #u87021_img {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:106px;
  1562. height:35px;
  1563. }
  1564. #u87021 {
  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. #u87021 .text {
  1579. position:absolute;
  1580. align-self:center;
  1581. padding:2px 2px 2px 0px;
  1582. box-sizing:border-box;
  1583. width:100%;
  1584. }
  1585. #u87021_text {
  1586. border-width:0px;
  1587. word-wrap:break-word;
  1588. text-transform:none;
  1589. }
  1590. #u87022_img {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:105px;
  1596. height:35px;
  1597. }
  1598. #u87022 {
  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. #u87022 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:2px 2px 2px 0px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u87022_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. }
  1624. #u87023_img {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:54px;
  1630. height:38px;
  1631. }
  1632. #u87023 {
  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. #u87023 .text {
  1646. position:absolute;
  1647. align-self:center;
  1648. padding:2px 2px 2px 0px;
  1649. box-sizing:border-box;
  1650. width:100%;
  1651. }
  1652. #u87023_text {
  1653. border-width:0px;
  1654. word-wrap:break-word;
  1655. text-transform:none;
  1656. }
  1657. #u87024_img {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:0px;
  1661. top:0px;
  1662. width:116px;
  1663. height:38px;
  1664. }
  1665. #u87024 {
  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. #u87024 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 0px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u87024_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. }
  1690. #u87025_img {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:140px;
  1696. height:38px;
  1697. }
  1698. #u87025 {
  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. #u87025 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:2px 2px 2px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u87025_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. }
  1723. #u87026_img {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:106px;
  1729. height:38px;
  1730. }
  1731. #u87026 {
  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. #u87026 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:2px 2px 2px 0px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u87026_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. }
  1757. #u87027_img {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:110px;
  1763. height:38px;
  1764. }
  1765. #u87027 {
  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. #u87027 .text {
  1780. position:absolute;
  1781. align-self:center;
  1782. padding:2px 2px 2px 0px;
  1783. box-sizing:border-box;
  1784. width:100%;
  1785. }
  1786. #u87027_text {
  1787. border-width:0px;
  1788. word-wrap:break-word;
  1789. text-transform:none;
  1790. }
  1791. #u87028_img {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:106px;
  1797. height:38px;
  1798. }
  1799. #u87028 {
  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. #u87028 .text {
  1814. position:absolute;
  1815. align-self:center;
  1816. padding:2px 2px 2px 0px;
  1817. box-sizing:border-box;
  1818. width:100%;
  1819. }
  1820. #u87028_text {
  1821. border-width:0px;
  1822. word-wrap:break-word;
  1823. text-transform:none;
  1824. }
  1825. #u87029_img {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:106px;
  1831. height:38px;
  1832. }
  1833. #u87029 {
  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. #u87029 .text {
  1848. position:absolute;
  1849. align-self:center;
  1850. padding:2px 2px 2px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u87029_text {
  1855. border-width:0px;
  1856. word-wrap:break-word;
  1857. text-transform:none;
  1858. visibility:hidden;
  1859. }
  1860. #u87030_img {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:106px;
  1866. height:38px;
  1867. }
  1868. #u87030 {
  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. #u87030 .text {
  1883. position:absolute;
  1884. align-self:center;
  1885. padding:2px 2px 2px 0px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u87030_text {
  1890. border-width:0px;
  1891. word-wrap:break-word;
  1892. text-transform:none;
  1893. visibility:hidden;
  1894. }
  1895. #u87031_img {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:105px;
  1901. height:38px;
  1902. }
  1903. #u87031 {
  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. #u87031 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 0px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u87031_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. visibility:hidden;
  1929. }
  1930. #u87032_img {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:54px;
  1936. height:38px;
  1937. }
  1938. #u87032 {
  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. #u87032 .text {
  1953. position:absolute;
  1954. align-self:center;
  1955. padding:2px 2px 2px 0px;
  1956. box-sizing:border-box;
  1957. width:100%;
  1958. }
  1959. #u87032_text {
  1960. border-width:0px;
  1961. word-wrap:break-word;
  1962. text-transform:none;
  1963. }
  1964. #u87033_img {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:116px;
  1970. height:38px;
  1971. }
  1972. #u87033 {
  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. #u87033 .text {
  1987. position:absolute;
  1988. align-self:center;
  1989. padding:2px 2px 2px 0px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u87033_text {
  1994. border-width:0px;
  1995. word-wrap:break-word;
  1996. text-transform:none;
  1997. visibility:hidden;
  1998. }
  1999. #u87034_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:140px;
  2005. height:38px;
  2006. }
  2007. #u87034 {
  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. #u87034 .text {
  2022. position:absolute;
  2023. align-self:center;
  2024. padding:2px 2px 2px 0px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u87034_text {
  2029. border-width:0px;
  2030. word-wrap:break-word;
  2031. text-transform:none;
  2032. visibility:hidden;
  2033. }
  2034. #u87035_img {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:106px;
  2040. height:38px;
  2041. }
  2042. #u87035 {
  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. #u87035 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 0px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u87035_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. }
  2068. #u87036_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:110px;
  2074. height:38px;
  2075. }
  2076. #u87036 {
  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. #u87036 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u87036_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u87037_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:106px;
  2110. height:38px;
  2111. }
  2112. #u87037 {
  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. #u87037 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u87037_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. visibility:hidden;
  2139. }
  2140. #u87038_img {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:106px;
  2146. height:38px;
  2147. }
  2148. #u87038 {
  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. #u87038 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u87038_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u87039_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:106px;
  2182. height:38px;
  2183. }
  2184. #u87039 {
  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. #u87039 .text {
  2200. position:absolute;
  2201. align-self:center;
  2202. padding:2px 2px 2px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u87039_text {
  2207. border-width:0px;
  2208. word-wrap:break-word;
  2209. text-transform:none;
  2210. visibility:hidden;
  2211. }
  2212. #u87040_img {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:105px;
  2218. height:38px;
  2219. }
  2220. #u87040 {
  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. #u87040 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u87040_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u87041_img {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:54px;
  2254. height:35px;
  2255. }
  2256. #u87041 {
  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. #u87041 .text {
  2271. position:absolute;
  2272. align-self:center;
  2273. padding:2px 2px 2px 0px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u87041_text {
  2278. border-width:0px;
  2279. word-wrap:break-word;
  2280. text-transform:none;
  2281. }
  2282. #u87042_img {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:116px;
  2288. height:35px;
  2289. }
  2290. #u87042 {
  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. #u87042 .text {
  2305. position:absolute;
  2306. align-self:center;
  2307. padding:2px 2px 2px 0px;
  2308. box-sizing:border-box;
  2309. width:100%;
  2310. }
  2311. #u87042_text {
  2312. border-width:0px;
  2313. word-wrap:break-word;
  2314. text-transform:none;
  2315. visibility:hidden;
  2316. }
  2317. #u87043_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:140px;
  2323. height:35px;
  2324. }
  2325. #u87043 {
  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. #u87043 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 0px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u87043_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. visibility:hidden;
  2351. }
  2352. #u87044_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:106px;
  2358. height:35px;
  2359. }
  2360. #u87044 {
  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. #u87044 .text {
  2375. position:absolute;
  2376. align-self:center;
  2377. padding:2px 2px 2px 0px;
  2378. box-sizing:border-box;
  2379. width:100%;
  2380. }
  2381. #u87044_text {
  2382. border-width:0px;
  2383. word-wrap:break-word;
  2384. text-transform:none;
  2385. visibility:hidden;
  2386. }
  2387. #u87045_img {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:0px;
  2391. top:0px;
  2392. width:110px;
  2393. height:35px;
  2394. }
  2395. #u87045 {
  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. #u87045 .text {
  2411. position:absolute;
  2412. align-self:center;
  2413. padding:2px 2px 2px 0px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u87045_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. visibility:hidden;
  2422. }
  2423. #u87046_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:106px;
  2429. height:35px;
  2430. }
  2431. #u87046 {
  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. #u87046 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u87046_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u87047_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:106px;
  2465. height:35px;
  2466. }
  2467. #u87047 {
  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. #u87047 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 2px 2px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u87047_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. visibility:hidden;
  2494. }
  2495. #u87048_img {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:106px;
  2501. height:35px;
  2502. }
  2503. #u87048 {
  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. #u87048 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 0px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u87048_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u87049_img {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:105px;
  2537. height:35px;
  2538. }
  2539. #u87049 {
  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. #u87049 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:2px 2px 2px 0px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u87049_text {
  2562. border-width:0px;
  2563. word-wrap:break-word;
  2564. text-transform:none;
  2565. visibility:hidden;
  2566. }
  2567. #u87050_img {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:54px;
  2573. height:35px;
  2574. }
  2575. #u87050 {
  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. #u87050 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:2px 2px 2px 0px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u87050_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. }
  2601. #u87051_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:116px;
  2607. height:35px;
  2608. }
  2609. #u87051 {
  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. #u87051 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u87051_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. visibility:hidden;
  2635. }
  2636. #u87052_img {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:140px;
  2642. height:35px;
  2643. }
  2644. #u87052 {
  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. #u87052 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 0px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u87052_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. visibility:hidden;
  2670. }
  2671. #u87053_img {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:106px;
  2677. height:35px;
  2678. }
  2679. #u87053 {
  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. #u87053 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 0px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u87053_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u87054_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:110px;
  2712. height:35px;
  2713. }
  2714. #u87054 {
  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. #u87054 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 0px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u87054_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. visibility:hidden;
  2741. }
  2742. #u87055_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:106px;
  2748. height:35px;
  2749. }
  2750. #u87055 {
  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. #u87055 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 0px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u87055_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. visibility:hidden;
  2777. }
  2778. #u87056_img {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:106px;
  2784. height:35px;
  2785. }
  2786. #u87056 {
  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. #u87056 .text {
  2802. position:absolute;
  2803. align-self:center;
  2804. padding:2px 2px 2px 0px;
  2805. box-sizing:border-box;
  2806. width:100%;
  2807. }
  2808. #u87056_text {
  2809. border-width:0px;
  2810. word-wrap:break-word;
  2811. text-transform:none;
  2812. visibility:hidden;
  2813. }
  2814. #u87057_img {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:106px;
  2820. height:35px;
  2821. }
  2822. #u87057 {
  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. #u87057 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u87057_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u87058_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:105px;
  2856. height:35px;
  2857. }
  2858. #u87058 {
  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. #u87058 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 2px 2px 0px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u87058_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u87059_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:54px;
  2892. height:35px;
  2893. }
  2894. #u87059 {
  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. #u87059 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 0px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u87059_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u87060_img {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:116px;
  2927. height:35px;
  2928. }
  2929. #u87060 {
  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. #u87060 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:2px 2px 2px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u87060_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. visibility:hidden;
  2955. }
  2956. #u87061_img {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:140px;
  2962. height:35px;
  2963. }
  2964. #u87061 {
  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. #u87061 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 0px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u87061_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. visibility:hidden;
  2990. }
  2991. #u87062_img {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:106px;
  2997. height:35px;
  2998. }
  2999. #u87062 {
  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. #u87062 .text {
  3014. position:absolute;
  3015. align-self:center;
  3016. padding:2px 2px 2px 0px;
  3017. box-sizing:border-box;
  3018. width:100%;
  3019. }
  3020. #u87062_text {
  3021. border-width:0px;
  3022. word-wrap:break-word;
  3023. text-transform:none;
  3024. visibility:hidden;
  3025. }
  3026. #u87063_img {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:110px;
  3032. height:35px;
  3033. }
  3034. #u87063 {
  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. #u87063 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u87063_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u87064_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:106px;
  3068. height:35px;
  3069. }
  3070. #u87064 {
  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. #u87064 .text {
  3086. position:absolute;
  3087. align-self:center;
  3088. padding:2px 2px 2px 0px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u87064_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. visibility:hidden;
  3097. }
  3098. #u87065_img {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:106px;
  3104. height:35px;
  3105. }
  3106. #u87065 {
  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. #u87065 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 0px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u87065_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. visibility:hidden;
  3133. }
  3134. #u87066_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:106px;
  3140. height:35px;
  3141. }
  3142. #u87066 {
  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. #u87066 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u87066_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u87067_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:105px;
  3176. height:35px;
  3177. }
  3178. #u87067 {
  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. #u87067 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u87067_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u87068_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:54px;
  3212. height:35px;
  3213. }
  3214. #u87068 {
  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. #u87068 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u87068_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u87069_img {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:116px;
  3247. height:35px;
  3248. }
  3249. #u87069 {
  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. #u87069 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 0px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u87069_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u87070_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:140px;
  3282. height:35px;
  3283. }
  3284. #u87070 {
  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. #u87070 .text {
  3299. position:absolute;
  3300. align-self:center;
  3301. padding:2px 2px 2px 0px;
  3302. box-sizing:border-box;
  3303. width:100%;
  3304. }
  3305. #u87070_text {
  3306. border-width:0px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u87071_img {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:106px;
  3317. height:35px;
  3318. }
  3319. #u87071 {
  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. #u87071 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:2px 2px 2px 0px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u87071_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. visibility:hidden;
  3345. }
  3346. #u87072_img {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:110px;
  3352. height:35px;
  3353. }
  3354. #u87072 {
  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. #u87072 .text {
  3370. position:absolute;
  3371. align-self:center;
  3372. padding:2px 2px 2px 0px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u87072_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u87073_img {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:106px;
  3388. height:35px;
  3389. }
  3390. #u87073 {
  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. #u87073 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 0px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u87073_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u87074_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:106px;
  3424. height:35px;
  3425. }
  3426. #u87074 {
  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. #u87074 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u87074_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u87075_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:106px;
  3460. height:35px;
  3461. }
  3462. #u87075 {
  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. #u87075 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u87075_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u87076_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:105px;
  3496. height:35px;
  3497. }
  3498. #u87076 {
  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. #u87076 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 0px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u87076_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u87077_img {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:54px;
  3532. height:31px;
  3533. }
  3534. #u87077 {
  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. #u87077 .text {
  3549. position:absolute;
  3550. align-self:center;
  3551. padding:2px 2px 2px 0px;
  3552. box-sizing:border-box;
  3553. width:100%;
  3554. }
  3555. #u87077_text {
  3556. border-width:0px;
  3557. word-wrap:break-word;
  3558. text-transform:none;
  3559. visibility:hidden;
  3560. }
  3561. #u87078_img {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:116px;
  3567. height:31px;
  3568. }
  3569. #u87078 {
  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. #u87078 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 2px 2px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u87078_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. visibility:hidden;
  3595. }
  3596. #u87079_img {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:140px;
  3602. height:31px;
  3603. }
  3604. #u87079 {
  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. #u87079 .text {
  3619. position:absolute;
  3620. align-self:center;
  3621. padding:2px 2px 2px 0px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u87079_text {
  3626. border-width:0px;
  3627. word-wrap:break-word;
  3628. text-transform:none;
  3629. visibility:hidden;
  3630. }
  3631. #u87080_img {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:106px;
  3637. height:31px;
  3638. }
  3639. #u87080 {
  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. #u87080 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 0px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u87080_text {
  3661. border-width:0px;
  3662. word-wrap:break-word;
  3663. text-transform:none;
  3664. visibility:hidden;
  3665. }
  3666. #u87081_img {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:110px;
  3672. height:31px;
  3673. }
  3674. #u87081 {
  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. #u87081 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 0px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u87081_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u87082_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:106px;
  3708. height:31px;
  3709. }
  3710. #u87082 {
  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. #u87082 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 0px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u87082_text {
  3733. border-width:0px;
  3734. word-wrap:break-word;
  3735. text-transform:none;
  3736. visibility:hidden;
  3737. }
  3738. #u87083_img {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:106px;
  3744. height:31px;
  3745. }
  3746. #u87083 {
  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. #u87083 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:2px 2px 2px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u87083_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. visibility:hidden;
  3773. }
  3774. #u87084_img {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:106px;
  3780. height:31px;
  3781. }
  3782. #u87084 {
  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. #u87084 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:2px 2px 2px 0px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u87084_text {
  3805. border-width:0px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. visibility:hidden;
  3809. }
  3810. #u87085_img {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:105px;
  3816. height:31px;
  3817. }
  3818. #u87085 {
  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. #u87085 .text {
  3834. position:absolute;
  3835. align-self:center;
  3836. padding:2px 2px 2px 0px;
  3837. box-sizing:border-box;
  3838. width:100%;
  3839. }
  3840. #u87085_text {
  3841. border-width:0px;
  3842. word-wrap:break-word;
  3843. text-transform:none;
  3844. visibility:hidden;
  3845. }
  3846. #u87086_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. #u87086 {
  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. #u87086 .text {
  3884. position:absolute;
  3885. align-self:center;
  3886. padding:5px 15px 5px 15px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u87086_text {
  3891. border-width:0px;
  3892. white-space:nowrap;
  3893. text-transform:none;
  3894. }
  3895. #u87087 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:0px;
  3901. height:0px;
  3902. }
  3903. #u87088_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. #u87088 {
  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. #u87088 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 2px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u87088_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. visibility:hidden;
  3944. }
  3945. #u87089_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. #u87089_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. #u87089_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. #u87089 {
  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. #u87089 .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. #u87089_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. #u87089.disabled {
  4036. }
  4037. .u87089_input_option {
  4038. font-size:11px;
  4039. }
  4040. #u87090 {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:0px;
  4046. height:0px;
  4047. }
  4048. #u87091_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. #u87091 {
  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. #u87091 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 8px 2px 8px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u87091_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u87092_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. #u87092_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. #u87092_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. #u87092 {
  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. #u87092 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 2px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u87092_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. #u87092.disabled {
  4197. }
  4198. #u87093_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. #u87093 {
  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. #u87093 .text {
  4233. position:absolute;
  4234. align-self:center;
  4235. padding:5px 15px 5px 15px;
  4236. box-sizing:border-box;
  4237. width:100%;
  4238. }
  4239. #u87093_text {
  4240. border-width:0px;
  4241. white-space:nowrap;
  4242. text-transform:none;
  4243. }
  4244. #u87094_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. #u87094 {
  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. #u87094 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:5px 15px 5px 15px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u87094_text {
  4289. border-width:0px;
  4290. white-space:nowrap;
  4291. text-transform:none;
  4292. }
  4293. #u87095 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:0px;
  4299. height:0px;
  4300. }
  4301. #u87096_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. #u87096 {
  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. #u87096 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 2px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u87096_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u87097_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. #u87097_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. #u87097_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. #u87097 {
  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. #u87097 .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. #u87097_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. #u87097.disabled {
  4434. }
  4435. .u87097_input_option {
  4436. font-size:11px;
  4437. }
  4438. #u87098 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:0px;
  4444. height:0px;
  4445. }
  4446. #u87099_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. #u87099 {
  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. #u87099 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 2px 2px 2px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u87099_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. visibility:hidden;
  4487. }
  4488. #u87100_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. #u87100_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. #u87100_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. #u87100 {
  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. #u87100 .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. #u87100_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. #u87100.disabled {
  4579. }
  4580. .u87100_input_option {
  4581. font-size:11px;
  4582. }
  4583. #u87101_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. #u87101 {
  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. #u87101 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:5px 10px 5px 0px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u87101_text {
  4628. border-width:0px;
  4629. white-space:nowrap;
  4630. text-transform:none;
  4631. }
  4632. #u87102_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. #u87102 {
  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. #u87102 .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. #u87102_text {
  4677. border-width:0px;
  4678. white-space:nowrap;
  4679. text-transform:none;
  4680. }
  4681. #u87103_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. #u87103 {
  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. #u87103 .text {
  4717. position:absolute;
  4718. align-self:center;
  4719. padding:0px 0px 0px 0px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u87103_text {
  4724. border-width:0px;
  4725. white-space:nowrap;
  4726. text-transform:none;
  4727. }
  4728. #u87104 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:0px;
  4734. height:0px;
  4735. }
  4736. #u87105_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. #u87105 {
  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. #u87105 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:5px 10px 5px 10px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u87105_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. visibility:hidden;
  4789. }
  4790. #u87106_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. #u87106 {
  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. #u87106 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 2px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u87106_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. }
  4837. #u87107_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. #u87107 {
  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. #u87107 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:0px 0px 0px 0px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u87107_text {
  4884. border-width:0px;
  4885. white-space:nowrap;
  4886. text-transform:none;
  4887. }
  4888. #u87108_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. #u87108 {
  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. #u87108 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:0px 0px 0px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u87108_text {
  4933. border-width:0px;
  4934. white-space:nowrap;
  4935. text-transform:none;
  4936. }
  4937. #u87109_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. #u87109 {
  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. #u87109 .text {
  4977. position:absolute;
  4978. align-self:center;
  4979. padding:0px 0px 0px 0px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u87109_text {
  4984. border-width:0px;
  4985. white-space:nowrap;
  4986. text-transform:none;
  4987. }
  4988. #u87110_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. #u87110 {
  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. #u87110 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:0px 0px 0px 0px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u87110_text {
  5033. border-width:0px;
  5034. white-space:nowrap;
  5035. text-transform:none;
  5036. }
  5037. #u87111_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. #u87111 {
  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. #u87111 .text {
  5077. position:absolute;
  5078. align-self:center;
  5079. padding:0px 0px 0px 0px;
  5080. box-sizing:border-box;
  5081. width:100%;
  5082. }
  5083. #u87111_text {
  5084. border-width:0px;
  5085. white-space:nowrap;
  5086. text-transform:none;
  5087. }
  5088. #u87112_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. #u87112 {
  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. #u87112 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:0px 0px 0px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u87112_text {
  5133. border-width:0px;
  5134. white-space:nowrap;
  5135. text-transform:none;
  5136. }
  5137. #u87113_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. #u87113 {
  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. #u87113 .text {
  5177. position:absolute;
  5178. align-self:center;
  5179. padding:0px 0px 0px 0px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u87113_text {
  5184. border-width:0px;
  5185. white-space:nowrap;
  5186. text-transform:none;
  5187. }
  5188. #u87114_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. #u87114 {
  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. #u87114 .text {
  5226. position:absolute;
  5227. align-self:center;
  5228. padding:0px 0px 0px 0px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u87114_text {
  5233. border-width:0px;
  5234. white-space:nowrap;
  5235. text-transform:none;
  5236. }
  5237. #u87115_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. #u87115 {
  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. #u87115 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:0px 0px 0px 0px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u87115_text {
  5284. border-width:0px;
  5285. white-space:nowrap;
  5286. text-transform:none;
  5287. }
  5288. #u87116_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. #u87116 {
  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. #u87116 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:0px 0px 0px 0px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u87116_text {
  5333. border-width:0px;
  5334. white-space:nowrap;
  5335. text-transform:none;
  5336. }
  5337. #u87117_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. #u87117 {
  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. #u87117 .text {
  5377. position:absolute;
  5378. align-self:center;
  5379. padding:0px 0px 0px 0px;
  5380. box-sizing:border-box;
  5381. width:100%;
  5382. }
  5383. #u87117_text {
  5384. border-width:0px;
  5385. white-space:nowrap;
  5386. text-transform:none;
  5387. }
  5388. #u87118_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. #u87118 {
  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. #u87118 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:0px 0px 0px 0px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u87118_text {
  5433. border-width:0px;
  5434. white-space:nowrap;
  5435. text-transform:none;
  5436. }
  5437. #u87119_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. #u87119 {
  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. #u87119 .text {
  5477. position:absolute;
  5478. align-self:center;
  5479. padding:0px 0px 0px 0px;
  5480. box-sizing:border-box;
  5481. width:100%;
  5482. }
  5483. #u87119_text {
  5484. border-width:0px;
  5485. white-space:nowrap;
  5486. text-transform:none;
  5487. }
  5488. #u87120_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. #u87120 {
  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. #u87120 .text {
  5526. position:absolute;
  5527. align-self:center;
  5528. padding:0px 0px 0px 0px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u87120_text {
  5533. border-width:0px;
  5534. white-space:nowrap;
  5535. text-transform:none;
  5536. }
  5537. #u87121_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. #u87121 {
  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. #u87121 .text {
  5577. position:absolute;
  5578. align-self:center;
  5579. padding:0px 0px 0px 0px;
  5580. box-sizing:border-box;
  5581. width:100%;
  5582. }
  5583. #u87121_text {
  5584. border-width:0px;
  5585. white-space:nowrap;
  5586. text-transform:none;
  5587. }
  5588. #u87122_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. #u87122 {
  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. #u87122 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:0px 0px 0px 0px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u87122_text {
  5633. border-width:0px;
  5634. white-space:nowrap;
  5635. text-transform:none;
  5636. }
  5637. #u87123 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:0px;
  5643. height:0px;
  5644. }
  5645. #u87124_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. #u87124 {
  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. #u87124 .text {
  5685. position:absolute;
  5686. align-self:center;
  5687. padding:5px 10px 5px 0px;
  5688. box-sizing:border-box;
  5689. width:100%;
  5690. }
  5691. #u87124_text {
  5692. border-width:0px;
  5693. word-wrap:break-word;
  5694. text-transform:none;
  5695. }
  5696. #u87125_img {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:13px;
  5702. height:13px;
  5703. }
  5704. #u87125 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:1023px;
  5708. top:69px;
  5709. width:13px;
  5710. height:13px;
  5711. display:flex;
  5712. }
  5713. #u87125 .text {
  5714. position:absolute;
  5715. align-self:center;
  5716. padding:2px 2px 2px 2px;
  5717. box-sizing:border-box;
  5718. width:100%;
  5719. }
  5720. #u87125_text {
  5721. border-width:0px;
  5722. word-wrap:break-word;
  5723. text-transform:none;
  5724. visibility:hidden;
  5725. }
  5726. #u87126 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:0px;
  5732. height:0px;
  5733. }
  5734. #u87127_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. #u87127 {
  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. #u87127 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:5px 10px 5px 10px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u87127_text {
  5783. border-width:0px;
  5784. word-wrap:break-word;
  5785. text-transform:none;
  5786. visibility:hidden;
  5787. }
  5788. #u87128_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. #u87128 {
  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. #u87128 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:5px 10px 5px 10px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u87128_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u87129_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. #u87129 {
  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. #u87129 .text {
  5880. position:absolute;
  5881. align-self:center;
  5882. padding:5px 10px 5px 0px;
  5883. box-sizing:border-box;
  5884. width:100%;
  5885. }
  5886. #u87129_text {
  5887. border-width:0px;
  5888. white-space:nowrap;
  5889. text-transform:none;
  5890. }
  5891. #u87130_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. #u87130 {
  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. #u87130 .text {
  5931. position:absolute;
  5932. align-self:center;
  5933. padding:0px 0px 0px 0px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u87130_text {
  5938. border-width:0px;
  5939. white-space:nowrap;
  5940. text-transform:none;
  5941. }
  5942. #u87131_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. #u87131 {
  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. #u87131 .text {
  5980. position:absolute;
  5981. align-self:center;
  5982. padding:0px 0px 0px 0px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u87131_text {
  5987. border-width:0px;
  5988. white-space:nowrap;
  5989. text-transform:none;
  5990. }
  5991. #u87132_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. #u87132 {
  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. #u87132 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:0px 0px 0px 0px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u87132_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u87133_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. #u87133 {
  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. #u87133 .text {
  6080. position:absolute;
  6081. align-self:center;
  6082. padding:0px 0px 0px 0px;
  6083. box-sizing:border-box;
  6084. width:100%;
  6085. }
  6086. #u87133_text {
  6087. border-width:0px;
  6088. white-space:nowrap;
  6089. text-transform:none;
  6090. }
  6091. #u87134_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. #u87134 {
  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. #u87134 .text {
  6129. position:absolute;
  6130. align-self:center;
  6131. padding:0px 0px 0px 0px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u87134_text {
  6136. border-width:0px;
  6137. white-space:nowrap;
  6138. text-transform:none;
  6139. }
  6140. #u87135_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. #u87135 {
  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. #u87135 .text {
  6176. position:absolute;
  6177. align-self:center;
  6178. padding:0px 0px 0px 0px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u87135_text {
  6183. border-width:0px;
  6184. white-space:nowrap;
  6185. text-transform:none;
  6186. }
  6187. #u87136_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. #u87136 {
  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. #u87136 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:0px 0px 0px 0px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u87136_text {
  6232. border-width:0px;
  6233. white-space:nowrap;
  6234. text-transform:none;
  6235. }
  6236. #u87137_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. #u87137 {
  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. #u87137 .text {
  6272. position:absolute;
  6273. align-self:center;
  6274. padding:0px 0px 0px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u87137_text {
  6279. border-width:0px;
  6280. white-space:nowrap;
  6281. text-transform:none;
  6282. }
  6283. #u87138_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. #u87138 {
  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. #u87138 .text {
  6323. position:absolute;
  6324. align-self:center;
  6325. padding:0px 0px 0px 0px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u87138_text {
  6330. border-width:0px;
  6331. white-space:nowrap;
  6332. text-transform:none;
  6333. }
  6334. #u87139_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. #u87139 {
  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. #u87139 .text {
  6372. position:absolute;
  6373. align-self:center;
  6374. padding:0px 0px 0px 0px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u87139_text {
  6379. border-width:0px;
  6380. white-space:nowrap;
  6381. text-transform:none;
  6382. }
  6383. #u87140_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. #u87140 {
  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. #u87140 .text {
  6419. position:absolute;
  6420. align-self:center;
  6421. padding:0px 0px 0px 0px;
  6422. box-sizing:border-box;
  6423. width:100%;
  6424. }
  6425. #u87140_text {
  6426. border-width:0px;
  6427. white-space:nowrap;
  6428. text-transform:none;
  6429. }
  6430. #u87141_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. #u87141 {
  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. #u87141 .text {
  6468. position:absolute;
  6469. align-self:center;
  6470. padding:0px 0px 0px 0px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u87141_text {
  6475. border-width:0px;
  6476. white-space:nowrap;
  6477. text-transform:none;
  6478. }
  6479. #u87142_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. #u87142 {
  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. #u87142 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:0px 0px 0px 0px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u87142_text {
  6522. border-width:0px;
  6523. white-space:nowrap;
  6524. text-transform:none;
  6525. }
  6526. #u87143_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. #u87143 {
  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. #u87143 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:0px 0px 0px 0px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u87143_text {
  6571. border-width:0px;
  6572. white-space:nowrap;
  6573. text-transform:none;
  6574. }
  6575. #u87144_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. #u87144 {
  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. #u87144 .text {
  6611. position:absolute;
  6612. align-self:center;
  6613. padding:0px 0px 0px 0px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u87144_text {
  6618. border-width:0px;
  6619. white-space:nowrap;
  6620. text-transform:none;
  6621. }
  6622. #u87145 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:0px;
  6628. height:0px;
  6629. }
  6630. #u87146_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. #u87146 {
  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. #u87146 .text {
  6670. position:absolute;
  6671. align-self:center;
  6672. padding:2px 8px 2px 8px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u87146_text {
  6677. border-width:0px;
  6678. word-wrap:break-word;
  6679. text-transform:none;
  6680. visibility:hidden;
  6681. }
  6682. #u87147_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. #u87147 {
  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. #u87147 .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. #u87147_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. }
  6730. #u87148_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. #u87148 {
  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. #u87148 .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. #u87148_text {
  6774. border-width:0px;
  6775. word-wrap:break-word;
  6776. text-transform:none;
  6777. }
  6778. #u87149_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. #u87149 {
  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. #u87149 .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. #u87149_text {
  6822. border-width:0px;
  6823. word-wrap:break-word;
  6824. text-transform:none;
  6825. }
  6826. #u87150_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. #u87150 {
  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. #u87150 .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. #u87150_text {
  6870. border-width:0px;
  6871. word-wrap:break-word;
  6872. text-transform:none;
  6873. }
  6874. #u87151_img {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:66px;
  6880. height:66px;
  6881. }
  6882. #u87151 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:1414px;
  6886. top:182px;
  6887. width:66px;
  6888. height:66px;
  6889. display:flex;
  6890. }
  6891. #u87151 .text {
  6892. position:absolute;
  6893. align-self:center;
  6894. padding:2px 2px 2px 2px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u87151_text {
  6899. border-width:0px;
  6900. word-wrap:break-word;
  6901. text-transform:none;
  6902. visibility:hidden;
  6903. }
  6904. #u87152 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:0px;
  6908. top:0px;
  6909. width:0px;
  6910. height:0px;
  6911. }
  6912. #u87153_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. #u87153 {
  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. #u87153 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:5px 10px 5px 10px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u87153_text {
  6961. border-width:0px;
  6962. word-wrap:break-word;
  6963. text-transform:none;
  6964. visibility:hidden;
  6965. }
  6966. #u87154_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. #u87154 {
  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. #u87154 .text {
  7004. position:absolute;
  7005. align-self:center;
  7006. padding:5px 10px 5px 0px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u87154_text {
  7011. border-width:0px;
  7012. white-space:nowrap;
  7013. text-transform:none;
  7014. }
  7015. #u87155 {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:1171px;
  7019. top:663px;
  7020. width:949px;
  7021. height:282px;
  7022. }
  7023. #u87156_img {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:69px;
  7029. height:35px;
  7030. }
  7031. #u87156 {
  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. #u87156 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:2px 2px 2px 0px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u87156_text {
  7053. border-width:0px;
  7054. word-wrap:break-word;
  7055. text-transform:none;
  7056. }
  7057. #u87157_img {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:0px;
  7061. top:0px;
  7062. width:149px;
  7063. height:35px;
  7064. }
  7065. #u87157 {
  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. #u87157 .text {
  7080. position:absolute;
  7081. align-self:center;
  7082. padding:2px 2px 2px 0px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u87157_text {
  7087. border-width:0px;
  7088. word-wrap:break-word;
  7089. text-transform:none;
  7090. }
  7091. #u87158_img {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:180px;
  7097. height:35px;
  7098. }
  7099. #u87158 {
  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. #u87158 .text {
  7114. position:absolute;
  7115. align-self:center;
  7116. padding:2px 2px 2px 0px;
  7117. box-sizing:border-box;
  7118. width:100%;
  7119. }
  7120. #u87158_text {
  7121. border-width:0px;
  7122. word-wrap:break-word;
  7123. text-transform:none;
  7124. }
  7125. #u87159_img {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:136px;
  7131. height:35px;
  7132. }
  7133. #u87159 {
  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. #u87159 .text {
  7148. position:absolute;
  7149. align-self:center;
  7150. padding:2px 2px 2px 0px;
  7151. box-sizing:border-box;
  7152. width:100%;
  7153. }
  7154. #u87159_text {
  7155. border-width:0px;
  7156. word-wrap:break-word;
  7157. text-transform:none;
  7158. }
  7159. #u87160_img {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:0px;
  7164. width:141px;
  7165. height:35px;
  7166. }
  7167. #u87160 {
  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. #u87160 .text {
  7182. position:absolute;
  7183. align-self:center;
  7184. padding:2px 2px 2px 0px;
  7185. box-sizing:border-box;
  7186. width:100%;
  7187. }
  7188. #u87160_text {
  7189. border-width:0px;
  7190. word-wrap:break-word;
  7191. text-transform:none;
  7192. }
  7193. #u87161_img {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:136px;
  7199. height:35px;
  7200. }
  7201. #u87161 {
  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. #u87161 .text {
  7216. position:absolute;
  7217. align-self:center;
  7218. padding:2px 2px 2px 0px;
  7219. box-sizing:border-box;
  7220. width:100%;
  7221. }
  7222. #u87161_text {
  7223. border-width:0px;
  7224. word-wrap:break-word;
  7225. text-transform:none;
  7226. }
  7227. #u87162_img {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:138px;
  7233. height:35px;
  7234. }
  7235. #u87162 {
  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. #u87162 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 2px 2px 0px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u87162_text {
  7257. border-width:0px;
  7258. word-wrap:break-word;
  7259. text-transform:none;
  7260. }
  7261. #u87163_img {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:69px;
  7267. height:38px;
  7268. }
  7269. #u87163 {
  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. #u87163 .text {
  7283. position:absolute;
  7284. align-self:center;
  7285. padding:2px 2px 2px 0px;
  7286. box-sizing:border-box;
  7287. width:100%;
  7288. }
  7289. #u87163_text {
  7290. border-width:0px;
  7291. word-wrap:break-word;
  7292. text-transform:none;
  7293. }
  7294. #u87164_img {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:149px;
  7300. height:38px;
  7301. }
  7302. #u87164 {
  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. #u87164 .text {
  7316. position:absolute;
  7317. align-self:center;
  7318. padding:2px 2px 2px 0px;
  7319. box-sizing:border-box;
  7320. width:100%;
  7321. }
  7322. #u87164_text {
  7323. border-width:0px;
  7324. word-wrap:break-word;
  7325. text-transform:none;
  7326. }
  7327. #u87165_img {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:180px;
  7333. height:38px;
  7334. }
  7335. #u87165 {
  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. #u87165 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:2px 2px 2px 0px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u87165_text {
  7356. border-width:0px;
  7357. word-wrap:break-word;
  7358. text-transform:none;
  7359. }
  7360. #u87166_img {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:136px;
  7366. height:38px;
  7367. }
  7368. #u87166 {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:398px;
  7372. top:35px;
  7373. width:136px;
  7374. height:38px;
  7375. display:flex;
  7376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7377. font-weight:400;
  7378. font-style:normal;
  7379. font-size:12px;
  7380. color:#333333;
  7381. }
  7382. #u87166 .text {
  7383. position:absolute;
  7384. align-self:center;
  7385. padding:2px 2px 2px 0px;
  7386. box-sizing:border-box;
  7387. width:100%;
  7388. }
  7389. #u87166_text {
  7390. border-width:0px;
  7391. word-wrap:break-word;
  7392. text-transform:none;
  7393. }
  7394. #u87167_img {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:141px;
  7400. height:38px;
  7401. }
  7402. #u87167 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:534px;
  7406. top:35px;
  7407. width:141px;
  7408. height:38px;
  7409. display:flex;
  7410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7411. font-weight:400;
  7412. font-style:normal;
  7413. font-size:12px;
  7414. color:#333333;
  7415. }
  7416. #u87167 .text {
  7417. position:absolute;
  7418. align-self:center;
  7419. padding:2px 2px 2px 0px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u87167_text {
  7424. border-width:0px;
  7425. word-wrap:break-word;
  7426. text-transform:none;
  7427. }
  7428. #u87168_img {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:136px;
  7434. height:38px;
  7435. }
  7436. #u87168 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:675px;
  7440. top:35px;
  7441. width:136px;
  7442. height:38px;
  7443. display:flex;
  7444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:12px;
  7448. color:#333333;
  7449. }
  7450. #u87168 .text {
  7451. position:absolute;
  7452. align-self:center;
  7453. padding:2px 2px 2px 0px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u87168_text {
  7458. border-width:0px;
  7459. word-wrap:break-word;
  7460. text-transform:none;
  7461. }
  7462. #u87169_img {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:138px;
  7468. height:38px;
  7469. }
  7470. #u87169 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:811px;
  7474. top:35px;
  7475. width:138px;
  7476. height:38px;
  7477. display:flex;
  7478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:12px;
  7482. color:#333333;
  7483. }
  7484. #u87169 .text {
  7485. position:absolute;
  7486. align-self:center;
  7487. padding:2px 2px 2px 0px;
  7488. box-sizing:border-box;
  7489. width:100%;
  7490. }
  7491. #u87169_text {
  7492. border-width:0px;
  7493. word-wrap:break-word;
  7494. text-transform:none;
  7495. visibility:hidden;
  7496. }
  7497. #u87170_img {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:69px;
  7503. height:38px;
  7504. }
  7505. #u87170 {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:0px;
  7509. top:73px;
  7510. width:69px;
  7511. height:38px;
  7512. display:flex;
  7513. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7514. font-weight:400;
  7515. font-style:normal;
  7516. font-size:12px;
  7517. color:#606266;
  7518. }
  7519. #u87170 .text {
  7520. position:absolute;
  7521. align-self:center;
  7522. padding:2px 2px 2px 0px;
  7523. box-sizing:border-box;
  7524. width:100%;
  7525. }
  7526. #u87170_text {
  7527. border-width:0px;
  7528. word-wrap:break-word;
  7529. text-transform:none;
  7530. }
  7531. #u87171_img {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:149px;
  7537. height:38px;
  7538. }
  7539. #u87171 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:69px;
  7543. top:73px;
  7544. width:149px;
  7545. height:38px;
  7546. display:flex;
  7547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:12px;
  7551. color:#606266;
  7552. }
  7553. #u87171 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 0px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u87171_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. visibility:hidden;
  7565. }
  7566. #u87172_img {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:180px;
  7572. height:38px;
  7573. }
  7574. #u87172 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:218px;
  7578. top:73px;
  7579. width:180px;
  7580. height:38px;
  7581. display:flex;
  7582. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:12px;
  7586. color:#606266;
  7587. }
  7588. #u87172 .text {
  7589. position:absolute;
  7590. align-self:center;
  7591. padding:2px 2px 2px 0px;
  7592. box-sizing:border-box;
  7593. width:100%;
  7594. }
  7595. #u87172_text {
  7596. border-width:0px;
  7597. word-wrap:break-word;
  7598. text-transform:none;
  7599. visibility:hidden;
  7600. }
  7601. #u87173_img {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:136px;
  7607. height:38px;
  7608. }
  7609. #u87173 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:398px;
  7613. top:73px;
  7614. width:136px;
  7615. height:38px;
  7616. display:flex;
  7617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. font-size:12px;
  7621. color:#606266;
  7622. }
  7623. #u87173 .text {
  7624. position:absolute;
  7625. align-self:center;
  7626. padding:2px 2px 2px 0px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u87173_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. }
  7635. #u87174_img {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:141px;
  7641. height:38px;
  7642. }
  7643. #u87174 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:534px;
  7647. top:73px;
  7648. width:141px;
  7649. height:38px;
  7650. display:flex;
  7651. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:12px;
  7655. text-decoration:underline ;
  7656. color:#333333;
  7657. }
  7658. #u87174 .text {
  7659. position:absolute;
  7660. align-self:center;
  7661. padding:2px 2px 2px 0px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u87174_text {
  7666. border-width:0px;
  7667. word-wrap:break-word;
  7668. text-transform:none;
  7669. visibility:hidden;
  7670. }
  7671. #u87175_img {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:136px;
  7677. height:38px;
  7678. }
  7679. #u87175 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:675px;
  7683. top:73px;
  7684. width:136px;
  7685. height:38px;
  7686. display:flex;
  7687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:12px;
  7691. text-decoration:underline ;
  7692. color:#333333;
  7693. }
  7694. #u87175 .text {
  7695. position:absolute;
  7696. align-self:center;
  7697. padding:2px 2px 2px 0px;
  7698. box-sizing:border-box;
  7699. width:100%;
  7700. }
  7701. #u87175_text {
  7702. border-width:0px;
  7703. word-wrap:break-word;
  7704. text-transform:none;
  7705. visibility:hidden;
  7706. }
  7707. #u87176_img {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:138px;
  7713. height:38px;
  7714. }
  7715. #u87176 {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:811px;
  7719. top:73px;
  7720. width:138px;
  7721. height:38px;
  7722. display:flex;
  7723. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7724. font-weight:400;
  7725. font-style:normal;
  7726. font-size:12px;
  7727. text-decoration:underline ;
  7728. color:#333333;
  7729. }
  7730. #u87176 .text {
  7731. position:absolute;
  7732. align-self:center;
  7733. padding:2px 2px 2px 0px;
  7734. box-sizing:border-box;
  7735. width:100%;
  7736. }
  7737. #u87176_text {
  7738. border-width:0px;
  7739. word-wrap:break-word;
  7740. text-transform:none;
  7741. visibility:hidden;
  7742. }
  7743. #u87177_img {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:0px;
  7747. top:0px;
  7748. width:69px;
  7749. height:35px;
  7750. }
  7751. #u87177 {
  7752. border-width:0px;
  7753. position:absolute;
  7754. left:0px;
  7755. top:111px;
  7756. width:69px;
  7757. height:35px;
  7758. display:flex;
  7759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7760. font-weight:400;
  7761. font-style:normal;
  7762. font-size:12px;
  7763. color:#606266;
  7764. }
  7765. #u87177 .text {
  7766. position:absolute;
  7767. align-self:center;
  7768. padding:2px 2px 2px 0px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u87177_text {
  7773. border-width:0px;
  7774. word-wrap:break-word;
  7775. text-transform:none;
  7776. }
  7777. #u87178_img {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:149px;
  7783. height:35px;
  7784. }
  7785. #u87178 {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:69px;
  7789. top:111px;
  7790. width:149px;
  7791. height:35px;
  7792. display:flex;
  7793. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7794. font-weight:400;
  7795. font-style:normal;
  7796. font-size:12px;
  7797. color:#606266;
  7798. }
  7799. #u87178 .text {
  7800. position:absolute;
  7801. align-self:center;
  7802. padding:2px 2px 2px 0px;
  7803. box-sizing:border-box;
  7804. width:100%;
  7805. }
  7806. #u87178_text {
  7807. border-width:0px;
  7808. word-wrap:break-word;
  7809. text-transform:none;
  7810. visibility:hidden;
  7811. }
  7812. #u87179_img {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:180px;
  7818. height:35px;
  7819. }
  7820. #u87179 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:218px;
  7824. top:111px;
  7825. width:180px;
  7826. height:35px;
  7827. display:flex;
  7828. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:12px;
  7832. color:#606266;
  7833. }
  7834. #u87179 .text {
  7835. position:absolute;
  7836. align-self:center;
  7837. padding:2px 2px 2px 0px;
  7838. box-sizing:border-box;
  7839. width:100%;
  7840. }
  7841. #u87179_text {
  7842. border-width:0px;
  7843. word-wrap:break-word;
  7844. text-transform:none;
  7845. visibility:hidden;
  7846. }
  7847. #u87180_img {
  7848. border-width:0px;
  7849. position:absolute;
  7850. left:0px;
  7851. top:0px;
  7852. width:136px;
  7853. height:35px;
  7854. }
  7855. #u87180 {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:398px;
  7859. top:111px;
  7860. width:136px;
  7861. height:35px;
  7862. display:flex;
  7863. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7864. font-weight:400;
  7865. font-style:normal;
  7866. font-size:12px;
  7867. color:#606266;
  7868. }
  7869. #u87180 .text {
  7870. position:absolute;
  7871. align-self:center;
  7872. padding:2px 2px 2px 0px;
  7873. box-sizing:border-box;
  7874. width:100%;
  7875. }
  7876. #u87180_text {
  7877. border-width:0px;
  7878. word-wrap:break-word;
  7879. text-transform:none;
  7880. visibility:hidden;
  7881. }
  7882. #u87181_img {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:0px;
  7886. top:0px;
  7887. width:141px;
  7888. height:35px;
  7889. }
  7890. #u87181 {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:534px;
  7894. top:111px;
  7895. width:141px;
  7896. height:35px;
  7897. display:flex;
  7898. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7899. font-weight:400;
  7900. font-style:normal;
  7901. font-size:12px;
  7902. text-decoration:underline ;
  7903. color:#333333;
  7904. }
  7905. #u87181 .text {
  7906. position:absolute;
  7907. align-self:center;
  7908. padding:2px 2px 2px 0px;
  7909. box-sizing:border-box;
  7910. width:100%;
  7911. }
  7912. #u87181_text {
  7913. border-width:0px;
  7914. word-wrap:break-word;
  7915. text-transform:none;
  7916. visibility:hidden;
  7917. }
  7918. #u87182_img {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:0px;
  7922. top:0px;
  7923. width:136px;
  7924. height:35px;
  7925. }
  7926. #u87182 {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:675px;
  7930. top:111px;
  7931. width:136px;
  7932. height:35px;
  7933. display:flex;
  7934. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7935. font-weight:400;
  7936. font-style:normal;
  7937. font-size:12px;
  7938. text-decoration:underline ;
  7939. color:#333333;
  7940. }
  7941. #u87182 .text {
  7942. position:absolute;
  7943. align-self:center;
  7944. padding:2px 2px 2px 0px;
  7945. box-sizing:border-box;
  7946. width:100%;
  7947. }
  7948. #u87182_text {
  7949. border-width:0px;
  7950. word-wrap:break-word;
  7951. text-transform:none;
  7952. visibility:hidden;
  7953. }
  7954. #u87183_img {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:0px;
  7958. top:0px;
  7959. width:138px;
  7960. height:35px;
  7961. }
  7962. #u87183 {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:811px;
  7966. top:111px;
  7967. width:138px;
  7968. height:35px;
  7969. display:flex;
  7970. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7971. font-weight:400;
  7972. font-style:normal;
  7973. font-size:12px;
  7974. text-decoration:underline ;
  7975. color:#333333;
  7976. }
  7977. #u87183 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:2px 2px 2px 0px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u87183_text {
  7985. border-width:0px;
  7986. word-wrap:break-word;
  7987. text-transform:none;
  7988. visibility:hidden;
  7989. }
  7990. #u87184_img {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:0px;
  7994. top:0px;
  7995. width:69px;
  7996. height:35px;
  7997. }
  7998. #u87184 {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:0px;
  8002. top:146px;
  8003. width:69px;
  8004. height:35px;
  8005. display:flex;
  8006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8007. font-weight:400;
  8008. font-style:normal;
  8009. font-size:12px;
  8010. color:#606266;
  8011. }
  8012. #u87184 .text {
  8013. position:absolute;
  8014. align-self:center;
  8015. padding:2px 2px 2px 0px;
  8016. box-sizing:border-box;
  8017. width:100%;
  8018. }
  8019. #u87184_text {
  8020. border-width:0px;
  8021. word-wrap:break-word;
  8022. text-transform:none;
  8023. }
  8024. #u87185_img {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:0px;
  8028. top:0px;
  8029. width:149px;
  8030. height:35px;
  8031. }
  8032. #u87185 {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:69px;
  8036. top:146px;
  8037. width:149px;
  8038. height:35px;
  8039. display:flex;
  8040. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8041. font-weight:400;
  8042. font-style:normal;
  8043. font-size:12px;
  8044. color:#606266;
  8045. }
  8046. #u87185 .text {
  8047. position:absolute;
  8048. align-self:center;
  8049. padding:2px 2px 2px 0px;
  8050. box-sizing:border-box;
  8051. width:100%;
  8052. }
  8053. #u87185_text {
  8054. border-width:0px;
  8055. word-wrap:break-word;
  8056. text-transform:none;
  8057. visibility:hidden;
  8058. }
  8059. #u87186_img {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:0px;
  8063. top:0px;
  8064. width:180px;
  8065. height:35px;
  8066. }
  8067. #u87186 {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:218px;
  8071. top:146px;
  8072. width:180px;
  8073. height:35px;
  8074. display:flex;
  8075. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8076. font-weight:400;
  8077. font-style:normal;
  8078. font-size:12px;
  8079. color:#606266;
  8080. }
  8081. #u87186 .text {
  8082. position:absolute;
  8083. align-self:center;
  8084. padding:2px 2px 2px 0px;
  8085. box-sizing:border-box;
  8086. width:100%;
  8087. }
  8088. #u87186_text {
  8089. border-width:0px;
  8090. word-wrap:break-word;
  8091. text-transform:none;
  8092. visibility:hidden;
  8093. }
  8094. #u87187_img {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:0px;
  8098. top:0px;
  8099. width:136px;
  8100. height:35px;
  8101. }
  8102. #u87187 {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:398px;
  8106. top:146px;
  8107. width:136px;
  8108. height:35px;
  8109. display:flex;
  8110. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8111. font-weight:400;
  8112. font-style:normal;
  8113. font-size:12px;
  8114. color:#606266;
  8115. }
  8116. #u87187 .text {
  8117. position:absolute;
  8118. align-self:center;
  8119. padding:2px 2px 2px 0px;
  8120. box-sizing:border-box;
  8121. width:100%;
  8122. }
  8123. #u87187_text {
  8124. border-width:0px;
  8125. word-wrap:break-word;
  8126. text-transform:none;
  8127. visibility:hidden;
  8128. }
  8129. #u87188_img {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:0px;
  8133. top:0px;
  8134. width:141px;
  8135. height:35px;
  8136. }
  8137. #u87188 {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:534px;
  8141. top:146px;
  8142. width:141px;
  8143. height:35px;
  8144. display:flex;
  8145. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8146. font-weight:400;
  8147. font-style:normal;
  8148. font-size:12px;
  8149. text-decoration:underline ;
  8150. color:#333333;
  8151. }
  8152. #u87188 .text {
  8153. position:absolute;
  8154. align-self:center;
  8155. padding:2px 2px 2px 0px;
  8156. box-sizing:border-box;
  8157. width:100%;
  8158. }
  8159. #u87188_text {
  8160. border-width:0px;
  8161. word-wrap:break-word;
  8162. text-transform:none;
  8163. visibility:hidden;
  8164. }
  8165. #u87189_img {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:0px;
  8169. top:0px;
  8170. width:136px;
  8171. height:35px;
  8172. }
  8173. #u87189 {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:675px;
  8177. top:146px;
  8178. width:136px;
  8179. height:35px;
  8180. display:flex;
  8181. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8182. font-weight:400;
  8183. font-style:normal;
  8184. font-size:12px;
  8185. text-decoration:underline ;
  8186. color:#333333;
  8187. }
  8188. #u87189 .text {
  8189. position:absolute;
  8190. align-self:center;
  8191. padding:2px 2px 2px 0px;
  8192. box-sizing:border-box;
  8193. width:100%;
  8194. }
  8195. #u87189_text {
  8196. border-width:0px;
  8197. word-wrap:break-word;
  8198. text-transform:none;
  8199. visibility:hidden;
  8200. }
  8201. #u87190_img {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:138px;
  8207. height:35px;
  8208. }
  8209. #u87190 {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:811px;
  8213. top:146px;
  8214. width:138px;
  8215. height:35px;
  8216. display:flex;
  8217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8218. font-weight:400;
  8219. font-style:normal;
  8220. font-size:12px;
  8221. text-decoration:underline ;
  8222. color:#333333;
  8223. }
  8224. #u87190 .text {
  8225. position:absolute;
  8226. align-self:center;
  8227. padding:2px 2px 2px 0px;
  8228. box-sizing:border-box;
  8229. width:100%;
  8230. }
  8231. #u87190_text {
  8232. border-width:0px;
  8233. word-wrap:break-word;
  8234. text-transform:none;
  8235. visibility:hidden;
  8236. }
  8237. #u87191_img {
  8238. border-width:0px;
  8239. position:absolute;
  8240. left:0px;
  8241. top:0px;
  8242. width:69px;
  8243. height:35px;
  8244. }
  8245. #u87191 {
  8246. border-width:0px;
  8247. position:absolute;
  8248. left:0px;
  8249. top:181px;
  8250. width:69px;
  8251. height:35px;
  8252. display:flex;
  8253. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8254. font-weight:400;
  8255. font-style:normal;
  8256. font-size:12px;
  8257. color:#606266;
  8258. }
  8259. #u87191 .text {
  8260. position:absolute;
  8261. align-self:center;
  8262. padding:2px 2px 2px 0px;
  8263. box-sizing:border-box;
  8264. width:100%;
  8265. }
  8266. #u87191_text {
  8267. border-width:0px;
  8268. word-wrap:break-word;
  8269. text-transform:none;
  8270. visibility:hidden;
  8271. }
  8272. #u87192_img {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:0px;
  8276. top:0px;
  8277. width:149px;
  8278. height:35px;
  8279. }
  8280. #u87192 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:69px;
  8284. top:181px;
  8285. width:149px;
  8286. height:35px;
  8287. display:flex;
  8288. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8289. font-weight:400;
  8290. font-style:normal;
  8291. font-size:12px;
  8292. color:#606266;
  8293. }
  8294. #u87192 .text {
  8295. position:absolute;
  8296. align-self:center;
  8297. padding:2px 2px 2px 0px;
  8298. box-sizing:border-box;
  8299. width:100%;
  8300. }
  8301. #u87192_text {
  8302. border-width:0px;
  8303. word-wrap:break-word;
  8304. text-transform:none;
  8305. visibility:hidden;
  8306. }
  8307. #u87193_img {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:0px;
  8311. top:0px;
  8312. width:180px;
  8313. height:35px;
  8314. }
  8315. #u87193 {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:218px;
  8319. top:181px;
  8320. width:180px;
  8321. height:35px;
  8322. display:flex;
  8323. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8324. font-weight:400;
  8325. font-style:normal;
  8326. font-size:12px;
  8327. color:#606266;
  8328. }
  8329. #u87193 .text {
  8330. position:absolute;
  8331. align-self:center;
  8332. padding:2px 2px 2px 0px;
  8333. box-sizing:border-box;
  8334. width:100%;
  8335. }
  8336. #u87193_text {
  8337. border-width:0px;
  8338. word-wrap:break-word;
  8339. text-transform:none;
  8340. visibility:hidden;
  8341. }
  8342. #u87194_img {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:0px;
  8346. top:0px;
  8347. width:136px;
  8348. height:35px;
  8349. }
  8350. #u87194 {
  8351. border-width:0px;
  8352. position:absolute;
  8353. left:398px;
  8354. top:181px;
  8355. width:136px;
  8356. height:35px;
  8357. display:flex;
  8358. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8359. font-weight:400;
  8360. font-style:normal;
  8361. font-size:12px;
  8362. color:#606266;
  8363. }
  8364. #u87194 .text {
  8365. position:absolute;
  8366. align-self:center;
  8367. padding:2px 2px 2px 0px;
  8368. box-sizing:border-box;
  8369. width:100%;
  8370. }
  8371. #u87194_text {
  8372. border-width:0px;
  8373. word-wrap:break-word;
  8374. text-transform:none;
  8375. visibility:hidden;
  8376. }
  8377. #u87195_img {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:0px;
  8382. width:141px;
  8383. height:35px;
  8384. }
  8385. #u87195 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:534px;
  8389. top:181px;
  8390. width:141px;
  8391. height:35px;
  8392. display:flex;
  8393. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8394. font-weight:400;
  8395. font-style:normal;
  8396. font-size:12px;
  8397. text-decoration:underline ;
  8398. color:#333333;
  8399. }
  8400. #u87195 .text {
  8401. position:absolute;
  8402. align-self:center;
  8403. padding:2px 2px 2px 0px;
  8404. box-sizing:border-box;
  8405. width:100%;
  8406. }
  8407. #u87195_text {
  8408. border-width:0px;
  8409. word-wrap:break-word;
  8410. text-transform:none;
  8411. visibility:hidden;
  8412. }
  8413. #u87196_img {
  8414. border-width:0px;
  8415. position:absolute;
  8416. left:0px;
  8417. top:0px;
  8418. width:136px;
  8419. height:35px;
  8420. }
  8421. #u87196 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:675px;
  8425. top:181px;
  8426. width:136px;
  8427. height:35px;
  8428. display:flex;
  8429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8430. font-weight:400;
  8431. font-style:normal;
  8432. font-size:12px;
  8433. text-decoration:underline ;
  8434. color:#333333;
  8435. }
  8436. #u87196 .text {
  8437. position:absolute;
  8438. align-self:center;
  8439. padding:2px 2px 2px 0px;
  8440. box-sizing:border-box;
  8441. width:100%;
  8442. }
  8443. #u87196_text {
  8444. border-width:0px;
  8445. word-wrap:break-word;
  8446. text-transform:none;
  8447. visibility:hidden;
  8448. }
  8449. #u87197_img {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:0px;
  8453. top:0px;
  8454. width:138px;
  8455. height:35px;
  8456. }
  8457. #u87197 {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:811px;
  8461. top:181px;
  8462. width:138px;
  8463. height:35px;
  8464. display:flex;
  8465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:12px;
  8469. text-decoration:underline ;
  8470. color:#333333;
  8471. }
  8472. #u87197 .text {
  8473. position:absolute;
  8474. align-self:center;
  8475. padding:2px 2px 2px 0px;
  8476. box-sizing:border-box;
  8477. width:100%;
  8478. }
  8479. #u87197_text {
  8480. border-width:0px;
  8481. word-wrap:break-word;
  8482. text-transform:none;
  8483. visibility:hidden;
  8484. }
  8485. #u87198_img {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:0px;
  8489. top:0px;
  8490. width:69px;
  8491. height:35px;
  8492. }
  8493. #u87198 {
  8494. border-width:0px;
  8495. position:absolute;
  8496. left:0px;
  8497. top:216px;
  8498. width:69px;
  8499. height:35px;
  8500. display:flex;
  8501. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8502. font-weight:400;
  8503. font-style:normal;
  8504. font-size:12px;
  8505. color:#606266;
  8506. }
  8507. #u87198 .text {
  8508. position:absolute;
  8509. align-self:center;
  8510. padding:2px 2px 2px 0px;
  8511. box-sizing:border-box;
  8512. width:100%;
  8513. }
  8514. #u87198_text {
  8515. border-width:0px;
  8516. word-wrap:break-word;
  8517. text-transform:none;
  8518. visibility:hidden;
  8519. }
  8520. #u87199_img {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:149px;
  8526. height:35px;
  8527. }
  8528. #u87199 {
  8529. border-width:0px;
  8530. position:absolute;
  8531. left:69px;
  8532. top:216px;
  8533. width:149px;
  8534. height:35px;
  8535. display:flex;
  8536. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8537. font-weight:400;
  8538. font-style:normal;
  8539. font-size:12px;
  8540. color:#606266;
  8541. }
  8542. #u87199 .text {
  8543. position:absolute;
  8544. align-self:center;
  8545. padding:2px 2px 2px 0px;
  8546. box-sizing:border-box;
  8547. width:100%;
  8548. }
  8549. #u87199_text {
  8550. border-width:0px;
  8551. word-wrap:break-word;
  8552. text-transform:none;
  8553. visibility:hidden;
  8554. }
  8555. #u87200_img {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:180px;
  8561. height:35px;
  8562. }
  8563. #u87200 {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:218px;
  8567. top:216px;
  8568. width:180px;
  8569. height:35px;
  8570. display:flex;
  8571. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8572. font-weight:400;
  8573. font-style:normal;
  8574. font-size:12px;
  8575. color:#606266;
  8576. }
  8577. #u87200 .text {
  8578. position:absolute;
  8579. align-self:center;
  8580. padding:2px 2px 2px 0px;
  8581. box-sizing:border-box;
  8582. width:100%;
  8583. }
  8584. #u87200_text {
  8585. border-width:0px;
  8586. word-wrap:break-word;
  8587. text-transform:none;
  8588. visibility:hidden;
  8589. }
  8590. #u87201_img {
  8591. border-width:0px;
  8592. position:absolute;
  8593. left:0px;
  8594. top:0px;
  8595. width:136px;
  8596. height:35px;
  8597. }
  8598. #u87201 {
  8599. border-width:0px;
  8600. position:absolute;
  8601. left:398px;
  8602. top:216px;
  8603. width:136px;
  8604. height:35px;
  8605. display:flex;
  8606. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8607. font-weight:400;
  8608. font-style:normal;
  8609. font-size:12px;
  8610. color:#606266;
  8611. }
  8612. #u87201 .text {
  8613. position:absolute;
  8614. align-self:center;
  8615. padding:2px 2px 2px 0px;
  8616. box-sizing:border-box;
  8617. width:100%;
  8618. }
  8619. #u87201_text {
  8620. border-width:0px;
  8621. word-wrap:break-word;
  8622. text-transform:none;
  8623. visibility:hidden;
  8624. }
  8625. #u87202_img {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:0px;
  8629. top:0px;
  8630. width:141px;
  8631. height:35px;
  8632. }
  8633. #u87202 {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:534px;
  8637. top:216px;
  8638. width:141px;
  8639. height:35px;
  8640. display:flex;
  8641. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. font-size:12px;
  8645. text-decoration:underline ;
  8646. color:#333333;
  8647. }
  8648. #u87202 .text {
  8649. position:absolute;
  8650. align-self:center;
  8651. padding:2px 2px 2px 0px;
  8652. box-sizing:border-box;
  8653. width:100%;
  8654. }
  8655. #u87202_text {
  8656. border-width:0px;
  8657. word-wrap:break-word;
  8658. text-transform:none;
  8659. visibility:hidden;
  8660. }
  8661. #u87203_img {
  8662. border-width:0px;
  8663. position:absolute;
  8664. left:0px;
  8665. top:0px;
  8666. width:136px;
  8667. height:35px;
  8668. }
  8669. #u87203 {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:675px;
  8673. top:216px;
  8674. width:136px;
  8675. height:35px;
  8676. display:flex;
  8677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:12px;
  8681. text-decoration:underline ;
  8682. color:#333333;
  8683. }
  8684. #u87203 .text {
  8685. position:absolute;
  8686. align-self:center;
  8687. padding:2px 2px 2px 0px;
  8688. box-sizing:border-box;
  8689. width:100%;
  8690. }
  8691. #u87203_text {
  8692. border-width:0px;
  8693. word-wrap:break-word;
  8694. text-transform:none;
  8695. visibility:hidden;
  8696. }
  8697. #u87204_img {
  8698. border-width:0px;
  8699. position:absolute;
  8700. left:0px;
  8701. top:0px;
  8702. width:138px;
  8703. height:35px;
  8704. }
  8705. #u87204 {
  8706. border-width:0px;
  8707. position:absolute;
  8708. left:811px;
  8709. top:216px;
  8710. width:138px;
  8711. height:35px;
  8712. display:flex;
  8713. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8714. font-weight:400;
  8715. font-style:normal;
  8716. font-size:12px;
  8717. text-decoration:underline ;
  8718. color:#333333;
  8719. }
  8720. #u87204 .text {
  8721. position:absolute;
  8722. align-self:center;
  8723. padding:2px 2px 2px 0px;
  8724. box-sizing:border-box;
  8725. width:100%;
  8726. }
  8727. #u87204_text {
  8728. border-width:0px;
  8729. word-wrap:break-word;
  8730. text-transform:none;
  8731. visibility:hidden;
  8732. }
  8733. #u87205_img {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:0px;
  8737. top:0px;
  8738. width:69px;
  8739. height:31px;
  8740. }
  8741. #u87205 {
  8742. border-width:0px;
  8743. position:absolute;
  8744. left:0px;
  8745. top:251px;
  8746. width:69px;
  8747. height:31px;
  8748. display:flex;
  8749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8750. font-weight:400;
  8751. font-style:normal;
  8752. font-size:12px;
  8753. color:#606266;
  8754. }
  8755. #u87205 .text {
  8756. position:absolute;
  8757. align-self:center;
  8758. padding:2px 2px 2px 0px;
  8759. box-sizing:border-box;
  8760. width:100%;
  8761. }
  8762. #u87205_text {
  8763. border-width:0px;
  8764. word-wrap:break-word;
  8765. text-transform:none;
  8766. visibility:hidden;
  8767. }
  8768. #u87206_img {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:149px;
  8774. height:31px;
  8775. }
  8776. #u87206 {
  8777. border-width:0px;
  8778. position:absolute;
  8779. left:69px;
  8780. top:251px;
  8781. width:149px;
  8782. height:31px;
  8783. display:flex;
  8784. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8785. font-weight:400;
  8786. font-style:normal;
  8787. font-size:12px;
  8788. color:#606266;
  8789. }
  8790. #u87206 .text {
  8791. position:absolute;
  8792. align-self:center;
  8793. padding:2px 2px 2px 0px;
  8794. box-sizing:border-box;
  8795. width:100%;
  8796. }
  8797. #u87206_text {
  8798. border-width:0px;
  8799. word-wrap:break-word;
  8800. text-transform:none;
  8801. visibility:hidden;
  8802. }
  8803. #u87207_img {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:0px;
  8807. top:0px;
  8808. width:180px;
  8809. height:31px;
  8810. }
  8811. #u87207 {
  8812. border-width:0px;
  8813. position:absolute;
  8814. left:218px;
  8815. top:251px;
  8816. width:180px;
  8817. height:31px;
  8818. display:flex;
  8819. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8820. font-weight:400;
  8821. font-style:normal;
  8822. font-size:12px;
  8823. color:#606266;
  8824. }
  8825. #u87207 .text {
  8826. position:absolute;
  8827. align-self:center;
  8828. padding:2px 2px 2px 0px;
  8829. box-sizing:border-box;
  8830. width:100%;
  8831. }
  8832. #u87207_text {
  8833. border-width:0px;
  8834. word-wrap:break-word;
  8835. text-transform:none;
  8836. visibility:hidden;
  8837. }
  8838. #u87208_img {
  8839. border-width:0px;
  8840. position:absolute;
  8841. left:0px;
  8842. top:0px;
  8843. width:136px;
  8844. height:31px;
  8845. }
  8846. #u87208 {
  8847. border-width:0px;
  8848. position:absolute;
  8849. left:398px;
  8850. top:251px;
  8851. width:136px;
  8852. height:31px;
  8853. display:flex;
  8854. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8855. font-weight:400;
  8856. font-style:normal;
  8857. font-size:12px;
  8858. color:#606266;
  8859. }
  8860. #u87208 .text {
  8861. position:absolute;
  8862. align-self:center;
  8863. padding:2px 2px 2px 0px;
  8864. box-sizing:border-box;
  8865. width:100%;
  8866. }
  8867. #u87208_text {
  8868. border-width:0px;
  8869. word-wrap:break-word;
  8870. text-transform:none;
  8871. visibility:hidden;
  8872. }
  8873. #u87209_img {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:0px;
  8877. top:0px;
  8878. width:141px;
  8879. height:31px;
  8880. }
  8881. #u87209 {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:534px;
  8885. top:251px;
  8886. width:141px;
  8887. height:31px;
  8888. display:flex;
  8889. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8890. font-weight:400;
  8891. font-style:normal;
  8892. font-size:12px;
  8893. text-decoration:underline ;
  8894. color:#333333;
  8895. }
  8896. #u87209 .text {
  8897. position:absolute;
  8898. align-self:center;
  8899. padding:2px 2px 2px 0px;
  8900. box-sizing:border-box;
  8901. width:100%;
  8902. }
  8903. #u87209_text {
  8904. border-width:0px;
  8905. word-wrap:break-word;
  8906. text-transform:none;
  8907. visibility:hidden;
  8908. }
  8909. #u87210_img {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:0px;
  8913. top:0px;
  8914. width:136px;
  8915. height:31px;
  8916. }
  8917. #u87210 {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:675px;
  8921. top:251px;
  8922. width:136px;
  8923. height:31px;
  8924. display:flex;
  8925. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8926. font-weight:400;
  8927. font-style:normal;
  8928. font-size:12px;
  8929. text-decoration:underline ;
  8930. color:#333333;
  8931. }
  8932. #u87210 .text {
  8933. position:absolute;
  8934. align-self:center;
  8935. padding:2px 2px 2px 0px;
  8936. box-sizing:border-box;
  8937. width:100%;
  8938. }
  8939. #u87210_text {
  8940. border-width:0px;
  8941. word-wrap:break-word;
  8942. text-transform:none;
  8943. visibility:hidden;
  8944. }
  8945. #u87211_img {
  8946. border-width:0px;
  8947. position:absolute;
  8948. left:0px;
  8949. top:0px;
  8950. width:138px;
  8951. height:31px;
  8952. }
  8953. #u87211 {
  8954. border-width:0px;
  8955. position:absolute;
  8956. left:811px;
  8957. top:251px;
  8958. width:138px;
  8959. height:31px;
  8960. display:flex;
  8961. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8962. font-weight:400;
  8963. font-style:normal;
  8964. font-size:12px;
  8965. text-decoration:underline ;
  8966. color:#333333;
  8967. }
  8968. #u87211 .text {
  8969. position:absolute;
  8970. align-self:center;
  8971. padding:2px 2px 2px 0px;
  8972. box-sizing:border-box;
  8973. width:100%;
  8974. }
  8975. #u87211_text {
  8976. border-width:0px;
  8977. word-wrap:break-word;
  8978. text-transform:none;
  8979. visibility:hidden;
  8980. }
  8981. #u87212_div {
  8982. border-width:0px;
  8983. position:absolute;
  8984. left:0px;
  8985. top:0px;
  8986. width:55px;
  8987. height:30px;
  8988. background:inherit;
  8989. background-color:rgba(255, 255, 255, 1);
  8990. box-sizing:border-box;
  8991. border-width:1px;
  8992. border-style:solid;
  8993. border-color:rgba(170, 170, 170, 1);
  8994. border-radius:4px;
  8995. -moz-box-shadow:none;
  8996. -webkit-box-shadow:none;
  8997. box-shadow:none;
  8998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8999. font-weight:400;
  9000. font-style:normal;
  9001. font-size:12px;
  9002. color:#555555;
  9003. }
  9004. #u87212 {
  9005. border-width:0px;
  9006. position:absolute;
  9007. left:2065px;
  9008. top:583px;
  9009. width:55px;
  9010. height:30px;
  9011. display:flex;
  9012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9013. font-weight:400;
  9014. font-style:normal;
  9015. font-size:12px;
  9016. color:#555555;
  9017. }
  9018. #u87212 .text {
  9019. position:absolute;
  9020. align-self:center;
  9021. padding:5px 15px 5px 15px;
  9022. box-sizing:border-box;
  9023. width:100%;
  9024. }
  9025. #u87212_text {
  9026. border-width:0px;
  9027. white-space:nowrap;
  9028. text-transform:none;
  9029. }
  9030. #u87213_div {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:0px;
  9034. top:0px;
  9035. width:55px;
  9036. height:30px;
  9037. background:inherit;
  9038. background-color:rgba(255, 255, 255, 1);
  9039. box-sizing:border-box;
  9040. border-width:1px;
  9041. border-style:solid;
  9042. border-color:rgba(170, 170, 170, 1);
  9043. border-radius:4px;
  9044. -moz-box-shadow:none;
  9045. -webkit-box-shadow:none;
  9046. box-shadow:none;
  9047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9048. font-weight:400;
  9049. font-style:normal;
  9050. font-size:12px;
  9051. color:#555555;
  9052. }
  9053. #u87213 {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:1691px;
  9057. top:623px;
  9058. width:55px;
  9059. height:30px;
  9060. display:flex;
  9061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9062. font-weight:400;
  9063. font-style:normal;
  9064. font-size:12px;
  9065. color:#555555;
  9066. }
  9067. #u87213 .text {
  9068. position:absolute;
  9069. align-self:center;
  9070. padding:5px 15px 5px 15px;
  9071. box-sizing:border-box;
  9072. width:100%;
  9073. }
  9074. #u87213_text {
  9075. border-width:0px;
  9076. white-space:nowrap;
  9077. text-transform:none;
  9078. }
  9079. #u87214_div {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:0px;
  9083. top:0px;
  9084. width:83px;
  9085. height:35px;
  9086. background:inherit;
  9087. background-color:rgba(255, 255, 255, 0);
  9088. border:none;
  9089. border-top:0px;
  9090. border-right:0px;
  9091. border-bottom:0px;
  9092. border-radius:0px;
  9093. border-top-left-radius:0px;
  9094. border-bottom-left-radius:0px;
  9095. -moz-box-shadow:none;
  9096. -webkit-box-shadow:none;
  9097. box-shadow:none;
  9098. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9099. font-weight:500;
  9100. font-style:normal;
  9101. font-size:18px;
  9102. color:#298FFF;
  9103. }
  9104. #u87214 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:1278px;
  9108. top:578px;
  9109. width:83px;
  9110. height:35px;
  9111. display:flex;
  9112. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9113. font-weight:500;
  9114. font-style:normal;
  9115. font-size:18px;
  9116. color:#298FFF;
  9117. }
  9118. #u87214 .text {
  9119. position:absolute;
  9120. align-self:center;
  9121. padding:5px 10px 5px 0px;
  9122. box-sizing:border-box;
  9123. width:100%;
  9124. }
  9125. #u87214_text {
  9126. border-width:0px;
  9127. white-space:nowrap;
  9128. text-transform:none;
  9129. }
  9130. #u87215_div {
  9131. border-width:0px;
  9132. position:absolute;
  9133. left:0px;
  9134. top:0px;
  9135. width:59px;
  9136. height:30px;
  9137. background:inherit;
  9138. background-color:rgba(41, 143, 255, 1);
  9139. border:none;
  9140. border-radius:4px;
  9141. -moz-box-shadow:none;
  9142. -webkit-box-shadow:none;
  9143. box-shadow:none;
  9144. font-family:'Microsoft YaHei', sans-serif;
  9145. font-weight:400;
  9146. font-style:normal;
  9147. font-size:14px;
  9148. color:#FFFFFF;
  9149. }
  9150. #u87215 {
  9151. border-width:0px;
  9152. position:absolute;
  9153. left:1622px;
  9154. top:623px;
  9155. width:59px;
  9156. height:30px;
  9157. display:flex;
  9158. font-family:'Microsoft YaHei', sans-serif;
  9159. font-weight:400;
  9160. font-style:normal;
  9161. font-size:14px;
  9162. color:#FFFFFF;
  9163. }
  9164. #u87215 .text {
  9165. position:absolute;
  9166. align-self:center;
  9167. padding:5px 15px 5px 15px;
  9168. box-sizing:border-box;
  9169. width:100%;
  9170. }
  9171. #u87215_text {
  9172. border-width:0px;
  9173. white-space:nowrap;
  9174. text-transform:none;
  9175. }
  9176. #u87216 {
  9177. border-width:0px;
  9178. position:absolute;
  9179. left:0px;
  9180. top:0px;
  9181. width:0px;
  9182. height:0px;
  9183. }
  9184. #u87217_div {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:0px;
  9188. top:0px;
  9189. width:140px;
  9190. height:30px;
  9191. background:inherit;
  9192. background-color:rgba(255, 255, 255, 1);
  9193. box-sizing:border-box;
  9194. border-width:1px;
  9195. border-style:solid;
  9196. border-color:rgba(215, 215, 215, 1);
  9197. border-radius:4px;
  9198. -moz-box-shadow:none;
  9199. -webkit-box-shadow:none;
  9200. box-shadow:none;
  9201. font-size:11px;
  9202. }
  9203. #u87217 {
  9204. border-width:0px;
  9205. position:absolute;
  9206. left:1172px;
  9207. top:623px;
  9208. width:140px;
  9209. height:30px;
  9210. display:flex;
  9211. font-size:11px;
  9212. }
  9213. #u87217 .text {
  9214. position:absolute;
  9215. align-self:center;
  9216. padding:2px 2px 2px 2px;
  9217. box-sizing:border-box;
  9218. width:100%;
  9219. }
  9220. #u87217_text {
  9221. border-width:0px;
  9222. word-wrap:break-word;
  9223. text-transform:none;
  9224. visibility:hidden;
  9225. }
  9226. #u87218_input {
  9227. position:absolute;
  9228. left:0px;
  9229. top:0px;
  9230. width:120px;
  9231. height:23px;
  9232. padding:2px 2px 2px 2px;
  9233. font-family:'ArialMT', 'Arial', sans-serif;
  9234. font-weight:400;
  9235. font-style:normal;
  9236. font-size:11px;
  9237. letter-spacing:normal;
  9238. color:#AAAAAA;
  9239. vertical-align:none;
  9240. text-align:left;
  9241. text-transform:none;
  9242. background-color:transparent;
  9243. border-color:transparent;
  9244. }
  9245. #u87218_input.disabled {
  9246. position:absolute;
  9247. left:0px;
  9248. top:0px;
  9249. width:120px;
  9250. height:23px;
  9251. padding:2px 2px 2px 2px;
  9252. font-family:'ArialMT', 'Arial', sans-serif;
  9253. font-weight:400;
  9254. font-style:normal;
  9255. font-size:11px;
  9256. letter-spacing:normal;
  9257. color:#AAAAAA;
  9258. vertical-align:none;
  9259. text-align:left;
  9260. text-transform:none;
  9261. background-color:transparent;
  9262. border-color:transparent;
  9263. }
  9264. #u87218_div {
  9265. border-width:0px;
  9266. position:absolute;
  9267. left:0px;
  9268. top:0px;
  9269. width:120px;
  9270. height:23px;
  9271. background:inherit;
  9272. background-color:rgba(255, 255, 255, 1);
  9273. border:none;
  9274. border-radius:0px;
  9275. -moz-box-shadow:none;
  9276. -webkit-box-shadow:none;
  9277. box-shadow:none;
  9278. font-size:11px;
  9279. color:#AAAAAA;
  9280. }
  9281. #u87218 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:1179px;
  9285. top:625px;
  9286. width:120px;
  9287. height:23px;
  9288. display:flex;
  9289. font-size:11px;
  9290. color:#AAAAAA;
  9291. }
  9292. #u87218 .text {
  9293. position:absolute;
  9294. align-self:flex-start;
  9295. padding:2px 2px 2px 2px;
  9296. box-sizing:border-box;
  9297. width:100%;
  9298. }
  9299. #u87218_div.disabled {
  9300. border-width:0px;
  9301. position:absolute;
  9302. left:0px;
  9303. top:0px;
  9304. width:120px;
  9305. height:23px;
  9306. background:inherit;
  9307. background-color:rgba(240, 240, 240, 1);
  9308. border:none;
  9309. border-radius:0px;
  9310. -moz-box-shadow:none;
  9311. -webkit-box-shadow:none;
  9312. box-shadow:none;
  9313. font-size:11px;
  9314. color:#AAAAAA;
  9315. }
  9316. #u87218.disabled {
  9317. }
  9318. .u87218_input_option {
  9319. font-size:11px;
  9320. }
  9321. #u87219 {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:0px;
  9325. top:0px;
  9326. width:0px;
  9327. height:0px;
  9328. }
  9329. #u87220_div {
  9330. border-width:0px;
  9331. position:absolute;
  9332. left:0px;
  9333. top:0px;
  9334. width:140px;
  9335. height:30px;
  9336. background:inherit;
  9337. background-color:rgba(255, 255, 255, 1);
  9338. box-sizing:border-box;
  9339. border-width:1px;
  9340. border-style:solid;
  9341. border-color:rgba(215, 215, 215, 1);
  9342. border-radius:4px;
  9343. -moz-box-shadow:none;
  9344. -webkit-box-shadow:none;
  9345. box-shadow:none;
  9346. font-size:11px;
  9347. }
  9348. #u87220 {
  9349. border-width:0px;
  9350. position:absolute;
  9351. left:1322px;
  9352. top:623px;
  9353. width:140px;
  9354. height:30px;
  9355. display:flex;
  9356. font-size:11px;
  9357. }
  9358. #u87220 .text {
  9359. position:absolute;
  9360. align-self:center;
  9361. padding:2px 2px 2px 2px;
  9362. box-sizing:border-box;
  9363. width:100%;
  9364. }
  9365. #u87220_text {
  9366. border-width:0px;
  9367. word-wrap:break-word;
  9368. text-transform:none;
  9369. visibility:hidden;
  9370. }
  9371. #u87221_input {
  9372. position:absolute;
  9373. left:0px;
  9374. top:0px;
  9375. width:120px;
  9376. height:23px;
  9377. padding:2px 2px 2px 2px;
  9378. font-family:'ArialMT', 'Arial', sans-serif;
  9379. font-weight:400;
  9380. font-style:normal;
  9381. font-size:11px;
  9382. letter-spacing:normal;
  9383. color:#AAAAAA;
  9384. vertical-align:none;
  9385. text-align:left;
  9386. text-transform:none;
  9387. background-color:transparent;
  9388. border-color:transparent;
  9389. }
  9390. #u87221_input.disabled {
  9391. position:absolute;
  9392. left:0px;
  9393. top:0px;
  9394. width:120px;
  9395. height:23px;
  9396. padding:2px 2px 2px 2px;
  9397. font-family:'ArialMT', 'Arial', sans-serif;
  9398. font-weight:400;
  9399. font-style:normal;
  9400. font-size:11px;
  9401. letter-spacing:normal;
  9402. color:#AAAAAA;
  9403. vertical-align:none;
  9404. text-align:left;
  9405. text-transform:none;
  9406. background-color:transparent;
  9407. border-color:transparent;
  9408. }
  9409. #u87221_div {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:0px;
  9413. top:0px;
  9414. width:120px;
  9415. height:23px;
  9416. background:inherit;
  9417. background-color:rgba(255, 255, 255, 1);
  9418. border:none;
  9419. border-radius:0px;
  9420. -moz-box-shadow:none;
  9421. -webkit-box-shadow:none;
  9422. box-shadow:none;
  9423. font-size:11px;
  9424. color:#AAAAAA;
  9425. }
  9426. #u87221 {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:1329px;
  9430. top:625px;
  9431. width:120px;
  9432. height:23px;
  9433. display:flex;
  9434. font-size:11px;
  9435. color:#AAAAAA;
  9436. }
  9437. #u87221 .text {
  9438. position:absolute;
  9439. align-self:flex-start;
  9440. padding:2px 2px 2px 2px;
  9441. box-sizing:border-box;
  9442. width:100%;
  9443. }
  9444. #u87221_div.disabled {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:0px;
  9448. top:0px;
  9449. width:120px;
  9450. height:23px;
  9451. background:inherit;
  9452. background-color:rgba(240, 240, 240, 1);
  9453. border:none;
  9454. border-radius:0px;
  9455. -moz-box-shadow:none;
  9456. -webkit-box-shadow:none;
  9457. box-shadow:none;
  9458. font-size:11px;
  9459. color:#AAAAAA;
  9460. }
  9461. #u87221.disabled {
  9462. }
  9463. .u87221_input_option {
  9464. font-size:11px;
  9465. }
  9466. #u87222 {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:0px;
  9470. top:0px;
  9471. width:0px;
  9472. height:0px;
  9473. }
  9474. #u87223_div {
  9475. border-width:0px;
  9476. position:absolute;
  9477. left:0px;
  9478. top:0px;
  9479. width:140px;
  9480. height:30px;
  9481. background:inherit;
  9482. background-color:rgba(255, 255, 255, 1);
  9483. box-sizing:border-box;
  9484. border-width:1px;
  9485. border-style:solid;
  9486. border-color:rgba(215, 215, 215, 1);
  9487. border-radius:4px;
  9488. -moz-box-shadow:none;
  9489. -webkit-box-shadow:none;
  9490. box-shadow:none;
  9491. font-size:11px;
  9492. }
  9493. #u87223 {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:1472px;
  9497. top:623px;
  9498. width:140px;
  9499. height:30px;
  9500. display:flex;
  9501. font-size:11px;
  9502. }
  9503. #u87223 .text {
  9504. position:absolute;
  9505. align-self:center;
  9506. padding:2px 2px 2px 2px;
  9507. box-sizing:border-box;
  9508. width:100%;
  9509. }
  9510. #u87223_text {
  9511. border-width:0px;
  9512. word-wrap:break-word;
  9513. text-transform:none;
  9514. visibility:hidden;
  9515. }
  9516. #u87224_input {
  9517. position:absolute;
  9518. left:0px;
  9519. top:0px;
  9520. width:120px;
  9521. height:23px;
  9522. padding:2px 2px 2px 2px;
  9523. font-family:'ArialMT', 'Arial', sans-serif;
  9524. font-weight:400;
  9525. font-style:normal;
  9526. font-size:11px;
  9527. letter-spacing:normal;
  9528. color:#AAAAAA;
  9529. vertical-align:none;
  9530. text-align:left;
  9531. text-transform:none;
  9532. background-color:transparent;
  9533. border-color:transparent;
  9534. }
  9535. #u87224_input.disabled {
  9536. position:absolute;
  9537. left:0px;
  9538. top:0px;
  9539. width:120px;
  9540. height:23px;
  9541. padding:2px 2px 2px 2px;
  9542. font-family:'ArialMT', 'Arial', sans-serif;
  9543. font-weight:400;
  9544. font-style:normal;
  9545. font-size:11px;
  9546. letter-spacing:normal;
  9547. color:#AAAAAA;
  9548. vertical-align:none;
  9549. text-align:left;
  9550. text-transform:none;
  9551. background-color:transparent;
  9552. border-color:transparent;
  9553. }
  9554. #u87224_div {
  9555. border-width:0px;
  9556. position:absolute;
  9557. left:0px;
  9558. top:0px;
  9559. width:120px;
  9560. height:23px;
  9561. background:inherit;
  9562. background-color:rgba(255, 255, 255, 1);
  9563. border:none;
  9564. border-radius:0px;
  9565. -moz-box-shadow:none;
  9566. -webkit-box-shadow:none;
  9567. box-shadow:none;
  9568. font-size:11px;
  9569. color:#AAAAAA;
  9570. }
  9571. #u87224 {
  9572. border-width:0px;
  9573. position:absolute;
  9574. left:1479px;
  9575. top:625px;
  9576. width:120px;
  9577. height:23px;
  9578. display:flex;
  9579. font-size:11px;
  9580. color:#AAAAAA;
  9581. }
  9582. #u87224 .text {
  9583. position:absolute;
  9584. align-self:flex-start;
  9585. padding:2px 2px 2px 2px;
  9586. box-sizing:border-box;
  9587. width:100%;
  9588. }
  9589. #u87224_div.disabled {
  9590. border-width:0px;
  9591. position:absolute;
  9592. left:0px;
  9593. top:0px;
  9594. width:120px;
  9595. height:23px;
  9596. background:inherit;
  9597. background-color:rgba(240, 240, 240, 1);
  9598. border:none;
  9599. border-radius:0px;
  9600. -moz-box-shadow:none;
  9601. -webkit-box-shadow:none;
  9602. box-shadow:none;
  9603. font-size:11px;
  9604. color:#AAAAAA;
  9605. }
  9606. #u87224.disabled {
  9607. }
  9608. .u87224_input_option {
  9609. font-size:11px;
  9610. }
  9611. #u87225_div {
  9612. border-width:0px;
  9613. position:absolute;
  9614. left:0px;
  9615. top:0px;
  9616. width:841px;
  9617. height:40px;
  9618. background:inherit;
  9619. background-color:rgba(255, 255, 255, 0);
  9620. border:none;
  9621. border-top:0px;
  9622. border-right:0px;
  9623. border-bottom:0px;
  9624. border-radius:0px;
  9625. border-top-left-radius:0px;
  9626. border-bottom-left-radius:0px;
  9627. -moz-box-shadow:none;
  9628. -webkit-box-shadow:none;
  9629. box-shadow:none;
  9630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9631. font-weight:400;
  9632. font-style:normal;
  9633. line-height:40px;
  9634. }
  9635. #u87225 {
  9636. border-width:0px;
  9637. position:absolute;
  9638. left:1267px;
  9639. top:477px;
  9640. width:841px;
  9641. height:40px;
  9642. display:flex;
  9643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9644. font-weight:400;
  9645. font-style:normal;
  9646. line-height:40px;
  9647. }
  9648. #u87225 .text {
  9649. position:absolute;
  9650. align-self:flex-start;
  9651. padding:0px 0px 0px 0px;
  9652. box-sizing:border-box;
  9653. width:100%;
  9654. }
  9655. #u87225_text {
  9656. border-width:0px;
  9657. white-space:nowrap;
  9658. text-transform:none;
  9659. }
  9660. #u87226_div {
  9661. border-width:0px;
  9662. position:absolute;
  9663. left:0px;
  9664. top:0px;
  9665. width:71px;
  9666. height:40px;
  9667. background:inherit;
  9668. background-color:rgba(255, 255, 255, 0);
  9669. border:none;
  9670. border-top:0px;
  9671. border-right:0px;
  9672. border-bottom:0px;
  9673. border-radius:0px;
  9674. border-top-left-radius:0px;
  9675. border-bottom-left-radius:0px;
  9676. -moz-box-shadow:none;
  9677. -webkit-box-shadow:none;
  9678. box-shadow:none;
  9679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9680. font-weight:500;
  9681. font-style:normal;
  9682. }
  9683. #u87226 {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:1172px;
  9687. top:337px;
  9688. width:71px;
  9689. height:40px;
  9690. display:flex;
  9691. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9692. font-weight:500;
  9693. font-style:normal;
  9694. }
  9695. #u87226 .text {
  9696. position:absolute;
  9697. align-self:center;
  9698. padding:0px 0px 0px 0px;
  9699. box-sizing:border-box;
  9700. width:100%;
  9701. }
  9702. #u87226_text {
  9703. border-width:0px;
  9704. white-space:nowrap;
  9705. text-transform:none;
  9706. }
  9707. #u87227 {
  9708. border-width:0px;
  9709. position:absolute;
  9710. left:0px;
  9711. top:0px;
  9712. width:0px;
  9713. height:0px;
  9714. }
  9715. #u87228_div {
  9716. border-width:0px;
  9717. position:absolute;
  9718. left:0px;
  9719. top:0px;
  9720. width:1000px;
  9721. height:60px;
  9722. background:inherit;
  9723. background-color:rgba(255, 255, 255, 1);
  9724. box-sizing:border-box;
  9725. border-width:1px;
  9726. border-style:solid;
  9727. border-color:rgba(215, 215, 215, 1);
  9728. border-radius:0px;
  9729. -moz-box-shadow:none;
  9730. -webkit-box-shadow:none;
  9731. box-shadow:none;
  9732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9733. font-weight:400;
  9734. font-style:normal;
  9735. font-size:14px;
  9736. color:#AAAAAA;
  9737. text-align:center;
  9738. line-height:30px;
  9739. }
  9740. #u87228 {
  9741. border-width:0px;
  9742. position:absolute;
  9743. left:1144px;
  9744. top:1190px;
  9745. width:1000px;
  9746. height:60px;
  9747. display:flex;
  9748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9749. font-weight:400;
  9750. font-style:normal;
  9751. font-size:14px;
  9752. color:#AAAAAA;
  9753. text-align:center;
  9754. line-height:30px;
  9755. }
  9756. #u87228 .text {
  9757. position:absolute;
  9758. align-self:center;
  9759. padding:5px 10px 5px 10px;
  9760. box-sizing:border-box;
  9761. width:100%;
  9762. }
  9763. #u87228_text {
  9764. border-width:0px;
  9765. word-wrap:break-word;
  9766. text-transform:none;
  9767. visibility:hidden;
  9768. }
  9769. #u87229_div {
  9770. border-width:0px;
  9771. position:absolute;
  9772. left:0px;
  9773. top:0px;
  9774. width:79px;
  9775. height:30px;
  9776. background:inherit;
  9777. background-color:rgba(255, 255, 255, 1);
  9778. box-sizing:border-box;
  9779. border-width:1px;
  9780. border-style:solid;
  9781. border-color:rgba(170, 170, 170, 1);
  9782. border-radius:4px;
  9783. -moz-box-shadow:none;
  9784. -webkit-box-shadow:none;
  9785. box-shadow:none;
  9786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9787. font-weight:400;
  9788. font-style:normal;
  9789. font-size:14px;
  9790. }
  9791. #u87229 {
  9792. border-width:0px;
  9793. position:absolute;
  9794. left:2025px;
  9795. top:1205px;
  9796. width:79px;
  9797. height:30px;
  9798. display:flex;
  9799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9800. font-weight:400;
  9801. font-style:normal;
  9802. font-size:14px;
  9803. }
  9804. #u87229 .text {
  9805. position:absolute;
  9806. align-self:center;
  9807. padding:2px 2px 2px 2px;
  9808. box-sizing:border-box;
  9809. width:100%;
  9810. }
  9811. #u87229_text {
  9812. border-width:0px;
  9813. word-wrap:break-word;
  9814. text-transform:none;
  9815. }
  9816. #u87230_div {
  9817. border-width:0px;
  9818. position:absolute;
  9819. left:0px;
  9820. top:0px;
  9821. width:71px;
  9822. height:40px;
  9823. background:inherit;
  9824. background-color:rgba(255, 255, 255, 0);
  9825. border:none;
  9826. border-top:0px;
  9827. border-right:0px;
  9828. border-bottom:0px;
  9829. border-radius:0px;
  9830. border-top-left-radius:0px;
  9831. border-bottom-left-radius:0px;
  9832. -moz-box-shadow:none;
  9833. -webkit-box-shadow:none;
  9834. box-shadow:none;
  9835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9836. font-weight:400;
  9837. font-style:normal;
  9838. color:#7F7F7F;
  9839. line-height:40px;
  9840. }
  9841. #u87230 {
  9842. border-width:0px;
  9843. position:absolute;
  9844. left:1537px;
  9845. top:235px;
  9846. width:71px;
  9847. height:40px;
  9848. display:flex;
  9849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9850. font-weight:400;
  9851. font-style:normal;
  9852. color:#7F7F7F;
  9853. line-height:40px;
  9854. }
  9855. #u87230 .text {
  9856. position:absolute;
  9857. align-self:center;
  9858. padding:0px 0px 0px 0px;
  9859. box-sizing:border-box;
  9860. width:100%;
  9861. }
  9862. #u87230_text {
  9863. border-width:0px;
  9864. white-space:nowrap;
  9865. text-transform:none;
  9866. }
  9867. #u87231_div {
  9868. border-width:0px;
  9869. position:absolute;
  9870. left:0px;
  9871. top:0px;
  9872. width:29px;
  9873. height:40px;
  9874. background:inherit;
  9875. background-color:rgba(255, 255, 255, 0);
  9876. border:none;
  9877. border-top:0px;
  9878. border-right:0px;
  9879. border-bottom:0px;
  9880. border-radius:0px;
  9881. border-top-left-radius:0px;
  9882. border-bottom-left-radius:0px;
  9883. -moz-box-shadow:none;
  9884. -webkit-box-shadow:none;
  9885. box-shadow:none;
  9886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9887. font-weight:400;
  9888. font-style:normal;
  9889. line-height:40px;
  9890. }
  9891. #u87231 {
  9892. border-width:0px;
  9893. position:absolute;
  9894. left:1607px;
  9895. top:235px;
  9896. width:29px;
  9897. height:40px;
  9898. display:flex;
  9899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9900. font-weight:400;
  9901. font-style:normal;
  9902. line-height:40px;
  9903. }
  9904. #u87231 .text {
  9905. position:absolute;
  9906. align-self:center;
  9907. padding:0px 0px 0px 0px;
  9908. box-sizing:border-box;
  9909. width:100%;
  9910. }
  9911. #u87231_text {
  9912. border-width:0px;
  9913. white-space:nowrap;
  9914. text-transform:none;
  9915. }
  9916. #u87232_div {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:0px;
  9920. top:0px;
  9921. width:71px;
  9922. height:40px;
  9923. background:inherit;
  9924. background-color:rgba(255, 255, 255, 0);
  9925. border:none;
  9926. border-top:0px;
  9927. border-right:0px;
  9928. border-bottom:0px;
  9929. border-radius:0px;
  9930. border-top-left-radius:0px;
  9931. border-bottom-left-radius:0px;
  9932. -moz-box-shadow:none;
  9933. -webkit-box-shadow:none;
  9934. box-shadow:none;
  9935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9936. font-weight:400;
  9937. font-style:normal;
  9938. color:#7F7F7F;
  9939. line-height:40px;
  9940. }
  9941. #u87232 {
  9942. border-width:0px;
  9943. position:absolute;
  9944. left:1835px;
  9945. top:235px;
  9946. width:71px;
  9947. height:40px;
  9948. display:flex;
  9949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9950. font-weight:400;
  9951. font-style:normal;
  9952. color:#7F7F7F;
  9953. line-height:40px;
  9954. }
  9955. #u87232 .text {
  9956. position:absolute;
  9957. align-self:center;
  9958. padding:0px 0px 0px 0px;
  9959. box-sizing:border-box;
  9960. width:100%;
  9961. }
  9962. #u87232_text {
  9963. border-width:0px;
  9964. white-space:nowrap;
  9965. text-transform:none;
  9966. }
  9967. #u87233_div {
  9968. border-width:0px;
  9969. position:absolute;
  9970. left:0px;
  9971. top:0px;
  9972. width:141px;
  9973. height:40px;
  9974. background:inherit;
  9975. background-color:rgba(255, 255, 255, 0);
  9976. border:none;
  9977. border-top:0px;
  9978. border-right:0px;
  9979. border-bottom:0px;
  9980. border-radius:0px;
  9981. border-top-left-radius:0px;
  9982. border-bottom-left-radius:0px;
  9983. -moz-box-shadow:none;
  9984. -webkit-box-shadow:none;
  9985. box-shadow:none;
  9986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9987. font-weight:400;
  9988. font-style:normal;
  9989. line-height:40px;
  9990. }
  9991. #u87233 {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:1906px;
  9995. top:235px;
  9996. width:141px;
  9997. height:40px;
  9998. display:flex;
  9999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10000. font-weight:400;
  10001. font-style:normal;
  10002. line-height:40px;
  10003. }
  10004. #u87233 .text {
  10005. position:absolute;
  10006. align-self:center;
  10007. padding:0px 0px 0px 0px;
  10008. box-sizing:border-box;
  10009. width:100%;
  10010. }
  10011. #u87233_text {
  10012. border-width:0px;
  10013. white-space:nowrap;
  10014. text-transform:none;
  10015. }
  10016. #u87234_div {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:0px;
  10020. top:0px;
  10021. width:43px;
  10022. height:40px;
  10023. background:inherit;
  10024. background-color:rgba(255, 255, 255, 0);
  10025. border:none;
  10026. border-top:0px;
  10027. border-right:0px;
  10028. border-bottom:0px;
  10029. border-radius:0px;
  10030. border-top-left-radius:0px;
  10031. border-bottom-left-radius:0px;
  10032. -moz-box-shadow:none;
  10033. -webkit-box-shadow:none;
  10034. box-shadow:none;
  10035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10036. font-weight:400;
  10037. font-style:normal;
  10038. color:#7F7F7F;
  10039. line-height:40px;
  10040. }
  10041. #u87234 {
  10042. border-width:0px;
  10043. position:absolute;
  10044. left:1537px;
  10045. top:275px;
  10046. width:43px;
  10047. height:40px;
  10048. display:flex;
  10049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10050. font-weight:400;
  10051. font-style:normal;
  10052. color:#7F7F7F;
  10053. line-height:40px;
  10054. }
  10055. #u87234 .text {
  10056. position:absolute;
  10057. align-self:center;
  10058. padding:0px 0px 0px 0px;
  10059. box-sizing:border-box;
  10060. width:100%;
  10061. }
  10062. #u87234_text {
  10063. border-width:0px;
  10064. white-space:nowrap;
  10065. text-transform:none;
  10066. }
  10067. #u87235_div {
  10068. border-width:0px;
  10069. position:absolute;
  10070. left:0px;
  10071. top:0px;
  10072. width:29px;
  10073. height:40px;
  10074. background:inherit;
  10075. background-color:rgba(255, 255, 255, 0);
  10076. border:none;
  10077. border-top:0px;
  10078. border-right:0px;
  10079. border-bottom:0px;
  10080. border-radius:0px;
  10081. border-top-left-radius:0px;
  10082. border-bottom-left-radius:0px;
  10083. -moz-box-shadow:none;
  10084. -webkit-box-shadow:none;
  10085. box-shadow:none;
  10086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10087. font-weight:400;
  10088. font-style:normal;
  10089. line-height:40px;
  10090. }
  10091. #u87235 {
  10092. border-width:0px;
  10093. position:absolute;
  10094. left:1607px;
  10095. top:275px;
  10096. width:29px;
  10097. height:40px;
  10098. display:flex;
  10099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10100. font-weight:400;
  10101. font-style:normal;
  10102. line-height:40px;
  10103. }
  10104. #u87235 .text {
  10105. position:absolute;
  10106. align-self:center;
  10107. padding:0px 0px 0px 0px;
  10108. box-sizing:border-box;
  10109. width:100%;
  10110. }
  10111. #u87235_text {
  10112. border-width:0px;
  10113. white-space:nowrap;
  10114. text-transform:none;
  10115. }
  10116. #u87236_div {
  10117. border-width:0px;
  10118. position:absolute;
  10119. left:0px;
  10120. top:0px;
  10121. width:57px;
  10122. height:40px;
  10123. background:inherit;
  10124. background-color:rgba(255, 255, 255, 0);
  10125. border:none;
  10126. border-top:0px;
  10127. border-right:0px;
  10128. border-bottom:0px;
  10129. border-radius:0px;
  10130. border-top-left-radius:0px;
  10131. border-bottom-left-radius:0px;
  10132. -moz-box-shadow:none;
  10133. -webkit-box-shadow:none;
  10134. box-shadow:none;
  10135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10136. font-weight:400;
  10137. font-style:normal;
  10138. color:#7F7F7F;
  10139. line-height:40px;
  10140. }
  10141. #u87236 {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:1835px;
  10145. top:275px;
  10146. width:57px;
  10147. height:40px;
  10148. display:flex;
  10149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10150. font-weight:400;
  10151. font-style:normal;
  10152. color:#7F7F7F;
  10153. line-height:40px;
  10154. }
  10155. #u87236 .text {
  10156. position:absolute;
  10157. align-self:center;
  10158. padding:0px 0px 0px 0px;
  10159. box-sizing:border-box;
  10160. width:100%;
  10161. }
  10162. #u87236_text {
  10163. border-width:0px;
  10164. white-space:nowrap;
  10165. text-transform:none;
  10166. }
  10167. #u87237_div {
  10168. border-width:0px;
  10169. position:absolute;
  10170. left:0px;
  10171. top:0px;
  10172. width:82px;
  10173. height:40px;
  10174. background:inherit;
  10175. background-color:rgba(255, 255, 255, 0);
  10176. border:none;
  10177. border-top:0px;
  10178. border-right:0px;
  10179. border-bottom:0px;
  10180. border-radius:0px;
  10181. border-top-left-radius:0px;
  10182. border-bottom-left-radius:0px;
  10183. -moz-box-shadow:none;
  10184. -webkit-box-shadow:none;
  10185. box-shadow:none;
  10186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10187. font-weight:400;
  10188. font-style:normal;
  10189. line-height:40px;
  10190. }
  10191. #u87237 {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:1906px;
  10195. top:275px;
  10196. width:82px;
  10197. height:40px;
  10198. display:flex;
  10199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10200. font-weight:400;
  10201. font-style:normal;
  10202. line-height:40px;
  10203. }
  10204. #u87237 .text {
  10205. position:absolute;
  10206. align-self:center;
  10207. padding:0px 0px 0px 0px;
  10208. box-sizing:border-box;
  10209. width:100%;
  10210. }
  10211. #u87237_text {
  10212. border-width:0px;
  10213. white-space:nowrap;
  10214. text-transform:none;
  10215. }
  10216. #u87238_div {
  10217. border-width:0px;
  10218. position:absolute;
  10219. left:0px;
  10220. top:0px;
  10221. width:57px;
  10222. height:40px;
  10223. background:inherit;
  10224. background-color:rgba(255, 255, 255, 0);
  10225. border:none;
  10226. border-top:0px;
  10227. border-right:0px;
  10228. border-bottom:0px;
  10229. border-radius:0px;
  10230. border-top-left-radius:0px;
  10231. border-bottom-left-radius:0px;
  10232. -moz-box-shadow:none;
  10233. -webkit-box-shadow:none;
  10234. box-shadow:none;
  10235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10236. font-weight:400;
  10237. font-style:normal;
  10238. color:#7F7F7F;
  10239. line-height:40px;
  10240. }
  10241. #u87238 {
  10242. border-width:0px;
  10243. position:absolute;
  10244. left:1835px;
  10245. top:155px;
  10246. width:57px;
  10247. height:40px;
  10248. display:flex;
  10249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10250. font-weight:400;
  10251. font-style:normal;
  10252. color:#7F7F7F;
  10253. line-height:40px;
  10254. }
  10255. #u87238 .text {
  10256. position:absolute;
  10257. align-self:center;
  10258. padding:0px 0px 0px 0px;
  10259. box-sizing:border-box;
  10260. width:100%;
  10261. }
  10262. #u87238_text {
  10263. border-width:0px;
  10264. white-space:nowrap;
  10265. text-transform:none;
  10266. }
  10267. #u87239_div {
  10268. border-width:0px;
  10269. position:absolute;
  10270. left:0px;
  10271. top:0px;
  10272. width:117px;
  10273. height:40px;
  10274. background:inherit;
  10275. background-color:rgba(255, 255, 255, 0);
  10276. border:none;
  10277. border-top:0px;
  10278. border-right:0px;
  10279. border-bottom:0px;
  10280. border-radius:0px;
  10281. border-top-left-radius:0px;
  10282. border-bottom-left-radius:0px;
  10283. -moz-box-shadow:none;
  10284. -webkit-box-shadow:none;
  10285. box-shadow:none;
  10286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. line-height:40px;
  10290. }
  10291. #u87239 {
  10292. border-width:0px;
  10293. position:absolute;
  10294. left:1906px;
  10295. top:155px;
  10296. width:117px;
  10297. height:40px;
  10298. display:flex;
  10299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10300. font-weight:400;
  10301. font-style:normal;
  10302. line-height:40px;
  10303. }
  10304. #u87239 .text {
  10305. position:absolute;
  10306. align-self:center;
  10307. padding:0px 0px 0px 0px;
  10308. box-sizing:border-box;
  10309. width:100%;
  10310. }
  10311. #u87239_text {
  10312. border-width:0px;
  10313. white-space:nowrap;
  10314. text-transform:none;
  10315. }
  10316. #u87240_div {
  10317. border-width:0px;
  10318. position:absolute;
  10319. left:0px;
  10320. top:0px;
  10321. width:57px;
  10322. height:40px;
  10323. background:inherit;
  10324. background-color:rgba(255, 255, 255, 0);
  10325. border:none;
  10326. border-top:0px;
  10327. border-right:0px;
  10328. border-bottom:0px;
  10329. border-radius:0px;
  10330. border-top-left-radius:0px;
  10331. border-bottom-left-radius:0px;
  10332. -moz-box-shadow:none;
  10333. -webkit-box-shadow:none;
  10334. box-shadow:none;
  10335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10336. font-weight:400;
  10337. font-style:normal;
  10338. color:#7F7F7F;
  10339. line-height:40px;
  10340. }
  10341. #u87240 {
  10342. border-width:0px;
  10343. position:absolute;
  10344. left:1537px;
  10345. top:155px;
  10346. width:57px;
  10347. height:40px;
  10348. display:flex;
  10349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10350. font-weight:400;
  10351. font-style:normal;
  10352. color:#7F7F7F;
  10353. line-height:40px;
  10354. }
  10355. #u87240 .text {
  10356. position:absolute;
  10357. align-self:center;
  10358. padding:0px 0px 0px 0px;
  10359. box-sizing:border-box;
  10360. width:100%;
  10361. }
  10362. #u87240_text {
  10363. border-width:0px;
  10364. white-space:nowrap;
  10365. text-transform:none;
  10366. }
  10367. #u87241_div {
  10368. border-width:0px;
  10369. position:absolute;
  10370. left:0px;
  10371. top:0px;
  10372. width:85px;
  10373. height:40px;
  10374. background:inherit;
  10375. background-color:rgba(255, 255, 255, 0);
  10376. border:none;
  10377. border-top:0px;
  10378. border-right:0px;
  10379. border-bottom:0px;
  10380. border-radius:0px;
  10381. border-top-left-radius:0px;
  10382. border-bottom-left-radius:0px;
  10383. -moz-box-shadow:none;
  10384. -webkit-box-shadow:none;
  10385. box-shadow:none;
  10386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10387. font-weight:400;
  10388. font-style:normal;
  10389. line-height:40px;
  10390. }
  10391. #u87241 {
  10392. border-width:0px;
  10393. position:absolute;
  10394. left:1607px;
  10395. top:155px;
  10396. width:85px;
  10397. height:40px;
  10398. display:flex;
  10399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10400. font-weight:400;
  10401. font-style:normal;
  10402. line-height:40px;
  10403. }
  10404. #u87241 .text {
  10405. position:absolute;
  10406. align-self:center;
  10407. padding:0px 0px 0px 0px;
  10408. box-sizing:border-box;
  10409. width:100%;
  10410. }
  10411. #u87241_text {
  10412. border-width:0px;
  10413. white-space:nowrap;
  10414. text-transform:none;
  10415. }
  10416. #u87242_div {
  10417. border-width:0px;
  10418. position:absolute;
  10419. left:0px;
  10420. top:0px;
  10421. width:43px;
  10422. height:40px;
  10423. background:inherit;
  10424. background-color:rgba(255, 255, 255, 0);
  10425. border:none;
  10426. border-top:0px;
  10427. border-right:0px;
  10428. border-bottom:0px;
  10429. border-radius:0px;
  10430. border-top-left-radius:0px;
  10431. border-bottom-left-radius:0px;
  10432. -moz-box-shadow:none;
  10433. -webkit-box-shadow:none;
  10434. box-shadow:none;
  10435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10436. font-weight:400;
  10437. font-style:normal;
  10438. color:#7F7F7F;
  10439. line-height:40px;
  10440. }
  10441. #u87242 {
  10442. border-width:0px;
  10443. position:absolute;
  10444. left:1537px;
  10445. top:195px;
  10446. width:43px;
  10447. height:40px;
  10448. display:flex;
  10449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10450. font-weight:400;
  10451. font-style:normal;
  10452. color:#7F7F7F;
  10453. line-height:40px;
  10454. }
  10455. #u87242 .text {
  10456. position:absolute;
  10457. align-self:center;
  10458. padding:0px 0px 0px 0px;
  10459. box-sizing:border-box;
  10460. width:100%;
  10461. }
  10462. #u87242_text {
  10463. border-width:0px;
  10464. white-space:nowrap;
  10465. text-transform:none;
  10466. }
  10467. #u87243_div {
  10468. border-width:0px;
  10469. position:absolute;
  10470. left:0px;
  10471. top:0px;
  10472. width:57px;
  10473. height:40px;
  10474. background:inherit;
  10475. background-color:rgba(255, 255, 255, 0);
  10476. border:none;
  10477. border-top:0px;
  10478. border-right:0px;
  10479. border-bottom:0px;
  10480. border-radius:0px;
  10481. border-top-left-radius:0px;
  10482. border-bottom-left-radius:0px;
  10483. -moz-box-shadow:none;
  10484. -webkit-box-shadow:none;
  10485. box-shadow:none;
  10486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10487. font-weight:400;
  10488. font-style:normal;
  10489. line-height:40px;
  10490. }
  10491. #u87243 {
  10492. border-width:0px;
  10493. position:absolute;
  10494. left:1607px;
  10495. top:195px;
  10496. width:57px;
  10497. height:40px;
  10498. display:flex;
  10499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10500. font-weight:400;
  10501. font-style:normal;
  10502. line-height:40px;
  10503. }
  10504. #u87243 .text {
  10505. position:absolute;
  10506. align-self:center;
  10507. padding:0px 0px 0px 0px;
  10508. box-sizing:border-box;
  10509. width:100%;
  10510. }
  10511. #u87243_text {
  10512. border-width:0px;
  10513. white-space:nowrap;
  10514. text-transform:none;
  10515. }
  10516. #u87244_div {
  10517. border-width:0px;
  10518. position:absolute;
  10519. left:0px;
  10520. top:0px;
  10521. width:57px;
  10522. height:40px;
  10523. background:inherit;
  10524. background-color:rgba(255, 255, 255, 0);
  10525. border:none;
  10526. border-top:0px;
  10527. border-right:0px;
  10528. border-bottom:0px;
  10529. border-radius:0px;
  10530. border-top-left-radius:0px;
  10531. border-bottom-left-radius:0px;
  10532. -moz-box-shadow:none;
  10533. -webkit-box-shadow:none;
  10534. box-shadow:none;
  10535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10536. font-weight:400;
  10537. font-style:normal;
  10538. color:#7F7F7F;
  10539. line-height:40px;
  10540. }
  10541. #u87244 {
  10542. border-width:0px;
  10543. position:absolute;
  10544. left:1835px;
  10545. top:195px;
  10546. width:57px;
  10547. height:40px;
  10548. display:flex;
  10549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10550. font-weight:400;
  10551. font-style:normal;
  10552. color:#7F7F7F;
  10553. line-height:40px;
  10554. }
  10555. #u87244 .text {
  10556. position:absolute;
  10557. align-self:center;
  10558. padding:0px 0px 0px 0px;
  10559. box-sizing:border-box;
  10560. width:100%;
  10561. }
  10562. #u87244_text {
  10563. border-width:0px;
  10564. white-space:nowrap;
  10565. text-transform:none;
  10566. }
  10567. #u87245_div {
  10568. border-width:0px;
  10569. position:absolute;
  10570. left:0px;
  10571. top:0px;
  10572. width:197px;
  10573. height:40px;
  10574. background:inherit;
  10575. background-color:rgba(255, 255, 255, 0);
  10576. border:none;
  10577. border-top:0px;
  10578. border-right:0px;
  10579. border-bottom:0px;
  10580. border-radius:0px;
  10581. border-top-left-radius:0px;
  10582. border-bottom-left-radius:0px;
  10583. -moz-box-shadow:none;
  10584. -webkit-box-shadow:none;
  10585. box-shadow:none;
  10586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10587. font-weight:400;
  10588. font-style:normal;
  10589. line-height:40px;
  10590. }
  10591. #u87245 {
  10592. border-width:0px;
  10593. position:absolute;
  10594. left:1906px;
  10595. top:195px;
  10596. width:197px;
  10597. height:40px;
  10598. display:flex;
  10599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10600. font-weight:400;
  10601. font-style:normal;
  10602. line-height:40px;
  10603. }
  10604. #u87245 .text {
  10605. position:absolute;
  10606. align-self:center;
  10607. padding:0px 0px 0px 0px;
  10608. box-sizing:border-box;
  10609. width:100%;
  10610. }
  10611. #u87245_text {
  10612. border-width:0px;
  10613. white-space:nowrap;
  10614. text-transform:none;
  10615. }
  10616. #u87246 {
  10617. border-width:0px;
  10618. position:absolute;
  10619. left:0px;
  10620. top:0px;
  10621. width:0px;
  10622. height:0px;
  10623. }
  10624. #u87247_div {
  10625. border-width:0px;
  10626. position:absolute;
  10627. left:0px;
  10628. top:0px;
  10629. width:40px;
  10630. height:40px;
  10631. background:inherit;
  10632. background-color:rgba(255, 255, 255, 0);
  10633. border:none;
  10634. border-top:0px;
  10635. border-right:0px;
  10636. border-bottom:0px;
  10637. border-radius:0px;
  10638. border-top-left-radius:0px;
  10639. border-bottom-left-radius:0px;
  10640. -moz-box-shadow:none;
  10641. -webkit-box-shadow:none;
  10642. box-shadow:none;
  10643. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10644. font-weight:500;
  10645. font-style:normal;
  10646. font-size:18px;
  10647. text-align:center;
  10648. }
  10649. #u87247 {
  10650. border-width:0px;
  10651. position:absolute;
  10652. left:2092px;
  10653. top:53px;
  10654. width:40px;
  10655. height:40px;
  10656. display:flex;
  10657. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10658. font-weight:500;
  10659. font-style:normal;
  10660. font-size:18px;
  10661. text-align:center;
  10662. }
  10663. #u87247 .text {
  10664. position:absolute;
  10665. align-self:center;
  10666. padding:5px 10px 5px 0px;
  10667. box-sizing:border-box;
  10668. width:100%;
  10669. }
  10670. #u87247_text {
  10671. border-width:0px;
  10672. word-wrap:break-word;
  10673. text-transform:none;
  10674. }
  10675. #u87248_img {
  10676. border-width:0px;
  10677. position:absolute;
  10678. left:0px;
  10679. top:0px;
  10680. width:13px;
  10681. height:13px;
  10682. }
  10683. #u87248 {
  10684. border-width:0px;
  10685. position:absolute;
  10686. left:2080px;
  10687. top:69px;
  10688. width:13px;
  10689. height:13px;
  10690. display:flex;
  10691. }
  10692. #u87248 .text {
  10693. position:absolute;
  10694. align-self:center;
  10695. padding:2px 2px 2px 2px;
  10696. box-sizing:border-box;
  10697. width:100%;
  10698. }
  10699. #u87248_text {
  10700. border-width:0px;
  10701. word-wrap:break-word;
  10702. text-transform:none;
  10703. visibility:hidden;
  10704. }