styles.css 121 KB

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