styles.css 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u900_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1197px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u900 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1197px;
  41. display:flex;
  42. }
  43. #u900 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u900_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u901_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u901 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u901 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u901_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u902_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u902 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u902 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u902_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u903 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u904_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u904 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u904 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u904_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u905_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u905 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u905 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u905_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u906_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u906 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u906 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u906_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u907 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u908_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u908_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u908_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u908 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u908 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u908_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u908.disabled {
  356. }
  357. .u908_input_option {
  358. font-size:14px;
  359. }
  360. #u909_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u909 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u909 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u909_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u910_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u910 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u910 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u910_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u911_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u911 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u911 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u911_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u912 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u913_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u913 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u913 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u913_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u914_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u914 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u914 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u914_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u915 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u916_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u916 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u916 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u916_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u917_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u917 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u917 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u917_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u918 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u919_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u919 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:397px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u919 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u919_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u920_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u920 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:401px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u920 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u920_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u921 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u922_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u922 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u922 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u922_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u923_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u923 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u923 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u923_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u924 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u925_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u925 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:439px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u925 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u925_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u926_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u926 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:443px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u926 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u926_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u927 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u928_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u928 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:313px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u928 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u928_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u929_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u929 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:317px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u929 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u929_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u930 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u931_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u931 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u931 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u931_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u932_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u932 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u932 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u932_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u933 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u934_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u934 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:355px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u934 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u934_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u935_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u935 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:359px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u935 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u935_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u936 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u937_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u937 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:481px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u937 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u937_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u938_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u938 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:485px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u938 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u938_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u939 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u940_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u940 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:523px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u940 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u940_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u941_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u941 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:527px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u941 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u941_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u942_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u942 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u942 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u942_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u943_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u943 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u943 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u943_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u944_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u944 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u944 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u944_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u945_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u945 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u945 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u945_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u946 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u947_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u947 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u947 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u947_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u948_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u948 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u948 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u948_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u949 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u950_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u950 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u950 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u950_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u951_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u951 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u951 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u951_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u952 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u953_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u953 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:273px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u953 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u953_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u954_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u954 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:277px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u954 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u954_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u955_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1258px;
  1728. height:1191px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#FFFFFF;
  1741. text-align:left;
  1742. }
  1743. #u955 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:330px;
  1747. top:50px;
  1748. width:1258px;
  1749. height:1191px;
  1750. display:flex;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:12px;
  1755. color:#FFFFFF;
  1756. text-align:left;
  1757. }
  1758. #u955 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 50px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u955_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. visibility:hidden;
  1770. }
  1771. #u956_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:73px;
  1777. height:50px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-left:0px;
  1782. border-top:0px;
  1783. border-right:0px;
  1784. border-radius:0px;
  1785. border-bottom-right-radius:0px;
  1786. border-bottom-left-radius:0px;
  1787. -moz-box-shadow:none;
  1788. -webkit-box-shadow:none;
  1789. box-shadow:none;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:18px;
  1794. }
  1795. #u956 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:351px;
  1799. top:50px;
  1800. width:73px;
  1801. height:50px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:18px;
  1807. }
  1808. #u956 .text {
  1809. position:absolute;
  1810. align-self:center;
  1811. padding:0px 0px 0px 0px;
  1812. box-sizing:border-box;
  1813. width:100%;
  1814. }
  1815. #u956_text {
  1816. border-width:0px;
  1817. white-space:nowrap;
  1818. text-transform:none;
  1819. }
  1820. #u957_img {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:13px;
  1826. height:13px;
  1827. }
  1828. #u957 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:430px;
  1832. top:69px;
  1833. width:13px;
  1834. height:13px;
  1835. display:flex;
  1836. }
  1837. #u957 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 2px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u957_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. visibility:hidden;
  1849. }
  1850. #u958 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:352px;
  1854. top:314px;
  1855. width:1219px;
  1856. height:366px;
  1857. }
  1858. #u959_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:92px;
  1864. height:39px;
  1865. }
  1866. #u959 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:92px;
  1872. height:39px;
  1873. display:flex;
  1874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:12px;
  1878. color:#FFFFFF;
  1879. }
  1880. #u959 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 0px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u959_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u960_img {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:92px;
  1898. height:39px;
  1899. }
  1900. #u960 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:92px;
  1904. top:0px;
  1905. width:92px;
  1906. height:39px;
  1907. display:flex;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:12px;
  1912. color:#FFFFFF;
  1913. }
  1914. #u960 .text {
  1915. position:absolute;
  1916. align-self:center;
  1917. padding:2px 2px 2px 0px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u960_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. }
  1926. #u961_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:92px;
  1932. height:39px;
  1933. }
  1934. #u961 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:184px;
  1938. top:0px;
  1939. width:92px;
  1940. height:39px;
  1941. display:flex;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:12px;
  1946. color:#FFFFFF;
  1947. }
  1948. #u961 .text {
  1949. position:absolute;
  1950. align-self:center;
  1951. padding:2px 2px 2px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u961_text {
  1956. border-width:0px;
  1957. word-wrap:break-word;
  1958. text-transform:none;
  1959. }
  1960. #u962_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:92px;
  1966. height:39px;
  1967. }
  1968. #u962 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:276px;
  1972. top:0px;
  1973. width:92px;
  1974. height:39px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:12px;
  1980. color:#FFFFFF;
  1981. }
  1982. #u962 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 0px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u962_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. }
  1994. #u963_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:92px;
  2000. height:39px;
  2001. }
  2002. #u963 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:368px;
  2006. top:0px;
  2007. width:92px;
  2008. height:39px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:12px;
  2014. color:#FFFFFF;
  2015. }
  2016. #u963 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 0px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u963_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. }
  2028. #u964_img {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:92px;
  2034. height:39px;
  2035. }
  2036. #u964 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:460px;
  2040. top:0px;
  2041. width:92px;
  2042. height:39px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:12px;
  2048. color:#FFFFFF;
  2049. }
  2050. #u964 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 0px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u964_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u965_img {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:92px;
  2068. height:39px;
  2069. }
  2070. #u965 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:552px;
  2074. top:0px;
  2075. width:92px;
  2076. height:39px;
  2077. display:flex;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:12px;
  2082. color:#FFFFFF;
  2083. }
  2084. #u965 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 0px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u965_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. }
  2096. #u966_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:92px;
  2102. height:39px;
  2103. }
  2104. #u966 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:644px;
  2108. top:0px;
  2109. width:92px;
  2110. height:39px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. color:#FFFFFF;
  2117. }
  2118. #u966 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u966_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. }
  2130. #u967_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:92px;
  2136. height:39px;
  2137. }
  2138. #u967 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:736px;
  2142. top:0px;
  2143. width:92px;
  2144. height:39px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:12px;
  2150. color:#FFFFFF;
  2151. }
  2152. #u967 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 0px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u967_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. }
  2164. #u968_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:111px;
  2170. height:39px;
  2171. }
  2172. #u968 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:828px;
  2176. top:0px;
  2177. width:111px;
  2178. height:39px;
  2179. display:flex;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:12px;
  2184. color:#FFFFFF;
  2185. }
  2186. #u968 .text {
  2187. position:absolute;
  2188. align-self:center;
  2189. padding:2px 2px 2px 0px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u968_text {
  2194. border-width:0px;
  2195. word-wrap:break-word;
  2196. text-transform:none;
  2197. }
  2198. #u969_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:92px;
  2204. height:39px;
  2205. }
  2206. #u969 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:939px;
  2210. top:0px;
  2211. width:92px;
  2212. height:39px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. color:#FFFFFF;
  2219. }
  2220. #u969 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 0px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u969_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. }
  2232. #u970_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:92px;
  2238. height:39px;
  2239. }
  2240. #u970 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:1031px;
  2244. top:0px;
  2245. width:92px;
  2246. height:39px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:12px;
  2252. color:#FFFFFF;
  2253. }
  2254. #u970 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 0px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u970_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. }
  2266. #u971_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:96px;
  2272. height:39px;
  2273. }
  2274. #u971 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:1123px;
  2278. top:0px;
  2279. width:96px;
  2280. height:39px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#FFFFFF;
  2287. }
  2288. #u971 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:2px 2px 2px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u971_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. }
  2300. #u972_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:92px;
  2306. height:38px;
  2307. }
  2308. #u972 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:39px;
  2313. width:92px;
  2314. height:38px;
  2315. display:flex;
  2316. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. }
  2321. #u972 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u972_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. visibility:hidden;
  2333. }
  2334. #u973_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:92px;
  2340. height:38px;
  2341. }
  2342. #u973 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:92px;
  2346. top:39px;
  2347. width:92px;
  2348. height:38px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. }
  2355. #u973 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u973_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. }
  2367. #u974_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:92px;
  2373. height:38px;
  2374. }
  2375. #u974 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:184px;
  2379. top:39px;
  2380. width:92px;
  2381. height:38px;
  2382. display:flex;
  2383. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:12px;
  2387. }
  2388. #u974 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 0px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u974_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u975_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:92px;
  2407. height:38px;
  2408. }
  2409. #u975 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:276px;
  2413. top:39px;
  2414. width:92px;
  2415. height:38px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. }
  2422. #u975 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u975_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. }
  2434. #u976_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:92px;
  2440. height:38px;
  2441. }
  2442. #u976 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:368px;
  2446. top:39px;
  2447. width:92px;
  2448. height:38px;
  2449. display:flex;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:12px;
  2454. }
  2455. #u976 .text {
  2456. position:absolute;
  2457. align-self:center;
  2458. padding:2px 2px 2px 0px;
  2459. box-sizing:border-box;
  2460. width:100%;
  2461. }
  2462. #u976_text {
  2463. border-width:0px;
  2464. word-wrap:break-word;
  2465. text-transform:none;
  2466. }
  2467. #u977_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:92px;
  2473. height:38px;
  2474. }
  2475. #u977 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:460px;
  2479. top:39px;
  2480. width:92px;
  2481. height:38px;
  2482. display:flex;
  2483. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:12px;
  2487. }
  2488. #u977 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 0px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u977_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. visibility:hidden;
  2500. }
  2501. #u978_img {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:92px;
  2507. height:38px;
  2508. }
  2509. #u978 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:552px;
  2513. top:39px;
  2514. width:92px;
  2515. height:38px;
  2516. display:flex;
  2517. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:12px;
  2521. }
  2522. #u978 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:2px 2px 2px 0px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u978_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. visibility:hidden;
  2534. }
  2535. #u979_img {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:92px;
  2541. height:38px;
  2542. }
  2543. #u979 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:644px;
  2547. top:39px;
  2548. width:92px;
  2549. height:38px;
  2550. display:flex;
  2551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2552. font-weight:400;
  2553. font-style:normal;
  2554. font-size:12px;
  2555. }
  2556. #u979 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 0px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u979_text {
  2564. border-width:0px;
  2565. word-wrap:break-word;
  2566. text-transform:none;
  2567. }
  2568. #u980_img {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:92px;
  2574. height:38px;
  2575. }
  2576. #u980 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:736px;
  2580. top:39px;
  2581. width:92px;
  2582. height:38px;
  2583. display:flex;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:12px;
  2588. }
  2589. #u980 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:2px 2px 2px 0px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u980_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. visibility:hidden;
  2601. }
  2602. #u981_img {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:0px;
  2606. top:0px;
  2607. width:111px;
  2608. height:38px;
  2609. }
  2610. #u981 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:828px;
  2614. top:39px;
  2615. width:111px;
  2616. height:38px;
  2617. display:flex;
  2618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2619. font-weight:400;
  2620. font-style:normal;
  2621. font-size:12px;
  2622. }
  2623. #u981 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u981_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. visibility:hidden;
  2635. }
  2636. #u982_img {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:92px;
  2642. height:38px;
  2643. }
  2644. #u982 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:939px;
  2648. top:39px;
  2649. width:92px;
  2650. height:38px;
  2651. display:flex;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:12px;
  2656. }
  2657. #u982 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 2px 2px 0px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u982_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. visibility:hidden;
  2669. }
  2670. #u983_img {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:92px;
  2676. height:38px;
  2677. }
  2678. #u983 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:1031px;
  2682. top:39px;
  2683. width:92px;
  2684. height:38px;
  2685. display:flex;
  2686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2687. font-weight:400;
  2688. font-style:normal;
  2689. font-size:12px;
  2690. }
  2691. #u983 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:2px 2px 2px 0px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u983_text {
  2699. border-width:0px;
  2700. word-wrap:break-word;
  2701. text-transform:none;
  2702. visibility:hidden;
  2703. }
  2704. #u984_img {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:96px;
  2710. height:38px;
  2711. }
  2712. #u984 {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:1123px;
  2716. top:39px;
  2717. width:96px;
  2718. height:38px;
  2719. display:flex;
  2720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2721. font-weight:400;
  2722. font-style:normal;
  2723. font-size:12px;
  2724. color:#1890FF;
  2725. }
  2726. #u984 .text {
  2727. position:absolute;
  2728. align-self:center;
  2729. padding:2px 2px 2px 0px;
  2730. box-sizing:border-box;
  2731. width:100%;
  2732. }
  2733. #u984_text {
  2734. border-width:0px;
  2735. word-wrap:break-word;
  2736. text-transform:none;
  2737. }
  2738. #u985_img {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:92px;
  2744. height:38px;
  2745. }
  2746. #u985 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:77px;
  2751. width:92px;
  2752. height:38px;
  2753. display:flex;
  2754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:12px;
  2758. }
  2759. #u985 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:2px 2px 2px 0px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u985_text {
  2767. border-width:0px;
  2768. word-wrap:break-word;
  2769. text-transform:none;
  2770. visibility:hidden;
  2771. }
  2772. #u986_img {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:92px;
  2778. height:38px;
  2779. }
  2780. #u986 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:92px;
  2784. top:77px;
  2785. width:92px;
  2786. height:38px;
  2787. display:flex;
  2788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:12px;
  2792. }
  2793. #u986 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:2px 2px 2px 0px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u986_text {
  2801. border-width:0px;
  2802. word-wrap:break-word;
  2803. text-transform:none;
  2804. }
  2805. #u987_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:92px;
  2811. height:38px;
  2812. }
  2813. #u987 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:184px;
  2817. top:77px;
  2818. width:92px;
  2819. height:38px;
  2820. display:flex;
  2821. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:12px;
  2825. }
  2826. #u987 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 0px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u987_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. visibility:hidden;
  2838. }
  2839. #u988_img {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:92px;
  2845. height:38px;
  2846. }
  2847. #u988 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:276px;
  2851. top:77px;
  2852. width:92px;
  2853. height:38px;
  2854. display:flex;
  2855. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2856. font-weight:400;
  2857. font-style:normal;
  2858. font-size:12px;
  2859. }
  2860. #u988 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 0px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u988_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. visibility:hidden;
  2872. }
  2873. #u989_img {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:0px;
  2878. width:92px;
  2879. height:38px;
  2880. }
  2881. #u989 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:368px;
  2885. top:77px;
  2886. width:92px;
  2887. height:38px;
  2888. display:flex;
  2889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2890. font-weight:400;
  2891. font-style:normal;
  2892. font-size:12px;
  2893. }
  2894. #u989 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 0px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u989_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. }
  2906. #u990_img {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:92px;
  2912. height:38px;
  2913. }
  2914. #u990 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:460px;
  2918. top:77px;
  2919. width:92px;
  2920. height:38px;
  2921. display:flex;
  2922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:12px;
  2926. }
  2927. #u990 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:2px 2px 2px 0px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u990_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. visibility:hidden;
  2939. }
  2940. #u991_img {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:92px;
  2946. height:38px;
  2947. }
  2948. #u991 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:552px;
  2952. top:77px;
  2953. width:92px;
  2954. height:38px;
  2955. display:flex;
  2956. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:12px;
  2960. }
  2961. #u991 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u991_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. visibility:hidden;
  2973. }
  2974. #u992_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:92px;
  2980. height:38px;
  2981. }
  2982. #u992 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:644px;
  2986. top:77px;
  2987. width:92px;
  2988. height:38px;
  2989. display:flex;
  2990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. }
  2995. #u992 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:2px 2px 2px 0px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u992_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. visibility:hidden;
  3007. }
  3008. #u993_img {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:92px;
  3014. height:38px;
  3015. }
  3016. #u993 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:736px;
  3020. top:77px;
  3021. width:92px;
  3022. height:38px;
  3023. display:flex;
  3024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:12px;
  3028. }
  3029. #u993 .text {
  3030. position:absolute;
  3031. align-self:center;
  3032. padding:2px 2px 2px 0px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u993_text {
  3037. border-width:0px;
  3038. word-wrap:break-word;
  3039. text-transform:none;
  3040. visibility:hidden;
  3041. }
  3042. #u994_img {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:111px;
  3048. height:38px;
  3049. }
  3050. #u994 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:828px;
  3054. top:77px;
  3055. width:111px;
  3056. height:38px;
  3057. display:flex;
  3058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:12px;
  3062. }
  3063. #u994 .text {
  3064. position:absolute;
  3065. align-self:center;
  3066. padding:2px 2px 2px 0px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u994_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. visibility:hidden;
  3075. }
  3076. #u995_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:92px;
  3082. height:38px;
  3083. }
  3084. #u995 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:939px;
  3088. top:77px;
  3089. width:92px;
  3090. height:38px;
  3091. display:flex;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. }
  3097. #u995 .text {
  3098. position:absolute;
  3099. align-self:center;
  3100. padding:2px 2px 2px 0px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u995_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. visibility:hidden;
  3109. }
  3110. #u996_img {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:92px;
  3116. height:38px;
  3117. }
  3118. #u996 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:1031px;
  3122. top:77px;
  3123. width:92px;
  3124. height:38px;
  3125. display:flex;
  3126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:12px;
  3130. }
  3131. #u996 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 0px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u996_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u997_img {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:96px;
  3150. height:38px;
  3151. }
  3152. #u997 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:1123px;
  3156. top:77px;
  3157. width:96px;
  3158. height:38px;
  3159. display:flex;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. color:#1890FF;
  3165. }
  3166. #u997 .text {
  3167. position:absolute;
  3168. align-self:center;
  3169. padding:2px 2px 2px 0px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u997_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. }
  3178. #u998_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:92px;
  3184. height:38px;
  3185. }
  3186. #u998 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:115px;
  3191. width:92px;
  3192. height:38px;
  3193. display:flex;
  3194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. }
  3199. #u998 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:2px 2px 2px 0px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u998_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. visibility:hidden;
  3211. }
  3212. #u999_img {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:92px;
  3218. height:38px;
  3219. }
  3220. #u999 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:92px;
  3224. top:115px;
  3225. width:92px;
  3226. height:38px;
  3227. display:flex;
  3228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3229. font-weight:400;
  3230. font-style:normal;
  3231. font-size:12px;
  3232. }
  3233. #u999 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 0px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u999_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. visibility:hidden;
  3245. }
  3246. #u1000_img {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:92px;
  3252. height:38px;
  3253. }
  3254. #u1000 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:184px;
  3258. top:115px;
  3259. width:92px;
  3260. height:38px;
  3261. display:flex;
  3262. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3263. font-weight:400;
  3264. font-style:normal;
  3265. font-size:12px;
  3266. }
  3267. #u1000 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u1000_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u1001_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:92px;
  3286. height:38px;
  3287. }
  3288. #u1001 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:276px;
  3292. top:115px;
  3293. width:92px;
  3294. height:38px;
  3295. display:flex;
  3296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. }
  3301. #u1001 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 0px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u1001_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u1002_img {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:92px;
  3320. height:38px;
  3321. }
  3322. #u1002 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:368px;
  3326. top:115px;
  3327. width:92px;
  3328. height:38px;
  3329. display:flex;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:12px;
  3334. }
  3335. #u1002 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u1002_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u1003_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:92px;
  3354. height:38px;
  3355. }
  3356. #u1003 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:460px;
  3360. top:115px;
  3361. width:92px;
  3362. height:38px;
  3363. display:flex;
  3364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:12px;
  3368. }
  3369. #u1003 .text {
  3370. position:absolute;
  3371. align-self:center;
  3372. padding:2px 2px 2px 0px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u1003_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u1004_img {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:92px;
  3388. height:38px;
  3389. }
  3390. #u1004 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:552px;
  3394. top:115px;
  3395. width:92px;
  3396. height:38px;
  3397. display:flex;
  3398. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:12px;
  3402. }
  3403. #u1004 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 0px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u1004_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. visibility:hidden;
  3415. }
  3416. #u1005_img {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:92px;
  3422. height:38px;
  3423. }
  3424. #u1005 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:644px;
  3428. top:115px;
  3429. width:92px;
  3430. height:38px;
  3431. display:flex;
  3432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:12px;
  3436. }
  3437. #u1005 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u1005_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. visibility:hidden;
  3449. }
  3450. #u1006_img {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:92px;
  3456. height:38px;
  3457. }
  3458. #u1006 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:736px;
  3462. top:115px;
  3463. width:92px;
  3464. height:38px;
  3465. display:flex;
  3466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:12px;
  3470. }
  3471. #u1006 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 0px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u1006_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u1007_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:111px;
  3490. height:38px;
  3491. }
  3492. #u1007 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:828px;
  3496. top:115px;
  3497. width:111px;
  3498. height:38px;
  3499. display:flex;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. }
  3505. #u1007 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u1007_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u1008_img {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:92px;
  3524. height:38px;
  3525. }
  3526. #u1008 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:939px;
  3530. top:115px;
  3531. width:92px;
  3532. height:38px;
  3533. display:flex;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. }
  3539. #u1008 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 0px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u1008_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u1009_img {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:92px;
  3558. height:38px;
  3559. }
  3560. #u1009 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:1031px;
  3564. top:115px;
  3565. width:92px;
  3566. height:38px;
  3567. display:flex;
  3568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:12px;
  3572. }
  3573. #u1009 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 0px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u1009_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. visibility:hidden;
  3585. }
  3586. #u1010_img {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:96px;
  3592. height:38px;
  3593. }
  3594. #u1010 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:1123px;
  3598. top:115px;
  3599. width:96px;
  3600. height:38px;
  3601. display:flex;
  3602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3603. font-weight:400;
  3604. font-style:normal;
  3605. font-size:12px;
  3606. color:#1890FF;
  3607. }
  3608. #u1010 .text {
  3609. position:absolute;
  3610. align-self:center;
  3611. padding:2px 2px 2px 0px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u1010_text {
  3616. border-width:0px;
  3617. word-wrap:break-word;
  3618. text-transform:none;
  3619. }
  3620. #u1011_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:92px;
  3626. height:38px;
  3627. }
  3628. #u1011 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:153px;
  3633. width:92px;
  3634. height:38px;
  3635. display:flex;
  3636. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3637. font-weight:400;
  3638. font-style:normal;
  3639. font-size:12px;
  3640. }
  3641. #u1011 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:2px 2px 2px 0px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u1011_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. visibility:hidden;
  3653. }
  3654. #u1012_img {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:0px;
  3658. top:0px;
  3659. width:92px;
  3660. height:38px;
  3661. }
  3662. #u1012 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:92px;
  3666. top:153px;
  3667. width:92px;
  3668. height:38px;
  3669. display:flex;
  3670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:12px;
  3674. }
  3675. #u1012 .text {
  3676. position:absolute;
  3677. align-self:center;
  3678. padding:2px 2px 2px 0px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u1012_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u1013_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:92px;
  3694. height:38px;
  3695. }
  3696. #u1013 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:184px;
  3700. top:153px;
  3701. width:92px;
  3702. height:38px;
  3703. display:flex;
  3704. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. }
  3709. #u1013 .text {
  3710. position:absolute;
  3711. align-self:center;
  3712. padding:2px 2px 2px 0px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u1013_text {
  3717. border-width:0px;
  3718. word-wrap:break-word;
  3719. text-transform:none;
  3720. visibility:hidden;
  3721. }
  3722. #u1014_img {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:92px;
  3728. height:38px;
  3729. }
  3730. #u1014 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:276px;
  3734. top:153px;
  3735. width:92px;
  3736. height:38px;
  3737. display:flex;
  3738. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3739. font-weight:400;
  3740. font-style:normal;
  3741. font-size:12px;
  3742. }
  3743. #u1014 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 2px 2px 0px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u1014_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. visibility:hidden;
  3755. }
  3756. #u1015_img {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:92px;
  3762. height:38px;
  3763. }
  3764. #u1015 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:368px;
  3768. top:153px;
  3769. width:92px;
  3770. height:38px;
  3771. display:flex;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:12px;
  3776. }
  3777. #u1015 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 0px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u1015_text {
  3785. border-width:0px;
  3786. word-wrap:break-word;
  3787. text-transform:none;
  3788. visibility:hidden;
  3789. }
  3790. #u1016_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:92px;
  3796. height:38px;
  3797. }
  3798. #u1016 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:460px;
  3802. top:153px;
  3803. width:92px;
  3804. height:38px;
  3805. display:flex;
  3806. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:12px;
  3810. }
  3811. #u1016 .text {
  3812. position:absolute;
  3813. align-self:center;
  3814. padding:2px 2px 2px 0px;
  3815. box-sizing:border-box;
  3816. width:100%;
  3817. }
  3818. #u1016_text {
  3819. border-width:0px;
  3820. word-wrap:break-word;
  3821. text-transform:none;
  3822. visibility:hidden;
  3823. }
  3824. #u1017_img {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:92px;
  3830. height:38px;
  3831. }
  3832. #u1017 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:552px;
  3836. top:153px;
  3837. width:92px;
  3838. height:38px;
  3839. display:flex;
  3840. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. font-size:12px;
  3844. }
  3845. #u1017 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u1017_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. visibility:hidden;
  3857. }
  3858. #u1018_img {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:92px;
  3864. height:38px;
  3865. }
  3866. #u1018 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:644px;
  3870. top:153px;
  3871. width:92px;
  3872. height:38px;
  3873. display:flex;
  3874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. }
  3879. #u1018 .text {
  3880. position:absolute;
  3881. align-self:center;
  3882. padding:2px 2px 2px 0px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u1018_text {
  3887. border-width:0px;
  3888. word-wrap:break-word;
  3889. text-transform:none;
  3890. visibility:hidden;
  3891. }
  3892. #u1019_img {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:92px;
  3898. height:38px;
  3899. }
  3900. #u1019 {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:736px;
  3904. top:153px;
  3905. width:92px;
  3906. height:38px;
  3907. display:flex;
  3908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3909. font-weight:400;
  3910. font-style:normal;
  3911. font-size:12px;
  3912. }
  3913. #u1019 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 0px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u1019_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u1020_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:111px;
  3932. height:38px;
  3933. }
  3934. #u1020 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:828px;
  3938. top:153px;
  3939. width:111px;
  3940. height:38px;
  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. }
  3947. #u1020 .text {
  3948. position:absolute;
  3949. align-self:center;
  3950. padding:2px 2px 2px 0px;
  3951. box-sizing:border-box;
  3952. width:100%;
  3953. }
  3954. #u1020_text {
  3955. border-width:0px;
  3956. word-wrap:break-word;
  3957. text-transform:none;
  3958. visibility:hidden;
  3959. }
  3960. #u1021_img {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:92px;
  3966. height:38px;
  3967. }
  3968. #u1021 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:939px;
  3972. top:153px;
  3973. width:92px;
  3974. height:38px;
  3975. display:flex;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:12px;
  3980. }
  3981. #u1021 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 0px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u1021_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u1022_img {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:92px;
  4000. height:38px;
  4001. }
  4002. #u1022 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:1031px;
  4006. top:153px;
  4007. width:92px;
  4008. height:38px;
  4009. display:flex;
  4010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:12px;
  4014. }
  4015. #u1022 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u1022_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u1023_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:96px;
  4034. height:38px;
  4035. }
  4036. #u1023 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:1123px;
  4040. top:153px;
  4041. width:96px;
  4042. height:38px;
  4043. display:flex;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:12px;
  4048. color:#1890FF;
  4049. }
  4050. #u1023 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u1023_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u1024_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:92px;
  4069. height:35px;
  4070. }
  4071. #u1024 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:191px;
  4076. width:92px;
  4077. height:35px;
  4078. display:flex;
  4079. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. color:#606266;
  4084. }
  4085. #u1024 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 0px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u1024_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u1025_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:92px;
  4104. height:35px;
  4105. }
  4106. #u1025 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:92px;
  4110. top:191px;
  4111. width:92px;
  4112. height:35px;
  4113. display:flex;
  4114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:#606266;
  4119. }
  4120. #u1025 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u1025_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u1026_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:92px;
  4139. height:35px;
  4140. }
  4141. #u1026 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:184px;
  4145. top:191px;
  4146. width:92px;
  4147. height:35px;
  4148. display:flex;
  4149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#606266;
  4154. }
  4155. #u1026 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u1026_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u1027_img {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:92px;
  4174. height:35px;
  4175. }
  4176. #u1027 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:276px;
  4180. top:191px;
  4181. width:92px;
  4182. height:35px;
  4183. display:flex;
  4184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4185. font-weight:400;
  4186. font-style:normal;
  4187. font-size:12px;
  4188. color:#606266;
  4189. }
  4190. #u1027 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u1027_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u1028_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:92px;
  4209. height:35px;
  4210. }
  4211. #u1028 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:368px;
  4215. top:191px;
  4216. width:92px;
  4217. height:35px;
  4218. display:flex;
  4219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. color:#606266;
  4224. }
  4225. #u1028 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u1028_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. visibility:hidden;
  4237. }
  4238. #u1029_img {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:92px;
  4244. height:35px;
  4245. }
  4246. #u1029 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:460px;
  4250. top:191px;
  4251. width:92px;
  4252. height:35px;
  4253. display:flex;
  4254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#606266;
  4259. }
  4260. #u1029 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u1029_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u1030_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:92px;
  4279. height:35px;
  4280. }
  4281. #u1030 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:552px;
  4285. top:191px;
  4286. width:92px;
  4287. height:35px;
  4288. display:flex;
  4289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:12px;
  4293. color:#606266;
  4294. }
  4295. #u1030 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:2px 2px 2px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u1030_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u1031_img {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:92px;
  4314. height:35px;
  4315. }
  4316. #u1031 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:644px;
  4320. top:191px;
  4321. width:92px;
  4322. height:35px;
  4323. display:flex;
  4324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. color:#606266;
  4329. }
  4330. #u1031 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u1031_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u1032_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:92px;
  4349. height:35px;
  4350. }
  4351. #u1032 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:736px;
  4355. top:191px;
  4356. width:92px;
  4357. height:35px;
  4358. display:flex;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. color:#606266;
  4364. }
  4365. #u1032 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 0px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u1032_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u1033_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:111px;
  4384. height:35px;
  4385. }
  4386. #u1033 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:828px;
  4390. top:191px;
  4391. width:111px;
  4392. height:35px;
  4393. display:flex;
  4394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:12px;
  4398. color:#606266;
  4399. }
  4400. #u1033 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u1033_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u1034_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:92px;
  4419. height:35px;
  4420. }
  4421. #u1034 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:939px;
  4425. top:191px;
  4426. width:92px;
  4427. height:35px;
  4428. display:flex;
  4429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:12px;
  4433. color:#606266;
  4434. }
  4435. #u1034 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 0px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u1034_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u1035_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:92px;
  4454. height:35px;
  4455. }
  4456. #u1035 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:1031px;
  4460. top:191px;
  4461. width:92px;
  4462. height:35px;
  4463. display:flex;
  4464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:12px;
  4468. color:#606266;
  4469. }
  4470. #u1035 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 0px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u1035_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u1036_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:96px;
  4489. height:35px;
  4490. }
  4491. #u1036 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:1123px;
  4495. top:191px;
  4496. width:96px;
  4497. height:35px;
  4498. display:flex;
  4499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:12px;
  4503. color:#02A7F0;
  4504. }
  4505. #u1036 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u1036_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u1037_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:92px;
  4524. height:35px;
  4525. }
  4526. #u1037 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:226px;
  4531. width:92px;
  4532. height:35px;
  4533. display:flex;
  4534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. color:#606266;
  4539. }
  4540. #u1037 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u1037_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u1038_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:92px;
  4559. height:35px;
  4560. }
  4561. #u1038 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:92px;
  4565. top:226px;
  4566. width:92px;
  4567. height:35px;
  4568. display:flex;
  4569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. color:#606266;
  4574. }
  4575. #u1038 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u1038_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u1039_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:92px;
  4594. height:35px;
  4595. }
  4596. #u1039 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:184px;
  4600. top:226px;
  4601. width:92px;
  4602. height:35px;
  4603. display:flex;
  4604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. color:#606266;
  4609. }
  4610. #u1039 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u1039_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u1040_img {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:92px;
  4629. height:35px;
  4630. }
  4631. #u1040 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:276px;
  4635. top:226px;
  4636. width:92px;
  4637. height:35px;
  4638. display:flex;
  4639. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#606266;
  4644. }
  4645. #u1040 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u1040_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u1041_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:92px;
  4664. height:35px;
  4665. }
  4666. #u1041 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:368px;
  4670. top:226px;
  4671. width:92px;
  4672. height:35px;
  4673. display:flex;
  4674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#606266;
  4679. }
  4680. #u1041 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u1041_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u1042_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:92px;
  4699. height:35px;
  4700. }
  4701. #u1042 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:460px;
  4705. top:226px;
  4706. width:92px;
  4707. height:35px;
  4708. display:flex;
  4709. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. color:#606266;
  4714. }
  4715. #u1042 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u1042_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u1043_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:92px;
  4734. height:35px;
  4735. }
  4736. #u1043 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:552px;
  4740. top:226px;
  4741. width:92px;
  4742. height:35px;
  4743. display:flex;
  4744. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:12px;
  4748. color:#606266;
  4749. }
  4750. #u1043 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 0px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u1043_text {
  4758. border-width:0px;
  4759. word-wrap:break-word;
  4760. text-transform:none;
  4761. visibility:hidden;
  4762. }
  4763. #u1044_img {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:92px;
  4769. height:35px;
  4770. }
  4771. #u1044 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:644px;
  4775. top:226px;
  4776. width:92px;
  4777. height:35px;
  4778. display:flex;
  4779. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:12px;
  4783. color:#606266;
  4784. }
  4785. #u1044 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:2px 2px 2px 0px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u1044_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. visibility:hidden;
  4797. }
  4798. #u1045_img {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:92px;
  4804. height:35px;
  4805. }
  4806. #u1045 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:736px;
  4810. top:226px;
  4811. width:92px;
  4812. height:35px;
  4813. display:flex;
  4814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:12px;
  4818. color:#606266;
  4819. }
  4820. #u1045 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 0px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u1045_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u1046_img {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:111px;
  4839. height:35px;
  4840. }
  4841. #u1046 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:828px;
  4845. top:226px;
  4846. width:111px;
  4847. height:35px;
  4848. display:flex;
  4849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:12px;
  4853. color:#606266;
  4854. }
  4855. #u1046 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 0px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u1046_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. visibility:hidden;
  4867. }
  4868. #u1047_img {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:92px;
  4874. height:35px;
  4875. }
  4876. #u1047 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:939px;
  4880. top:226px;
  4881. width:92px;
  4882. height:35px;
  4883. display:flex;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:12px;
  4888. color:#606266;
  4889. }
  4890. #u1047 .text {
  4891. position:absolute;
  4892. align-self:center;
  4893. padding:2px 2px 2px 0px;
  4894. box-sizing:border-box;
  4895. width:100%;
  4896. }
  4897. #u1047_text {
  4898. border-width:0px;
  4899. word-wrap:break-word;
  4900. text-transform:none;
  4901. visibility:hidden;
  4902. }
  4903. #u1048_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:92px;
  4909. height:35px;
  4910. }
  4911. #u1048 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:1031px;
  4915. top:226px;
  4916. width:92px;
  4917. height:35px;
  4918. display:flex;
  4919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:12px;
  4923. color:#606266;
  4924. }
  4925. #u1048 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:2px 2px 2px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u1048_text {
  4933. border-width:0px;
  4934. word-wrap:break-word;
  4935. text-transform:none;
  4936. visibility:hidden;
  4937. }
  4938. #u1049_img {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:96px;
  4944. height:35px;
  4945. }
  4946. #u1049 {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:1123px;
  4950. top:226px;
  4951. width:96px;
  4952. height:35px;
  4953. display:flex;
  4954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. font-size:12px;
  4958. color:#02A7F0;
  4959. }
  4960. #u1049 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 0px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u1049_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. visibility:hidden;
  4972. }
  4973. #u1050_img {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:92px;
  4979. height:35px;
  4980. }
  4981. #u1050 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:261px;
  4986. width:92px;
  4987. height:35px;
  4988. display:flex;
  4989. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. color:#606266;
  4994. }
  4995. #u1050 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u1050_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u1051_img {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:92px;
  5014. height:35px;
  5015. }
  5016. #u1051 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:92px;
  5020. top:261px;
  5021. width:92px;
  5022. height:35px;
  5023. display:flex;
  5024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:12px;
  5028. color:#606266;
  5029. }
  5030. #u1051 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 0px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u1051_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u1052_img {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:92px;
  5049. height:35px;
  5050. }
  5051. #u1052 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:184px;
  5055. top:261px;
  5056. width:92px;
  5057. height:35px;
  5058. display:flex;
  5059. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:12px;
  5063. color:#606266;
  5064. }
  5065. #u1052 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 2px 2px 0px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u1052_text {
  5073. border-width:0px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. visibility:hidden;
  5077. }
  5078. #u1053_img {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:92px;
  5084. height:35px;
  5085. }
  5086. #u1053 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:276px;
  5090. top:261px;
  5091. width:92px;
  5092. height:35px;
  5093. display:flex;
  5094. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:12px;
  5098. color:#606266;
  5099. }
  5100. #u1053 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:2px 2px 2px 0px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u1053_text {
  5108. border-width:0px;
  5109. word-wrap:break-word;
  5110. text-transform:none;
  5111. visibility:hidden;
  5112. }
  5113. #u1054_img {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:92px;
  5119. height:35px;
  5120. }
  5121. #u1054 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:368px;
  5125. top:261px;
  5126. width:92px;
  5127. height:35px;
  5128. display:flex;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. color:#606266;
  5134. }
  5135. #u1054 .text {
  5136. position:absolute;
  5137. align-self:center;
  5138. padding:2px 2px 2px 0px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u1054_text {
  5143. border-width:0px;
  5144. word-wrap:break-word;
  5145. text-transform:none;
  5146. visibility:hidden;
  5147. }
  5148. #u1055_img {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:92px;
  5154. height:35px;
  5155. }
  5156. #u1055 {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:460px;
  5160. top:261px;
  5161. width:92px;
  5162. height:35px;
  5163. display:flex;
  5164. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:12px;
  5168. color:#606266;
  5169. }
  5170. #u1055 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:2px 2px 2px 0px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u1055_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u1056_img {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:92px;
  5189. height:35px;
  5190. }
  5191. #u1056 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:552px;
  5195. top:261px;
  5196. width:92px;
  5197. height:35px;
  5198. display:flex;
  5199. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:12px;
  5203. color:#606266;
  5204. }
  5205. #u1056 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:2px 2px 2px 0px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u1056_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. visibility:hidden;
  5217. }
  5218. #u1057_img {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:92px;
  5224. height:35px;
  5225. }
  5226. #u1057 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:644px;
  5230. top:261px;
  5231. width:92px;
  5232. height:35px;
  5233. display:flex;
  5234. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:12px;
  5238. color:#606266;
  5239. }
  5240. #u1057 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:2px 2px 2px 0px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u1057_text {
  5248. border-width:0px;
  5249. word-wrap:break-word;
  5250. text-transform:none;
  5251. visibility:hidden;
  5252. }
  5253. #u1058_img {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:92px;
  5259. height:35px;
  5260. }
  5261. #u1058 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:736px;
  5265. top:261px;
  5266. width:92px;
  5267. height:35px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:12px;
  5273. color:#606266;
  5274. }
  5275. #u1058 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:2px 2px 2px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u1058_text {
  5283. border-width:0px;
  5284. word-wrap:break-word;
  5285. text-transform:none;
  5286. visibility:hidden;
  5287. }
  5288. #u1059_img {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:111px;
  5294. height:35px;
  5295. }
  5296. #u1059 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:828px;
  5300. top:261px;
  5301. width:111px;
  5302. height:35px;
  5303. display:flex;
  5304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. font-size:12px;
  5308. color:#606266;
  5309. }
  5310. #u1059 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 2px 2px 0px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u1059_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u1060_img {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:92px;
  5329. height:35px;
  5330. }
  5331. #u1060 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:939px;
  5335. top:261px;
  5336. width:92px;
  5337. height:35px;
  5338. display:flex;
  5339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:12px;
  5343. color:#606266;
  5344. }
  5345. #u1060 .text {
  5346. position:absolute;
  5347. align-self:center;
  5348. padding:2px 2px 2px 0px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u1060_text {
  5353. border-width:0px;
  5354. word-wrap:break-word;
  5355. text-transform:none;
  5356. visibility:hidden;
  5357. }
  5358. #u1061_img {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:92px;
  5364. height:35px;
  5365. }
  5366. #u1061 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:1031px;
  5370. top:261px;
  5371. width:92px;
  5372. height:35px;
  5373. display:flex;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:12px;
  5378. color:#606266;
  5379. }
  5380. #u1061 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 0px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u1061_text {
  5388. border-width:0px;
  5389. word-wrap:break-word;
  5390. text-transform:none;
  5391. visibility:hidden;
  5392. }
  5393. #u1062_img {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:96px;
  5399. height:35px;
  5400. }
  5401. #u1062 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:1123px;
  5405. top:261px;
  5406. width:96px;
  5407. height:35px;
  5408. display:flex;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:12px;
  5413. color:#02A7F0;
  5414. }
  5415. #u1062 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:2px 2px 2px 0px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u1062_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. visibility:hidden;
  5427. }
  5428. #u1063_img {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:92px;
  5434. height:35px;
  5435. }
  5436. #u1063 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:296px;
  5441. width:92px;
  5442. height:35px;
  5443. display:flex;
  5444. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:12px;
  5448. color:#606266;
  5449. }
  5450. #u1063 .text {
  5451. position:absolute;
  5452. align-self:center;
  5453. padding:2px 2px 2px 0px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u1063_text {
  5458. border-width:0px;
  5459. word-wrap:break-word;
  5460. text-transform:none;
  5461. visibility:hidden;
  5462. }
  5463. #u1064_img {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:92px;
  5469. height:35px;
  5470. }
  5471. #u1064 {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:92px;
  5475. top:296px;
  5476. width:92px;
  5477. height:35px;
  5478. display:flex;
  5479. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:12px;
  5483. color:#606266;
  5484. }
  5485. #u1064 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:2px 2px 2px 0px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u1064_text {
  5493. border-width:0px;
  5494. word-wrap:break-word;
  5495. text-transform:none;
  5496. visibility:hidden;
  5497. }
  5498. #u1065_img {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:92px;
  5504. height:35px;
  5505. }
  5506. #u1065 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:184px;
  5510. top:296px;
  5511. width:92px;
  5512. height:35px;
  5513. display:flex;
  5514. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. color:#606266;
  5519. }
  5520. #u1065 .text {
  5521. position:absolute;
  5522. align-self:center;
  5523. padding:2px 2px 2px 0px;
  5524. box-sizing:border-box;
  5525. width:100%;
  5526. }
  5527. #u1065_text {
  5528. border-width:0px;
  5529. word-wrap:break-word;
  5530. text-transform:none;
  5531. visibility:hidden;
  5532. }
  5533. #u1066_img {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:92px;
  5539. height:35px;
  5540. }
  5541. #u1066 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:276px;
  5545. top:296px;
  5546. width:92px;
  5547. height:35px;
  5548. display:flex;
  5549. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. font-size:12px;
  5553. color:#606266;
  5554. }
  5555. #u1066 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 0px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u1066_text {
  5563. border-width:0px;
  5564. word-wrap:break-word;
  5565. text-transform:none;
  5566. visibility:hidden;
  5567. }
  5568. #u1067_img {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:92px;
  5574. height:35px;
  5575. }
  5576. #u1067 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:368px;
  5580. top:296px;
  5581. width:92px;
  5582. height:35px;
  5583. display:flex;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:12px;
  5588. color:#606266;
  5589. }
  5590. #u1067 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 0px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u1067_text {
  5598. border-width:0px;
  5599. word-wrap:break-word;
  5600. text-transform:none;
  5601. visibility:hidden;
  5602. }
  5603. #u1068_img {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:92px;
  5609. height:35px;
  5610. }
  5611. #u1068 {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:460px;
  5615. top:296px;
  5616. width:92px;
  5617. height:35px;
  5618. display:flex;
  5619. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:12px;
  5623. color:#606266;
  5624. }
  5625. #u1068 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 0px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u1068_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u1069_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:92px;
  5644. height:35px;
  5645. }
  5646. #u1069 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:552px;
  5650. top:296px;
  5651. width:92px;
  5652. height:35px;
  5653. display:flex;
  5654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:12px;
  5658. color:#606266;
  5659. }
  5660. #u1069 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:2px 2px 2px 0px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u1069_text {
  5668. border-width:0px;
  5669. word-wrap:break-word;
  5670. text-transform:none;
  5671. visibility:hidden;
  5672. }
  5673. #u1070_img {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:92px;
  5679. height:35px;
  5680. }
  5681. #u1070 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:644px;
  5685. top:296px;
  5686. width:92px;
  5687. height:35px;
  5688. display:flex;
  5689. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:12px;
  5693. color:#606266;
  5694. }
  5695. #u1070 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:2px 2px 2px 0px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u1070_text {
  5703. border-width:0px;
  5704. word-wrap:break-word;
  5705. text-transform:none;
  5706. visibility:hidden;
  5707. }
  5708. #u1071_img {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:92px;
  5714. height:35px;
  5715. }
  5716. #u1071 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:736px;
  5720. top:296px;
  5721. width:92px;
  5722. height:35px;
  5723. display:flex;
  5724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. color:#606266;
  5729. }
  5730. #u1071 .text {
  5731. position:absolute;
  5732. align-self:center;
  5733. padding:2px 2px 2px 0px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u1071_text {
  5738. border-width:0px;
  5739. word-wrap:break-word;
  5740. text-transform:none;
  5741. visibility:hidden;
  5742. }
  5743. #u1072_img {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:111px;
  5749. height:35px;
  5750. }
  5751. #u1072 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:828px;
  5755. top:296px;
  5756. width:111px;
  5757. height:35px;
  5758. display:flex;
  5759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:12px;
  5763. color:#606266;
  5764. }
  5765. #u1072 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 2px 2px 0px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u1072_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u1073_img {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:92px;
  5784. height:35px;
  5785. }
  5786. #u1073 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:939px;
  5790. top:296px;
  5791. width:92px;
  5792. height:35px;
  5793. display:flex;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#606266;
  5799. }
  5800. #u1073 .text {
  5801. position:absolute;
  5802. align-self:center;
  5803. padding:2px 2px 2px 0px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u1073_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. visibility:hidden;
  5812. }
  5813. #u1074_img {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:92px;
  5819. height:35px;
  5820. }
  5821. #u1074 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:1031px;
  5825. top:296px;
  5826. width:92px;
  5827. height:35px;
  5828. display:flex;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:12px;
  5833. color:#606266;
  5834. }
  5835. #u1074 .text {
  5836. position:absolute;
  5837. align-self:center;
  5838. padding:2px 2px 2px 0px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u1074_text {
  5843. border-width:0px;
  5844. word-wrap:break-word;
  5845. text-transform:none;
  5846. visibility:hidden;
  5847. }
  5848. #u1075_img {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:96px;
  5854. height:35px;
  5855. }
  5856. #u1075 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:1123px;
  5860. top:296px;
  5861. width:96px;
  5862. height:35px;
  5863. display:flex;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:12px;
  5868. color:#02A7F0;
  5869. }
  5870. #u1075 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:2px 2px 2px 0px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u1075_text {
  5878. border-width:0px;
  5879. word-wrap:break-word;
  5880. text-transform:none;
  5881. visibility:hidden;
  5882. }
  5883. #u1076_img {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:92px;
  5889. height:35px;
  5890. }
  5891. #u1076 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:331px;
  5896. width:92px;
  5897. height:35px;
  5898. display:flex;
  5899. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:12px;
  5903. color:#606266;
  5904. }
  5905. #u1076 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 0px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u1076_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u1077_img {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:92px;
  5924. height:35px;
  5925. }
  5926. #u1077 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:92px;
  5930. top:331px;
  5931. width:92px;
  5932. height:35px;
  5933. display:flex;
  5934. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5935. font-weight:400;
  5936. font-style:normal;
  5937. font-size:12px;
  5938. color:#606266;
  5939. }
  5940. #u1077 .text {
  5941. position:absolute;
  5942. align-self:center;
  5943. padding:2px 2px 2px 0px;
  5944. box-sizing:border-box;
  5945. width:100%;
  5946. }
  5947. #u1077_text {
  5948. border-width:0px;
  5949. word-wrap:break-word;
  5950. text-transform:none;
  5951. visibility:hidden;
  5952. }
  5953. #u1078_img {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:92px;
  5959. height:35px;
  5960. }
  5961. #u1078 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:184px;
  5965. top:331px;
  5966. width:92px;
  5967. height:35px;
  5968. display:flex;
  5969. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:12px;
  5973. color:#606266;
  5974. }
  5975. #u1078 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:2px 2px 2px 0px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u1078_text {
  5983. border-width:0px;
  5984. word-wrap:break-word;
  5985. text-transform:none;
  5986. visibility:hidden;
  5987. }
  5988. #u1079_img {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:92px;
  5994. height:35px;
  5995. }
  5996. #u1079 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:276px;
  6000. top:331px;
  6001. width:92px;
  6002. height:35px;
  6003. display:flex;
  6004. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:12px;
  6008. color:#606266;
  6009. }
  6010. #u1079 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:2px 2px 2px 0px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u1079_text {
  6018. border-width:0px;
  6019. word-wrap:break-word;
  6020. text-transform:none;
  6021. visibility:hidden;
  6022. }
  6023. #u1080_img {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:92px;
  6029. height:35px;
  6030. }
  6031. #u1080 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:368px;
  6035. top:331px;
  6036. width:92px;
  6037. height:35px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#606266;
  6044. }
  6045. #u1080 .text {
  6046. position:absolute;
  6047. align-self:center;
  6048. padding:2px 2px 2px 0px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u1080_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. visibility:hidden;
  6057. }
  6058. #u1081_img {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:92px;
  6064. height:35px;
  6065. }
  6066. #u1081 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:460px;
  6070. top:331px;
  6071. width:92px;
  6072. height:35px;
  6073. display:flex;
  6074. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:12px;
  6078. color:#606266;
  6079. }
  6080. #u1081 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:2px 2px 2px 0px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u1081_text {
  6088. border-width:0px;
  6089. word-wrap:break-word;
  6090. text-transform:none;
  6091. visibility:hidden;
  6092. }
  6093. #u1082_img {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:92px;
  6099. height:35px;
  6100. }
  6101. #u1082 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:552px;
  6105. top:331px;
  6106. width:92px;
  6107. height:35px;
  6108. display:flex;
  6109. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:12px;
  6113. color:#606266;
  6114. }
  6115. #u1082 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 0px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u1082_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. visibility:hidden;
  6127. }
  6128. #u1083_img {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:92px;
  6134. height:35px;
  6135. }
  6136. #u1083 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:644px;
  6140. top:331px;
  6141. width:92px;
  6142. height:35px;
  6143. display:flex;
  6144. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:12px;
  6148. color:#606266;
  6149. }
  6150. #u1083 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 0px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u1083_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u1084_img {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:92px;
  6169. height:35px;
  6170. }
  6171. #u1084 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:736px;
  6175. top:331px;
  6176. width:92px;
  6177. height:35px;
  6178. display:flex;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:12px;
  6183. color:#606266;
  6184. }
  6185. #u1084 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u1084_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u1085_img {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:111px;
  6204. height:35px;
  6205. }
  6206. #u1085 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:828px;
  6210. top:331px;
  6211. width:111px;
  6212. height:35px;
  6213. display:flex;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:12px;
  6218. color:#606266;
  6219. }
  6220. #u1085 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:2px 2px 2px 0px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u1085_text {
  6228. border-width:0px;
  6229. word-wrap:break-word;
  6230. text-transform:none;
  6231. visibility:hidden;
  6232. }
  6233. #u1086_img {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:92px;
  6239. height:35px;
  6240. }
  6241. #u1086 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:939px;
  6245. top:331px;
  6246. width:92px;
  6247. height:35px;
  6248. display:flex;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:12px;
  6253. color:#606266;
  6254. }
  6255. #u1086 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:2px 2px 2px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u1086_text {
  6263. border-width:0px;
  6264. word-wrap:break-word;
  6265. text-transform:none;
  6266. visibility:hidden;
  6267. }
  6268. #u1087_img {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:92px;
  6274. height:35px;
  6275. }
  6276. #u1087 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:1031px;
  6280. top:331px;
  6281. width:92px;
  6282. height:35px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:12px;
  6288. color:#606266;
  6289. }
  6290. #u1087 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 0px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u1087_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u1088_img {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:96px;
  6309. height:35px;
  6310. }
  6311. #u1088 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:1123px;
  6315. top:331px;
  6316. width:96px;
  6317. height:35px;
  6318. display:flex;
  6319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:12px;
  6323. color:#02A7F0;
  6324. }
  6325. #u1088 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 0px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u1088_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u1089 {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:0px;
  6344. height:0px;
  6345. }
  6346. #u1090_div {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:59px;
  6352. height:30px;
  6353. background:inherit;
  6354. background-color:rgba(24, 144, 255, 1);
  6355. box-sizing:border-box;
  6356. border-width:1px;
  6357. border-style:solid;
  6358. border-color:rgba(0, 153, 255, 1);
  6359. border-radius:4px;
  6360. -moz-box-shadow:none;
  6361. -webkit-box-shadow:none;
  6362. box-shadow:none;
  6363. font-family:'Microsoft YaHei', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:14px;
  6367. color:#FFFFFF;
  6368. }
  6369. #u1090 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:652px;
  6373. top:215px;
  6374. width:59px;
  6375. height:30px;
  6376. display:flex;
  6377. font-family:'Microsoft YaHei', sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. font-size:14px;
  6381. color:#FFFFFF;
  6382. }
  6383. #u1090 .text {
  6384. position:absolute;
  6385. align-self:center;
  6386. padding:5px 15px 5px 15px;
  6387. box-sizing:border-box;
  6388. width:100%;
  6389. }
  6390. #u1090_text {
  6391. border-width:0px;
  6392. white-space:nowrap;
  6393. text-transform:none;
  6394. }
  6395. #u1091_div {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:55px;
  6401. height:30px;
  6402. background:inherit;
  6403. background-color:rgba(255, 255, 255, 1);
  6404. box-sizing:border-box;
  6405. border-width:1px;
  6406. border-style:solid;
  6407. border-color:rgba(170, 170, 170, 1);
  6408. border-radius:4px;
  6409. -moz-box-shadow:none;
  6410. -webkit-box-shadow:none;
  6411. box-shadow:none;
  6412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. font-size:12px;
  6416. color:#555555;
  6417. }
  6418. #u1091 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:721px;
  6422. top:215px;
  6423. width:55px;
  6424. height:30px;
  6425. display:flex;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:12px;
  6430. color:#555555;
  6431. }
  6432. #u1091 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:5px 15px 5px 15px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u1091_text {
  6440. border-width:0px;
  6441. white-space:nowrap;
  6442. text-transform:none;
  6443. }
  6444. #u1092 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:0px;
  6450. height:0px;
  6451. }
  6452. #u1093_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:140px;
  6458. height:30px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 1);
  6461. box-sizing:border-box;
  6462. border-width:1px;
  6463. border-style:solid;
  6464. border-color:rgba(201, 201, 201, 1);
  6465. border-radius:4px;
  6466. -moz-box-shadow:none;
  6467. -webkit-box-shadow:none;
  6468. box-shadow:none;
  6469. font-family:'Microsoft YaHei', sans-serif;
  6470. font-weight:400;
  6471. font-style:normal;
  6472. font-size:14px;
  6473. color:#CCCCCC;
  6474. text-align:left;
  6475. }
  6476. #u1093 {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:802px;
  6480. top:174px;
  6481. width:140px;
  6482. height:30px;
  6483. display:flex;
  6484. font-family:'Microsoft YaHei', sans-serif;
  6485. font-weight:400;
  6486. font-style:normal;
  6487. font-size:14px;
  6488. color:#CCCCCC;
  6489. text-align:left;
  6490. }
  6491. #u1093 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:2px 8px 2px 8px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u1093_text {
  6499. border-width:0px;
  6500. word-wrap:break-word;
  6501. text-transform:none;
  6502. visibility:hidden;
  6503. }
  6504. #u1094_input {
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:127px;
  6509. height:25px;
  6510. padding:2px 2px 2px 2px;
  6511. font-family:'Microsoft YaHei', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:10px;
  6515. letter-spacing:normal;
  6516. color:#000000;
  6517. vertical-align:none;
  6518. text-align:left;
  6519. text-transform:none;
  6520. background-color:transparent;
  6521. border-color:transparent;
  6522. }
  6523. #u1094_input.disabled {
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:127px;
  6528. height:25px;
  6529. padding:2px 2px 2px 2px;
  6530. font-family:'Microsoft YaHei', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:10px;
  6534. letter-spacing:normal;
  6535. color:#000000;
  6536. vertical-align:none;
  6537. text-align:left;
  6538. text-transform:none;
  6539. background-color:transparent;
  6540. border-color:transparent;
  6541. }
  6542. #u1094_div {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:0px;
  6546. top:0px;
  6547. width:127px;
  6548. height:25px;
  6549. background:inherit;
  6550. background-color:rgba(255, 255, 255, 1);
  6551. border:none;
  6552. border-radius:0px;
  6553. -moz-box-shadow:none;
  6554. -webkit-box-shadow:none;
  6555. box-shadow:none;
  6556. font-family:'Microsoft YaHei', sans-serif;
  6557. font-weight:400;
  6558. font-style:normal;
  6559. font-size:10px;
  6560. }
  6561. #u1094 {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:810px;
  6565. top:175px;
  6566. width:127px;
  6567. height:25px;
  6568. display:flex;
  6569. font-family:'Microsoft YaHei', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:10px;
  6573. }
  6574. #u1094 .text {
  6575. position:absolute;
  6576. align-self:center;
  6577. padding:2px 2px 2px 2px;
  6578. box-sizing:border-box;
  6579. width:100%;
  6580. }
  6581. #u1094_div.disabled {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:0px;
  6585. top:0px;
  6586. width:127px;
  6587. height:25px;
  6588. background:inherit;
  6589. background-color:rgba(240, 240, 240, 1);
  6590. border:none;
  6591. border-radius:0px;
  6592. -moz-box-shadow:none;
  6593. -webkit-box-shadow:none;
  6594. box-shadow:none;
  6595. font-family:'Microsoft YaHei', sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. font-size:10px;
  6599. }
  6600. #u1094.disabled {
  6601. }
  6602. #u1095 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:0px;
  6606. top:0px;
  6607. width:0px;
  6608. height:0px;
  6609. }
  6610. #u1096_div {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:140px;
  6616. height:30px;
  6617. background:inherit;
  6618. background-color:rgba(255, 255, 255, 1);
  6619. box-sizing:border-box;
  6620. border-width:1px;
  6621. border-style:solid;
  6622. border-color:rgba(215, 215, 215, 1);
  6623. border-radius:4px;
  6624. -moz-box-shadow:none;
  6625. -webkit-box-shadow:none;
  6626. box-shadow:none;
  6627. font-size:11px;
  6628. }
  6629. #u1096 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:502px;
  6633. top:174px;
  6634. width:140px;
  6635. height:30px;
  6636. display:flex;
  6637. font-size:11px;
  6638. }
  6639. #u1096 .text {
  6640. position:absolute;
  6641. align-self:center;
  6642. padding:2px 2px 2px 2px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u1096_text {
  6647. border-width:0px;
  6648. word-wrap:break-word;
  6649. text-transform:none;
  6650. visibility:hidden;
  6651. }
  6652. #u1097_input {
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:126px;
  6657. height:23px;
  6658. padding:2px 2px 2px 2px;
  6659. font-family:'ArialMT', 'Arial', sans-serif;
  6660. font-weight:400;
  6661. font-style:normal;
  6662. font-size:11px;
  6663. letter-spacing:normal;
  6664. color:#AAAAAA;
  6665. vertical-align:none;
  6666. text-align:left;
  6667. text-transform:none;
  6668. background-color:transparent;
  6669. border-color:transparent;
  6670. }
  6671. #u1097_input.disabled {
  6672. position:absolute;
  6673. left:0px;
  6674. top:0px;
  6675. width:126px;
  6676. height:23px;
  6677. padding:2px 2px 2px 2px;
  6678. font-family:'ArialMT', 'Arial', sans-serif;
  6679. font-weight:400;
  6680. font-style:normal;
  6681. font-size:11px;
  6682. letter-spacing:normal;
  6683. color:#AAAAAA;
  6684. vertical-align:none;
  6685. text-align:left;
  6686. text-transform:none;
  6687. background-color:transparent;
  6688. border-color:transparent;
  6689. }
  6690. #u1097_div {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:126px;
  6696. height:23px;
  6697. background:inherit;
  6698. background-color:rgba(255, 255, 255, 1);
  6699. border:none;
  6700. border-radius:0px;
  6701. -moz-box-shadow:none;
  6702. -webkit-box-shadow:none;
  6703. box-shadow:none;
  6704. font-size:11px;
  6705. color:#AAAAAA;
  6706. }
  6707. #u1097 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:509px;
  6711. top:176px;
  6712. width:126px;
  6713. height:23px;
  6714. display:flex;
  6715. font-size:11px;
  6716. color:#AAAAAA;
  6717. }
  6718. #u1097 .text {
  6719. position:absolute;
  6720. align-self:flex-start;
  6721. padding:2px 2px 2px 2px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u1097_div.disabled {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:126px;
  6731. height:23px;
  6732. background:inherit;
  6733. background-color:rgba(240, 240, 240, 1);
  6734. border:none;
  6735. border-radius:0px;
  6736. -moz-box-shadow:none;
  6737. -webkit-box-shadow:none;
  6738. box-shadow:none;
  6739. font-size:11px;
  6740. color:#AAAAAA;
  6741. }
  6742. #u1097.disabled {
  6743. }
  6744. .u1097_input_option {
  6745. font-size:11px;
  6746. }
  6747. #u1098 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:0px;
  6753. height:0px;
  6754. }
  6755. #u1099_div {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:140px;
  6761. height:30px;
  6762. background:inherit;
  6763. background-color:rgba(255, 255, 255, 1);
  6764. box-sizing:border-box;
  6765. border-width:1px;
  6766. border-style:solid;
  6767. border-color:rgba(215, 215, 215, 1);
  6768. border-radius:4px;
  6769. -moz-box-shadow:none;
  6770. -webkit-box-shadow:none;
  6771. box-shadow:none;
  6772. font-size:11px;
  6773. }
  6774. #u1099 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:502px;
  6778. top:216px;
  6779. width:140px;
  6780. height:30px;
  6781. display:flex;
  6782. font-size:11px;
  6783. }
  6784. #u1099 .text {
  6785. position:absolute;
  6786. align-self:center;
  6787. padding:2px 2px 2px 2px;
  6788. box-sizing:border-box;
  6789. width:100%;
  6790. }
  6791. #u1099_text {
  6792. border-width:0px;
  6793. word-wrap:break-word;
  6794. text-transform:none;
  6795. visibility:hidden;
  6796. }
  6797. #u1100_input {
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:126px;
  6802. height:23px;
  6803. padding:2px 2px 2px 2px;
  6804. font-family:'ArialMT', 'Arial', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:11px;
  6808. letter-spacing:normal;
  6809. color:#AAAAAA;
  6810. vertical-align:none;
  6811. text-align:left;
  6812. text-transform:none;
  6813. background-color:transparent;
  6814. border-color:transparent;
  6815. }
  6816. #u1100_input.disabled {
  6817. position:absolute;
  6818. left:0px;
  6819. top:0px;
  6820. width:126px;
  6821. height:23px;
  6822. padding:2px 2px 2px 2px;
  6823. font-family:'ArialMT', 'Arial', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:11px;
  6827. letter-spacing:normal;
  6828. color:#AAAAAA;
  6829. vertical-align:none;
  6830. text-align:left;
  6831. text-transform:none;
  6832. background-color:transparent;
  6833. border-color:transparent;
  6834. }
  6835. #u1100_div {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:126px;
  6841. height:23px;
  6842. background:inherit;
  6843. background-color:rgba(255, 255, 255, 1);
  6844. border:none;
  6845. border-radius:0px;
  6846. -moz-box-shadow:none;
  6847. -webkit-box-shadow:none;
  6848. box-shadow:none;
  6849. font-size:11px;
  6850. color:#AAAAAA;
  6851. }
  6852. #u1100 {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:509px;
  6856. top:218px;
  6857. width:126px;
  6858. height:23px;
  6859. display:flex;
  6860. font-size:11px;
  6861. color:#AAAAAA;
  6862. }
  6863. #u1100 .text {
  6864. position:absolute;
  6865. align-self:flex-start;
  6866. padding:2px 2px 2px 2px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u1100_div.disabled {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:0px;
  6874. top:0px;
  6875. width:126px;
  6876. height:23px;
  6877. background:inherit;
  6878. background-color:rgba(240, 240, 240, 1);
  6879. border:none;
  6880. border-radius:0px;
  6881. -moz-box-shadow:none;
  6882. -webkit-box-shadow:none;
  6883. box-shadow:none;
  6884. font-size:11px;
  6885. color:#AAAAAA;
  6886. }
  6887. #u1100.disabled {
  6888. }
  6889. .u1100_input_option {
  6890. font-size:11px;
  6891. }
  6892. #u1101_div {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:43px;
  6898. height:50px;
  6899. background:inherit;
  6900. background-color:rgba(255, 255, 255, 0);
  6901. box-sizing:border-box;
  6902. border-width:2px;
  6903. border-style:solid;
  6904. border-color:rgba(24, 144, 255, 1);
  6905. border-left:0px;
  6906. border-top:0px;
  6907. border-right:0px;
  6908. border-radius:0px;
  6909. border-bottom-right-radius:0px;
  6910. border-bottom-left-radius:0px;
  6911. -moz-box-shadow:none;
  6912. -webkit-box-shadow:none;
  6913. box-shadow:none;
  6914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:14px;
  6918. color:#1890FF;
  6919. }
  6920. #u1101 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:352px;
  6924. top:102px;
  6925. width:43px;
  6926. height:50px;
  6927. display:flex;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:14px;
  6932. color:#1890FF;
  6933. }
  6934. #u1101 .text {
  6935. position:absolute;
  6936. align-self:center;
  6937. padding:0px 0px 0px 0px;
  6938. box-sizing:border-box;
  6939. width:100%;
  6940. }
  6941. #u1101_text {
  6942. border-width:0px;
  6943. white-space:nowrap;
  6944. text-transform:none;
  6945. }
  6946. #u1102_div {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:43px;
  6952. height:50px;
  6953. background:inherit;
  6954. background-color:rgba(255, 255, 255, 0);
  6955. border:none;
  6956. border-left:0px;
  6957. border-top:0px;
  6958. border-right:0px;
  6959. border-radius:0px;
  6960. border-bottom-right-radius:0px;
  6961. border-bottom-left-radius:0px;
  6962. -moz-box-shadow:none;
  6963. -webkit-box-shadow:none;
  6964. box-shadow:none;
  6965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. font-size:14px;
  6969. }
  6970. #u1102 {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:425px;
  6974. top:102px;
  6975. width:43px;
  6976. height:50px;
  6977. display:flex;
  6978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6979. font-weight:400;
  6980. font-style:normal;
  6981. font-size:14px;
  6982. }
  6983. #u1102 .text {
  6984. position:absolute;
  6985. align-self:center;
  6986. padding:0px 0px 0px 0px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u1102_text {
  6991. border-width:0px;
  6992. white-space:nowrap;
  6993. text-transform:none;
  6994. }
  6995. #u1103_div {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:43px;
  7001. height:50px;
  7002. background:inherit;
  7003. background-color:rgba(255, 255, 255, 0);
  7004. border:none;
  7005. border-left:0px;
  7006. border-top:0px;
  7007. border-right:0px;
  7008. border-radius:0px;
  7009. border-bottom-right-radius:0px;
  7010. border-bottom-left-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:14px;
  7018. }
  7019. #u1103 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:498px;
  7023. top:102px;
  7024. width:43px;
  7025. height:50px;
  7026. display:flex;
  7027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:14px;
  7031. }
  7032. #u1103 .text {
  7033. position:absolute;
  7034. align-self:center;
  7035. padding:0px 0px 0px 0px;
  7036. box-sizing:border-box;
  7037. width:100%;
  7038. }
  7039. #u1103_text {
  7040. border-width:0px;
  7041. white-space:nowrap;
  7042. text-transform:none;
  7043. }
  7044. #u1104_div {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:59px;
  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. color:#555555;
  7066. }
  7067. #u1104 {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:449px;
  7071. top:264px;
  7072. width:59px;
  7073. height:30px;
  7074. display:flex;
  7075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7076. font-weight:400;
  7077. font-style:normal;
  7078. font-size:14px;
  7079. color:#555555;
  7080. }
  7081. #u1104 .text {
  7082. position:absolute;
  7083. align-self:center;
  7084. padding:5px 15px 5px 15px;
  7085. box-sizing:border-box;
  7086. width:100%;
  7087. }
  7088. #u1104_text {
  7089. border-width:0px;
  7090. white-space:nowrap;
  7091. text-transform:none;
  7092. }
  7093. #u1105_div {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:87px;
  7099. height:30px;
  7100. background:inherit;
  7101. background-color:rgba(255, 255, 255, 1);
  7102. box-sizing:border-box;
  7103. border-width:1px;
  7104. border-style:solid;
  7105. border-color:rgba(170, 170, 170, 1);
  7106. border-radius:4px;
  7107. -moz-box-shadow:none;
  7108. -webkit-box-shadow:none;
  7109. box-shadow:none;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:14px;
  7114. color:#555555;
  7115. }
  7116. #u1105 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:352px;
  7120. top:264px;
  7121. width:87px;
  7122. height:30px;
  7123. display:flex;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:14px;
  7128. color:#555555;
  7129. }
  7130. #u1105 .text {
  7131. position:absolute;
  7132. align-self:center;
  7133. padding:5px 15px 5px 15px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u1105_text {
  7138. border-width:0px;
  7139. white-space:nowrap;
  7140. text-transform:none;
  7141. }
  7142. #u1106 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:0px;
  7148. height:0px;
  7149. }
  7150. #u1107_div {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:0px;
  7154. top:0px;
  7155. width:140px;
  7156. height:30px;
  7157. background:inherit;
  7158. background-color:rgba(255, 255, 255, 1);
  7159. box-sizing:border-box;
  7160. border-width:1px;
  7161. border-style:solid;
  7162. border-color:rgba(201, 201, 201, 1);
  7163. border-radius:4px;
  7164. -moz-box-shadow:none;
  7165. -webkit-box-shadow:none;
  7166. box-shadow:none;
  7167. font-family:'Microsoft YaHei', sans-serif;
  7168. font-weight:400;
  7169. font-style:normal;
  7170. font-size:14px;
  7171. color:#CCCCCC;
  7172. text-align:left;
  7173. }
  7174. #u1107 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:952px;
  7178. top:174px;
  7179. width:140px;
  7180. height:30px;
  7181. display:flex;
  7182. font-family:'Microsoft YaHei', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:14px;
  7186. color:#CCCCCC;
  7187. text-align:left;
  7188. }
  7189. #u1107 .text {
  7190. position:absolute;
  7191. align-self:center;
  7192. padding:2px 8px 2px 8px;
  7193. box-sizing:border-box;
  7194. width:100%;
  7195. }
  7196. #u1107_text {
  7197. border-width:0px;
  7198. word-wrap:break-word;
  7199. text-transform:none;
  7200. visibility:hidden;
  7201. }
  7202. #u1108_input {
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:127px;
  7207. height:25px;
  7208. padding:2px 2px 2px 2px;
  7209. font-family:'Microsoft YaHei', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:10px;
  7213. letter-spacing:normal;
  7214. color:#000000;
  7215. vertical-align:none;
  7216. text-align:left;
  7217. text-transform:none;
  7218. background-color:transparent;
  7219. border-color:transparent;
  7220. }
  7221. #u1108_input.disabled {
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:127px;
  7226. height:25px;
  7227. padding:2px 2px 2px 2px;
  7228. font-family:'Microsoft YaHei', sans-serif;
  7229. font-weight:400;
  7230. font-style:normal;
  7231. font-size:10px;
  7232. letter-spacing:normal;
  7233. color:#000000;
  7234. vertical-align:none;
  7235. text-align:left;
  7236. text-transform:none;
  7237. background-color:transparent;
  7238. border-color:transparent;
  7239. }
  7240. #u1108_div {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:0px;
  7244. top:0px;
  7245. width:127px;
  7246. height:25px;
  7247. background:inherit;
  7248. background-color:rgba(255, 255, 255, 1);
  7249. border:none;
  7250. border-radius:0px;
  7251. -moz-box-shadow:none;
  7252. -webkit-box-shadow:none;
  7253. box-shadow:none;
  7254. font-family:'Microsoft YaHei', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:10px;
  7258. }
  7259. #u1108 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:960px;
  7263. top:175px;
  7264. width:127px;
  7265. height:25px;
  7266. display:flex;
  7267. font-family:'Microsoft YaHei', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:10px;
  7271. }
  7272. #u1108 .text {
  7273. position:absolute;
  7274. align-self:center;
  7275. padding:2px 2px 2px 2px;
  7276. box-sizing:border-box;
  7277. width:100%;
  7278. }
  7279. #u1108_div.disabled {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:127px;
  7285. height:25px;
  7286. background:inherit;
  7287. background-color:rgba(240, 240, 240, 1);
  7288. border:none;
  7289. border-radius:0px;
  7290. -moz-box-shadow:none;
  7291. -webkit-box-shadow:none;
  7292. box-shadow:none;
  7293. font-family:'Microsoft YaHei', sans-serif;
  7294. font-weight:400;
  7295. font-style:normal;
  7296. font-size:10px;
  7297. }
  7298. #u1108.disabled {
  7299. }
  7300. #u1109 {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:0px;
  7306. height:0px;
  7307. }
  7308. #u1110_div {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:140px;
  7314. height:30px;
  7315. background:inherit;
  7316. background-color:rgba(255, 255, 255, 1);
  7317. box-sizing:border-box;
  7318. border-width:1px;
  7319. border-style:solid;
  7320. border-color:rgba(201, 201, 201, 1);
  7321. border-radius:4px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. font-family:'Microsoft YaHei', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:14px;
  7329. color:#CCCCCC;
  7330. text-align:left;
  7331. }
  7332. #u1110 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:1102px;
  7336. top:174px;
  7337. width:140px;
  7338. height:30px;
  7339. display:flex;
  7340. font-family:'Microsoft YaHei', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. font-size:14px;
  7344. color:#CCCCCC;
  7345. text-align:left;
  7346. }
  7347. #u1110 .text {
  7348. position:absolute;
  7349. align-self:center;
  7350. padding:2px 8px 2px 8px;
  7351. box-sizing:border-box;
  7352. width:100%;
  7353. }
  7354. #u1110_text {
  7355. border-width:0px;
  7356. word-wrap:break-word;
  7357. text-transform:none;
  7358. visibility:hidden;
  7359. }
  7360. #u1111_input {
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:127px;
  7365. height:25px;
  7366. padding:2px 2px 2px 2px;
  7367. font-family:'Microsoft YaHei', sans-serif;
  7368. font-weight:400;
  7369. font-style:normal;
  7370. font-size:10px;
  7371. letter-spacing:normal;
  7372. color:#000000;
  7373. vertical-align:none;
  7374. text-align:left;
  7375. text-transform:none;
  7376. background-color:transparent;
  7377. border-color:transparent;
  7378. }
  7379. #u1111_input.disabled {
  7380. position:absolute;
  7381. left:0px;
  7382. top:0px;
  7383. width:127px;
  7384. height:25px;
  7385. padding:2px 2px 2px 2px;
  7386. font-family:'Microsoft YaHei', sans-serif;
  7387. font-weight:400;
  7388. font-style:normal;
  7389. font-size:10px;
  7390. letter-spacing:normal;
  7391. color:#000000;
  7392. vertical-align:none;
  7393. text-align:left;
  7394. text-transform:none;
  7395. background-color:transparent;
  7396. border-color:transparent;
  7397. }
  7398. #u1111_div {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:0px;
  7402. top:0px;
  7403. width:127px;
  7404. height:25px;
  7405. background:inherit;
  7406. background-color:rgba(255, 255, 255, 1);
  7407. border:none;
  7408. border-radius:0px;
  7409. -moz-box-shadow:none;
  7410. -webkit-box-shadow:none;
  7411. box-shadow:none;
  7412. font-family:'Microsoft YaHei', sans-serif;
  7413. font-weight:400;
  7414. font-style:normal;
  7415. font-size:10px;
  7416. }
  7417. #u1111 {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:1110px;
  7421. top:175px;
  7422. width:127px;
  7423. height:25px;
  7424. display:flex;
  7425. font-family:'Microsoft YaHei', sans-serif;
  7426. font-weight:400;
  7427. font-style:normal;
  7428. font-size:10px;
  7429. }
  7430. #u1111 .text {
  7431. position:absolute;
  7432. align-self:center;
  7433. padding:2px 2px 2px 2px;
  7434. box-sizing:border-box;
  7435. width:100%;
  7436. }
  7437. #u1111_div.disabled {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:0px;
  7441. top:0px;
  7442. width:127px;
  7443. height:25px;
  7444. background:inherit;
  7445. background-color:rgba(240, 240, 240, 1);
  7446. border:none;
  7447. border-radius:0px;
  7448. -moz-box-shadow:none;
  7449. -webkit-box-shadow:none;
  7450. box-shadow:none;
  7451. font-family:'Microsoft YaHei', sans-serif;
  7452. font-weight:400;
  7453. font-style:normal;
  7454. font-size:10px;
  7455. }
  7456. #u1111.disabled {
  7457. }
  7458. #u1112 {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:0px;
  7464. height:0px;
  7465. }
  7466. #u1113_div {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:140px;
  7472. height:30px;
  7473. background:inherit;
  7474. background-color:rgba(255, 255, 255, 1);
  7475. box-sizing:border-box;
  7476. border-width:1px;
  7477. border-style:solid;
  7478. border-color:rgba(215, 215, 215, 1);
  7479. border-radius:4px;
  7480. -moz-box-shadow:none;
  7481. -webkit-box-shadow:none;
  7482. box-shadow:none;
  7483. font-size:11px;
  7484. }
  7485. #u1113 {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:1252px;
  7489. top:174px;
  7490. width:140px;
  7491. height:30px;
  7492. display:flex;
  7493. font-size:11px;
  7494. }
  7495. #u1113 .text {
  7496. position:absolute;
  7497. align-self:center;
  7498. padding:2px 2px 2px 2px;
  7499. box-sizing:border-box;
  7500. width:100%;
  7501. }
  7502. #u1113_text {
  7503. border-width:0px;
  7504. word-wrap:break-word;
  7505. text-transform:none;
  7506. visibility:hidden;
  7507. }
  7508. #u1114_input {
  7509. position:absolute;
  7510. left:0px;
  7511. top:0px;
  7512. width:126px;
  7513. height:23px;
  7514. padding:2px 2px 2px 2px;
  7515. font-family:'ArialMT', 'Arial', sans-serif;
  7516. font-weight:400;
  7517. font-style:normal;
  7518. font-size:11px;
  7519. letter-spacing:normal;
  7520. color:#AAAAAA;
  7521. vertical-align:none;
  7522. text-align:left;
  7523. text-transform:none;
  7524. background-color:transparent;
  7525. border-color:transparent;
  7526. }
  7527. #u1114_input.disabled {
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:126px;
  7532. height:23px;
  7533. padding:2px 2px 2px 2px;
  7534. font-family:'ArialMT', 'Arial', sans-serif;
  7535. font-weight:400;
  7536. font-style:normal;
  7537. font-size:11px;
  7538. letter-spacing:normal;
  7539. color:#AAAAAA;
  7540. vertical-align:none;
  7541. text-align:left;
  7542. text-transform:none;
  7543. background-color:transparent;
  7544. border-color:transparent;
  7545. }
  7546. #u1114_div {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:126px;
  7552. height:23px;
  7553. background:inherit;
  7554. background-color:rgba(255, 255, 255, 1);
  7555. border:none;
  7556. border-radius:0px;
  7557. -moz-box-shadow:none;
  7558. -webkit-box-shadow:none;
  7559. box-shadow:none;
  7560. font-size:11px;
  7561. color:#AAAAAA;
  7562. }
  7563. #u1114 {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:1259px;
  7567. top:176px;
  7568. width:126px;
  7569. height:23px;
  7570. display:flex;
  7571. font-size:11px;
  7572. color:#AAAAAA;
  7573. }
  7574. #u1114 .text {
  7575. position:absolute;
  7576. align-self:flex-start;
  7577. padding:2px 2px 2px 2px;
  7578. box-sizing:border-box;
  7579. width:100%;
  7580. }
  7581. #u1114_div.disabled {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:0px;
  7585. top:0px;
  7586. width:126px;
  7587. height:23px;
  7588. background:inherit;
  7589. background-color:rgba(240, 240, 240, 1);
  7590. border:none;
  7591. border-radius:0px;
  7592. -moz-box-shadow:none;
  7593. -webkit-box-shadow:none;
  7594. box-shadow:none;
  7595. font-size:11px;
  7596. color:#AAAAAA;
  7597. }
  7598. #u1114.disabled {
  7599. }
  7600. .u1114_input_option {
  7601. font-size:11px;
  7602. }
  7603. #u1115 {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:0px;
  7609. height:0px;
  7610. }
  7611. #u1116_div {
  7612. border-width:0px;
  7613. position:absolute;
  7614. left:0px;
  7615. top:0px;
  7616. width:140px;
  7617. height:30px;
  7618. background:inherit;
  7619. background-color:rgba(255, 255, 255, 1);
  7620. box-sizing:border-box;
  7621. border-width:1px;
  7622. border-style:solid;
  7623. border-color:rgba(215, 215, 215, 1);
  7624. border-radius:4px;
  7625. -moz-box-shadow:none;
  7626. -webkit-box-shadow:none;
  7627. box-shadow:none;
  7628. font-size:11px;
  7629. }
  7630. #u1116 {
  7631. border-width:0px;
  7632. position:absolute;
  7633. left:352px;
  7634. top:215px;
  7635. width:140px;
  7636. height:30px;
  7637. display:flex;
  7638. font-size:11px;
  7639. }
  7640. #u1116 .text {
  7641. position:absolute;
  7642. align-self:center;
  7643. padding:2px 2px 2px 2px;
  7644. box-sizing:border-box;
  7645. width:100%;
  7646. }
  7647. #u1116_text {
  7648. border-width:0px;
  7649. word-wrap:break-word;
  7650. text-transform:none;
  7651. visibility:hidden;
  7652. }
  7653. #u1117_input {
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:126px;
  7658. height:23px;
  7659. padding:2px 2px 2px 2px;
  7660. font-family:'ArialMT', 'Arial', sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:11px;
  7664. letter-spacing:normal;
  7665. color:#AAAAAA;
  7666. vertical-align:none;
  7667. text-align:left;
  7668. text-transform:none;
  7669. background-color:transparent;
  7670. border-color:transparent;
  7671. }
  7672. #u1117_input.disabled {
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:126px;
  7677. height:23px;
  7678. padding:2px 2px 2px 2px;
  7679. font-family:'ArialMT', 'Arial', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:11px;
  7683. letter-spacing:normal;
  7684. color:#AAAAAA;
  7685. vertical-align:none;
  7686. text-align:left;
  7687. text-transform:none;
  7688. background-color:transparent;
  7689. border-color:transparent;
  7690. }
  7691. #u1117_div {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:0px;
  7695. top:0px;
  7696. width:126px;
  7697. height:23px;
  7698. background:inherit;
  7699. background-color:rgba(255, 255, 255, 1);
  7700. border:none;
  7701. border-radius:0px;
  7702. -moz-box-shadow:none;
  7703. -webkit-box-shadow:none;
  7704. box-shadow:none;
  7705. font-size:11px;
  7706. color:#AAAAAA;
  7707. }
  7708. #u1117 {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:359px;
  7712. top:217px;
  7713. width:126px;
  7714. height:23px;
  7715. display:flex;
  7716. font-size:11px;
  7717. color:#AAAAAA;
  7718. }
  7719. #u1117 .text {
  7720. position:absolute;
  7721. align-self:flex-start;
  7722. padding:2px 2px 2px 2px;
  7723. box-sizing:border-box;
  7724. width:100%;
  7725. }
  7726. #u1117_div.disabled {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:0px;
  7730. top:0px;
  7731. width:126px;
  7732. height:23px;
  7733. background:inherit;
  7734. background-color:rgba(240, 240, 240, 1);
  7735. border:none;
  7736. border-radius:0px;
  7737. -moz-box-shadow:none;
  7738. -webkit-box-shadow:none;
  7739. box-shadow:none;
  7740. font-size:11px;
  7741. color:#AAAAAA;
  7742. }
  7743. #u1117.disabled {
  7744. }
  7745. .u1117_input_option {
  7746. font-size:11px;
  7747. }
  7748. #u1118 {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:0px;
  7752. top:0px;
  7753. width:0px;
  7754. height:0px;
  7755. }
  7756. #u1119_div {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:140px;
  7762. height:30px;
  7763. background:inherit;
  7764. background-color:rgba(255, 255, 255, 1);
  7765. box-sizing:border-box;
  7766. border-width:1px;
  7767. border-style:solid;
  7768. border-color:rgba(215, 215, 215, 1);
  7769. border-radius:4px;
  7770. -moz-box-shadow:none;
  7771. -webkit-box-shadow:none;
  7772. box-shadow:none;
  7773. font-size:11px;
  7774. }
  7775. #u1119 {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:352px;
  7779. top:174px;
  7780. width:140px;
  7781. height:30px;
  7782. display:flex;
  7783. font-size:11px;
  7784. }
  7785. #u1119 .text {
  7786. position:absolute;
  7787. align-self:center;
  7788. padding:2px 2px 2px 2px;
  7789. box-sizing:border-box;
  7790. width:100%;
  7791. }
  7792. #u1119_text {
  7793. border-width:0px;
  7794. word-wrap:break-word;
  7795. text-transform:none;
  7796. visibility:hidden;
  7797. }
  7798. #u1120_input {
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:126px;
  7803. height:23px;
  7804. padding:2px 2px 2px 2px;
  7805. font-family:'ArialMT', 'Arial', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:11px;
  7809. letter-spacing:normal;
  7810. color:#AAAAAA;
  7811. vertical-align:none;
  7812. text-align:left;
  7813. text-transform:none;
  7814. background-color:transparent;
  7815. border-color:transparent;
  7816. }
  7817. #u1120_input.disabled {
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:126px;
  7822. height:23px;
  7823. padding:2px 2px 2px 2px;
  7824. font-family:'ArialMT', 'Arial', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:11px;
  7828. letter-spacing:normal;
  7829. color:#AAAAAA;
  7830. vertical-align:none;
  7831. text-align:left;
  7832. text-transform:none;
  7833. background-color:transparent;
  7834. border-color:transparent;
  7835. }
  7836. #u1120_div {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:0px;
  7840. top:0px;
  7841. width:126px;
  7842. height:23px;
  7843. background:inherit;
  7844. background-color:rgba(255, 255, 255, 1);
  7845. border:none;
  7846. border-radius:0px;
  7847. -moz-box-shadow:none;
  7848. -webkit-box-shadow:none;
  7849. box-shadow:none;
  7850. font-size:11px;
  7851. color:#AAAAAA;
  7852. }
  7853. #u1120 {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:359px;
  7857. top:176px;
  7858. width:126px;
  7859. height:23px;
  7860. display:flex;
  7861. font-size:11px;
  7862. color:#AAAAAA;
  7863. }
  7864. #u1120 .text {
  7865. position:absolute;
  7866. align-self:flex-start;
  7867. padding:2px 2px 2px 2px;
  7868. box-sizing:border-box;
  7869. width:100%;
  7870. }
  7871. #u1120_div.disabled {
  7872. border-width:0px;
  7873. position:absolute;
  7874. left:0px;
  7875. top:0px;
  7876. width:126px;
  7877. height:23px;
  7878. background:inherit;
  7879. background-color:rgba(240, 240, 240, 1);
  7880. border:none;
  7881. border-radius:0px;
  7882. -moz-box-shadow:none;
  7883. -webkit-box-shadow:none;
  7884. box-shadow:none;
  7885. font-size:11px;
  7886. color:#AAAAAA;
  7887. }
  7888. #u1120.disabled {
  7889. }
  7890. .u1120_input_option {
  7891. font-size:11px;
  7892. }
  7893. #u1121 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:0px;
  7899. height:0px;
  7900. }
  7901. #u1122_div {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:0px;
  7905. top:0px;
  7906. width:140px;
  7907. height:30px;
  7908. background:inherit;
  7909. background-color:rgba(255, 255, 255, 1);
  7910. box-sizing:border-box;
  7911. border-width:1px;
  7912. border-style:solid;
  7913. border-color:rgba(215, 215, 215, 1);
  7914. border-radius:4px;
  7915. -moz-box-shadow:none;
  7916. -webkit-box-shadow:none;
  7917. box-shadow:none;
  7918. font-size:11px;
  7919. }
  7920. #u1122 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:650px;
  7924. top:174px;
  7925. width:140px;
  7926. height:30px;
  7927. display:flex;
  7928. font-size:11px;
  7929. }
  7930. #u1122 .text {
  7931. position:absolute;
  7932. align-self:center;
  7933. padding:2px 2px 2px 2px;
  7934. box-sizing:border-box;
  7935. width:100%;
  7936. }
  7937. #u1122_text {
  7938. border-width:0px;
  7939. word-wrap:break-word;
  7940. text-transform:none;
  7941. visibility:hidden;
  7942. }
  7943. #u1123_input {
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:126px;
  7948. height:23px;
  7949. padding:2px 2px 2px 2px;
  7950. font-family:'ArialMT', 'Arial', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:11px;
  7954. letter-spacing:normal;
  7955. color:#AAAAAA;
  7956. vertical-align:none;
  7957. text-align:left;
  7958. text-transform:none;
  7959. background-color:transparent;
  7960. border-color:transparent;
  7961. }
  7962. #u1123_input.disabled {
  7963. position:absolute;
  7964. left:0px;
  7965. top:0px;
  7966. width:126px;
  7967. height:23px;
  7968. padding:2px 2px 2px 2px;
  7969. font-family:'ArialMT', 'Arial', sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:11px;
  7973. letter-spacing:normal;
  7974. color:#AAAAAA;
  7975. vertical-align:none;
  7976. text-align:left;
  7977. text-transform:none;
  7978. background-color:transparent;
  7979. border-color:transparent;
  7980. }
  7981. #u1123_div {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:0px;
  7985. top:0px;
  7986. width:126px;
  7987. height:23px;
  7988. background:inherit;
  7989. background-color:rgba(255, 255, 255, 1);
  7990. border:none;
  7991. border-radius:0px;
  7992. -moz-box-shadow:none;
  7993. -webkit-box-shadow:none;
  7994. box-shadow:none;
  7995. font-size:11px;
  7996. color:#AAAAAA;
  7997. }
  7998. #u1123 {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:657px;
  8002. top:176px;
  8003. width:126px;
  8004. height:23px;
  8005. display:flex;
  8006. font-size:11px;
  8007. color:#AAAAAA;
  8008. }
  8009. #u1123 .text {
  8010. position:absolute;
  8011. align-self:flex-start;
  8012. padding:2px 2px 2px 2px;
  8013. box-sizing:border-box;
  8014. width:100%;
  8015. }
  8016. #u1123_div.disabled {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:0px;
  8020. top:0px;
  8021. width:126px;
  8022. height:23px;
  8023. background:inherit;
  8024. background-color:rgba(240, 240, 240, 1);
  8025. border:none;
  8026. border-radius:0px;
  8027. -moz-box-shadow:none;
  8028. -webkit-box-shadow:none;
  8029. box-shadow:none;
  8030. font-size:11px;
  8031. color:#AAAAAA;
  8032. }
  8033. #u1123.disabled {
  8034. }
  8035. .u1123_input_option {
  8036. font-size:11px;
  8037. }
  8038. #u1124 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:0px;
  8042. top:0px;
  8043. width:0px;
  8044. height:0px;
  8045. }
  8046. #u1125 {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:0px;
  8052. height:0px;
  8053. }
  8054. #u1126_div {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:480px;
  8060. height:350px;
  8061. background:inherit;
  8062. background-color:rgba(255, 255, 255, 1);
  8063. border:none;
  8064. border-radius:4px;
  8065. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8066. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8067. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8068. font-family:'Microsoft YaHei', sans-serif;
  8069. font-weight:400;
  8070. font-style:normal;
  8071. }
  8072. #u1126 {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:414px;
  8076. top:715px;
  8077. width:480px;
  8078. height:350px;
  8079. display:flex;
  8080. font-family:'Microsoft YaHei', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. }
  8084. #u1126 .text {
  8085. position:absolute;
  8086. align-self:center;
  8087. padding:2px 2px 2px 2px;
  8088. box-sizing:border-box;
  8089. width:100%;
  8090. }
  8091. #u1126_text {
  8092. border-width:0px;
  8093. word-wrap:break-word;
  8094. text-transform:none;
  8095. visibility:hidden;
  8096. }
  8097. #u1127_div {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:0px;
  8101. top:0px;
  8102. width:299px;
  8103. height:22px;
  8104. background:inherit;
  8105. background-color:rgba(255, 255, 255, 0);
  8106. border:none;
  8107. border-radius:0px;
  8108. -moz-box-shadow:none;
  8109. -webkit-box-shadow:none;
  8110. box-shadow:none;
  8111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8112. font-weight:400;
  8113. font-style:normal;
  8114. font-size:14px;
  8115. color:#666666;
  8116. line-height:22px;
  8117. }
  8118. #u1127 {
  8119. border-width:0px;
  8120. position:absolute;
  8121. left:441px;
  8122. top:778px;
  8123. width:299px;
  8124. height:22px;
  8125. display:flex;
  8126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8127. font-weight:400;
  8128. font-style:normal;
  8129. font-size:14px;
  8130. color:#666666;
  8131. line-height:22px;
  8132. }
  8133. #u1127 .text {
  8134. position:absolute;
  8135. align-self:flex-start;
  8136. padding:0px 0px 0px 0px;
  8137. box-sizing:border-box;
  8138. width:100%;
  8139. }
  8140. #u1127_text {
  8141. border-width:0px;
  8142. word-wrap:break-word;
  8143. text-transform:none;
  8144. }
  8145. #u1128_div {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:0px;
  8149. top:0px;
  8150. width:109px;
  8151. height:21px;
  8152. background:inherit;
  8153. background-color:rgba(255, 255, 255, 0);
  8154. border:none;
  8155. border-radius:0px;
  8156. -moz-box-shadow:none;
  8157. -webkit-box-shadow:none;
  8158. box-shadow:none;
  8159. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8160. font-weight:650;
  8161. font-style:normal;
  8162. font-size:18px;
  8163. color:#000000;
  8164. line-height:22px;
  8165. }
  8166. #u1128 {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:441px;
  8170. top:736px;
  8171. width:109px;
  8172. height:21px;
  8173. display:flex;
  8174. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8175. font-weight:650;
  8176. font-style:normal;
  8177. font-size:18px;
  8178. color:#000000;
  8179. line-height:22px;
  8180. }
  8181. #u1128 .text {
  8182. position:absolute;
  8183. align-self:flex-start;
  8184. padding:0px 0px 0px 0px;
  8185. box-sizing:border-box;
  8186. width:100%;
  8187. }
  8188. #u1128_text {
  8189. border-width:0px;
  8190. white-space:nowrap;
  8191. text-transform:none;
  8192. }
  8193. #u1129 label {
  8194. left:0px;
  8195. width:100%;
  8196. }
  8197. #u1129_img {
  8198. border-width:0px;
  8199. position:absolute;
  8200. left:0px;
  8201. top:3px;
  8202. width:12px;
  8203. height:12px;
  8204. }
  8205. #u1129 {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:518px;
  8209. top:781px;
  8210. width:100px;
  8211. height:18px;
  8212. display:flex;
  8213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8214. font-weight:400;
  8215. font-style:normal;
  8216. }
  8217. #u1129 .text {
  8218. position:absolute;
  8219. align-self:center;
  8220. padding:0px 2px 0px 2px;
  8221. box-sizing:border-box;
  8222. }
  8223. #u1129_img.selected {
  8224. }
  8225. #u1129.selected {
  8226. }
  8227. #u1129_img.disabled {
  8228. }
  8229. #u1129.disabled {
  8230. }
  8231. #u1129_img.selectedDisabled {
  8232. }
  8233. #u1129.selectedDisabled {
  8234. }
  8235. #u1129_text {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:14px;
  8239. top:0px;
  8240. width:84px;
  8241. word-wrap:break-word;
  8242. text-transform:none;
  8243. }
  8244. #u1129_input {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:0px;
  8248. top:0px;
  8249. width:0px;
  8250. height:0px;
  8251. opacity:0;
  8252. }
  8253. #u1130 label {
  8254. left:0px;
  8255. width:100%;
  8256. }
  8257. #u1130_img {
  8258. border-width:0px;
  8259. position:absolute;
  8260. left:0px;
  8261. top:3px;
  8262. width:12px;
  8263. height:12px;
  8264. }
  8265. #u1130 {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:518px;
  8269. top:814px;
  8270. width:100px;
  8271. height:18px;
  8272. display:flex;
  8273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8274. font-weight:400;
  8275. font-style:normal;
  8276. }
  8277. #u1130 .text {
  8278. position:absolute;
  8279. align-self:center;
  8280. padding:0px 2px 0px 2px;
  8281. box-sizing:border-box;
  8282. }
  8283. #u1130_img.selected {
  8284. }
  8285. #u1130.selected {
  8286. }
  8287. #u1130_img.disabled {
  8288. }
  8289. #u1130.disabled {
  8290. }
  8291. #u1130_img.selectedDisabled {
  8292. }
  8293. #u1130.selectedDisabled {
  8294. }
  8295. #u1130_text {
  8296. border-width:0px;
  8297. position:absolute;
  8298. left:14px;
  8299. top:0px;
  8300. width:84px;
  8301. word-wrap:break-word;
  8302. text-transform:none;
  8303. }
  8304. #u1130_input {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:0px;
  8310. height:0px;
  8311. opacity:0;
  8312. }
  8313. #u1131 label {
  8314. left:0px;
  8315. width:100%;
  8316. }
  8317. #u1131_img {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:0px;
  8321. top:3px;
  8322. width:12px;
  8323. height:12px;
  8324. }
  8325. #u1131 {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:518px;
  8329. top:847px;
  8330. width:100px;
  8331. height:18px;
  8332. display:flex;
  8333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8334. font-weight:400;
  8335. font-style:normal;
  8336. }
  8337. #u1131 .text {
  8338. position:absolute;
  8339. align-self:center;
  8340. padding:0px 2px 0px 2px;
  8341. box-sizing:border-box;
  8342. }
  8343. #u1131_img.selected {
  8344. }
  8345. #u1131.selected {
  8346. }
  8347. #u1131_img.disabled {
  8348. }
  8349. #u1131.disabled {
  8350. }
  8351. #u1131_img.selectedDisabled {
  8352. }
  8353. #u1131.selectedDisabled {
  8354. }
  8355. #u1131_text {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:14px;
  8359. top:0px;
  8360. width:84px;
  8361. word-wrap:break-word;
  8362. text-transform:none;
  8363. }
  8364. #u1131_input {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:0px;
  8368. top:0px;
  8369. width:0px;
  8370. height:0px;
  8371. opacity:0;
  8372. }
  8373. #u1132 label {
  8374. left:0px;
  8375. width:100%;
  8376. }
  8377. #u1132_img {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:3px;
  8382. width:12px;
  8383. height:12px;
  8384. }
  8385. #u1132 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:518px;
  8389. top:880px;
  8390. width:100px;
  8391. height:18px;
  8392. display:flex;
  8393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8394. font-weight:400;
  8395. font-style:normal;
  8396. }
  8397. #u1132 .text {
  8398. position:absolute;
  8399. align-self:center;
  8400. padding:0px 2px 0px 2px;
  8401. box-sizing:border-box;
  8402. }
  8403. #u1132_img.selected {
  8404. }
  8405. #u1132.selected {
  8406. }
  8407. #u1132_img.disabled {
  8408. }
  8409. #u1132.disabled {
  8410. }
  8411. #u1132_img.selectedDisabled {
  8412. }
  8413. #u1132.selectedDisabled {
  8414. }
  8415. #u1132_text {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:14px;
  8419. top:0px;
  8420. width:84px;
  8421. word-wrap:break-word;
  8422. text-transform:none;
  8423. }
  8424. #u1132_input {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:0px;
  8430. height:0px;
  8431. opacity:0;
  8432. }
  8433. #u1133 label {
  8434. left:0px;
  8435. width:100%;
  8436. }
  8437. #u1133_img {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:0px;
  8441. top:3px;
  8442. width:12px;
  8443. height:12px;
  8444. }
  8445. #u1133 {
  8446. border-width:0px;
  8447. position:absolute;
  8448. left:518px;
  8449. top:913px;
  8450. width:100px;
  8451. height:18px;
  8452. display:flex;
  8453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8454. font-weight:400;
  8455. font-style:normal;
  8456. }
  8457. #u1133 .text {
  8458. position:absolute;
  8459. align-self:center;
  8460. padding:0px 2px 0px 2px;
  8461. box-sizing:border-box;
  8462. }
  8463. #u1133_img.selected {
  8464. }
  8465. #u1133.selected {
  8466. }
  8467. #u1133_img.disabled {
  8468. }
  8469. #u1133.disabled {
  8470. }
  8471. #u1133_img.selectedDisabled {
  8472. }
  8473. #u1133.selectedDisabled {
  8474. }
  8475. #u1133_text {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:14px;
  8479. top:0px;
  8480. width:84px;
  8481. word-wrap:break-word;
  8482. text-transform:none;
  8483. }
  8484. #u1133_input {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:0px;
  8488. top:0px;
  8489. width:0px;
  8490. height:0px;
  8491. opacity:0;
  8492. }
  8493. #u1134 {
  8494. border-width:0px;
  8495. position:absolute;
  8496. left:0px;
  8497. top:0px;
  8498. width:0px;
  8499. height:0px;
  8500. }
  8501. #u1135_div {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:0px;
  8505. top:0px;
  8506. width:347px;
  8507. height:60px;
  8508. background:inherit;
  8509. background-color:rgba(255, 255, 255, 1);
  8510. box-sizing:border-box;
  8511. border-width:1px;
  8512. border-style:solid;
  8513. border-color:rgba(41, 143, 255, 1);
  8514. border-radius:4px;
  8515. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  8516. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  8517. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  8518. font-family:'Microsoft YaHei', sans-serif;
  8519. font-weight:400;
  8520. font-style:normal;
  8521. font-size:14px;
  8522. color:#CCCCCC;
  8523. text-align:left;
  8524. }
  8525. #u1135 {
  8526. border-width:0px;
  8527. position:absolute;
  8528. left:518px;
  8529. top:941px;
  8530. width:347px;
  8531. height:60px;
  8532. display:flex;
  8533. font-family:'Microsoft YaHei', sans-serif;
  8534. font-weight:400;
  8535. font-style:normal;
  8536. font-size:14px;
  8537. color:#CCCCCC;
  8538. text-align:left;
  8539. }
  8540. #u1135 .text {
  8541. position:absolute;
  8542. align-self:center;
  8543. padding:2px 8px 2px 8px;
  8544. box-sizing:border-box;
  8545. width:100%;
  8546. }
  8547. #u1135_text {
  8548. border-width:0px;
  8549. word-wrap:break-word;
  8550. text-transform:none;
  8551. visibility:hidden;
  8552. }
  8553. #u1136_input {
  8554. position:absolute;
  8555. left:0px;
  8556. top:0px;
  8557. width:330px;
  8558. height:38px;
  8559. padding:2px 2px 2px 2px;
  8560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8561. font-weight:400;
  8562. font-style:normal;
  8563. font-size:14px;
  8564. letter-spacing:normal;
  8565. color:#000000;
  8566. vertical-align:none;
  8567. text-align:left;
  8568. text-transform:none;
  8569. background-color:transparent;
  8570. border-color:transparent;
  8571. }
  8572. #u1136_input.disabled {
  8573. position:absolute;
  8574. left:0px;
  8575. top:0px;
  8576. width:330px;
  8577. height:38px;
  8578. padding:2px 2px 2px 2px;
  8579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8580. font-weight:400;
  8581. font-style:normal;
  8582. font-size:14px;
  8583. letter-spacing:normal;
  8584. color:#000000;
  8585. vertical-align:none;
  8586. text-align:left;
  8587. text-transform:none;
  8588. background-color:transparent;
  8589. border-color:transparent;
  8590. }
  8591. #u1136_div {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:0px;
  8595. top:0px;
  8596. width:330px;
  8597. height:38px;
  8598. background:inherit;
  8599. background-color:rgba(255, 255, 255, 1);
  8600. border:none;
  8601. border-radius:0px;
  8602. -moz-box-shadow:none;
  8603. -webkit-box-shadow:none;
  8604. box-shadow:none;
  8605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8606. font-weight:400;
  8607. font-style:normal;
  8608. font-size:14px;
  8609. }
  8610. #u1136 {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:527px;
  8614. top:942px;
  8615. width:330px;
  8616. height:38px;
  8617. display:flex;
  8618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8619. font-weight:400;
  8620. font-style:normal;
  8621. font-size:14px;
  8622. }
  8623. #u1136 .text {
  8624. position:absolute;
  8625. align-self:center;
  8626. padding:2px 2px 2px 2px;
  8627. box-sizing:border-box;
  8628. width:100%;
  8629. }
  8630. #u1136_div.disabled {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:0px;
  8634. top:0px;
  8635. width:330px;
  8636. height:38px;
  8637. background:inherit;
  8638. background-color:rgba(240, 240, 240, 1);
  8639. border:none;
  8640. border-radius:0px;
  8641. -moz-box-shadow:none;
  8642. -webkit-box-shadow:none;
  8643. box-shadow:none;
  8644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8645. font-weight:400;
  8646. font-style:normal;
  8647. font-size:14px;
  8648. }
  8649. #u1136.disabled {
  8650. }
  8651. #u1137 {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:0px;
  8657. height:0px;
  8658. }
  8659. #u1138_div {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:0px;
  8663. top:0px;
  8664. width:80px;
  8665. height:30px;
  8666. background:inherit;
  8667. background-color:rgba(24, 144, 255, 1);
  8668. border:none;
  8669. border-radius:4px;
  8670. -moz-box-shadow:none;
  8671. -webkit-box-shadow:none;
  8672. box-shadow:none;
  8673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8674. font-weight:400;
  8675. font-style:normal;
  8676. font-size:14px;
  8677. color:#FFFFFF;
  8678. }
  8679. #u1138 {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:785px;
  8683. top:1021px;
  8684. width:80px;
  8685. height:30px;
  8686. display:flex;
  8687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8688. font-weight:400;
  8689. font-style:normal;
  8690. font-size:14px;
  8691. color:#FFFFFF;
  8692. }
  8693. #u1138 .text {
  8694. position:absolute;
  8695. align-self:center;
  8696. padding:2px 2px 2px 2px;
  8697. box-sizing:border-box;
  8698. width:100%;
  8699. }
  8700. #u1138_text {
  8701. border-width:0px;
  8702. word-wrap:break-word;
  8703. text-transform:none;
  8704. }
  8705. #u1139_div {
  8706. border-width:0px;
  8707. position:absolute;
  8708. left:0px;
  8709. top:0px;
  8710. width:80px;
  8711. height:30px;
  8712. background:inherit;
  8713. background-color:rgba(255, 255, 255, 1);
  8714. box-sizing:border-box;
  8715. border-width:1px;
  8716. border-style:solid;
  8717. border-color:rgba(170, 170, 170, 1);
  8718. border-radius:4px;
  8719. -moz-box-shadow:none;
  8720. -webkit-box-shadow:none;
  8721. box-shadow:none;
  8722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:14px;
  8726. }
  8727. #u1139 {
  8728. border-width:0px;
  8729. position:absolute;
  8730. left:686px;
  8731. top:1021px;
  8732. width:80px;
  8733. height:30px;
  8734. display:flex;
  8735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8736. font-weight:400;
  8737. font-style:normal;
  8738. font-size:14px;
  8739. }
  8740. #u1139 .text {
  8741. position:absolute;
  8742. align-self:center;
  8743. padding:2px 2px 2px 2px;
  8744. box-sizing:border-box;
  8745. width:100%;
  8746. }
  8747. #u1139_text {
  8748. border-width:0px;
  8749. word-wrap:break-word;
  8750. text-transform:none;
  8751. }
  8752. #u1140 {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:0px;
  8756. top:0px;
  8757. width:0px;
  8758. height:0px;
  8759. }
  8760. #u1141_div {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:200px;
  8766. height:1187px;
  8767. background:inherit;
  8768. background-color:rgba(255, 255, 255, 1);
  8769. border:none;
  8770. border-radius:0px;
  8771. -moz-box-shadow:none;
  8772. -webkit-box-shadow:none;
  8773. box-shadow:none;
  8774. }
  8775. #u1141 {
  8776. border-width:0px;
  8777. position:absolute;
  8778. left:120px;
  8779. top:50px;
  8780. width:200px;
  8781. height:1187px;
  8782. display:flex;
  8783. }
  8784. #u1141 .text {
  8785. position:absolute;
  8786. align-self:center;
  8787. padding:2px 2px 2px 2px;
  8788. box-sizing:border-box;
  8789. width:100%;
  8790. }
  8791. #u1141_text {
  8792. border-width:0px;
  8793. word-wrap:break-word;
  8794. text-transform:none;
  8795. visibility:hidden;
  8796. }
  8797. #u1142_div {
  8798. border-width:0px;
  8799. position:absolute;
  8800. left:0px;
  8801. top:0px;
  8802. width:200px;
  8803. height:60px;
  8804. background:inherit;
  8805. background-color:rgba(224, 231, 247, 1);
  8806. border:none;
  8807. border-radius:0px;
  8808. -moz-box-shadow:none;
  8809. -webkit-box-shadow:none;
  8810. box-shadow:none;
  8811. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8812. font-weight:500;
  8813. font-style:normal;
  8814. font-size:18px;
  8815. }
  8816. #u1142 {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:120px;
  8820. top:50px;
  8821. width:200px;
  8822. height:60px;
  8823. display:flex;
  8824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8825. font-weight:500;
  8826. font-style:normal;
  8827. font-size:18px;
  8828. }
  8829. #u1142 .text {
  8830. position:absolute;
  8831. align-self:center;
  8832. padding:0px 0px 0px 20px;
  8833. box-sizing:border-box;
  8834. width:100%;
  8835. }
  8836. #u1142_text {
  8837. border-width:0px;
  8838. word-wrap:break-word;
  8839. text-transform:none;
  8840. }
  8841. #u1143_div {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:0px;
  8845. top:0px;
  8846. width:97px;
  8847. height:22px;
  8848. background:inherit;
  8849. background-color:rgba(255, 255, 255, 0);
  8850. border:none;
  8851. border-radius:0px;
  8852. -moz-box-shadow:none;
  8853. -webkit-box-shadow:none;
  8854. box-shadow:none;
  8855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8856. font-weight:400;
  8857. font-style:normal;
  8858. font-size:16px;
  8859. }
  8860. #u1143 {
  8861. border-width:0px;
  8862. position:absolute;
  8863. left:147px;
  8864. top:167px;
  8865. width:97px;
  8866. height:22px;
  8867. display:flex;
  8868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8869. font-weight:400;
  8870. font-style:normal;
  8871. font-size:16px;
  8872. }
  8873. #u1143 .text {
  8874. position:absolute;
  8875. align-self:flex-start;
  8876. padding:0px 0px 0px 0px;
  8877. box-sizing:border-box;
  8878. width:100%;
  8879. }
  8880. #u1143_text {
  8881. border-width:0px;
  8882. word-wrap:break-word;
  8883. text-transform:none;
  8884. }
  8885. #u1144_img {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:0px;
  8889. top:0px;
  8890. width:201px;
  8891. height:2px;
  8892. }
  8893. #u1144 {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:120px;
  8897. top:255px;
  8898. width:200px;
  8899. height:1px;
  8900. display:flex;
  8901. }
  8902. #u1144 .text {
  8903. position:absolute;
  8904. align-self:center;
  8905. padding:2px 2px 2px 2px;
  8906. box-sizing:border-box;
  8907. width:100%;
  8908. }
  8909. #u1144_text {
  8910. border-width:0px;
  8911. word-wrap:break-word;
  8912. text-transform:none;
  8913. visibility:hidden;
  8914. }
  8915. #u1145_div {
  8916. border-width:0px;
  8917. position:absolute;
  8918. left:0px;
  8919. top:0px;
  8920. width:65px;
  8921. height:22px;
  8922. background:inherit;
  8923. background-color:rgba(255, 255, 255, 0);
  8924. border:none;
  8925. border-radius:0px;
  8926. -moz-box-shadow:none;
  8927. -webkit-box-shadow:none;
  8928. box-shadow:none;
  8929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8930. font-weight:400;
  8931. font-style:normal;
  8932. font-size:16px;
  8933. }
  8934. #u1145 {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:147px;
  8938. top:208px;
  8939. width:65px;
  8940. height:22px;
  8941. display:flex;
  8942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8943. font-weight:400;
  8944. font-style:normal;
  8945. font-size:16px;
  8946. }
  8947. #u1145 .text {
  8948. position:absolute;
  8949. align-self:flex-start;
  8950. padding:0px 0px 0px 0px;
  8951. box-sizing:border-box;
  8952. width:100%;
  8953. }
  8954. #u1145_text {
  8955. border-width:0px;
  8956. white-space:nowrap;
  8957. text-transform:none;
  8958. }
  8959. #u1146_img {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:0px;
  8963. top:0px;
  8964. width:201px;
  8965. height:2px;
  8966. }
  8967. #u1146 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:120px;
  8971. top:583px;
  8972. width:200px;
  8973. height:1px;
  8974. display:flex;
  8975. }
  8976. #u1146 .text {
  8977. position:absolute;
  8978. align-self:center;
  8979. padding:2px 2px 2px 2px;
  8980. box-sizing:border-box;
  8981. width:100%;
  8982. }
  8983. #u1146_text {
  8984. border-width:0px;
  8985. word-wrap:break-word;
  8986. text-transform:none;
  8987. visibility:hidden;
  8988. }
  8989. #u1147_div {
  8990. border-width:0px;
  8991. position:absolute;
  8992. left:0px;
  8993. top:0px;
  8994. width:65px;
  8995. height:22px;
  8996. background:inherit;
  8997. background-color:rgba(255, 255, 255, 0);
  8998. border:none;
  8999. border-radius:0px;
  9000. -moz-box-shadow:none;
  9001. -webkit-box-shadow:none;
  9002. box-shadow:none;
  9003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9004. font-weight:400;
  9005. font-style:normal;
  9006. font-size:16px;
  9007. }
  9008. #u1147 {
  9009. border-width:0px;
  9010. position:absolute;
  9011. left:147px;
  9012. top:640px;
  9013. width:65px;
  9014. height:22px;
  9015. display:flex;
  9016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9017. font-weight:400;
  9018. font-style:normal;
  9019. font-size:16px;
  9020. }
  9021. #u1147 .text {
  9022. position:absolute;
  9023. align-self:flex-start;
  9024. padding:0px 0px 0px 0px;
  9025. box-sizing:border-box;
  9026. width:100%;
  9027. }
  9028. #u1147_text {
  9029. border-width:0px;
  9030. white-space:nowrap;
  9031. text-transform:none;
  9032. }
  9033. #u1148_div {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:0px;
  9037. top:0px;
  9038. width:49px;
  9039. height:17px;
  9040. background:inherit;
  9041. background-color:rgba(255, 255, 255, 0);
  9042. border:none;
  9043. border-radius:0px;
  9044. -moz-box-shadow:none;
  9045. -webkit-box-shadow:none;
  9046. box-shadow:none;
  9047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9048. font-weight:400;
  9049. font-style:normal;
  9050. font-size:12px;
  9051. color:#AAAAAA;
  9052. }
  9053. #u1148 {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:147px;
  9057. top:603px;
  9058. width:49px;
  9059. height:17px;
  9060. display:flex;
  9061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9062. font-weight:400;
  9063. font-style:normal;
  9064. font-size:12px;
  9065. color:#AAAAAA;
  9066. }
  9067. #u1148 .text {
  9068. position:absolute;
  9069. align-self:flex-start;
  9070. padding:0px 0px 0px 0px;
  9071. box-sizing:border-box;
  9072. width:100%;
  9073. }
  9074. #u1148_text {
  9075. border-width:0px;
  9076. white-space:nowrap;
  9077. text-transform:none;
  9078. }
  9079. #u1149_div {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:0px;
  9083. top:0px;
  9084. width:65px;
  9085. height:22px;
  9086. background:inherit;
  9087. background-color:rgba(255, 255, 255, 0);
  9088. border:none;
  9089. border-radius:0px;
  9090. -moz-box-shadow:none;
  9091. -webkit-box-shadow:none;
  9092. box-shadow:none;
  9093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9094. font-weight:400;
  9095. font-style:normal;
  9096. font-size:16px;
  9097. }
  9098. #u1149 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:147px;
  9102. top:312px;
  9103. width:65px;
  9104. height:22px;
  9105. display:flex;
  9106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9107. font-weight:400;
  9108. font-style:normal;
  9109. font-size:16px;
  9110. }
  9111. #u1149 .text {
  9112. position:absolute;
  9113. align-self:flex-start;
  9114. padding:0px 0px 0px 0px;
  9115. box-sizing:border-box;
  9116. width:100%;
  9117. }
  9118. #u1149_text {
  9119. border-width:0px;
  9120. white-space:nowrap;
  9121. text-transform:none;
  9122. }
  9123. #u1150_div {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:0px;
  9127. top:0px;
  9128. width:49px;
  9129. height:17px;
  9130. background:inherit;
  9131. background-color:rgba(255, 255, 255, 0);
  9132. border:none;
  9133. border-radius:0px;
  9134. -moz-box-shadow:none;
  9135. -webkit-box-shadow:none;
  9136. box-shadow:none;
  9137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9138. font-weight:400;
  9139. font-style:normal;
  9140. font-size:12px;
  9141. color:#AAAAAA;
  9142. }
  9143. #u1150 {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:147px;
  9147. top:275px;
  9148. width:49px;
  9149. height:17px;
  9150. display:flex;
  9151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9152. font-weight:400;
  9153. font-style:normal;
  9154. font-size:12px;
  9155. color:#AAAAAA;
  9156. }
  9157. #u1150 .text {
  9158. position:absolute;
  9159. align-self:flex-start;
  9160. padding:0px 0px 0px 0px;
  9161. box-sizing:border-box;
  9162. width:100%;
  9163. }
  9164. #u1150_text {
  9165. border-width:0px;
  9166. white-space:nowrap;
  9167. text-transform:none;
  9168. }
  9169. #u1151_div {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:0px;
  9173. top:0px;
  9174. width:65px;
  9175. height:22px;
  9176. background:inherit;
  9177. background-color:rgba(255, 255, 255, 0);
  9178. border:none;
  9179. border-radius:0px;
  9180. -moz-box-shadow:none;
  9181. -webkit-box-shadow:none;
  9182. box-shadow:none;
  9183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9184. font-weight:400;
  9185. font-style:normal;
  9186. font-size:16px;
  9187. }
  9188. #u1151 {
  9189. border-width:0px;
  9190. position:absolute;
  9191. left:147px;
  9192. top:724px;
  9193. width:65px;
  9194. height:22px;
  9195. display:flex;
  9196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9197. font-weight:400;
  9198. font-style:normal;
  9199. font-size:16px;
  9200. }
  9201. #u1151 .text {
  9202. position:absolute;
  9203. align-self:flex-start;
  9204. padding:0px 0px 0px 0px;
  9205. box-sizing:border-box;
  9206. width:100%;
  9207. }
  9208. #u1151_text {
  9209. border-width:0px;
  9210. white-space:nowrap;
  9211. text-transform:none;
  9212. }
  9213. #u1152_div {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:0px;
  9218. width:49px;
  9219. height:17px;
  9220. background:inherit;
  9221. background-color:rgba(255, 255, 255, 0);
  9222. border:none;
  9223. border-radius:0px;
  9224. -moz-box-shadow:none;
  9225. -webkit-box-shadow:none;
  9226. box-shadow:none;
  9227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9228. font-weight:400;
  9229. font-style:normal;
  9230. font-size:12px;
  9231. color:#AAAAAA;
  9232. }
  9233. #u1152 {
  9234. border-width:0px;
  9235. position:absolute;
  9236. left:147px;
  9237. top:130px;
  9238. width:49px;
  9239. height:17px;
  9240. display:flex;
  9241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9242. font-weight:400;
  9243. font-style:normal;
  9244. font-size:12px;
  9245. color:#AAAAAA;
  9246. }
  9247. #u1152 .text {
  9248. position:absolute;
  9249. align-self:flex-start;
  9250. padding:0px 0px 0px 0px;
  9251. box-sizing:border-box;
  9252. width:100%;
  9253. }
  9254. #u1152_text {
  9255. border-width:0px;
  9256. white-space:nowrap;
  9257. text-transform:none;
  9258. }
  9259. #u1153_img {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:0px;
  9263. top:0px;
  9264. width:201px;
  9265. height:2px;
  9266. }
  9267. #u1153 {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:120px;
  9271. top:857px;
  9272. width:200px;
  9273. height:1px;
  9274. display:flex;
  9275. }
  9276. #u1153 .text {
  9277. position:absolute;
  9278. align-self:center;
  9279. padding:2px 2px 2px 2px;
  9280. box-sizing:border-box;
  9281. width:100%;
  9282. }
  9283. #u1153_text {
  9284. border-width:0px;
  9285. word-wrap:break-word;
  9286. text-transform:none;
  9287. visibility:hidden;
  9288. }
  9289. #u1154_div {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:0px;
  9293. top:0px;
  9294. width:65px;
  9295. height:22px;
  9296. background:inherit;
  9297. background-color:rgba(255, 255, 255, 0);
  9298. border:none;
  9299. border-radius:0px;
  9300. -moz-box-shadow:none;
  9301. -webkit-box-shadow:none;
  9302. box-shadow:none;
  9303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9304. font-weight:400;
  9305. font-style:normal;
  9306. font-size:16px;
  9307. }
  9308. #u1154 {
  9309. border-width:0px;
  9310. position:absolute;
  9311. left:147px;
  9312. top:914px;
  9313. width:65px;
  9314. height:22px;
  9315. display:flex;
  9316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9317. font-weight:400;
  9318. font-style:normal;
  9319. font-size:16px;
  9320. }
  9321. #u1154 .text {
  9322. position:absolute;
  9323. align-self:flex-start;
  9324. padding:0px 0px 0px 0px;
  9325. box-sizing:border-box;
  9326. width:100%;
  9327. }
  9328. #u1154_text {
  9329. border-width:0px;
  9330. white-space:nowrap;
  9331. text-transform:none;
  9332. }
  9333. #u1155_div {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:0px;
  9337. top:0px;
  9338. width:49px;
  9339. height:17px;
  9340. background:inherit;
  9341. background-color:rgba(255, 255, 255, 0);
  9342. border:none;
  9343. border-radius:0px;
  9344. -moz-box-shadow:none;
  9345. -webkit-box-shadow:none;
  9346. box-shadow:none;
  9347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9348. font-weight:400;
  9349. font-style:normal;
  9350. font-size:12px;
  9351. color:#AAAAAA;
  9352. }
  9353. #u1155 {
  9354. border-width:0px;
  9355. position:absolute;
  9356. left:147px;
  9357. top:877px;
  9358. width:49px;
  9359. height:17px;
  9360. display:flex;
  9361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9362. font-weight:400;
  9363. font-style:normal;
  9364. font-size:12px;
  9365. color:#AAAAAA;
  9366. }
  9367. #u1155 .text {
  9368. position:absolute;
  9369. align-self:flex-start;
  9370. padding:0px 0px 0px 0px;
  9371. box-sizing:border-box;
  9372. width:100%;
  9373. }
  9374. #u1155_text {
  9375. border-width:0px;
  9376. white-space:nowrap;
  9377. text-transform:none;
  9378. }
  9379. #u1156_div {
  9380. border-width:0px;
  9381. position:absolute;
  9382. left:0px;
  9383. top:0px;
  9384. width:65px;
  9385. height:22px;
  9386. background:inherit;
  9387. background-color:rgba(255, 255, 255, 0);
  9388. border:none;
  9389. border-radius:0px;
  9390. -moz-box-shadow:none;
  9391. -webkit-box-shadow:none;
  9392. box-shadow:none;
  9393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9394. font-weight:400;
  9395. font-style:normal;
  9396. font-size:16px;
  9397. }
  9398. #u1156 {
  9399. border-width:0px;
  9400. position:absolute;
  9401. left:147px;
  9402. top:806px;
  9403. width:65px;
  9404. height:22px;
  9405. display:flex;
  9406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9407. font-weight:400;
  9408. font-style:normal;
  9409. font-size:16px;
  9410. }
  9411. #u1156 .text {
  9412. position:absolute;
  9413. align-self:flex-start;
  9414. padding:0px 0px 0px 0px;
  9415. box-sizing:border-box;
  9416. width:100%;
  9417. }
  9418. #u1156_text {
  9419. border-width:0px;
  9420. white-space:nowrap;
  9421. text-transform:none;
  9422. }
  9423. #u1157_img {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:0px;
  9427. top:0px;
  9428. width:201px;
  9429. height:2px;
  9430. }
  9431. #u1157 {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:120px;
  9435. top:435px;
  9436. width:200px;
  9437. height:1px;
  9438. display:flex;
  9439. }
  9440. #u1157 .text {
  9441. position:absolute;
  9442. align-self:center;
  9443. padding:2px 2px 2px 2px;
  9444. box-sizing:border-box;
  9445. width:100%;
  9446. }
  9447. #u1157_text {
  9448. border-width:0px;
  9449. word-wrap:break-word;
  9450. text-transform:none;
  9451. visibility:hidden;
  9452. }
  9453. #u1158_div {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:65px;
  9459. height:22px;
  9460. background:inherit;
  9461. background-color:rgba(255, 255, 255, 0);
  9462. border:none;
  9463. border-radius:0px;
  9464. -moz-box-shadow:none;
  9465. -webkit-box-shadow:none;
  9466. box-shadow:none;
  9467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9468. font-weight:400;
  9469. font-style:normal;
  9470. font-size:16px;
  9471. }
  9472. #u1158 {
  9473. border-width:0px;
  9474. position:absolute;
  9475. left:147px;
  9476. top:492px;
  9477. width:65px;
  9478. height:22px;
  9479. display:flex;
  9480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9481. font-weight:400;
  9482. font-style:normal;
  9483. font-size:16px;
  9484. }
  9485. #u1158 .text {
  9486. position:absolute;
  9487. align-self:flex-start;
  9488. padding:0px 0px 0px 0px;
  9489. box-sizing:border-box;
  9490. width:100%;
  9491. }
  9492. #u1158_text {
  9493. border-width:0px;
  9494. white-space:nowrap;
  9495. text-transform:none;
  9496. }
  9497. #u1159_div {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:0px;
  9501. top:0px;
  9502. width:49px;
  9503. height:17px;
  9504. background:inherit;
  9505. background-color:rgba(255, 255, 255, 0);
  9506. border:none;
  9507. border-radius:0px;
  9508. -moz-box-shadow:none;
  9509. -webkit-box-shadow:none;
  9510. box-shadow:none;
  9511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9512. font-weight:400;
  9513. font-style:normal;
  9514. font-size:12px;
  9515. color:#AAAAAA;
  9516. }
  9517. #u1159 {
  9518. border-width:0px;
  9519. position:absolute;
  9520. left:147px;
  9521. top:455px;
  9522. width:49px;
  9523. height:17px;
  9524. display:flex;
  9525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9526. font-weight:400;
  9527. font-style:normal;
  9528. font-size:12px;
  9529. color:#AAAAAA;
  9530. }
  9531. #u1159 .text {
  9532. position:absolute;
  9533. align-self:flex-start;
  9534. padding:0px 0px 0px 0px;
  9535. box-sizing:border-box;
  9536. width:100%;
  9537. }
  9538. #u1159_text {
  9539. border-width:0px;
  9540. white-space:nowrap;
  9541. text-transform:none;
  9542. }
  9543. #u1160_div {
  9544. border-width:0px;
  9545. position:absolute;
  9546. left:0px;
  9547. top:0px;
  9548. width:97px;
  9549. height:22px;
  9550. background:inherit;
  9551. background-color:rgba(255, 255, 255, 0);
  9552. border:none;
  9553. border-radius:0px;
  9554. -moz-box-shadow:none;
  9555. -webkit-box-shadow:none;
  9556. box-shadow:none;
  9557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9558. font-weight:400;
  9559. font-style:normal;
  9560. font-size:16px;
  9561. }
  9562. #u1160 {
  9563. border-width:0px;
  9564. position:absolute;
  9565. left:147px;
  9566. top:533px;
  9567. width:97px;
  9568. height:22px;
  9569. display:flex;
  9570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9571. font-weight:400;
  9572. font-style:normal;
  9573. font-size:16px;
  9574. }
  9575. #u1160 .text {
  9576. position:absolute;
  9577. align-self:flex-start;
  9578. padding:0px 0px 0px 0px;
  9579. box-sizing:border-box;
  9580. width:100%;
  9581. }
  9582. #u1160_text {
  9583. border-width:0px;
  9584. word-wrap:break-word;
  9585. text-transform:none;
  9586. }
  9587. #u1161_div {
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:0px;
  9591. top:0px;
  9592. width:65px;
  9593. height:22px;
  9594. background:inherit;
  9595. background-color:rgba(255, 255, 255, 0);
  9596. border:none;
  9597. border-radius:0px;
  9598. -moz-box-shadow:none;
  9599. -webkit-box-shadow:none;
  9600. box-shadow:none;
  9601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9602. font-weight:400;
  9603. font-style:normal;
  9604. font-size:16px;
  9605. }
  9606. #u1161 {
  9607. border-width:0px;
  9608. position:absolute;
  9609. left:147px;
  9610. top:354px;
  9611. width:65px;
  9612. height:22px;
  9613. display:flex;
  9614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9615. font-weight:400;
  9616. font-style:normal;
  9617. font-size:16px;
  9618. }
  9619. #u1161 .text {
  9620. position:absolute;
  9621. align-self:flex-start;
  9622. padding:0px 0px 0px 0px;
  9623. box-sizing:border-box;
  9624. width:100%;
  9625. }
  9626. #u1161_text {
  9627. border-width:0px;
  9628. white-space:nowrap;
  9629. text-transform:none;
  9630. }
  9631. #u1162_div {
  9632. border-width:0px;
  9633. position:absolute;
  9634. left:0px;
  9635. top:0px;
  9636. width:65px;
  9637. height:22px;
  9638. background:inherit;
  9639. background-color:rgba(255, 255, 255, 0);
  9640. border:none;
  9641. border-radius:0px;
  9642. -moz-box-shadow:none;
  9643. -webkit-box-shadow:none;
  9644. box-shadow:none;
  9645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9646. font-weight:400;
  9647. font-style:normal;
  9648. font-size:16px;
  9649. }
  9650. #u1162 {
  9651. border-width:0px;
  9652. position:absolute;
  9653. left:147px;
  9654. top:682px;
  9655. width:65px;
  9656. height:22px;
  9657. display:flex;
  9658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9659. font-weight:400;
  9660. font-style:normal;
  9661. font-size:16px;
  9662. }
  9663. #u1162 .text {
  9664. position:absolute;
  9665. align-self:flex-start;
  9666. padding:0px 0px 0px 0px;
  9667. box-sizing:border-box;
  9668. width:100%;
  9669. }
  9670. #u1162_text {
  9671. border-width:0px;
  9672. white-space:nowrap;
  9673. text-transform:none;
  9674. }
  9675. #u1163_div {
  9676. border-width:0px;
  9677. position:absolute;
  9678. left:0px;
  9679. top:0px;
  9680. width:65px;
  9681. height:22px;
  9682. background:inherit;
  9683. background-color:rgba(255, 255, 255, 0);
  9684. border:none;
  9685. border-radius:0px;
  9686. -moz-box-shadow:none;
  9687. -webkit-box-shadow:none;
  9688. box-shadow:none;
  9689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9690. font-weight:400;
  9691. font-style:normal;
  9692. font-size:16px;
  9693. }
  9694. #u1163 {
  9695. border-width:0px;
  9696. position:absolute;
  9697. left:147px;
  9698. top:765px;
  9699. width:65px;
  9700. height:22px;
  9701. display:flex;
  9702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9703. font-weight:400;
  9704. font-style:normal;
  9705. font-size:16px;
  9706. }
  9707. #u1163 .text {
  9708. position:absolute;
  9709. align-self:flex-start;
  9710. padding:0px 0px 0px 0px;
  9711. box-sizing:border-box;
  9712. width:100%;
  9713. }
  9714. #u1163_text {
  9715. border-width:0px;
  9716. white-space:nowrap;
  9717. text-transform:none;
  9718. }
  9719. #u1164_div {
  9720. border-width:0px;
  9721. position:absolute;
  9722. left:0px;
  9723. top:0px;
  9724. width:65px;
  9725. height:22px;
  9726. background:inherit;
  9727. background-color:rgba(255, 255, 255, 0);
  9728. border:none;
  9729. border-radius:0px;
  9730. -moz-box-shadow:none;
  9731. -webkit-box-shadow:none;
  9732. box-shadow:none;
  9733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9734. font-weight:400;
  9735. font-style:normal;
  9736. font-size:16px;
  9737. }
  9738. #u1164 {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:147px;
  9742. top:396px;
  9743. width:65px;
  9744. height:22px;
  9745. display:flex;
  9746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9747. font-weight:400;
  9748. font-style:normal;
  9749. font-size:16px;
  9750. }
  9751. #u1164 .text {
  9752. position:absolute;
  9753. align-self:flex-start;
  9754. padding:0px 0px 0px 0px;
  9755. box-sizing:border-box;
  9756. width:100%;
  9757. }
  9758. #u1164_text {
  9759. border-width:0px;
  9760. white-space:nowrap;
  9761. text-transform:none;
  9762. }