styles.css 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-90px;
  6. width:1000px;
  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. #u83120 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u83121_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:710px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 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. #u83121 {
  53. border-width:0px;
  54. position:absolute;
  55. left:90px;
  56. top:65px;
  57. width:1000px;
  58. height:710px;
  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. #u83121 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u83121_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u83122_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:137px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u83122 {
  106. border-width:0px;
  107. position:absolute;
  108. left:110px;
  109. top:83px;
  110. width:137px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u83122 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u83122_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u83123 {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:0px;
  136. height:0px;
  137. }
  138. #u83124_div {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:40px;
  144. height:40px;
  145. background:inherit;
  146. background-color:rgba(255, 255, 255, 0);
  147. border:none;
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  158. font-weight:500;
  159. font-style:normal;
  160. font-size:14px;
  161. text-align:center;
  162. }
  163. #u83124 {
  164. border-width:0px;
  165. position:absolute;
  166. left:1050px;
  167. top:65px;
  168. width:40px;
  169. height:40px;
  170. display:flex;
  171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  172. font-weight:500;
  173. font-style:normal;
  174. font-size:14px;
  175. text-align:center;
  176. }
  177. #u83124 .text {
  178. position:absolute;
  179. align-self:center;
  180. padding:5px 10px 5px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u83124_text {
  185. border-width:0px;
  186. word-wrap:break-word;
  187. text-transform:none;
  188. }
  189. #u83125_img {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:13px;
  195. height:13px;
  196. }
  197. #u83125 {
  198. border-width:0px;
  199. position:absolute;
  200. left:1038px;
  201. top:81px;
  202. width:13px;
  203. height:13px;
  204. display:flex;
  205. font-size:14px;
  206. }
  207. #u83125 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u83125_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u83126 {
  221. border-width:0px;
  222. position:absolute;
  223. left:110px;
  224. top:208px;
  225. width:960px;
  226. height:438px;
  227. }
  228. #u83127_img {
  229. border-width:0px;
  230. position:absolute;
  231. left:0px;
  232. top:0px;
  233. width:33px;
  234. height:38px;
  235. }
  236. #u83127 {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:33px;
  242. height:38px;
  243. display:flex;
  244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  245. font-weight:400;
  246. font-style:normal;
  247. font-size:12px;
  248. color:#FFFFFF;
  249. }
  250. #u83127 .text {
  251. position:absolute;
  252. align-self:center;
  253. padding:2px 2px 2px 0px;
  254. box-sizing:border-box;
  255. width:100%;
  256. }
  257. #u83127_text {
  258. border-width:0px;
  259. word-wrap:break-word;
  260. text-transform:none;
  261. visibility:hidden;
  262. }
  263. #u83128_img {
  264. border-width:0px;
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:61px;
  269. height:38px;
  270. }
  271. #u83128 {
  272. border-width:0px;
  273. position:absolute;
  274. left:33px;
  275. top:0px;
  276. width:61px;
  277. height:38px;
  278. display:flex;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:12px;
  283. color:#FFFFFF;
  284. }
  285. #u83128 .text {
  286. position:absolute;
  287. align-self:center;
  288. padding:2px 2px 2px 0px;
  289. box-sizing:border-box;
  290. width:100%;
  291. }
  292. #u83128_text {
  293. border-width:0px;
  294. word-wrap:break-word;
  295. text-transform:none;
  296. }
  297. #u83129_img {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:61px;
  303. height:38px;
  304. }
  305. #u83129 {
  306. border-width:0px;
  307. position:absolute;
  308. left:94px;
  309. top:0px;
  310. width:61px;
  311. height:38px;
  312. display:flex;
  313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  314. font-weight:400;
  315. font-style:normal;
  316. font-size:12px;
  317. color:#FFFFFF;
  318. }
  319. #u83129 .text {
  320. position:absolute;
  321. align-self:center;
  322. padding:2px 2px 2px 0px;
  323. box-sizing:border-box;
  324. width:100%;
  325. }
  326. #u83129_text {
  327. border-width:0px;
  328. word-wrap:break-word;
  329. text-transform:none;
  330. }
  331. #u83130_img {
  332. border-width:0px;
  333. position:absolute;
  334. left:0px;
  335. top:0px;
  336. width:64px;
  337. height:38px;
  338. }
  339. #u83130 {
  340. border-width:0px;
  341. position:absolute;
  342. left:155px;
  343. top:0px;
  344. width:64px;
  345. height:38px;
  346. display:flex;
  347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  348. font-weight:400;
  349. font-style:normal;
  350. font-size:12px;
  351. color:#FFFFFF;
  352. }
  353. #u83130 .text {
  354. position:absolute;
  355. align-self:center;
  356. padding:2px 2px 2px 0px;
  357. box-sizing:border-box;
  358. width:100%;
  359. }
  360. #u83130_text {
  361. border-width:0px;
  362. word-wrap:break-word;
  363. text-transform:none;
  364. }
  365. #u83131_img {
  366. border-width:0px;
  367. position:absolute;
  368. left:0px;
  369. top:0px;
  370. width:64px;
  371. height:38px;
  372. }
  373. #u83131 {
  374. border-width:0px;
  375. position:absolute;
  376. left:219px;
  377. top:0px;
  378. width:64px;
  379. height:38px;
  380. display:flex;
  381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  382. font-weight:400;
  383. font-style:normal;
  384. font-size:12px;
  385. color:#FFFFFF;
  386. }
  387. #u83131 .text {
  388. position:absolute;
  389. align-self:center;
  390. padding:2px 2px 2px 0px;
  391. box-sizing:border-box;
  392. width:100%;
  393. }
  394. #u83131_text {
  395. border-width:0px;
  396. word-wrap:break-word;
  397. text-transform:none;
  398. }
  399. #u83132_img {
  400. border-width:0px;
  401. position:absolute;
  402. left:0px;
  403. top:0px;
  404. width:64px;
  405. height:38px;
  406. }
  407. #u83132 {
  408. border-width:0px;
  409. position:absolute;
  410. left:283px;
  411. top:0px;
  412. width:64px;
  413. height:38px;
  414. display:flex;
  415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  416. font-weight:400;
  417. font-style:normal;
  418. font-size:12px;
  419. color:#FFFFFF;
  420. }
  421. #u83132 .text {
  422. position:absolute;
  423. align-self:center;
  424. padding:2px 2px 2px 0px;
  425. box-sizing:border-box;
  426. width:100%;
  427. }
  428. #u83132_text {
  429. border-width:0px;
  430. word-wrap:break-word;
  431. text-transform:none;
  432. }
  433. #u83133_img {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:64px;
  439. height:38px;
  440. }
  441. #u83133 {
  442. border-width:0px;
  443. position:absolute;
  444. left:347px;
  445. top:0px;
  446. width:64px;
  447. height:38px;
  448. display:flex;
  449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  450. font-weight:400;
  451. font-style:normal;
  452. font-size:12px;
  453. color:#FFFFFF;
  454. }
  455. #u83133 .text {
  456. position:absolute;
  457. align-self:center;
  458. padding:2px 2px 2px 0px;
  459. box-sizing:border-box;
  460. width:100%;
  461. }
  462. #u83133_text {
  463. border-width:0px;
  464. word-wrap:break-word;
  465. text-transform:none;
  466. }
  467. #u83134_img {
  468. border-width:0px;
  469. position:absolute;
  470. left:0px;
  471. top:0px;
  472. width:64px;
  473. height:38px;
  474. }
  475. #u83134 {
  476. border-width:0px;
  477. position:absolute;
  478. left:411px;
  479. top:0px;
  480. width:64px;
  481. height:38px;
  482. display:flex;
  483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  484. font-weight:400;
  485. font-style:normal;
  486. font-size:12px;
  487. color:#FFFFFF;
  488. }
  489. #u83134 .text {
  490. position:absolute;
  491. align-self:center;
  492. padding:2px 2px 2px 0px;
  493. box-sizing:border-box;
  494. width:100%;
  495. }
  496. #u83134_text {
  497. border-width:0px;
  498. word-wrap:break-word;
  499. text-transform:none;
  500. }
  501. #u83135_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:78px;
  507. height:38px;
  508. }
  509. #u83135 {
  510. border-width:0px;
  511. position:absolute;
  512. left:475px;
  513. top:0px;
  514. width:78px;
  515. height:38px;
  516. display:flex;
  517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  518. font-weight:400;
  519. font-style:normal;
  520. font-size:12px;
  521. color:#FFFFFF;
  522. }
  523. #u83135 .text {
  524. position:absolute;
  525. align-self:center;
  526. padding:2px 2px 2px 0px;
  527. box-sizing:border-box;
  528. width:100%;
  529. }
  530. #u83135_text {
  531. border-width:0px;
  532. word-wrap:break-word;
  533. text-transform:none;
  534. }
  535. #u83136_img {
  536. border-width:0px;
  537. position:absolute;
  538. left:0px;
  539. top:0px;
  540. width:78px;
  541. height:38px;
  542. }
  543. #u83136 {
  544. border-width:0px;
  545. position:absolute;
  546. left:553px;
  547. top:0px;
  548. width:78px;
  549. height:38px;
  550. display:flex;
  551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  552. font-weight:400;
  553. font-style:normal;
  554. font-size:12px;
  555. color:#FFFFFF;
  556. }
  557. #u83136 .text {
  558. position:absolute;
  559. align-self:center;
  560. padding:2px 2px 2px 0px;
  561. box-sizing:border-box;
  562. width:100%;
  563. }
  564. #u83136_text {
  565. border-width:0px;
  566. word-wrap:break-word;
  567. text-transform:none;
  568. }
  569. #u83137_img {
  570. border-width:0px;
  571. position:absolute;
  572. left:0px;
  573. top:0px;
  574. width:82px;
  575. height:38px;
  576. }
  577. #u83137 {
  578. border-width:0px;
  579. position:absolute;
  580. left:631px;
  581. top:0px;
  582. width:82px;
  583. height:38px;
  584. display:flex;
  585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  586. font-weight:400;
  587. font-style:normal;
  588. font-size:12px;
  589. color:#FFFFFF;
  590. }
  591. #u83137 .text {
  592. position:absolute;
  593. align-self:center;
  594. padding:2px 2px 2px 0px;
  595. box-sizing:border-box;
  596. width:100%;
  597. }
  598. #u83137_text {
  599. border-width:0px;
  600. word-wrap:break-word;
  601. text-transform:none;
  602. }
  603. #u83138_img {
  604. border-width:0px;
  605. position:absolute;
  606. left:0px;
  607. top:0px;
  608. width:82px;
  609. height:38px;
  610. }
  611. #u83138 {
  612. border-width:0px;
  613. position:absolute;
  614. left:713px;
  615. top:0px;
  616. width:82px;
  617. height:38px;
  618. display:flex;
  619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  620. font-weight:400;
  621. font-style:normal;
  622. font-size:12px;
  623. color:#FFFFFF;
  624. }
  625. #u83138 .text {
  626. position:absolute;
  627. align-self:center;
  628. padding:2px 2px 2px 0px;
  629. box-sizing:border-box;
  630. width:100%;
  631. }
  632. #u83138_text {
  633. border-width:0px;
  634. word-wrap:break-word;
  635. text-transform:none;
  636. }
  637. #u83139_img {
  638. border-width:0px;
  639. position:absolute;
  640. left:0px;
  641. top:0px;
  642. width:89px;
  643. height:38px;
  644. }
  645. #u83139 {
  646. border-width:0px;
  647. position:absolute;
  648. left:795px;
  649. top:0px;
  650. width:89px;
  651. height:38px;
  652. display:flex;
  653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  654. font-weight:400;
  655. font-style:normal;
  656. font-size:12px;
  657. color:#FFFFFF;
  658. }
  659. #u83139 .text {
  660. position:absolute;
  661. align-self:center;
  662. padding:2px 2px 2px 0px;
  663. box-sizing:border-box;
  664. width:100%;
  665. }
  666. #u83139_text {
  667. border-width:0px;
  668. word-wrap:break-word;
  669. text-transform:none;
  670. }
  671. #u83140_img {
  672. border-width:0px;
  673. position:absolute;
  674. left:0px;
  675. top:0px;
  676. width:76px;
  677. height:38px;
  678. }
  679. #u83140 {
  680. border-width:0px;
  681. position:absolute;
  682. left:884px;
  683. top:0px;
  684. width:76px;
  685. height:38px;
  686. display:flex;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. color:#FFFFFF;
  692. }
  693. #u83140 .text {
  694. position:absolute;
  695. align-self:center;
  696. padding:2px 2px 2px 0px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u83140_text {
  701. border-width:0px;
  702. word-wrap:break-word;
  703. text-transform:none;
  704. }
  705. #u83141_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:33px;
  711. height:40px;
  712. }
  713. #u83141 {
  714. border-width:0px;
  715. position:absolute;
  716. left:0px;
  717. top:38px;
  718. width:33px;
  719. height:40px;
  720. display:flex;
  721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  722. font-weight:400;
  723. font-style:normal;
  724. font-size:12px;
  725. color:#333333;
  726. }
  727. #u83141 .text {
  728. position:absolute;
  729. align-self:center;
  730. padding:2px 2px 2px 0px;
  731. box-sizing:border-box;
  732. width:100%;
  733. }
  734. #u83141_text {
  735. border-width:0px;
  736. word-wrap:break-word;
  737. text-transform:none;
  738. visibility:hidden;
  739. }
  740. #u83142_img {
  741. border-width:0px;
  742. position:absolute;
  743. left:0px;
  744. top:0px;
  745. width:61px;
  746. height:40px;
  747. }
  748. #u83142 {
  749. border-width:0px;
  750. position:absolute;
  751. left:33px;
  752. top:38px;
  753. width:61px;
  754. height:40px;
  755. display:flex;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:12px;
  760. color:#333333;
  761. }
  762. #u83142 .text {
  763. position:absolute;
  764. align-self:center;
  765. padding:2px 2px 2px 0px;
  766. box-sizing:border-box;
  767. width:100%;
  768. }
  769. #u83142_text {
  770. border-width:0px;
  771. word-wrap:break-word;
  772. text-transform:none;
  773. visibility:hidden;
  774. }
  775. #u83143_img {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:61px;
  781. height:40px;
  782. }
  783. #u83143 {
  784. border-width:0px;
  785. position:absolute;
  786. left:94px;
  787. top:38px;
  788. width:61px;
  789. height:40px;
  790. display:flex;
  791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  792. font-weight:400;
  793. font-style:normal;
  794. font-size:12px;
  795. color:#333333;
  796. }
  797. #u83143 .text {
  798. position:absolute;
  799. align-self:center;
  800. padding:2px 2px 2px 0px;
  801. box-sizing:border-box;
  802. width:100%;
  803. }
  804. #u83143_text {
  805. border-width:0px;
  806. word-wrap:break-word;
  807. text-transform:none;
  808. visibility:hidden;
  809. }
  810. #u83144_img {
  811. border-width:0px;
  812. position:absolute;
  813. left:0px;
  814. top:0px;
  815. width:64px;
  816. height:40px;
  817. }
  818. #u83144 {
  819. border-width:0px;
  820. position:absolute;
  821. left:155px;
  822. top:38px;
  823. width:64px;
  824. height:40px;
  825. display:flex;
  826. font-family:'ArialMT', 'Arial', sans-serif;
  827. font-weight:400;
  828. font-style:normal;
  829. font-size:12px;
  830. color:#AAAAAA;
  831. text-align:left;
  832. }
  833. #u83144 .text {
  834. position:absolute;
  835. align-self:center;
  836. padding:2px 2px 2px 0px;
  837. box-sizing:border-box;
  838. width:100%;
  839. }
  840. #u83144_text {
  841. border-width:0px;
  842. word-wrap:break-word;
  843. text-transform:none;
  844. visibility:hidden;
  845. }
  846. #u83145_img {
  847. border-width:0px;
  848. position:absolute;
  849. left:0px;
  850. top:0px;
  851. width:64px;
  852. height:40px;
  853. }
  854. #u83145 {
  855. border-width:0px;
  856. position:absolute;
  857. left:219px;
  858. top:38px;
  859. width:64px;
  860. height:40px;
  861. display:flex;
  862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  863. font-weight:400;
  864. font-style:normal;
  865. font-size:12px;
  866. color:#333333;
  867. }
  868. #u83145 .text {
  869. position:absolute;
  870. align-self:center;
  871. padding:2px 2px 2px 0px;
  872. box-sizing:border-box;
  873. width:100%;
  874. }
  875. #u83145_text {
  876. border-width:0px;
  877. word-wrap:break-word;
  878. text-transform:none;
  879. visibility:hidden;
  880. }
  881. #u83146_img {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:64px;
  887. height:40px;
  888. }
  889. #u83146 {
  890. border-width:0px;
  891. position:absolute;
  892. left:283px;
  893. top:38px;
  894. width:64px;
  895. height:40px;
  896. display:flex;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:12px;
  901. color:#333333;
  902. }
  903. #u83146 .text {
  904. position:absolute;
  905. align-self:center;
  906. padding:2px 2px 2px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u83146_text {
  911. border-width:0px;
  912. word-wrap:break-word;
  913. text-transform:none;
  914. visibility:hidden;
  915. }
  916. #u83147_img {
  917. border-width:0px;
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:64px;
  922. height:40px;
  923. }
  924. #u83147 {
  925. border-width:0px;
  926. position:absolute;
  927. left:347px;
  928. top:38px;
  929. width:64px;
  930. height:40px;
  931. display:flex;
  932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. font-size:12px;
  936. color:#333333;
  937. }
  938. #u83147 .text {
  939. position:absolute;
  940. align-self:center;
  941. padding:2px 2px 2px 0px;
  942. box-sizing:border-box;
  943. width:100%;
  944. }
  945. #u83147_text {
  946. border-width:0px;
  947. word-wrap:break-word;
  948. text-transform:none;
  949. visibility:hidden;
  950. }
  951. #u83148_img {
  952. border-width:0px;
  953. position:absolute;
  954. left:0px;
  955. top:0px;
  956. width:64px;
  957. height:40px;
  958. }
  959. #u83148 {
  960. border-width:0px;
  961. position:absolute;
  962. left:411px;
  963. top:38px;
  964. width:64px;
  965. height:40px;
  966. display:flex;
  967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  968. font-weight:400;
  969. font-style:normal;
  970. font-size:12px;
  971. color:#333333;
  972. }
  973. #u83148 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 0px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u83148_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u83149_img {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:78px;
  992. height:40px;
  993. }
  994. #u83149 {
  995. border-width:0px;
  996. position:absolute;
  997. left:475px;
  998. top:38px;
  999. width:78px;
  1000. height:40px;
  1001. display:flex;
  1002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1003. font-weight:400;
  1004. font-style:normal;
  1005. font-size:12px;
  1006. color:#333333;
  1007. }
  1008. #u83149 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 0px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u83149_text {
  1016. border-width:0px;
  1017. word-wrap:break-word;
  1018. text-transform:none;
  1019. visibility:hidden;
  1020. }
  1021. #u83150_img {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:0px;
  1025. top:0px;
  1026. width:78px;
  1027. height:40px;
  1028. }
  1029. #u83150 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:553px;
  1033. top:38px;
  1034. width:78px;
  1035. height:40px;
  1036. display:flex;
  1037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1038. font-weight:400;
  1039. font-style:normal;
  1040. font-size:12px;
  1041. color:#0089FE;
  1042. }
  1043. #u83150 .text {
  1044. position:absolute;
  1045. align-self:center;
  1046. padding:2px 2px 2px 0px;
  1047. box-sizing:border-box;
  1048. width:100%;
  1049. }
  1050. #u83150_text {
  1051. border-width:0px;
  1052. word-wrap:break-word;
  1053. text-transform:none;
  1054. visibility:hidden;
  1055. }
  1056. #u83151_img {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:82px;
  1062. height:40px;
  1063. }
  1064. #u83151 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:631px;
  1068. top:38px;
  1069. width:82px;
  1070. height:40px;
  1071. display:flex;
  1072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1073. font-weight:400;
  1074. font-style:normal;
  1075. font-size:12px;
  1076. color:#0089FE;
  1077. }
  1078. #u83151 .text {
  1079. position:absolute;
  1080. align-self:center;
  1081. padding:2px 2px 2px 0px;
  1082. box-sizing:border-box;
  1083. width:100%;
  1084. }
  1085. #u83151_text {
  1086. border-width:0px;
  1087. word-wrap:break-word;
  1088. text-transform:none;
  1089. visibility:hidden;
  1090. }
  1091. #u83152_img {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:0px;
  1095. top:0px;
  1096. width:82px;
  1097. height:40px;
  1098. }
  1099. #u83152 {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:713px;
  1103. top:38px;
  1104. width:82px;
  1105. height:40px;
  1106. display:flex;
  1107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1108. font-weight:400;
  1109. font-style:normal;
  1110. font-size:12px;
  1111. color:#0089FE;
  1112. }
  1113. #u83152 .text {
  1114. position:absolute;
  1115. align-self:center;
  1116. padding:2px 2px 2px 0px;
  1117. box-sizing:border-box;
  1118. width:100%;
  1119. }
  1120. #u83152_text {
  1121. border-width:0px;
  1122. word-wrap:break-word;
  1123. text-transform:none;
  1124. visibility:hidden;
  1125. }
  1126. #u83153_img {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:89px;
  1132. height:40px;
  1133. }
  1134. #u83153 {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:795px;
  1138. top:38px;
  1139. width:89px;
  1140. height:40px;
  1141. display:flex;
  1142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1143. font-weight:400;
  1144. font-style:normal;
  1145. font-size:12px;
  1146. color:#0089FE;
  1147. }
  1148. #u83153 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 0px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u83153_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u83154_img {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:76px;
  1167. height:40px;
  1168. }
  1169. #u83154 {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:884px;
  1173. top:38px;
  1174. width:76px;
  1175. height:40px;
  1176. display:flex;
  1177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1178. font-weight:400;
  1179. font-style:normal;
  1180. font-size:12px;
  1181. color:#0089FE;
  1182. }
  1183. #u83154 .text {
  1184. position:absolute;
  1185. align-self:center;
  1186. padding:2px 2px 2px 0px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u83154_text {
  1191. border-width:0px;
  1192. word-wrap:break-word;
  1193. text-transform:none;
  1194. visibility:hidden;
  1195. }
  1196. #u83155_img {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:33px;
  1202. height:40px;
  1203. }
  1204. #u83155 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:0px;
  1208. top:78px;
  1209. width:33px;
  1210. height:40px;
  1211. display:flex;
  1212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:12px;
  1216. color:#333333;
  1217. }
  1218. #u83155 .text {
  1219. position:absolute;
  1220. align-self:center;
  1221. padding:2px 2px 2px 0px;
  1222. box-sizing:border-box;
  1223. width:100%;
  1224. }
  1225. #u83155_text {
  1226. border-width:0px;
  1227. word-wrap:break-word;
  1228. text-transform:none;
  1229. visibility:hidden;
  1230. }
  1231. #u83156_img {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:61px;
  1237. height:40px;
  1238. }
  1239. #u83156 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:33px;
  1243. top:78px;
  1244. width:61px;
  1245. height:40px;
  1246. display:flex;
  1247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1248. font-weight:400;
  1249. font-style:normal;
  1250. font-size:12px;
  1251. color:#333333;
  1252. }
  1253. #u83156 .text {
  1254. position:absolute;
  1255. align-self:center;
  1256. padding:2px 2px 2px 0px;
  1257. box-sizing:border-box;
  1258. width:100%;
  1259. }
  1260. #u83156_text {
  1261. border-width:0px;
  1262. word-wrap:break-word;
  1263. text-transform:none;
  1264. visibility:hidden;
  1265. }
  1266. #u83157_img {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:0px;
  1270. top:0px;
  1271. width:61px;
  1272. height:40px;
  1273. }
  1274. #u83157 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:94px;
  1278. top:78px;
  1279. width:61px;
  1280. height:40px;
  1281. display:flex;
  1282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1283. font-weight:400;
  1284. font-style:normal;
  1285. font-size:12px;
  1286. color:#333333;
  1287. }
  1288. #u83157 .text {
  1289. position:absolute;
  1290. align-self:center;
  1291. padding:2px 2px 2px 0px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u83157_text {
  1296. border-width:0px;
  1297. word-wrap:break-word;
  1298. text-transform:none;
  1299. visibility:hidden;
  1300. }
  1301. #u83158_img {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:0px;
  1305. top:0px;
  1306. width:64px;
  1307. height:40px;
  1308. }
  1309. #u83158 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:155px;
  1313. top:78px;
  1314. width:64px;
  1315. height:40px;
  1316. display:flex;
  1317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1318. font-weight:400;
  1319. font-style:normal;
  1320. font-size:12px;
  1321. color:#333333;
  1322. }
  1323. #u83158 .text {
  1324. position:absolute;
  1325. align-self:center;
  1326. padding:2px 2px 2px 0px;
  1327. box-sizing:border-box;
  1328. width:100%;
  1329. }
  1330. #u83158_text {
  1331. border-width:0px;
  1332. word-wrap:break-word;
  1333. text-transform:none;
  1334. visibility:hidden;
  1335. }
  1336. #u83159_img {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:64px;
  1342. height:40px;
  1343. }
  1344. #u83159 {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:219px;
  1348. top:78px;
  1349. width:64px;
  1350. height:40px;
  1351. display:flex;
  1352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1353. font-weight:400;
  1354. font-style:normal;
  1355. font-size:12px;
  1356. color:#333333;
  1357. }
  1358. #u83159 .text {
  1359. position:absolute;
  1360. align-self:center;
  1361. padding:2px 2px 2px 0px;
  1362. box-sizing:border-box;
  1363. width:100%;
  1364. }
  1365. #u83159_text {
  1366. border-width:0px;
  1367. word-wrap:break-word;
  1368. text-transform:none;
  1369. visibility:hidden;
  1370. }
  1371. #u83160_img {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:64px;
  1377. height:40px;
  1378. }
  1379. #u83160 {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:283px;
  1383. top:78px;
  1384. width:64px;
  1385. height:40px;
  1386. display:flex;
  1387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1388. font-weight:400;
  1389. font-style:normal;
  1390. font-size:12px;
  1391. color:#333333;
  1392. }
  1393. #u83160 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 0px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u83160_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u83161_img {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:64px;
  1412. height:40px;
  1413. }
  1414. #u83161 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:347px;
  1418. top:78px;
  1419. width:64px;
  1420. height:40px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:12px;
  1426. color:#333333;
  1427. }
  1428. #u83161 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:2px 2px 2px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u83161_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. visibility:hidden;
  1440. }
  1441. #u83162_img {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:0px;
  1445. top:0px;
  1446. width:64px;
  1447. height:40px;
  1448. }
  1449. #u83162 {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:411px;
  1453. top:78px;
  1454. width:64px;
  1455. height:40px;
  1456. display:flex;
  1457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1458. font-weight:400;
  1459. font-style:normal;
  1460. font-size:12px;
  1461. color:#333333;
  1462. }
  1463. #u83162 .text {
  1464. position:absolute;
  1465. align-self:center;
  1466. padding:2px 2px 2px 0px;
  1467. box-sizing:border-box;
  1468. width:100%;
  1469. }
  1470. #u83162_text {
  1471. border-width:0px;
  1472. word-wrap:break-word;
  1473. text-transform:none;
  1474. visibility:hidden;
  1475. }
  1476. #u83163_img {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:78px;
  1482. height:40px;
  1483. }
  1484. #u83163 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:475px;
  1488. top:78px;
  1489. width:78px;
  1490. height:40px;
  1491. display:flex;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:12px;
  1496. color:#333333;
  1497. }
  1498. #u83163 .text {
  1499. position:absolute;
  1500. align-self:center;
  1501. padding:2px 2px 2px 0px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u83163_text {
  1506. border-width:0px;
  1507. word-wrap:break-word;
  1508. text-transform:none;
  1509. visibility:hidden;
  1510. }
  1511. #u83164_img {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:0px;
  1515. top:0px;
  1516. width:78px;
  1517. height:40px;
  1518. }
  1519. #u83164 {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:553px;
  1523. top:78px;
  1524. width:78px;
  1525. height:40px;
  1526. display:flex;
  1527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1528. font-weight:400;
  1529. font-style:normal;
  1530. font-size:12px;
  1531. color:#0089FE;
  1532. }
  1533. #u83164 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 0px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u83164_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u83165_img {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:82px;
  1552. height:40px;
  1553. }
  1554. #u83165 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:631px;
  1558. top:78px;
  1559. width:82px;
  1560. height:40px;
  1561. display:flex;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:12px;
  1566. color:#0089FE;
  1567. }
  1568. #u83165 .text {
  1569. position:absolute;
  1570. align-self:center;
  1571. padding:2px 2px 2px 0px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u83165_text {
  1576. border-width:0px;
  1577. word-wrap:break-word;
  1578. text-transform:none;
  1579. visibility:hidden;
  1580. }
  1581. #u83166_img {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:82px;
  1587. height:40px;
  1588. }
  1589. #u83166 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:713px;
  1593. top:78px;
  1594. width:82px;
  1595. height:40px;
  1596. display:flex;
  1597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1598. font-weight:400;
  1599. font-style:normal;
  1600. font-size:12px;
  1601. color:#0089FE;
  1602. }
  1603. #u83166 .text {
  1604. position:absolute;
  1605. align-self:center;
  1606. padding:2px 2px 2px 0px;
  1607. box-sizing:border-box;
  1608. width:100%;
  1609. }
  1610. #u83166_text {
  1611. border-width:0px;
  1612. word-wrap:break-word;
  1613. text-transform:none;
  1614. visibility:hidden;
  1615. }
  1616. #u83167_img {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:89px;
  1622. height:40px;
  1623. }
  1624. #u83167 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:795px;
  1628. top:78px;
  1629. width:89px;
  1630. height:40px;
  1631. display:flex;
  1632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1633. font-weight:400;
  1634. font-style:normal;
  1635. font-size:12px;
  1636. color:#0089FE;
  1637. }
  1638. #u83167 .text {
  1639. position:absolute;
  1640. align-self:center;
  1641. padding:2px 2px 2px 0px;
  1642. box-sizing:border-box;
  1643. width:100%;
  1644. }
  1645. #u83167_text {
  1646. border-width:0px;
  1647. word-wrap:break-word;
  1648. text-transform:none;
  1649. visibility:hidden;
  1650. }
  1651. #u83168_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:76px;
  1657. height:40px;
  1658. }
  1659. #u83168 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:884px;
  1663. top:78px;
  1664. width:76px;
  1665. height:40px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#0089FE;
  1672. }
  1673. #u83168 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 0px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u83168_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. visibility:hidden;
  1685. }
  1686. #u83169_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:33px;
  1692. height:40px;
  1693. }
  1694. #u83169 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:118px;
  1699. width:33px;
  1700. height:40px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:12px;
  1706. color:#333333;
  1707. }
  1708. #u83169 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 0px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u83169_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. visibility:hidden;
  1720. }
  1721. #u83170_img {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:61px;
  1727. height:40px;
  1728. }
  1729. #u83170 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:33px;
  1733. top:118px;
  1734. width:61px;
  1735. height:40px;
  1736. display:flex;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:12px;
  1741. color:#333333;
  1742. }
  1743. #u83170 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:2px 2px 2px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u83170_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. visibility:hidden;
  1755. }
  1756. #u83171_img {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:61px;
  1762. height:40px;
  1763. }
  1764. #u83171 {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:94px;
  1768. top:118px;
  1769. width:61px;
  1770. height:40px;
  1771. display:flex;
  1772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1773. font-weight:400;
  1774. font-style:normal;
  1775. font-size:12px;
  1776. color:#333333;
  1777. }
  1778. #u83171 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:2px 2px 2px 0px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u83171_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. visibility:hidden;
  1790. }
  1791. #u83172_img {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:64px;
  1797. height:40px;
  1798. }
  1799. #u83172 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:155px;
  1803. top:118px;
  1804. width:64px;
  1805. height:40px;
  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. #u83172 .text {
  1814. position:absolute;
  1815. align-self:center;
  1816. padding:2px 2px 2px 0px;
  1817. box-sizing:border-box;
  1818. width:100%;
  1819. }
  1820. #u83172_text {
  1821. border-width:0px;
  1822. word-wrap:break-word;
  1823. text-transform:none;
  1824. visibility:hidden;
  1825. }
  1826. #u83173_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:64px;
  1832. height:40px;
  1833. }
  1834. #u83173 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:219px;
  1838. top:118px;
  1839. width:64px;
  1840. height:40px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:12px;
  1846. color:#333333;
  1847. }
  1848. #u83173 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:2px 2px 2px 0px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u83173_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. visibility:hidden;
  1860. }
  1861. #u83174_img {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:64px;
  1867. height:40px;
  1868. }
  1869. #u83174 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:283px;
  1873. top:118px;
  1874. width:64px;
  1875. height:40px;
  1876. display:flex;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:12px;
  1881. color:#333333;
  1882. }
  1883. #u83174 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 0px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u83174_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. visibility:hidden;
  1895. }
  1896. #u83175_img {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:64px;
  1902. height:40px;
  1903. }
  1904. #u83175 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:347px;
  1908. top:118px;
  1909. width:64px;
  1910. height:40px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:12px;
  1916. color:#333333;
  1917. }
  1918. #u83175 .text {
  1919. position:absolute;
  1920. align-self:center;
  1921. padding:2px 2px 2px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u83175_text {
  1926. border-width:0px;
  1927. word-wrap:break-word;
  1928. text-transform:none;
  1929. visibility:hidden;
  1930. }
  1931. #u83176_img {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:64px;
  1937. height:40px;
  1938. }
  1939. #u83176 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:411px;
  1943. top:118px;
  1944. width:64px;
  1945. height:40px;
  1946. display:flex;
  1947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1948. font-weight:400;
  1949. font-style:normal;
  1950. font-size:12px;
  1951. color:#333333;
  1952. }
  1953. #u83176 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 2px 2px 0px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u83176_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. visibility:hidden;
  1965. }
  1966. #u83177_img {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:78px;
  1972. height:40px;
  1973. }
  1974. #u83177 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:475px;
  1978. top:118px;
  1979. width:78px;
  1980. height:40px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. color:#333333;
  1987. }
  1988. #u83177 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 0px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u83177_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. visibility:hidden;
  2000. }
  2001. #u83178_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:78px;
  2007. height:40px;
  2008. }
  2009. #u83178 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:553px;
  2013. top:118px;
  2014. width:78px;
  2015. height:40px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:12px;
  2021. color:#0089FE;
  2022. }
  2023. #u83178 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u83178_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. visibility:hidden;
  2035. }
  2036. #u83179_img {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:0px;
  2041. width:82px;
  2042. height:40px;
  2043. }
  2044. #u83179 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:631px;
  2048. top:118px;
  2049. width:82px;
  2050. height:40px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:12px;
  2056. color:#0089FE;
  2057. }
  2058. #u83179 .text {
  2059. position:absolute;
  2060. align-self:center;
  2061. padding:2px 2px 2px 0px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u83179_text {
  2066. border-width:0px;
  2067. word-wrap:break-word;
  2068. text-transform:none;
  2069. visibility:hidden;
  2070. }
  2071. #u83180_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:82px;
  2077. height:40px;
  2078. }
  2079. #u83180 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:713px;
  2083. top:118px;
  2084. width:82px;
  2085. height:40px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. color:#0089FE;
  2092. }
  2093. #u83180 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u83180_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. visibility:hidden;
  2105. }
  2106. #u83181_img {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:89px;
  2112. height:40px;
  2113. }
  2114. #u83181 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:795px;
  2118. top:118px;
  2119. width:89px;
  2120. height:40px;
  2121. display:flex;
  2122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:12px;
  2126. color:#0089FE;
  2127. }
  2128. #u83181 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 0px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u83181_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u83182_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:76px;
  2147. height:40px;
  2148. }
  2149. #u83182 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:884px;
  2153. top:118px;
  2154. width:76px;
  2155. height:40px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:12px;
  2161. color:#0089FE;
  2162. }
  2163. #u83182 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u83182_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u83183_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:33px;
  2182. height:40px;
  2183. }
  2184. #u83183 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:158px;
  2189. width:33px;
  2190. height:40px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. color:#333333;
  2197. }
  2198. #u83183 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:2px 2px 2px 0px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u83183_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. visibility:hidden;
  2210. }
  2211. #u83184_img {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:61px;
  2217. height:40px;
  2218. }
  2219. #u83184 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:33px;
  2223. top:158px;
  2224. width:61px;
  2225. height:40px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:12px;
  2231. color:#333333;
  2232. }
  2233. #u83184 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 2px 2px 0px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u83184_text {
  2241. border-width:0px;
  2242. word-wrap:break-word;
  2243. text-transform:none;
  2244. visibility:hidden;
  2245. }
  2246. #u83185_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:61px;
  2252. height:40px;
  2253. }
  2254. #u83185 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:94px;
  2258. top:158px;
  2259. width:61px;
  2260. height:40px;
  2261. display:flex;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:12px;
  2266. color:#333333;
  2267. }
  2268. #u83185 .text {
  2269. position:absolute;
  2270. align-self:center;
  2271. padding:2px 2px 2px 0px;
  2272. box-sizing:border-box;
  2273. width:100%;
  2274. }
  2275. #u83185_text {
  2276. border-width:0px;
  2277. word-wrap:break-word;
  2278. text-transform:none;
  2279. visibility:hidden;
  2280. }
  2281. #u83186_img {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:64px;
  2287. height:40px;
  2288. }
  2289. #u83186 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:155px;
  2293. top:158px;
  2294. width:64px;
  2295. height:40px;
  2296. display:flex;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:12px;
  2301. color:#333333;
  2302. }
  2303. #u83186 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 0px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u83186_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. visibility:hidden;
  2315. }
  2316. #u83187_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:64px;
  2322. height:40px;
  2323. }
  2324. #u83187 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:219px;
  2328. top:158px;
  2329. width:64px;
  2330. height:40px;
  2331. display:flex;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:12px;
  2336. color:#333333;
  2337. }
  2338. #u83187 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 0px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u83187_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. visibility:hidden;
  2350. }
  2351. #u83188_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:64px;
  2357. height:40px;
  2358. }
  2359. #u83188 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:283px;
  2363. top:158px;
  2364. width:64px;
  2365. height:40px;
  2366. display:flex;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:12px;
  2371. color:#333333;
  2372. }
  2373. #u83188 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 0px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u83188_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. visibility:hidden;
  2385. }
  2386. #u83189_img {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:64px;
  2392. height:40px;
  2393. }
  2394. #u83189 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:347px;
  2398. top:158px;
  2399. width:64px;
  2400. height:40px;
  2401. display:flex;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:12px;
  2406. color:#333333;
  2407. }
  2408. #u83189 .text {
  2409. position:absolute;
  2410. align-self:center;
  2411. padding:2px 2px 2px 0px;
  2412. box-sizing:border-box;
  2413. width:100%;
  2414. }
  2415. #u83189_text {
  2416. border-width:0px;
  2417. word-wrap:break-word;
  2418. text-transform:none;
  2419. visibility:hidden;
  2420. }
  2421. #u83190_img {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:64px;
  2427. height:40px;
  2428. }
  2429. #u83190 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:411px;
  2433. top:158px;
  2434. width:64px;
  2435. height:40px;
  2436. display:flex;
  2437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2438. font-weight:400;
  2439. font-style:normal;
  2440. font-size:12px;
  2441. color:#333333;
  2442. }
  2443. #u83190 .text {
  2444. position:absolute;
  2445. align-self:center;
  2446. padding:2px 2px 2px 0px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u83190_text {
  2451. border-width:0px;
  2452. word-wrap:break-word;
  2453. text-transform:none;
  2454. visibility:hidden;
  2455. }
  2456. #u83191_img {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:78px;
  2462. height:40px;
  2463. }
  2464. #u83191 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:475px;
  2468. top:158px;
  2469. width:78px;
  2470. height:40px;
  2471. display:flex;
  2472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:12px;
  2476. color:#333333;
  2477. }
  2478. #u83191 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:2px 2px 2px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u83191_text {
  2486. border-width:0px;
  2487. word-wrap:break-word;
  2488. text-transform:none;
  2489. visibility:hidden;
  2490. }
  2491. #u83192_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:78px;
  2497. height:40px;
  2498. }
  2499. #u83192 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:553px;
  2503. top:158px;
  2504. width:78px;
  2505. height:40px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:12px;
  2511. color:#AAAAAA;
  2512. }
  2513. #u83192 .text {
  2514. position:absolute;
  2515. align-self:center;
  2516. padding:2px 2px 2px 0px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u83192_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. visibility:hidden;
  2525. }
  2526. #u83193_img {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:82px;
  2532. height:40px;
  2533. }
  2534. #u83193 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:631px;
  2538. top:158px;
  2539. width:82px;
  2540. height:40px;
  2541. display:flex;
  2542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. font-size:12px;
  2546. color:#AAAAAA;
  2547. }
  2548. #u83193 .text {
  2549. position:absolute;
  2550. align-self:center;
  2551. padding:2px 2px 2px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u83193_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. visibility:hidden;
  2560. }
  2561. #u83194_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:82px;
  2567. height:40px;
  2568. }
  2569. #u83194 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:713px;
  2573. top:158px;
  2574. width:82px;
  2575. height:40px;
  2576. display:flex;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. color:#AAAAAA;
  2582. }
  2583. #u83194 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 0px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u83194_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. visibility:hidden;
  2595. }
  2596. #u83195_img {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:89px;
  2602. height:40px;
  2603. }
  2604. #u83195 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:795px;
  2608. top:158px;
  2609. width:89px;
  2610. height:40px;
  2611. display:flex;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:12px;
  2616. color:#AAAAAA;
  2617. }
  2618. #u83195 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u83195_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. visibility:hidden;
  2630. }
  2631. #u83196_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:76px;
  2637. height:40px;
  2638. }
  2639. #u83196 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:884px;
  2643. top:158px;
  2644. width:76px;
  2645. height:40px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:12px;
  2651. color:#AAAAAA;
  2652. }
  2653. #u83196 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 0px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u83196_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u83197_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:33px;
  2672. height:40px;
  2673. }
  2674. #u83197 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:198px;
  2679. width:33px;
  2680. height:40px;
  2681. display:flex;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:12px;
  2686. color:#333333;
  2687. }
  2688. #u83197 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 0px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u83197_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. visibility:hidden;
  2700. }
  2701. #u83198_img {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:61px;
  2707. height:40px;
  2708. }
  2709. #u83198 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:33px;
  2713. top:198px;
  2714. width:61px;
  2715. height:40px;
  2716. display:flex;
  2717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2718. font-weight:400;
  2719. font-style:normal;
  2720. font-size:12px;
  2721. color:#333333;
  2722. }
  2723. #u83198 .text {
  2724. position:absolute;
  2725. align-self:center;
  2726. padding:2px 2px 2px 0px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u83198_text {
  2731. border-width:0px;
  2732. word-wrap:break-word;
  2733. text-transform:none;
  2734. visibility:hidden;
  2735. }
  2736. #u83199_img {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:0px;
  2740. top:0px;
  2741. width:61px;
  2742. height:40px;
  2743. }
  2744. #u83199 {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:94px;
  2748. top:198px;
  2749. width:61px;
  2750. height:40px;
  2751. display:flex;
  2752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:12px;
  2756. color:#333333;
  2757. }
  2758. #u83199 .text {
  2759. position:absolute;
  2760. align-self:center;
  2761. padding:2px 2px 2px 0px;
  2762. box-sizing:border-box;
  2763. width:100%;
  2764. }
  2765. #u83199_text {
  2766. border-width:0px;
  2767. word-wrap:break-word;
  2768. text-transform:none;
  2769. visibility:hidden;
  2770. }
  2771. #u83200_img {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:64px;
  2777. height:40px;
  2778. }
  2779. #u83200 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:155px;
  2783. top:198px;
  2784. width:64px;
  2785. height:40px;
  2786. display:flex;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:12px;
  2791. color:#333333;
  2792. }
  2793. #u83200 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:2px 2px 2px 0px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u83200_text {
  2801. border-width:0px;
  2802. word-wrap:break-word;
  2803. text-transform:none;
  2804. visibility:hidden;
  2805. }
  2806. #u83201_img {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:64px;
  2812. height:40px;
  2813. }
  2814. #u83201 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:219px;
  2818. top:198px;
  2819. width:64px;
  2820. height:40px;
  2821. display:flex;
  2822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2823. font-weight:400;
  2824. font-style:normal;
  2825. font-size:12px;
  2826. color:#333333;
  2827. }
  2828. #u83201 .text {
  2829. position:absolute;
  2830. align-self:center;
  2831. padding:2px 2px 2px 0px;
  2832. box-sizing:border-box;
  2833. width:100%;
  2834. }
  2835. #u83201_text {
  2836. border-width:0px;
  2837. word-wrap:break-word;
  2838. text-transform:none;
  2839. visibility:hidden;
  2840. }
  2841. #u83202_img {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:64px;
  2847. height:40px;
  2848. }
  2849. #u83202 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:283px;
  2853. top:198px;
  2854. width:64px;
  2855. height:40px;
  2856. display:flex;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:12px;
  2861. color:#333333;
  2862. }
  2863. #u83202 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u83202_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. visibility:hidden;
  2875. }
  2876. #u83203_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:64px;
  2882. height:40px;
  2883. }
  2884. #u83203 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:347px;
  2888. top:198px;
  2889. width:64px;
  2890. height:40px;
  2891. display:flex;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. color:#333333;
  2897. }
  2898. #u83203 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u83203_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u83204_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:64px;
  2917. height:40px;
  2918. }
  2919. #u83204 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:411px;
  2923. top:198px;
  2924. width:64px;
  2925. height:40px;
  2926. display:flex;
  2927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:12px;
  2931. color:#333333;
  2932. }
  2933. #u83204 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u83204_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u83205_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:78px;
  2952. height:40px;
  2953. }
  2954. #u83205 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:475px;
  2958. top:198px;
  2959. width:78px;
  2960. height:40px;
  2961. display:flex;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:12px;
  2966. color:#333333;
  2967. }
  2968. #u83205 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u83205_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. visibility:hidden;
  2980. }
  2981. #u83206_img {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:78px;
  2987. height:40px;
  2988. }
  2989. #u83206 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:553px;
  2993. top:198px;
  2994. width:78px;
  2995. height:40px;
  2996. display:flex;
  2997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:12px;
  3001. color:#AAAAAA;
  3002. }
  3003. #u83206 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:2px 2px 2px 0px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u83206_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. visibility:hidden;
  3015. }
  3016. #u83207_img {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:82px;
  3022. height:40px;
  3023. }
  3024. #u83207 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:631px;
  3028. top:198px;
  3029. width:82px;
  3030. height:40px;
  3031. display:flex;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:12px;
  3036. color:#AAAAAA;
  3037. }
  3038. #u83207 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 0px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u83207_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. visibility:hidden;
  3050. }
  3051. #u83208_img {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:82px;
  3057. height:40px;
  3058. }
  3059. #u83208 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:713px;
  3063. top:198px;
  3064. width:82px;
  3065. height:40px;
  3066. display:flex;
  3067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3068. font-weight:400;
  3069. font-style:normal;
  3070. font-size:12px;
  3071. color:#AAAAAA;
  3072. }
  3073. #u83208 .text {
  3074. position:absolute;
  3075. align-self:center;
  3076. padding:2px 2px 2px 0px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u83208_text {
  3081. border-width:0px;
  3082. word-wrap:break-word;
  3083. text-transform:none;
  3084. visibility:hidden;
  3085. }
  3086. #u83209_img {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:89px;
  3092. height:40px;
  3093. }
  3094. #u83209 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:795px;
  3098. top:198px;
  3099. width:89px;
  3100. height:40px;
  3101. display:flex;
  3102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. font-size:12px;
  3106. color:#AAAAAA;
  3107. }
  3108. #u83209 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u83209_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. visibility:hidden;
  3120. }
  3121. #u83210_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:76px;
  3127. height:40px;
  3128. }
  3129. #u83210 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:884px;
  3133. top:198px;
  3134. width:76px;
  3135. height:40px;
  3136. display:flex;
  3137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:12px;
  3141. color:#AAAAAA;
  3142. }
  3143. #u83210 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 0px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u83210_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. visibility:hidden;
  3155. }
  3156. #u83211_img {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:33px;
  3162. height:40px;
  3163. }
  3164. #u83211 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:238px;
  3169. width:33px;
  3170. height:40px;
  3171. display:flex;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:12px;
  3176. color:#333333;
  3177. }
  3178. #u83211 .text {
  3179. position:absolute;
  3180. align-self:center;
  3181. padding:2px 2px 2px 0px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u83211_text {
  3186. border-width:0px;
  3187. word-wrap:break-word;
  3188. text-transform:none;
  3189. visibility:hidden;
  3190. }
  3191. #u83212_img {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:61px;
  3197. height:40px;
  3198. }
  3199. #u83212 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:33px;
  3203. top:238px;
  3204. width:61px;
  3205. height:40px;
  3206. display:flex;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:12px;
  3211. color:#333333;
  3212. }
  3213. #u83212 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 0px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u83212_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. visibility:hidden;
  3225. }
  3226. #u83213_img {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:61px;
  3232. height:40px;
  3233. }
  3234. #u83213 {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:94px;
  3238. top:238px;
  3239. width:61px;
  3240. height:40px;
  3241. display:flex;
  3242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. font-size:12px;
  3246. color:#333333;
  3247. }
  3248. #u83213 .text {
  3249. position:absolute;
  3250. align-self:center;
  3251. padding:2px 2px 2px 0px;
  3252. box-sizing:border-box;
  3253. width:100%;
  3254. }
  3255. #u83213_text {
  3256. border-width:0px;
  3257. word-wrap:break-word;
  3258. text-transform:none;
  3259. visibility:hidden;
  3260. }
  3261. #u83214_img {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:64px;
  3267. height:40px;
  3268. }
  3269. #u83214 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:155px;
  3273. top:238px;
  3274. width:64px;
  3275. height:40px;
  3276. display:flex;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:12px;
  3281. color:#333333;
  3282. }
  3283. #u83214 .text {
  3284. position:absolute;
  3285. align-self:center;
  3286. padding:2px 2px 2px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u83214_text {
  3291. border-width:0px;
  3292. word-wrap:break-word;
  3293. text-transform:none;
  3294. visibility:hidden;
  3295. }
  3296. #u83215_img {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:64px;
  3302. height:40px;
  3303. }
  3304. #u83215 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:219px;
  3308. top:238px;
  3309. width:64px;
  3310. height:40px;
  3311. display:flex;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:12px;
  3316. color:#333333;
  3317. }
  3318. #u83215 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:2px 2px 2px 0px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u83215_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. visibility:hidden;
  3330. }
  3331. #u83216_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:64px;
  3337. height:40px;
  3338. }
  3339. #u83216 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:283px;
  3343. top:238px;
  3344. width:64px;
  3345. height:40px;
  3346. display:flex;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. color:#333333;
  3352. }
  3353. #u83216 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u83216_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. visibility:hidden;
  3365. }
  3366. #u83217_img {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:64px;
  3372. height:40px;
  3373. }
  3374. #u83217 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:347px;
  3378. top:238px;
  3379. width:64px;
  3380. height:40px;
  3381. display:flex;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:12px;
  3386. color:#333333;
  3387. }
  3388. #u83217 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 0px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u83217_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u83218_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:64px;
  3407. height:40px;
  3408. }
  3409. #u83218 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:411px;
  3413. top:238px;
  3414. width:64px;
  3415. height:40px;
  3416. display:flex;
  3417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:12px;
  3421. color:#333333;
  3422. }
  3423. #u83218 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 2px 2px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u83218_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u83219_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:78px;
  3442. height:40px;
  3443. }
  3444. #u83219 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:475px;
  3448. top:238px;
  3449. width:78px;
  3450. height:40px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:12px;
  3456. color:#333333;
  3457. }
  3458. #u83219 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 0px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u83219_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u83220_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:78px;
  3477. height:40px;
  3478. }
  3479. #u83220 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:553px;
  3483. top:238px;
  3484. width:78px;
  3485. height:40px;
  3486. display:flex;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:12px;
  3491. color:#333333;
  3492. }
  3493. #u83220 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 0px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u83220_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. visibility:hidden;
  3505. }
  3506. #u83221_img {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:82px;
  3512. height:40px;
  3513. }
  3514. #u83221 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:631px;
  3518. top:238px;
  3519. width:82px;
  3520. height:40px;
  3521. display:flex;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:12px;
  3526. color:#333333;
  3527. }
  3528. #u83221 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:2px 2px 2px 0px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u83221_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. visibility:hidden;
  3540. }
  3541. #u83222_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:82px;
  3547. height:40px;
  3548. }
  3549. #u83222 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:713px;
  3553. top:238px;
  3554. width:82px;
  3555. height:40px;
  3556. display:flex;
  3557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3558. font-weight:400;
  3559. font-style:normal;
  3560. font-size:12px;
  3561. color:#333333;
  3562. }
  3563. #u83222 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:2px 2px 2px 0px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u83222_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. visibility:hidden;
  3575. }
  3576. #u83223_img {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:89px;
  3582. height:40px;
  3583. }
  3584. #u83223 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:795px;
  3588. top:238px;
  3589. width:89px;
  3590. height:40px;
  3591. display:flex;
  3592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:12px;
  3596. color:#333333;
  3597. }
  3598. #u83223 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 2px 2px 0px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u83223_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. visibility:hidden;
  3610. }
  3611. #u83224_img {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:76px;
  3617. height:40px;
  3618. }
  3619. #u83224 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:884px;
  3623. top:238px;
  3624. width:76px;
  3625. height:40px;
  3626. display:flex;
  3627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3628. font-weight:400;
  3629. font-style:normal;
  3630. font-size:12px;
  3631. color:#333333;
  3632. }
  3633. #u83224 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:2px 2px 2px 0px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u83224_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. visibility:hidden;
  3645. }
  3646. #u83225_img {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:33px;
  3652. height:40px;
  3653. }
  3654. #u83225 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:0px;
  3658. top:278px;
  3659. width:33px;
  3660. height:40px;
  3661. display:flex;
  3662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. font-size:12px;
  3666. color:#333333;
  3667. }
  3668. #u83225 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:2px 2px 2px 0px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u83225_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. visibility:hidden;
  3680. }
  3681. #u83226_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:61px;
  3687. height:40px;
  3688. }
  3689. #u83226 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:33px;
  3693. top:278px;
  3694. width:61px;
  3695. height:40px;
  3696. display:flex;
  3697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:12px;
  3701. color:#333333;
  3702. }
  3703. #u83226 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u83226_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u83227_img {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:61px;
  3722. height:40px;
  3723. }
  3724. #u83227 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:94px;
  3728. top:278px;
  3729. width:61px;
  3730. height:40px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:12px;
  3736. color:#333333;
  3737. }
  3738. #u83227 .text {
  3739. position:absolute;
  3740. align-self:center;
  3741. padding:2px 2px 2px 0px;
  3742. box-sizing:border-box;
  3743. width:100%;
  3744. }
  3745. #u83227_text {
  3746. border-width:0px;
  3747. word-wrap:break-word;
  3748. text-transform:none;
  3749. visibility:hidden;
  3750. }
  3751. #u83228_img {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:64px;
  3757. height:40px;
  3758. }
  3759. #u83228 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:155px;
  3763. top:278px;
  3764. width:64px;
  3765. height:40px;
  3766. display:flex;
  3767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:12px;
  3771. color:#333333;
  3772. }
  3773. #u83228 .text {
  3774. position:absolute;
  3775. align-self:center;
  3776. padding:2px 2px 2px 0px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u83228_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u83229_img {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:64px;
  3792. height:40px;
  3793. }
  3794. #u83229 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:219px;
  3798. top:278px;
  3799. width:64px;
  3800. height:40px;
  3801. display:flex;
  3802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:12px;
  3806. color:#333333;
  3807. }
  3808. #u83229 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 0px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u83229_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u83230_img {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:64px;
  3827. height:40px;
  3828. }
  3829. #u83230 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:283px;
  3833. top:278px;
  3834. width:64px;
  3835. height:40px;
  3836. display:flex;
  3837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:12px;
  3841. color:#333333;
  3842. }
  3843. #u83230 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 0px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u83230_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u83231_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:64px;
  3862. height:40px;
  3863. }
  3864. #u83231 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:347px;
  3868. top:278px;
  3869. width:64px;
  3870. height:40px;
  3871. display:flex;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:12px;
  3876. color:#333333;
  3877. }
  3878. #u83231 .text {
  3879. position:absolute;
  3880. align-self:center;
  3881. padding:2px 2px 2px 0px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u83231_text {
  3886. border-width:0px;
  3887. word-wrap:break-word;
  3888. text-transform:none;
  3889. visibility:hidden;
  3890. }
  3891. #u83232_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:64px;
  3897. height:40px;
  3898. }
  3899. #u83232 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:411px;
  3903. top:278px;
  3904. width:64px;
  3905. height:40px;
  3906. display:flex;
  3907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3908. font-weight:400;
  3909. font-style:normal;
  3910. font-size:12px;
  3911. color:#333333;
  3912. }
  3913. #u83232 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 0px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u83232_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u83233_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:78px;
  3932. height:40px;
  3933. }
  3934. #u83233 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:475px;
  3938. top:278px;
  3939. width:78px;
  3940. height:40px;
  3941. display:flex;
  3942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:12px;
  3946. color:#333333;
  3947. }
  3948. #u83233 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 0px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u83233_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u83234_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:78px;
  3967. height:40px;
  3968. }
  3969. #u83234 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:553px;
  3973. top:278px;
  3974. width:78px;
  3975. height:40px;
  3976. display:flex;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:12px;
  3981. color:#333333;
  3982. }
  3983. #u83234 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 0px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u83234_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u83235_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:82px;
  4002. height:40px;
  4003. }
  4004. #u83235 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:631px;
  4008. top:278px;
  4009. width:82px;
  4010. height:40px;
  4011. display:flex;
  4012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. font-size:12px;
  4016. color:#333333;
  4017. }
  4018. #u83235 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 0px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u83235_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u83236_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:82px;
  4037. height:40px;
  4038. }
  4039. #u83236 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:713px;
  4043. top:278px;
  4044. width:82px;
  4045. height:40px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:12px;
  4051. color:#333333;
  4052. }
  4053. #u83236 .text {
  4054. position:absolute;
  4055. align-self:center;
  4056. padding:2px 2px 2px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u83236_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. visibility:hidden;
  4065. }
  4066. #u83237_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:89px;
  4072. height:40px;
  4073. }
  4074. #u83237 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:795px;
  4078. top:278px;
  4079. width:89px;
  4080. height:40px;
  4081. display:flex;
  4082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:12px;
  4086. color:#333333;
  4087. }
  4088. #u83237 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u83237_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u83238_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:76px;
  4107. height:40px;
  4108. }
  4109. #u83238 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:884px;
  4113. top:278px;
  4114. width:76px;
  4115. height:40px;
  4116. display:flex;
  4117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. color:#333333;
  4122. }
  4123. #u83238 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 0px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u83238_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u83239_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:33px;
  4142. height:40px;
  4143. }
  4144. #u83239 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:318px;
  4149. width:33px;
  4150. height:40px;
  4151. display:flex;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. color:#333333;
  4157. }
  4158. #u83239 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 0px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u83239_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u83240_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:61px;
  4177. height:40px;
  4178. }
  4179. #u83240 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:33px;
  4183. top:318px;
  4184. width:61px;
  4185. height:40px;
  4186. display:flex;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:12px;
  4191. color:#333333;
  4192. }
  4193. #u83240 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 0px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u83240_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u83241_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:61px;
  4212. height:40px;
  4213. }
  4214. #u83241 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:94px;
  4218. top:318px;
  4219. width:61px;
  4220. height:40px;
  4221. display:flex;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:12px;
  4226. color:#333333;
  4227. }
  4228. #u83241 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u83241_text {
  4236. border-width:0px;
  4237. word-wrap:break-word;
  4238. text-transform:none;
  4239. visibility:hidden;
  4240. }
  4241. #u83242_img {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:64px;
  4247. height:40px;
  4248. }
  4249. #u83242 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:155px;
  4253. top:318px;
  4254. width:64px;
  4255. height:40px;
  4256. display:flex;
  4257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:12px;
  4261. color:#333333;
  4262. }
  4263. #u83242 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 0px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u83242_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u83243_img {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:64px;
  4282. height:40px;
  4283. }
  4284. #u83243 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:219px;
  4288. top:318px;
  4289. width:64px;
  4290. height:40px;
  4291. display:flex;
  4292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:12px;
  4296. color:#333333;
  4297. }
  4298. #u83243 .text {
  4299. position:absolute;
  4300. align-self:center;
  4301. padding:2px 2px 2px 0px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u83243_text {
  4306. border-width:0px;
  4307. word-wrap:break-word;
  4308. text-transform:none;
  4309. visibility:hidden;
  4310. }
  4311. #u83244_img {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:64px;
  4317. height:40px;
  4318. }
  4319. #u83244 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:283px;
  4323. top:318px;
  4324. width:64px;
  4325. height:40px;
  4326. display:flex;
  4327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:12px;
  4331. color:#333333;
  4332. }
  4333. #u83244 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 0px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u83244_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. visibility:hidden;
  4345. }
  4346. #u83245_img {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:64px;
  4352. height:40px;
  4353. }
  4354. #u83245 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:347px;
  4358. top:318px;
  4359. width:64px;
  4360. height:40px;
  4361. display:flex;
  4362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. font-size:12px;
  4366. color:#333333;
  4367. }
  4368. #u83245 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 0px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u83245_text {
  4376. border-width:0px;
  4377. word-wrap:break-word;
  4378. text-transform:none;
  4379. visibility:hidden;
  4380. }
  4381. #u83246_img {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:64px;
  4387. height:40px;
  4388. }
  4389. #u83246 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:411px;
  4393. top:318px;
  4394. width:64px;
  4395. height:40px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:12px;
  4401. color:#333333;
  4402. }
  4403. #u83246 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 0px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u83246_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. visibility:hidden;
  4415. }
  4416. #u83247_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:78px;
  4422. height:40px;
  4423. }
  4424. #u83247 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:475px;
  4428. top:318px;
  4429. width:78px;
  4430. height:40px;
  4431. display:flex;
  4432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:12px;
  4436. color:#333333;
  4437. }
  4438. #u83247 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u83247_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u83248_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:78px;
  4457. height:40px;
  4458. }
  4459. #u83248 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:553px;
  4463. top:318px;
  4464. width:78px;
  4465. height:40px;
  4466. display:flex;
  4467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:12px;
  4471. color:#333333;
  4472. }
  4473. #u83248 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 0px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u83248_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u83249_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:82px;
  4492. height:40px;
  4493. }
  4494. #u83249 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:631px;
  4498. top:318px;
  4499. width:82px;
  4500. height:40px;
  4501. display:flex;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:12px;
  4506. color:#333333;
  4507. }
  4508. #u83249 .text {
  4509. position:absolute;
  4510. align-self:center;
  4511. padding:2px 2px 2px 0px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u83249_text {
  4516. border-width:0px;
  4517. word-wrap:break-word;
  4518. text-transform:none;
  4519. visibility:hidden;
  4520. }
  4521. #u83250_img {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:82px;
  4527. height:40px;
  4528. }
  4529. #u83250 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:713px;
  4533. top:318px;
  4534. width:82px;
  4535. height:40px;
  4536. display:flex;
  4537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. color:#333333;
  4542. }
  4543. #u83250 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 0px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u83250_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u83251_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:89px;
  4562. height:40px;
  4563. }
  4564. #u83251 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:795px;
  4568. top:318px;
  4569. width:89px;
  4570. height:40px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:12px;
  4576. color:#333333;
  4577. }
  4578. #u83251 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:2px 2px 2px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u83251_text {
  4586. border-width:0px;
  4587. word-wrap:break-word;
  4588. text-transform:none;
  4589. visibility:hidden;
  4590. }
  4591. #u83252_img {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:76px;
  4597. height:40px;
  4598. }
  4599. #u83252 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:884px;
  4603. top:318px;
  4604. width:76px;
  4605. height:40px;
  4606. display:flex;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:12px;
  4611. color:#333333;
  4612. }
  4613. #u83252 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 0px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u83252_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u83253_img {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:33px;
  4632. height:40px;
  4633. }
  4634. #u83253 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:358px;
  4639. width:33px;
  4640. height:40px;
  4641. display:flex;
  4642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:12px;
  4646. color:#333333;
  4647. }
  4648. #u83253 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 2px 2px 0px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u83253_text {
  4656. border-width:0px;
  4657. word-wrap:break-word;
  4658. text-transform:none;
  4659. visibility:hidden;
  4660. }
  4661. #u83254_img {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:61px;
  4667. height:40px;
  4668. }
  4669. #u83254 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:33px;
  4673. top:358px;
  4674. width:61px;
  4675. height:40px;
  4676. display:flex;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:12px;
  4681. color:#333333;
  4682. }
  4683. #u83254 .text {
  4684. position:absolute;
  4685. align-self:center;
  4686. padding:2px 2px 2px 0px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u83254_text {
  4691. border-width:0px;
  4692. word-wrap:break-word;
  4693. text-transform:none;
  4694. visibility:hidden;
  4695. }
  4696. #u83255_img {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:61px;
  4702. height:40px;
  4703. }
  4704. #u83255 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:94px;
  4708. top:358px;
  4709. width:61px;
  4710. height:40px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:12px;
  4716. color:#333333;
  4717. }
  4718. #u83255 .text {
  4719. position:absolute;
  4720. align-self:center;
  4721. padding:2px 2px 2px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u83255_text {
  4726. border-width:0px;
  4727. word-wrap:break-word;
  4728. text-transform:none;
  4729. visibility:hidden;
  4730. }
  4731. #u83256_img {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:0px;
  4736. width:64px;
  4737. height:40px;
  4738. }
  4739. #u83256 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:155px;
  4743. top:358px;
  4744. width:64px;
  4745. height:40px;
  4746. display:flex;
  4747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. font-size:12px;
  4751. color:#333333;
  4752. }
  4753. #u83256 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 0px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u83256_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. visibility:hidden;
  4765. }
  4766. #u83257_img {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:64px;
  4772. height:40px;
  4773. }
  4774. #u83257 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:219px;
  4778. top:358px;
  4779. width:64px;
  4780. height:40px;
  4781. display:flex;
  4782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:12px;
  4786. color:#333333;
  4787. }
  4788. #u83257 .text {
  4789. position:absolute;
  4790. align-self:center;
  4791. padding:2px 2px 2px 0px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u83257_text {
  4796. border-width:0px;
  4797. word-wrap:break-word;
  4798. text-transform:none;
  4799. visibility:hidden;
  4800. }
  4801. #u83258_img {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:64px;
  4807. height:40px;
  4808. }
  4809. #u83258 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:283px;
  4813. top:358px;
  4814. width:64px;
  4815. height:40px;
  4816. display:flex;
  4817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4818. font-weight:400;
  4819. font-style:normal;
  4820. font-size:12px;
  4821. color:#333333;
  4822. }
  4823. #u83258 .text {
  4824. position:absolute;
  4825. align-self:center;
  4826. padding:2px 2px 2px 0px;
  4827. box-sizing:border-box;
  4828. width:100%;
  4829. }
  4830. #u83258_text {
  4831. border-width:0px;
  4832. word-wrap:break-word;
  4833. text-transform:none;
  4834. visibility:hidden;
  4835. }
  4836. #u83259_img {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:64px;
  4842. height:40px;
  4843. }
  4844. #u83259 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:347px;
  4848. top:358px;
  4849. width:64px;
  4850. height:40px;
  4851. display:flex;
  4852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4853. font-weight:400;
  4854. font-style:normal;
  4855. font-size:12px;
  4856. color:#333333;
  4857. }
  4858. #u83259 .text {
  4859. position:absolute;
  4860. align-self:center;
  4861. padding:2px 2px 2px 0px;
  4862. box-sizing:border-box;
  4863. width:100%;
  4864. }
  4865. #u83259_text {
  4866. border-width:0px;
  4867. word-wrap:break-word;
  4868. text-transform:none;
  4869. visibility:hidden;
  4870. }
  4871. #u83260_img {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:64px;
  4877. height:40px;
  4878. }
  4879. #u83260 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:411px;
  4883. top:358px;
  4884. width:64px;
  4885. height:40px;
  4886. display:flex;
  4887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:12px;
  4891. color:#333333;
  4892. }
  4893. #u83260 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:2px 2px 2px 0px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u83260_text {
  4901. border-width:0px;
  4902. word-wrap:break-word;
  4903. text-transform:none;
  4904. visibility:hidden;
  4905. }
  4906. #u83261_img {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:78px;
  4912. height:40px;
  4913. }
  4914. #u83261 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:475px;
  4918. top:358px;
  4919. width:78px;
  4920. height:40px;
  4921. display:flex;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:12px;
  4926. color:#333333;
  4927. }
  4928. #u83261 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:2px 2px 2px 0px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u83261_text {
  4936. border-width:0px;
  4937. word-wrap:break-word;
  4938. text-transform:none;
  4939. visibility:hidden;
  4940. }
  4941. #u83262_img {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:78px;
  4947. height:40px;
  4948. }
  4949. #u83262 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:553px;
  4953. top:358px;
  4954. width:78px;
  4955. height:40px;
  4956. display:flex;
  4957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:12px;
  4961. color:#333333;
  4962. }
  4963. #u83262 .text {
  4964. position:absolute;
  4965. align-self:center;
  4966. padding:2px 2px 2px 0px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u83262_text {
  4971. border-width:0px;
  4972. word-wrap:break-word;
  4973. text-transform:none;
  4974. visibility:hidden;
  4975. }
  4976. #u83263_img {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:82px;
  4982. height:40px;
  4983. }
  4984. #u83263 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:631px;
  4988. top:358px;
  4989. width:82px;
  4990. height:40px;
  4991. display:flex;
  4992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:12px;
  4996. color:#333333;
  4997. }
  4998. #u83263 .text {
  4999. position:absolute;
  5000. align-self:center;
  5001. padding:2px 2px 2px 0px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u83263_text {
  5006. border-width:0px;
  5007. word-wrap:break-word;
  5008. text-transform:none;
  5009. visibility:hidden;
  5010. }
  5011. #u83264_img {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:82px;
  5017. height:40px;
  5018. }
  5019. #u83264 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:713px;
  5023. top:358px;
  5024. width:82px;
  5025. height:40px;
  5026. display:flex;
  5027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:12px;
  5031. color:#333333;
  5032. }
  5033. #u83264 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 2px 2px 0px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u83264_text {
  5041. border-width:0px;
  5042. word-wrap:break-word;
  5043. text-transform:none;
  5044. visibility:hidden;
  5045. }
  5046. #u83265_img {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:89px;
  5052. height:40px;
  5053. }
  5054. #u83265 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:795px;
  5058. top:358px;
  5059. width:89px;
  5060. height:40px;
  5061. display:flex;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:12px;
  5066. color:#333333;
  5067. }
  5068. #u83265 .text {
  5069. position:absolute;
  5070. align-self:center;
  5071. padding:2px 2px 2px 0px;
  5072. box-sizing:border-box;
  5073. width:100%;
  5074. }
  5075. #u83265_text {
  5076. border-width:0px;
  5077. word-wrap:break-word;
  5078. text-transform:none;
  5079. visibility:hidden;
  5080. }
  5081. #u83266_img {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:76px;
  5087. height:40px;
  5088. }
  5089. #u83266 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:884px;
  5093. top:358px;
  5094. width:76px;
  5095. height:40px;
  5096. display:flex;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:12px;
  5101. color:#333333;
  5102. }
  5103. #u83266 .text {
  5104. position:absolute;
  5105. align-self:center;
  5106. padding:2px 2px 2px 0px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u83266_text {
  5111. border-width:0px;
  5112. word-wrap:break-word;
  5113. text-transform:none;
  5114. visibility:hidden;
  5115. }
  5116. #u83267_img {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:0px;
  5120. top:0px;
  5121. width:33px;
  5122. height:40px;
  5123. }
  5124. #u83267 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:398px;
  5129. width:33px;
  5130. height:40px;
  5131. display:flex;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:12px;
  5136. color:#333333;
  5137. }
  5138. #u83267 .text {
  5139. position:absolute;
  5140. align-self:center;
  5141. padding:2px 2px 2px 0px;
  5142. box-sizing:border-box;
  5143. width:100%;
  5144. }
  5145. #u83267_text {
  5146. border-width:0px;
  5147. word-wrap:break-word;
  5148. text-transform:none;
  5149. visibility:hidden;
  5150. }
  5151. #u83268_img {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:61px;
  5157. height:40px;
  5158. }
  5159. #u83268 {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:33px;
  5163. top:398px;
  5164. width:61px;
  5165. height:40px;
  5166. display:flex;
  5167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:12px;
  5171. color:#333333;
  5172. }
  5173. #u83268 .text {
  5174. position:absolute;
  5175. align-self:center;
  5176. padding:2px 2px 2px 0px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u83268_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. visibility:hidden;
  5185. }
  5186. #u83269_img {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:61px;
  5192. height:40px;
  5193. }
  5194. #u83269 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:94px;
  5198. top:398px;
  5199. width:61px;
  5200. height:40px;
  5201. display:flex;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:12px;
  5206. color:#333333;
  5207. }
  5208. #u83269 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:2px 2px 2px 0px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u83269_text {
  5216. border-width:0px;
  5217. word-wrap:break-word;
  5218. text-transform:none;
  5219. visibility:hidden;
  5220. }
  5221. #u83270_img {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:64px;
  5227. height:40px;
  5228. }
  5229. #u83270 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:155px;
  5233. top:398px;
  5234. width:64px;
  5235. height:40px;
  5236. display:flex;
  5237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:12px;
  5241. color:#333333;
  5242. }
  5243. #u83270 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:2px 2px 2px 0px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u83270_text {
  5251. border-width:0px;
  5252. word-wrap:break-word;
  5253. text-transform:none;
  5254. visibility:hidden;
  5255. }
  5256. #u83271_img {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:64px;
  5262. height:40px;
  5263. }
  5264. #u83271 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:219px;
  5268. top:398px;
  5269. width:64px;
  5270. height:40px;
  5271. display:flex;
  5272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:12px;
  5276. color:#333333;
  5277. }
  5278. #u83271 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 2px 2px 0px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u83271_text {
  5286. border-width:0px;
  5287. word-wrap:break-word;
  5288. text-transform:none;
  5289. visibility:hidden;
  5290. }
  5291. #u83272_img {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:64px;
  5297. height:40px;
  5298. }
  5299. #u83272 {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:283px;
  5303. top:398px;
  5304. width:64px;
  5305. height:40px;
  5306. display:flex;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:12px;
  5311. color:#333333;
  5312. }
  5313. #u83272 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:2px 2px 2px 0px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u83272_text {
  5321. border-width:0px;
  5322. word-wrap:break-word;
  5323. text-transform:none;
  5324. visibility:hidden;
  5325. }
  5326. #u83273_img {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:0px;
  5331. width:64px;
  5332. height:40px;
  5333. }
  5334. #u83273 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:347px;
  5338. top:398px;
  5339. width:64px;
  5340. height:40px;
  5341. display:flex;
  5342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:12px;
  5346. color:#333333;
  5347. }
  5348. #u83273 .text {
  5349. position:absolute;
  5350. align-self:center;
  5351. padding:2px 2px 2px 0px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u83273_text {
  5356. border-width:0px;
  5357. word-wrap:break-word;
  5358. text-transform:none;
  5359. visibility:hidden;
  5360. }
  5361. #u83274_img {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:64px;
  5367. height:40px;
  5368. }
  5369. #u83274 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:411px;
  5373. top:398px;
  5374. width:64px;
  5375. height:40px;
  5376. display:flex;
  5377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5378. font-weight:400;
  5379. font-style:normal;
  5380. font-size:12px;
  5381. color:#333333;
  5382. }
  5383. #u83274 .text {
  5384. position:absolute;
  5385. align-self:center;
  5386. padding:2px 2px 2px 0px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u83274_text {
  5391. border-width:0px;
  5392. word-wrap:break-word;
  5393. text-transform:none;
  5394. visibility:hidden;
  5395. }
  5396. #u83275_img {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:78px;
  5402. height:40px;
  5403. }
  5404. #u83275 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:475px;
  5408. top:398px;
  5409. width:78px;
  5410. height:40px;
  5411. display:flex;
  5412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5413. font-weight:400;
  5414. font-style:normal;
  5415. font-size:12px;
  5416. color:#333333;
  5417. }
  5418. #u83275 .text {
  5419. position:absolute;
  5420. align-self:center;
  5421. padding:2px 2px 2px 0px;
  5422. box-sizing:border-box;
  5423. width:100%;
  5424. }
  5425. #u83275_text {
  5426. border-width:0px;
  5427. word-wrap:break-word;
  5428. text-transform:none;
  5429. visibility:hidden;
  5430. }
  5431. #u83276_img {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:78px;
  5437. height:40px;
  5438. }
  5439. #u83276 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:553px;
  5443. top:398px;
  5444. width:78px;
  5445. height:40px;
  5446. display:flex;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:12px;
  5451. color:#333333;
  5452. }
  5453. #u83276 .text {
  5454. position:absolute;
  5455. align-self:center;
  5456. padding:2px 2px 2px 0px;
  5457. box-sizing:border-box;
  5458. width:100%;
  5459. }
  5460. #u83276_text {
  5461. border-width:0px;
  5462. word-wrap:break-word;
  5463. text-transform:none;
  5464. visibility:hidden;
  5465. }
  5466. #u83277_img {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:82px;
  5472. height:40px;
  5473. }
  5474. #u83277 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:631px;
  5478. top:398px;
  5479. width:82px;
  5480. height:40px;
  5481. display:flex;
  5482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:12px;
  5486. color:#333333;
  5487. }
  5488. #u83277 .text {
  5489. position:absolute;
  5490. align-self:center;
  5491. padding:2px 2px 2px 0px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u83277_text {
  5496. border-width:0px;
  5497. word-wrap:break-word;
  5498. text-transform:none;
  5499. visibility:hidden;
  5500. }
  5501. #u83278_img {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:82px;
  5507. height:40px;
  5508. }
  5509. #u83278 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:713px;
  5513. top:398px;
  5514. width:82px;
  5515. height:40px;
  5516. display:flex;
  5517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5518. font-weight:400;
  5519. font-style:normal;
  5520. font-size:12px;
  5521. color:#333333;
  5522. }
  5523. #u83278 .text {
  5524. position:absolute;
  5525. align-self:center;
  5526. padding:2px 2px 2px 0px;
  5527. box-sizing:border-box;
  5528. width:100%;
  5529. }
  5530. #u83278_text {
  5531. border-width:0px;
  5532. word-wrap:break-word;
  5533. text-transform:none;
  5534. visibility:hidden;
  5535. }
  5536. #u83279_img {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:89px;
  5542. height:40px;
  5543. }
  5544. #u83279 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:795px;
  5548. top:398px;
  5549. width:89px;
  5550. height:40px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:12px;
  5556. color:#333333;
  5557. }
  5558. #u83279 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u83279_text {
  5566. border-width:0px;
  5567. word-wrap:break-word;
  5568. text-transform:none;
  5569. visibility:hidden;
  5570. }
  5571. #u83280_img {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:76px;
  5577. height:40px;
  5578. }
  5579. #u83280 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:884px;
  5583. top:398px;
  5584. width:76px;
  5585. height:40px;
  5586. display:flex;
  5587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5588. font-weight:400;
  5589. font-style:normal;
  5590. font-size:12px;
  5591. color:#333333;
  5592. }
  5593. #u83280 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 2px 2px 0px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u83280_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. visibility:hidden;
  5605. }
  5606. #u83281 label {
  5607. left:0px;
  5608. width:100%;
  5609. }
  5610. #u83281_img {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:12px;
  5616. height:12px;
  5617. }
  5618. #u83281 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:118px;
  5622. top:222px;
  5623. width:30px;
  5624. height:16px;
  5625. display:flex;
  5626. }
  5627. #u83281 .text {
  5628. position:absolute;
  5629. align-self:center;
  5630. padding:0px 2px 0px 2px;
  5631. box-sizing:border-box;
  5632. }
  5633. #u83281_img.selected {
  5634. }
  5635. #u83281.selected {
  5636. }
  5637. #u83281_img.disabled {
  5638. }
  5639. #u83281.disabled {
  5640. }
  5641. #u83281_img.selectedDisabled {
  5642. }
  5643. #u83281.selectedDisabled {
  5644. }
  5645. #u83281_text {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:14px;
  5649. top:0px;
  5650. width:14px;
  5651. word-wrap:break-word;
  5652. text-transform:none;
  5653. visibility:hidden;
  5654. }
  5655. #u83281_input {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:0px;
  5661. height:0px;
  5662. opacity:0;
  5663. }
  5664. #u83282 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:0px;
  5670. height:0px;
  5671. }
  5672. #u83283_div {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:140px;
  5678. height:30px;
  5679. background:inherit;
  5680. background-color:rgba(255, 255, 255, 1);
  5681. box-sizing:border-box;
  5682. border-width:1px;
  5683. border-style:solid;
  5684. border-color:rgba(201, 201, 201, 1);
  5685. border-radius:4px;
  5686. -moz-box-shadow:none;
  5687. -webkit-box-shadow:none;
  5688. box-shadow:none;
  5689. font-family:'Microsoft YaHei', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:14px;
  5693. color:#CCCCCC;
  5694. text-align:left;
  5695. }
  5696. #u83283 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:110px;
  5700. top:130px;
  5701. width:140px;
  5702. height:30px;
  5703. display:flex;
  5704. font-family:'Microsoft YaHei', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. font-size:14px;
  5708. color:#CCCCCC;
  5709. text-align:left;
  5710. }
  5711. #u83283 .text {
  5712. position:absolute;
  5713. align-self:center;
  5714. padding:2px 8px 2px 8px;
  5715. box-sizing:border-box;
  5716. width:100%;
  5717. }
  5718. #u83283_text {
  5719. border-width:0px;
  5720. word-wrap:break-word;
  5721. text-transform:none;
  5722. visibility:hidden;
  5723. }
  5724. #u83284_input {
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:127px;
  5729. height:25px;
  5730. padding:2px 2px 2px 2px;
  5731. font-family:'Microsoft YaHei', sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. font-size:10px;
  5735. letter-spacing:normal;
  5736. color:#000000;
  5737. vertical-align:none;
  5738. text-align:left;
  5739. text-transform:none;
  5740. background-color:transparent;
  5741. border-color:transparent;
  5742. }
  5743. #u83284_input.disabled {
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:127px;
  5748. height:25px;
  5749. padding:2px 2px 2px 2px;
  5750. font-family:'Microsoft YaHei', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:10px;
  5754. letter-spacing:normal;
  5755. color:#000000;
  5756. vertical-align:none;
  5757. text-align:left;
  5758. text-transform:none;
  5759. background-color:transparent;
  5760. border-color:transparent;
  5761. }
  5762. #u83284_div {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:127px;
  5768. height:25px;
  5769. background:inherit;
  5770. background-color:rgba(255, 255, 255, 1);
  5771. border:none;
  5772. border-radius:0px;
  5773. -moz-box-shadow:none;
  5774. -webkit-box-shadow:none;
  5775. box-shadow:none;
  5776. font-family:'Microsoft YaHei', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:10px;
  5780. }
  5781. #u83284 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:118px;
  5785. top:131px;
  5786. width:127px;
  5787. height:25px;
  5788. display:flex;
  5789. font-family:'Microsoft YaHei', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:10px;
  5793. }
  5794. #u83284 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:2px 2px 2px 2px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u83284_div.disabled {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:127px;
  5807. height:25px;
  5808. background:inherit;
  5809. background-color:rgba(240, 240, 240, 1);
  5810. border:none;
  5811. border-radius:0px;
  5812. -moz-box-shadow:none;
  5813. -webkit-box-shadow:none;
  5814. box-shadow:none;
  5815. font-family:'Microsoft YaHei', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. font-size:10px;
  5819. }
  5820. #u83284.disabled {
  5821. }
  5822. #u83285 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:0px;
  5828. height:0px;
  5829. }
  5830. #u83286_div {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:140px;
  5836. height:30px;
  5837. background:inherit;
  5838. background-color:rgba(255, 255, 255, 1);
  5839. box-sizing:border-box;
  5840. border-width:1px;
  5841. border-style:solid;
  5842. border-color:rgba(215, 215, 215, 1);
  5843. border-radius:4px;
  5844. -moz-box-shadow:none;
  5845. -webkit-box-shadow:none;
  5846. box-shadow:none;
  5847. font-size:11px;
  5848. }
  5849. #u83286 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:260px;
  5853. top:129px;
  5854. width:140px;
  5855. height:30px;
  5856. display:flex;
  5857. font-size:11px;
  5858. }
  5859. #u83286 .text {
  5860. position:absolute;
  5861. align-self:center;
  5862. padding:2px 2px 2px 2px;
  5863. box-sizing:border-box;
  5864. width:100%;
  5865. }
  5866. #u83286_text {
  5867. border-width:0px;
  5868. word-wrap:break-word;
  5869. text-transform:none;
  5870. visibility:hidden;
  5871. }
  5872. #u83287_input {
  5873. position:absolute;
  5874. left:0px;
  5875. top:0px;
  5876. width:126px;
  5877. height:23px;
  5878. padding:2px 2px 2px 2px;
  5879. font-family:'ArialMT', 'Arial', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:11px;
  5883. letter-spacing:normal;
  5884. color:#AAAAAA;
  5885. vertical-align:none;
  5886. text-align:left;
  5887. text-transform:none;
  5888. background-color:transparent;
  5889. border-color:transparent;
  5890. }
  5891. #u83287_input.disabled {
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:126px;
  5896. height:23px;
  5897. padding:2px 2px 2px 2px;
  5898. font-family:'ArialMT', 'Arial', sans-serif;
  5899. font-weight:400;
  5900. font-style:normal;
  5901. font-size:11px;
  5902. letter-spacing:normal;
  5903. color:#AAAAAA;
  5904. vertical-align:none;
  5905. text-align:left;
  5906. text-transform:none;
  5907. background-color:transparent;
  5908. border-color:transparent;
  5909. }
  5910. #u83287_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:126px;
  5916. height:23px;
  5917. background:inherit;
  5918. background-color:rgba(255, 255, 255, 1);
  5919. border:none;
  5920. border-radius:0px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. font-size:11px;
  5925. color:#AAAAAA;
  5926. }
  5927. #u83287 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:267px;
  5931. top:131px;
  5932. width:126px;
  5933. height:23px;
  5934. display:flex;
  5935. font-size:11px;
  5936. color:#AAAAAA;
  5937. }
  5938. #u83287 .text {
  5939. position:absolute;
  5940. align-self:flex-start;
  5941. padding:2px 2px 2px 2px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u83287_div.disabled {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:126px;
  5951. height:23px;
  5952. background:inherit;
  5953. background-color:rgba(240, 240, 240, 1);
  5954. border:none;
  5955. border-radius:0px;
  5956. -moz-box-shadow:none;
  5957. -webkit-box-shadow:none;
  5958. box-shadow:none;
  5959. font-size:11px;
  5960. color:#AAAAAA;
  5961. }
  5962. #u83287.disabled {
  5963. }
  5964. .u83287_input_option {
  5965. font-size:11px;
  5966. }
  5967. #u83288 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:0px;
  5973. height:0px;
  5974. }
  5975. #u83289_div {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:0px;
  5979. top:0px;
  5980. width:140px;
  5981. height:30px;
  5982. background:inherit;
  5983. background-color:rgba(255, 255, 255, 1);
  5984. box-sizing:border-box;
  5985. border-width:1px;
  5986. border-style:solid;
  5987. border-color:rgba(201, 201, 201, 1);
  5988. border-radius:4px;
  5989. -moz-box-shadow:none;
  5990. -webkit-box-shadow:none;
  5991. box-shadow:none;
  5992. font-family:'Microsoft YaHei', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:14px;
  5996. color:#CCCCCC;
  5997. text-align:left;
  5998. }
  5999. #u83289 {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:410px;
  6003. top:128px;
  6004. width:140px;
  6005. height:30px;
  6006. display:flex;
  6007. font-family:'Microsoft YaHei', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:14px;
  6011. color:#CCCCCC;
  6012. text-align:left;
  6013. }
  6014. #u83289 .text {
  6015. position:absolute;
  6016. align-self:center;
  6017. padding:2px 8px 2px 8px;
  6018. box-sizing:border-box;
  6019. width:100%;
  6020. }
  6021. #u83289_text {
  6022. border-width:0px;
  6023. word-wrap:break-word;
  6024. text-transform:none;
  6025. visibility:hidden;
  6026. }
  6027. #u83290_input {
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:127px;
  6032. height:25px;
  6033. padding:2px 2px 2px 2px;
  6034. font-family:'Microsoft YaHei', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:10px;
  6038. letter-spacing:normal;
  6039. color:#000000;
  6040. vertical-align:none;
  6041. text-align:left;
  6042. text-transform:none;
  6043. background-color:transparent;
  6044. border-color:transparent;
  6045. }
  6046. #u83290_input.disabled {
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:127px;
  6051. height:25px;
  6052. padding:2px 2px 2px 2px;
  6053. font-family:'Microsoft YaHei', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:10px;
  6057. letter-spacing:normal;
  6058. color:#000000;
  6059. vertical-align:none;
  6060. text-align:left;
  6061. text-transform:none;
  6062. background-color:transparent;
  6063. border-color:transparent;
  6064. }
  6065. #u83290_div {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:127px;
  6071. height:25px;
  6072. background:inherit;
  6073. background-color:rgba(255, 255, 255, 1);
  6074. border:none;
  6075. border-radius:0px;
  6076. -moz-box-shadow:none;
  6077. -webkit-box-shadow:none;
  6078. box-shadow:none;
  6079. font-family:'Microsoft YaHei', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:10px;
  6083. }
  6084. #u83290 {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:418px;
  6088. top:129px;
  6089. width:127px;
  6090. height:25px;
  6091. display:flex;
  6092. font-family:'Microsoft YaHei', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:10px;
  6096. }
  6097. #u83290 .text {
  6098. position:absolute;
  6099. align-self:center;
  6100. padding:2px 2px 2px 2px;
  6101. box-sizing:border-box;
  6102. width:100%;
  6103. }
  6104. #u83290_div.disabled {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:127px;
  6110. height:25px;
  6111. background:inherit;
  6112. background-color:rgba(240, 240, 240, 1);
  6113. border:none;
  6114. border-radius:0px;
  6115. -moz-box-shadow:none;
  6116. -webkit-box-shadow:none;
  6117. box-shadow:none;
  6118. font-family:'Microsoft YaHei', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:10px;
  6122. }
  6123. #u83290.disabled {
  6124. }
  6125. #u83291 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:0px;
  6131. height:0px;
  6132. }
  6133. #u83292_div {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:140px;
  6139. height:30px;
  6140. background:inherit;
  6141. background-color:rgba(255, 255, 255, 1);
  6142. box-sizing:border-box;
  6143. border-width:1px;
  6144. border-style:solid;
  6145. border-color:rgba(201, 201, 201, 1);
  6146. border-radius:4px;
  6147. -moz-box-shadow:none;
  6148. -webkit-box-shadow:none;
  6149. box-shadow:none;
  6150. font-family:'Microsoft YaHei', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:14px;
  6154. color:#CCCCCC;
  6155. text-align:left;
  6156. }
  6157. #u83292 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:560px;
  6161. top:128px;
  6162. width:140px;
  6163. height:30px;
  6164. display:flex;
  6165. font-family:'Microsoft YaHei', sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. font-size:14px;
  6169. color:#CCCCCC;
  6170. text-align:left;
  6171. }
  6172. #u83292 .text {
  6173. position:absolute;
  6174. align-self:center;
  6175. padding:2px 8px 2px 8px;
  6176. box-sizing:border-box;
  6177. width:100%;
  6178. }
  6179. #u83292_text {
  6180. border-width:0px;
  6181. word-wrap:break-word;
  6182. text-transform:none;
  6183. visibility:hidden;
  6184. }
  6185. #u83293_input {
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:127px;
  6190. height:25px;
  6191. padding:2px 2px 2px 2px;
  6192. font-family:'Microsoft YaHei', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:10px;
  6196. letter-spacing:normal;
  6197. color:#000000;
  6198. vertical-align:none;
  6199. text-align:left;
  6200. text-transform:none;
  6201. background-color:transparent;
  6202. border-color:transparent;
  6203. }
  6204. #u83293_input.disabled {
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:127px;
  6209. height:25px;
  6210. padding:2px 2px 2px 2px;
  6211. font-family:'Microsoft YaHei', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:10px;
  6215. letter-spacing:normal;
  6216. color:#000000;
  6217. vertical-align:none;
  6218. text-align:left;
  6219. text-transform:none;
  6220. background-color:transparent;
  6221. border-color:transparent;
  6222. }
  6223. #u83293_div {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:127px;
  6229. height:25px;
  6230. background:inherit;
  6231. background-color:rgba(255, 255, 255, 1);
  6232. border:none;
  6233. border-radius:0px;
  6234. -moz-box-shadow:none;
  6235. -webkit-box-shadow:none;
  6236. box-shadow:none;
  6237. font-family:'Microsoft YaHei', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:10px;
  6241. }
  6242. #u83293 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:568px;
  6246. top:129px;
  6247. width:127px;
  6248. height:25px;
  6249. display:flex;
  6250. font-family:'Microsoft YaHei', sans-serif;
  6251. font-weight:400;
  6252. font-style:normal;
  6253. font-size:10px;
  6254. }
  6255. #u83293 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:2px 2px 2px 2px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u83293_div.disabled {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:127px;
  6268. height:25px;
  6269. background:inherit;
  6270. background-color:rgba(240, 240, 240, 1);
  6271. border:none;
  6272. border-radius:0px;
  6273. -moz-box-shadow:none;
  6274. -webkit-box-shadow:none;
  6275. box-shadow:none;
  6276. font-family:'Microsoft YaHei', sans-serif;
  6277. font-weight:400;
  6278. font-style:normal;
  6279. font-size:10px;
  6280. }
  6281. #u83293.disabled {
  6282. }
  6283. #u83294 {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:0px;
  6289. height:0px;
  6290. }
  6291. #u83295_div {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:140px;
  6297. height:30px;
  6298. background:inherit;
  6299. background-color:rgba(255, 255, 255, 1);
  6300. box-sizing:border-box;
  6301. border-width:1px;
  6302. border-style:solid;
  6303. border-color:rgba(201, 201, 201, 1);
  6304. border-radius:4px;
  6305. -moz-box-shadow:none;
  6306. -webkit-box-shadow:none;
  6307. box-shadow:none;
  6308. font-family:'Microsoft YaHei', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:14px;
  6312. color:#CCCCCC;
  6313. text-align:left;
  6314. }
  6315. #u83295 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:710px;
  6319. top:128px;
  6320. width:140px;
  6321. height:30px;
  6322. display:flex;
  6323. font-family:'Microsoft YaHei', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:14px;
  6327. color:#CCCCCC;
  6328. text-align:left;
  6329. }
  6330. #u83295 .text {
  6331. position:absolute;
  6332. align-self:center;
  6333. padding:2px 8px 2px 8px;
  6334. box-sizing:border-box;
  6335. width:100%;
  6336. }
  6337. #u83295_text {
  6338. border-width:0px;
  6339. word-wrap:break-word;
  6340. text-transform:none;
  6341. visibility:hidden;
  6342. }
  6343. #u83296_input {
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:127px;
  6348. height:25px;
  6349. padding:2px 2px 2px 2px;
  6350. font-family:'Microsoft YaHei', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. font-size:10px;
  6354. letter-spacing:normal;
  6355. color:#000000;
  6356. vertical-align:none;
  6357. text-align:left;
  6358. text-transform:none;
  6359. background-color:transparent;
  6360. border-color:transparent;
  6361. }
  6362. #u83296_input.disabled {
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:127px;
  6367. height:25px;
  6368. padding:2px 2px 2px 2px;
  6369. font-family:'Microsoft YaHei', sans-serif;
  6370. font-weight:400;
  6371. font-style:normal;
  6372. font-size:10px;
  6373. letter-spacing:normal;
  6374. color:#000000;
  6375. vertical-align:none;
  6376. text-align:left;
  6377. text-transform:none;
  6378. background-color:transparent;
  6379. border-color:transparent;
  6380. }
  6381. #u83296_div {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:127px;
  6387. height:25px;
  6388. background:inherit;
  6389. background-color:rgba(255, 255, 255, 1);
  6390. border:none;
  6391. border-radius:0px;
  6392. -moz-box-shadow:none;
  6393. -webkit-box-shadow:none;
  6394. box-shadow:none;
  6395. font-family:'Microsoft YaHei', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:10px;
  6399. }
  6400. #u83296 {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:718px;
  6404. top:129px;
  6405. width:127px;
  6406. height:25px;
  6407. display:flex;
  6408. font-family:'Microsoft YaHei', sans-serif;
  6409. font-weight:400;
  6410. font-style:normal;
  6411. font-size:10px;
  6412. }
  6413. #u83296 .text {
  6414. position:absolute;
  6415. align-self:center;
  6416. padding:2px 2px 2px 2px;
  6417. box-sizing:border-box;
  6418. width:100%;
  6419. }
  6420. #u83296_div.disabled {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:127px;
  6426. height:25px;
  6427. background:inherit;
  6428. background-color:rgba(240, 240, 240, 1);
  6429. border:none;
  6430. border-radius:0px;
  6431. -moz-box-shadow:none;
  6432. -webkit-box-shadow:none;
  6433. box-shadow:none;
  6434. font-family:'Microsoft YaHei', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:10px;
  6438. }
  6439. #u83296.disabled {
  6440. }
  6441. #u83297 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:0px;
  6445. top:0px;
  6446. width:0px;
  6447. height:0px;
  6448. }
  6449. #u83298_div {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:140px;
  6455. height:30px;
  6456. background:inherit;
  6457. background-color:rgba(255, 255, 255, 1);
  6458. box-sizing:border-box;
  6459. border-width:1px;
  6460. border-style:solid;
  6461. border-color:rgba(201, 201, 201, 1);
  6462. border-radius:4px;
  6463. -moz-box-shadow:none;
  6464. -webkit-box-shadow:none;
  6465. box-shadow:none;
  6466. font-family:'Microsoft YaHei', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:14px;
  6470. color:#CCCCCC;
  6471. text-align:left;
  6472. }
  6473. #u83298 {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:860px;
  6477. top:128px;
  6478. width:140px;
  6479. height:30px;
  6480. display:flex;
  6481. font-family:'Microsoft YaHei', sans-serif;
  6482. font-weight:400;
  6483. font-style:normal;
  6484. font-size:14px;
  6485. color:#CCCCCC;
  6486. text-align:left;
  6487. }
  6488. #u83298 .text {
  6489. position:absolute;
  6490. align-self:center;
  6491. padding:2px 8px 2px 8px;
  6492. box-sizing:border-box;
  6493. width:100%;
  6494. }
  6495. #u83298_text {
  6496. border-width:0px;
  6497. word-wrap:break-word;
  6498. text-transform:none;
  6499. visibility:hidden;
  6500. }
  6501. #u83299_input {
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:127px;
  6506. height:25px;
  6507. padding:2px 2px 2px 2px;
  6508. font-family:'Microsoft YaHei', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:10px;
  6512. letter-spacing:normal;
  6513. color:#000000;
  6514. vertical-align:none;
  6515. text-align:left;
  6516. text-transform:none;
  6517. background-color:transparent;
  6518. border-color:transparent;
  6519. }
  6520. #u83299_input.disabled {
  6521. position:absolute;
  6522. left:0px;
  6523. top:0px;
  6524. width:127px;
  6525. height:25px;
  6526. padding:2px 2px 2px 2px;
  6527. font-family:'Microsoft YaHei', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:10px;
  6531. letter-spacing:normal;
  6532. color:#000000;
  6533. vertical-align:none;
  6534. text-align:left;
  6535. text-transform:none;
  6536. background-color:transparent;
  6537. border-color:transparent;
  6538. }
  6539. #u83299_div {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:0px;
  6544. width:127px;
  6545. height:25px;
  6546. background:inherit;
  6547. background-color:rgba(255, 255, 255, 1);
  6548. border:none;
  6549. border-radius:0px;
  6550. -moz-box-shadow:none;
  6551. -webkit-box-shadow:none;
  6552. box-shadow:none;
  6553. font-family:'Microsoft YaHei', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:10px;
  6557. }
  6558. #u83299 {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:868px;
  6562. top:129px;
  6563. width:127px;
  6564. height:25px;
  6565. display:flex;
  6566. font-family:'Microsoft YaHei', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:10px;
  6570. }
  6571. #u83299 .text {
  6572. position:absolute;
  6573. align-self:center;
  6574. padding:2px 2px 2px 2px;
  6575. box-sizing:border-box;
  6576. width:100%;
  6577. }
  6578. #u83299_div.disabled {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:127px;
  6584. height:25px;
  6585. background:inherit;
  6586. background-color:rgba(240, 240, 240, 1);
  6587. border:none;
  6588. border-radius:0px;
  6589. -moz-box-shadow:none;
  6590. -webkit-box-shadow:none;
  6591. box-shadow:none;
  6592. font-family:'Microsoft YaHei', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:10px;
  6596. }
  6597. #u83299.disabled {
  6598. }
  6599. #u83300 {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:0px;
  6605. height:0px;
  6606. }
  6607. #u83301_div {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:140px;
  6613. height:30px;
  6614. background:inherit;
  6615. background-color:rgba(255, 255, 255, 1);
  6616. box-sizing:border-box;
  6617. border-width:1px;
  6618. border-style:solid;
  6619. border-color:rgba(215, 215, 215, 1);
  6620. border-radius:4px;
  6621. -moz-box-shadow:none;
  6622. -webkit-box-shadow:none;
  6623. box-shadow:none;
  6624. font-size:11px;
  6625. }
  6626. #u83301 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:110px;
  6630. top:170px;
  6631. width:140px;
  6632. height:30px;
  6633. display:flex;
  6634. font-size:11px;
  6635. }
  6636. #u83301 .text {
  6637. position:absolute;
  6638. align-self:center;
  6639. padding:2px 2px 2px 2px;
  6640. box-sizing:border-box;
  6641. width:100%;
  6642. }
  6643. #u83301_text {
  6644. border-width:0px;
  6645. word-wrap:break-word;
  6646. text-transform:none;
  6647. visibility:hidden;
  6648. }
  6649. #u83302_input {
  6650. position:absolute;
  6651. left:0px;
  6652. top:0px;
  6653. width:126px;
  6654. height:23px;
  6655. padding:2px 2px 2px 2px;
  6656. font-family:'ArialMT', 'Arial', sans-serif;
  6657. font-weight:400;
  6658. font-style:normal;
  6659. font-size:11px;
  6660. letter-spacing:normal;
  6661. color:#AAAAAA;
  6662. vertical-align:none;
  6663. text-align:left;
  6664. text-transform:none;
  6665. background-color:transparent;
  6666. border-color:transparent;
  6667. }
  6668. #u83302_input.disabled {
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:126px;
  6673. height:23px;
  6674. padding:2px 2px 2px 2px;
  6675. font-family:'ArialMT', 'Arial', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:11px;
  6679. letter-spacing:normal;
  6680. color:#AAAAAA;
  6681. vertical-align:none;
  6682. text-align:left;
  6683. text-transform:none;
  6684. background-color:transparent;
  6685. border-color:transparent;
  6686. }
  6687. #u83302_div {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:0px;
  6691. top:0px;
  6692. width:126px;
  6693. height:23px;
  6694. background:inherit;
  6695. background-color:rgba(255, 255, 255, 1);
  6696. border:none;
  6697. border-radius:0px;
  6698. -moz-box-shadow:none;
  6699. -webkit-box-shadow:none;
  6700. box-shadow:none;
  6701. font-size:11px;
  6702. color:#AAAAAA;
  6703. }
  6704. #u83302 {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:117px;
  6708. top:172px;
  6709. width:126px;
  6710. height:23px;
  6711. display:flex;
  6712. font-size:11px;
  6713. color:#AAAAAA;
  6714. }
  6715. #u83302 .text {
  6716. position:absolute;
  6717. align-self:flex-start;
  6718. padding:2px 2px 2px 2px;
  6719. box-sizing:border-box;
  6720. width:100%;
  6721. }
  6722. #u83302_div.disabled {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:0px;
  6726. top:0px;
  6727. width:126px;
  6728. height:23px;
  6729. background:inherit;
  6730. background-color:rgba(240, 240, 240, 1);
  6731. border:none;
  6732. border-radius:0px;
  6733. -moz-box-shadow:none;
  6734. -webkit-box-shadow:none;
  6735. box-shadow:none;
  6736. font-size:11px;
  6737. color:#AAAAAA;
  6738. }
  6739. #u83302.disabled {
  6740. }
  6741. .u83302_input_option {
  6742. font-size:11px;
  6743. }
  6744. #u83303 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:0px;
  6750. height:0px;
  6751. }
  6752. #u83304_div {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:0px;
  6756. top:0px;
  6757. width:140px;
  6758. height:30px;
  6759. background:inherit;
  6760. background-color:rgba(255, 255, 255, 1);
  6761. box-sizing:border-box;
  6762. border-width:1px;
  6763. border-style:solid;
  6764. border-color:rgba(215, 215, 215, 1);
  6765. border-radius:4px;
  6766. -moz-box-shadow:none;
  6767. -webkit-box-shadow:none;
  6768. box-shadow:none;
  6769. font-size:11px;
  6770. }
  6771. #u83304 {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:260px;
  6775. top:170px;
  6776. width:140px;
  6777. height:30px;
  6778. display:flex;
  6779. font-size:11px;
  6780. }
  6781. #u83304 .text {
  6782. position:absolute;
  6783. align-self:center;
  6784. padding:2px 2px 2px 2px;
  6785. box-sizing:border-box;
  6786. width:100%;
  6787. }
  6788. #u83304_text {
  6789. border-width:0px;
  6790. word-wrap:break-word;
  6791. text-transform:none;
  6792. visibility:hidden;
  6793. }
  6794. #u83305_input {
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:126px;
  6799. height:23px;
  6800. padding:2px 2px 2px 2px;
  6801. font-family:'ArialMT', 'Arial', sans-serif;
  6802. font-weight:400;
  6803. font-style:normal;
  6804. font-size:11px;
  6805. letter-spacing:normal;
  6806. color:#AAAAAA;
  6807. vertical-align:none;
  6808. text-align:left;
  6809. text-transform:none;
  6810. background-color:transparent;
  6811. border-color:transparent;
  6812. }
  6813. #u83305_input.disabled {
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:126px;
  6818. height:23px;
  6819. padding:2px 2px 2px 2px;
  6820. font-family:'ArialMT', 'Arial', sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:11px;
  6824. letter-spacing:normal;
  6825. color:#AAAAAA;
  6826. vertical-align:none;
  6827. text-align:left;
  6828. text-transform:none;
  6829. background-color:transparent;
  6830. border-color:transparent;
  6831. }
  6832. #u83305_div {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:126px;
  6838. height:23px;
  6839. background:inherit;
  6840. background-color:rgba(255, 255, 255, 1);
  6841. border:none;
  6842. border-radius:0px;
  6843. -moz-box-shadow:none;
  6844. -webkit-box-shadow:none;
  6845. box-shadow:none;
  6846. font-size:11px;
  6847. color:#AAAAAA;
  6848. }
  6849. #u83305 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:267px;
  6853. top:172px;
  6854. width:126px;
  6855. height:23px;
  6856. display:flex;
  6857. font-size:11px;
  6858. color:#AAAAAA;
  6859. }
  6860. #u83305 .text {
  6861. position:absolute;
  6862. align-self:flex-start;
  6863. padding:2px 2px 2px 2px;
  6864. box-sizing:border-box;
  6865. width:100%;
  6866. }
  6867. #u83305_div.disabled {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:126px;
  6873. height:23px;
  6874. background:inherit;
  6875. background-color:rgba(240, 240, 240, 1);
  6876. border:none;
  6877. border-radius:0px;
  6878. -moz-box-shadow:none;
  6879. -webkit-box-shadow:none;
  6880. box-shadow:none;
  6881. font-size:11px;
  6882. color:#AAAAAA;
  6883. }
  6884. #u83305.disabled {
  6885. }
  6886. .u83305_input_option {
  6887. font-size:11px;
  6888. }
  6889. #u83306_div {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:0px;
  6893. top:0px;
  6894. width:60px;
  6895. height:30px;
  6896. background:inherit;
  6897. background-color:rgba(255, 255, 255, 1);
  6898. box-sizing:border-box;
  6899. border-width:1px;
  6900. border-style:solid;
  6901. border-color:rgba(170, 170, 170, 1);
  6902. border-radius:4px;
  6903. -moz-box-shadow:none;
  6904. -webkit-box-shadow:none;
  6905. box-shadow:none;
  6906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6907. font-weight:400;
  6908. font-style:normal;
  6909. font-size:14px;
  6910. }
  6911. #u83306 {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:485px;
  6915. top:170px;
  6916. width:60px;
  6917. height:30px;
  6918. display:flex;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:14px;
  6923. }
  6924. #u83306 .text {
  6925. position:absolute;
  6926. align-self:center;
  6927. padding:2px 2px 2px 2px;
  6928. box-sizing:border-box;
  6929. width:100%;
  6930. }
  6931. #u83306_text {
  6932. border-width:0px;
  6933. word-wrap:break-word;
  6934. text-transform:none;
  6935. }
  6936. #u83307_div {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:60px;
  6942. height:30px;
  6943. background:inherit;
  6944. background-color:rgba(24, 144, 255, 1);
  6945. border:none;
  6946. border-radius:4px;
  6947. -moz-box-shadow:none;
  6948. -webkit-box-shadow:none;
  6949. box-shadow:none;
  6950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6951. font-weight:400;
  6952. font-style:normal;
  6953. font-size:14px;
  6954. color:#FFFFFF;
  6955. }
  6956. #u83307 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:415px;
  6960. top:170px;
  6961. width:60px;
  6962. height:30px;
  6963. display:flex;
  6964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:14px;
  6968. color:#FFFFFF;
  6969. }
  6970. #u83307 .text {
  6971. position:absolute;
  6972. align-self:center;
  6973. padding:2px 2px 2px 2px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u83307_text {
  6978. border-width:0px;
  6979. word-wrap:break-word;
  6980. text-transform:none;
  6981. }
  6982. #u83308 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:0px;
  6986. top:0px;
  6987. width:0px;
  6988. height:0px;
  6989. }
  6990. #u83309_div {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:0px;
  6994. top:0px;
  6995. width:1000px;
  6996. height:60px;
  6997. background:inherit;
  6998. background-color:rgba(255, 255, 255, 1);
  6999. box-sizing:border-box;
  7000. border-width:1px;
  7001. border-style:solid;
  7002. border-color:rgba(215, 215, 215, 1);
  7003. border-radius:0px;
  7004. -moz-box-shadow:none;
  7005. -webkit-box-shadow:none;
  7006. box-shadow:none;
  7007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7008. font-weight:400;
  7009. font-style:normal;
  7010. font-size:14px;
  7011. color:#AAAAAA;
  7012. text-align:center;
  7013. line-height:30px;
  7014. }
  7015. #u83309 {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:90px;
  7019. top:715px;
  7020. width:1000px;
  7021. height:60px;
  7022. display:flex;
  7023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7024. font-weight:400;
  7025. font-style:normal;
  7026. font-size:14px;
  7027. color:#AAAAAA;
  7028. text-align:center;
  7029. line-height:30px;
  7030. }
  7031. #u83309 .text {
  7032. position:absolute;
  7033. align-self:center;
  7034. padding:5px 10px 5px 10px;
  7035. box-sizing:border-box;
  7036. width:100%;
  7037. }
  7038. #u83309_text {
  7039. border-width:0px;
  7040. word-wrap:break-word;
  7041. text-transform:none;
  7042. visibility:hidden;
  7043. }
  7044. #u83310_div {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:80px;
  7050. height:30px;
  7051. background:inherit;
  7052. background-color:rgba(255, 255, 255, 1);
  7053. box-sizing:border-box;
  7054. border-width:1px;
  7055. border-style:solid;
  7056. border-color:rgba(170, 170, 170, 1);
  7057. border-radius:4px;
  7058. -moz-box-shadow:none;
  7059. -webkit-box-shadow:none;
  7060. box-shadow:none;
  7061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7062. font-weight:400;
  7063. font-style:normal;
  7064. font-size:14px;
  7065. }
  7066. #u83310 {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:900px;
  7070. top:730px;
  7071. width:80px;
  7072. height:30px;
  7073. display:flex;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:14px;
  7078. }
  7079. #u83310 .text {
  7080. position:absolute;
  7081. align-self:center;
  7082. padding:2px 2px 2px 2px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u83310_text {
  7087. border-width:0px;
  7088. word-wrap:break-word;
  7089. text-transform:none;
  7090. }
  7091. #u83311_div {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:80px;
  7097. height:30px;
  7098. background:inherit;
  7099. background-color:rgba(24, 144, 255, 1);
  7100. border:none;
  7101. border-radius:4px;
  7102. -moz-box-shadow:none;
  7103. -webkit-box-shadow:none;
  7104. box-shadow:none;
  7105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:14px;
  7109. color:#FFFFFF;
  7110. }
  7111. #u83311 {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:990px;
  7115. top:730px;
  7116. width:80px;
  7117. height:30px;
  7118. display:flex;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:14px;
  7123. color:#FFFFFF;
  7124. }
  7125. #u83311 .text {
  7126. position:absolute;
  7127. align-self:center;
  7128. padding:2px 2px 2px 2px;
  7129. box-sizing:border-box;
  7130. width:100%;
  7131. }
  7132. #u83311_text {
  7133. border-width:0px;
  7134. word-wrap:break-word;
  7135. text-transform:none;
  7136. }
  7137. #u83312 {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:0px;
  7143. height:0px;
  7144. }
  7145. #u83313 {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:0px;
  7151. height:0px;
  7152. }
  7153. #u83314_div {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:31px;
  7159. height:30px;
  7160. background:inherit;
  7161. background-color:rgba(255, 255, 255, 1);
  7162. box-sizing:border-box;
  7163. border-width:1px;
  7164. border-style:solid;
  7165. border-color:rgba(228, 228, 228, 1);
  7166. border-radius:4px;
  7167. -moz-box-shadow:none;
  7168. -webkit-box-shadow:none;
  7169. box-shadow:none;
  7170. font-family:'Microsoft YaHei', sans-serif;
  7171. font-weight:400;
  7172. font-style:normal;
  7173. font-size:12px;
  7174. }
  7175. #u83314 {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:954px;
  7179. top:656px;
  7180. width:31px;
  7181. height:30px;
  7182. display:flex;
  7183. font-family:'Microsoft YaHei', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:12px;
  7187. }
  7188. #u83314 .text {
  7189. position:absolute;
  7190. align-self:center;
  7191. padding:2px 2px 2px 2px;
  7192. box-sizing:border-box;
  7193. width:100%;
  7194. }
  7195. #u83314_text {
  7196. border-width:0px;
  7197. word-wrap:break-word;
  7198. text-transform:none;
  7199. visibility:hidden;
  7200. }
  7201. #u83315_img {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:8px;
  7207. height:14px;
  7208. }
  7209. #u83315 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:966px;
  7213. top:664px;
  7214. width:8px;
  7215. height:14px;
  7216. display:flex;
  7217. font-family:'Microsoft YaHei', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. font-size:12px;
  7221. }
  7222. #u83315 .text {
  7223. position:absolute;
  7224. align-self:center;
  7225. padding:2px 2px 2px 2px;
  7226. box-sizing:border-box;
  7227. width:100%;
  7228. }
  7229. #u83315_text {
  7230. border-width:0px;
  7231. word-wrap:break-word;
  7232. text-transform:none;
  7233. visibility:hidden;
  7234. }
  7235. #u83316 {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:0px;
  7240. width:0px;
  7241. height:0px;
  7242. }
  7243. #u83317_div {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:0px;
  7247. top:0px;
  7248. width:31px;
  7249. height:30px;
  7250. background:inherit;
  7251. background-color:rgba(255, 255, 255, 1);
  7252. box-sizing:border-box;
  7253. border-width:1px;
  7254. border-style:solid;
  7255. border-color:rgba(228, 228, 228, 1);
  7256. border-radius:4px;
  7257. -moz-box-shadow:none;
  7258. -webkit-box-shadow:none;
  7259. box-shadow:none;
  7260. font-family:'Microsoft YaHei', sans-serif;
  7261. font-weight:400;
  7262. font-style:normal;
  7263. font-size:12px;
  7264. }
  7265. #u83317 {
  7266. border-width:0px;
  7267. position:absolute;
  7268. left:1039px;
  7269. top:656px;
  7270. width:31px;
  7271. height:30px;
  7272. display:flex;
  7273. font-family:'Microsoft YaHei', sans-serif;
  7274. font-weight:400;
  7275. font-style:normal;
  7276. font-size:12px;
  7277. }
  7278. #u83317 .text {
  7279. position:absolute;
  7280. align-self:center;
  7281. padding:2px 2px 2px 2px;
  7282. box-sizing:border-box;
  7283. width:100%;
  7284. }
  7285. #u83317_text {
  7286. border-width:0px;
  7287. word-wrap:break-word;
  7288. text-transform:none;
  7289. visibility:hidden;
  7290. }
  7291. #u83318_img {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:8px;
  7297. height:14px;
  7298. }
  7299. #u83318 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:1052px;
  7303. top:664px;
  7304. width:8px;
  7305. height:14px;
  7306. display:flex;
  7307. font-family:'Microsoft YaHei', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:12px;
  7311. }
  7312. #u83318 .text {
  7313. position:absolute;
  7314. align-self:center;
  7315. padding:2px 2px 2px 2px;
  7316. box-sizing:border-box;
  7317. width:100%;
  7318. }
  7319. #u83318_text {
  7320. border-width:0px;
  7321. word-wrap:break-word;
  7322. text-transform:none;
  7323. visibility:hidden;
  7324. }
  7325. #u83319_div {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:0px;
  7329. top:0px;
  7330. width:32px;
  7331. height:21px;
  7332. background:inherit;
  7333. background-color:rgba(255, 255, 255, 1);
  7334. border:none;
  7335. border-radius:15px;
  7336. -moz-box-shadow:none;
  7337. -webkit-box-shadow:none;
  7338. box-shadow:none;
  7339. font-family:'Microsoft YaHei', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:14px;
  7343. color:#1E1E1E;
  7344. }
  7345. #u83319 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:995px;
  7349. top:661px;
  7350. width:32px;
  7351. height:21px;
  7352. display:flex;
  7353. font-family:'Microsoft YaHei', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:14px;
  7357. color:#1E1E1E;
  7358. }
  7359. #u83319 .text {
  7360. position:absolute;
  7361. align-self:center;
  7362. padding:2px 2px 2px 2px;
  7363. box-sizing:border-box;
  7364. width:100%;
  7365. }
  7366. #u83319_text {
  7367. border-width:0px;
  7368. white-space:nowrap;
  7369. text-transform:none;
  7370. }
  7371. #u83320_div {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:0px;
  7375. top:0px;
  7376. width:771px;
  7377. height:60px;
  7378. background:inherit;
  7379. background-color:rgba(255, 255, 255, 0);
  7380. box-sizing:border-box;
  7381. border-width:1px;
  7382. border-style:solid;
  7383. border-color:rgba(217, 0, 27, 1);
  7384. border-radius:3px;
  7385. -moz-box-shadow:none;
  7386. -webkit-box-shadow:none;
  7387. box-shadow:none;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. color:#D9001B;
  7392. }
  7393. #u83320 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:260px;
  7397. top:68px;
  7398. width:771px;
  7399. height:60px;
  7400. display:flex;
  7401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. color:#D9001B;
  7405. }
  7406. #u83320 .text {
  7407. position:absolute;
  7408. align-self:flex-start;
  7409. padding:10px 10px 10px 10px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u83320_text {
  7414. border-width:0px;
  7415. white-space:nowrap;
  7416. text-transform:none;
  7417. }
  7418. #u83321_div {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:673px;
  7424. height:60px;
  7425. background:inherit;
  7426. background-color:rgba(255, 255, 255, 0);
  7427. box-sizing:border-box;
  7428. border-width:1px;
  7429. border-style:solid;
  7430. border-color:rgba(217, 0, 27, 1);
  7431. border-radius:3px;
  7432. -moz-box-shadow:none;
  7433. -webkit-box-shadow:none;
  7434. box-shadow:none;
  7435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7436. font-weight:400;
  7437. font-style:normal;
  7438. color:#D9001B;
  7439. }
  7440. #u83321 {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:397px;
  7444. top:664px;
  7445. width:673px;
  7446. height:60px;
  7447. display:flex;
  7448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7449. font-weight:400;
  7450. font-style:normal;
  7451. color:#D9001B;
  7452. }
  7453. #u83321 .text {
  7454. position:absolute;
  7455. align-self:flex-start;
  7456. padding:10px 10px 10px 10px;
  7457. box-sizing:border-box;
  7458. width:100%;
  7459. }
  7460. #u83321_text {
  7461. border-width:0px;
  7462. white-space:nowrap;
  7463. text-transform:none;
  7464. }