styles.css 189 KB

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