styles.css 117 KB

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