styles.css 218 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2439px;
  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. #u60252_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. #u60252 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u60252 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u60252_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u60253_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. #u60253 {
  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. #u60253 .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. #u60253_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u60254_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. #u60254 {
  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. #u60254 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u60254_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u60255 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u60256_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u60256 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u60256 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u60256_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u60257_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. #u60257 {
  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. #u60257 .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. #u60257_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u60258_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. #u60258 {
  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. #u60258 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u60258_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u60259 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u60260_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u60260_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u60260_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u60260 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u60260 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u60260_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u60260.disabled {
  356. }
  357. .u60260_input_option {
  358. font-size:14px;
  359. }
  360. #u60261_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u60261 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u60261 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u60261_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u60262_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u60262 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u60262 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u60262_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u60263_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u60263 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u60263 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u60263_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u60264 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u60265_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u60265 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u60265 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u60265_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u60266_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u60266 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u60266 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u60266_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u60267 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u60268_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u60268 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u60268 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u60268_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u60269_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u60269 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u60269 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u60269_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u60270 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u60271_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u60271 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u60271 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u60271_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u60272_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u60272 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u60272 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u60272_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u60273 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u60274_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u60274 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u60274 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u60274_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u60275_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u60275 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u60275 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u60275_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u60276 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u60277_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u60277 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u60277 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u60277_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u60278_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u60278 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u60278 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u60278_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u60279 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u60280_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u60280 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u60280 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u60280_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u60281_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u60281 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u60281 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u60281_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u60282 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u60283_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u60283 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u60283 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u60283_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u60284_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u60284 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u60284 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u60284_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u60285 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u60286_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u60286 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u60286 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u60286_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u60287_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u60287 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u60287 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u60287_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u60288 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u60289_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u60289 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u60289 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u60289_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u60290_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u60290 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u60290 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u60290_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u60291 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u60292_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u60292 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u60292 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u60292_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u60293_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u60293 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u60293 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u60293_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u60294_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u60294 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u60294 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u60294_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u60295_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u60295 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u60295 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u60295_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u60296_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u60296 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u60296 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u60296_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u60297_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u60297 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u60297 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u60297_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u60298 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u60299_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u60299 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u60299 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u60299_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u60300_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u60300 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u60300 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u60300_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u60301 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u60302_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u60302 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u60302 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u60302_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u60303_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u60303 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u60303 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u60303_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u60304_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1256px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. color:#FFFFFF;
  1657. text-align:left;
  1658. }
  1659. #u60304 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:330px;
  1663. top:50px;
  1664. width:1256px;
  1665. height:1191px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. text-align:left;
  1673. }
  1674. #u60304 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 50px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u60304_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u60305_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:91px;
  1693. height:50px;
  1694. background:inherit;
  1695. background-color:rgba(255, 255, 255, 0);
  1696. border:none;
  1697. border-left:0px;
  1698. border-top:0px;
  1699. border-right:0px;
  1700. border-radius:0px;
  1701. border-bottom-right-radius:0px;
  1702. border-bottom-left-radius:0px;
  1703. -moz-box-shadow:none;
  1704. -webkit-box-shadow:none;
  1705. box-shadow:none;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. }
  1711. #u60305 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:349px;
  1715. top:50px;
  1716. width:91px;
  1717. height:50px;
  1718. display:flex;
  1719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1720. font-weight:400;
  1721. font-style:normal;
  1722. font-size:18px;
  1723. }
  1724. #u60305 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:0px 0px 0px 0px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u60305_text {
  1732. border-width:0px;
  1733. white-space:nowrap;
  1734. text-transform:none;
  1735. }
  1736. #u60306_div {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:73px;
  1742. height:50px;
  1743. background:inherit;
  1744. background-color:rgba(255, 255, 255, 0);
  1745. border:none;
  1746. border-left:0px;
  1747. border-top:0px;
  1748. border-right:0px;
  1749. border-radius:0px;
  1750. border-bottom-right-radius:0px;
  1751. border-bottom-left-radius:0px;
  1752. -moz-box-shadow:none;
  1753. -webkit-box-shadow:none;
  1754. box-shadow:none;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:18px;
  1759. color:#1890FF;
  1760. }
  1761. #u60306 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:591px;
  1765. top:50px;
  1766. width:73px;
  1767. height:50px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:18px;
  1773. color:#1890FF;
  1774. }
  1775. #u60306 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:0px 0px 0px 0px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u60306_text {
  1783. border-width:0px;
  1784. white-space:nowrap;
  1785. text-transform:none;
  1786. }
  1787. #u60307 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:0px;
  1793. height:0px;
  1794. }
  1795. #u60308_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:59px;
  1801. height:30px;
  1802. background:inherit;
  1803. background-color:rgba(24, 144, 255, 1);
  1804. box-sizing:border-box;
  1805. border-width:1px;
  1806. border-style:solid;
  1807. border-color:rgba(0, 153, 255, 1);
  1808. border-radius:4px;
  1809. -moz-box-shadow:none;
  1810. -webkit-box-shadow:none;
  1811. box-shadow:none;
  1812. font-family:'Microsoft YaHei', sans-serif;
  1813. font-weight:400;
  1814. font-style:normal;
  1815. font-size:14px;
  1816. color:#FFFFFF;
  1817. }
  1818. #u60308 {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:652px;
  1822. top:152px;
  1823. width:59px;
  1824. height:30px;
  1825. display:flex;
  1826. font-family:'Microsoft YaHei', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:14px;
  1830. color:#FFFFFF;
  1831. }
  1832. #u60308 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:5px 15px 5px 15px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u60308_text {
  1840. border-width:0px;
  1841. white-space:nowrap;
  1842. text-transform:none;
  1843. }
  1844. #u60309_div {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:55px;
  1850. height:30px;
  1851. background:inherit;
  1852. background-color:rgba(255, 255, 255, 1);
  1853. box-sizing:border-box;
  1854. border-width:1px;
  1855. border-style:solid;
  1856. border-color:rgba(170, 170, 170, 1);
  1857. border-radius:4px;
  1858. -moz-box-shadow:none;
  1859. -webkit-box-shadow:none;
  1860. box-shadow:none;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#555555;
  1866. }
  1867. #u60309 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:721px;
  1871. top:152px;
  1872. width:55px;
  1873. height:30px;
  1874. display:flex;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:12px;
  1879. color:#555555;
  1880. }
  1881. #u60309 .text {
  1882. position:absolute;
  1883. align-self:center;
  1884. padding:5px 15px 5px 15px;
  1885. box-sizing:border-box;
  1886. width:100%;
  1887. }
  1888. #u60309_text {
  1889. border-width:0px;
  1890. white-space:nowrap;
  1891. text-transform:none;
  1892. }
  1893. #u60310 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:351px;
  1897. top:241px;
  1898. width:1214px;
  1899. height:328px;
  1900. }
  1901. #u60311_img {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:84px;
  1907. height:44px;
  1908. }
  1909. #u60311 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:84px;
  1915. height:44px;
  1916. display:flex;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#FFFFFF;
  1922. }
  1923. #u60311 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u60311_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u60312_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:93px;
  1941. height:44px;
  1942. }
  1943. #u60312 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:84px;
  1947. top:0px;
  1948. width:93px;
  1949. height:44px;
  1950. display:flex;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:12px;
  1955. color:#FFFFFF;
  1956. }
  1957. #u60312 .text {
  1958. position:absolute;
  1959. align-self:center;
  1960. padding:2px 2px 2px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u60312_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. }
  1969. #u60313_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:94px;
  1975. height:44px;
  1976. }
  1977. #u60313 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:177px;
  1981. top:0px;
  1982. width:94px;
  1983. height:44px;
  1984. display:flex;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:12px;
  1989. color:#FFFFFF;
  1990. }
  1991. #u60313 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u60313_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u60314_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:84px;
  2009. height:44px;
  2010. }
  2011. #u60314 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:271px;
  2015. top:0px;
  2016. width:84px;
  2017. height:44px;
  2018. display:flex;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:12px;
  2023. color:#FFFFFF;
  2024. }
  2025. #u60314 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 0px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u60314_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u60315_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:98px;
  2043. height:44px;
  2044. }
  2045. #u60315 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:355px;
  2049. top:0px;
  2050. width:98px;
  2051. height:44px;
  2052. display:flex;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:12px;
  2057. color:#FFFFFF;
  2058. }
  2059. #u60315 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u60315_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. }
  2071. #u60316_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:84px;
  2077. height:44px;
  2078. }
  2079. #u60316 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:453px;
  2083. top:0px;
  2084. width:84px;
  2085. height:44px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. color:#FFFFFF;
  2092. }
  2093. #u60316 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u60316_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u60317_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:98px;
  2111. height:44px;
  2112. }
  2113. #u60317 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:537px;
  2117. top:0px;
  2118. width:98px;
  2119. height:44px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. color:#FFFFFF;
  2126. }
  2127. #u60317 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u60317_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u60318_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:98px;
  2145. height:44px;
  2146. }
  2147. #u60318 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:635px;
  2151. top:0px;
  2152. width:98px;
  2153. height:44px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. color:#FFFFFF;
  2160. }
  2161. #u60318 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:2px 2px 2px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u60318_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u60319_img {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:92px;
  2179. height:44px;
  2180. }
  2181. #u60319 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:733px;
  2185. top:0px;
  2186. width:92px;
  2187. height:44px;
  2188. display:flex;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. color:#FFFFFF;
  2194. }
  2195. #u60319 .text {
  2196. position:absolute;
  2197. align-self:center;
  2198. padding:2px 2px 2px 0px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u60319_text {
  2203. border-width:0px;
  2204. word-wrap:break-word;
  2205. text-transform:none;
  2206. }
  2207. #u60320_img {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:98px;
  2213. height:44px;
  2214. }
  2215. #u60320 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:825px;
  2219. top:0px;
  2220. width:98px;
  2221. height:44px;
  2222. display:flex;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:12px;
  2227. color:#FFFFFF;
  2228. }
  2229. #u60320 .text {
  2230. position:absolute;
  2231. align-self:center;
  2232. padding:2px 2px 2px 0px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u60320_text {
  2237. border-width:0px;
  2238. word-wrap:break-word;
  2239. text-transform:none;
  2240. }
  2241. #u60321_img {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:98px;
  2247. height:44px;
  2248. }
  2249. #u60321 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:923px;
  2253. top:0px;
  2254. width:98px;
  2255. height:44px;
  2256. display:flex;
  2257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:12px;
  2261. color:#FFFFFF;
  2262. }
  2263. #u60321 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:2px 2px 2px 0px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u60321_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. }
  2275. #u60322_img {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:98px;
  2281. height:44px;
  2282. }
  2283. #u60322 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:1021px;
  2287. top:0px;
  2288. width:98px;
  2289. height:44px;
  2290. display:flex;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:12px;
  2295. color:#FFFFFF;
  2296. }
  2297. #u60322 .text {
  2298. position:absolute;
  2299. align-self:center;
  2300. padding:2px 2px 2px 0px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u60322_text {
  2305. border-width:0px;
  2306. word-wrap:break-word;
  2307. text-transform:none;
  2308. }
  2309. #u60323_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:95px;
  2315. height:44px;
  2316. }
  2317. #u60323 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:1119px;
  2321. top:0px;
  2322. width:95px;
  2323. height:44px;
  2324. display:flex;
  2325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:12px;
  2329. color:#FFFFFF;
  2330. }
  2331. #u60323 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 0px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u60323_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. }
  2343. #u60324_img {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:84px;
  2349. height:38px;
  2350. }
  2351. #u60324 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:44px;
  2356. width:84px;
  2357. height:38px;
  2358. display:flex;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:12px;
  2363. color:#333333;
  2364. }
  2365. #u60324 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 0px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u60324_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u60325_img {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:93px;
  2384. height:38px;
  2385. }
  2386. #u60325 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:84px;
  2390. top:44px;
  2391. width:93px;
  2392. height:38px;
  2393. display:flex;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:12px;
  2398. color:#333333;
  2399. }
  2400. #u60325 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u60325_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. visibility:hidden;
  2412. }
  2413. #u60326_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:94px;
  2419. height:38px;
  2420. }
  2421. #u60326 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:177px;
  2425. top:44px;
  2426. width:94px;
  2427. height:38px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. color:#333333;
  2434. }
  2435. #u60326 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u60326_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. visibility:hidden;
  2447. }
  2448. #u60327_img {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:84px;
  2454. height:38px;
  2455. }
  2456. #u60327 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:271px;
  2460. top:44px;
  2461. width:84px;
  2462. height:38px;
  2463. display:flex;
  2464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2465. font-weight:400;
  2466. font-style:normal;
  2467. font-size:12px;
  2468. color:#333333;
  2469. }
  2470. #u60327 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 2px 2px 0px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u60327_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u60328_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:98px;
  2489. height:38px;
  2490. }
  2491. #u60328 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:355px;
  2495. top:44px;
  2496. width:98px;
  2497. height:38px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#333333;
  2504. }
  2505. #u60328 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u60328_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. visibility:hidden;
  2517. }
  2518. #u60329_img {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:84px;
  2524. height:38px;
  2525. }
  2526. #u60329 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:453px;
  2530. top:44px;
  2531. width:84px;
  2532. height:38px;
  2533. display:flex;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:12px;
  2538. color:#333333;
  2539. }
  2540. #u60329 .text {
  2541. position:absolute;
  2542. align-self:center;
  2543. padding:2px 2px 2px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u60329_text {
  2548. border-width:0px;
  2549. word-wrap:break-word;
  2550. text-transform:none;
  2551. visibility:hidden;
  2552. }
  2553. #u60330_img {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:98px;
  2559. height:38px;
  2560. }
  2561. #u60330 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:537px;
  2565. top:44px;
  2566. width:98px;
  2567. height:38px;
  2568. display:flex;
  2569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:12px;
  2573. color:#333333;
  2574. }
  2575. #u60330 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 0px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u60330_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. visibility:hidden;
  2587. }
  2588. #u60331_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:98px;
  2594. height:38px;
  2595. }
  2596. #u60331 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:635px;
  2600. top:44px;
  2601. width:98px;
  2602. height:38px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. color:#333333;
  2609. }
  2610. #u60331 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 2px 2px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u60331_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u60332_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:92px;
  2629. height:38px;
  2630. }
  2631. #u60332 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:733px;
  2635. top:44px;
  2636. width:92px;
  2637. height:38px;
  2638. display:flex;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:12px;
  2643. color:#333333;
  2644. }
  2645. #u60332 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u60332_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u60333_img {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:98px;
  2664. height:38px;
  2665. }
  2666. #u60333 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:825px;
  2670. top:44px;
  2671. width:98px;
  2672. height:38px;
  2673. display:flex;
  2674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:12px;
  2678. color:#333333;
  2679. }
  2680. #u60333 .text {
  2681. position:absolute;
  2682. align-self:center;
  2683. padding:2px 2px 2px 0px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u60333_text {
  2688. border-width:0px;
  2689. word-wrap:break-word;
  2690. text-transform:none;
  2691. visibility:hidden;
  2692. }
  2693. #u60334_img {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:98px;
  2699. height:38px;
  2700. }
  2701. #u60334 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:923px;
  2705. top:44px;
  2706. width:98px;
  2707. height:38px;
  2708. display:flex;
  2709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2710. font-weight:400;
  2711. font-style:normal;
  2712. font-size:12px;
  2713. color:#333333;
  2714. }
  2715. #u60334 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 0px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u60334_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u60335_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:98px;
  2734. height:38px;
  2735. }
  2736. #u60335 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:1021px;
  2740. top:44px;
  2741. width:98px;
  2742. height:38px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:12px;
  2748. color:#333333;
  2749. }
  2750. #u60335 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u60335_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u60336_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:95px;
  2769. height:38px;
  2770. }
  2771. #u60336 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:1119px;
  2775. top:44px;
  2776. width:95px;
  2777. height:38px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. color:#0089FE;
  2784. }
  2785. #u60336 .text {
  2786. position:absolute;
  2787. align-self:center;
  2788. padding:2px 2px 2px 0px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u60336_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. }
  2797. #u60337_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:84px;
  2803. height:38px;
  2804. }
  2805. #u60337 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:82px;
  2810. width:84px;
  2811. height:38px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:12px;
  2817. color:#333333;
  2818. }
  2819. #u60337 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 0px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u60337_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. visibility:hidden;
  2831. }
  2832. #u60338_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:93px;
  2838. height:38px;
  2839. }
  2840. #u60338 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:84px;
  2844. top:82px;
  2845. width:93px;
  2846. height:38px;
  2847. display:flex;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:12px;
  2852. color:#333333;
  2853. }
  2854. #u60338 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 0px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u60338_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u60339_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:94px;
  2873. height:38px;
  2874. }
  2875. #u60339 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:177px;
  2879. top:82px;
  2880. width:94px;
  2881. height:38px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. color:#333333;
  2888. }
  2889. #u60339 .text {
  2890. position:absolute;
  2891. align-self:center;
  2892. padding:2px 2px 2px 0px;
  2893. box-sizing:border-box;
  2894. width:100%;
  2895. }
  2896. #u60339_text {
  2897. border-width:0px;
  2898. word-wrap:break-word;
  2899. text-transform:none;
  2900. visibility:hidden;
  2901. }
  2902. #u60340_img {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:84px;
  2908. height:38px;
  2909. }
  2910. #u60340 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:271px;
  2914. top:82px;
  2915. width:84px;
  2916. height:38px;
  2917. display:flex;
  2918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:12px;
  2922. color:#333333;
  2923. }
  2924. #u60340 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 0px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u60340_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u60341_img {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:98px;
  2943. height:38px;
  2944. }
  2945. #u60341 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:355px;
  2949. top:82px;
  2950. width:98px;
  2951. height:38px;
  2952. display:flex;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:12px;
  2957. color:#333333;
  2958. }
  2959. #u60341 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 2px 2px 0px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u60341_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. visibility:hidden;
  2971. }
  2972. #u60342_img {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:84px;
  2978. height:38px;
  2979. }
  2980. #u60342 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:453px;
  2984. top:82px;
  2985. width:84px;
  2986. height:38px;
  2987. display:flex;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:12px;
  2992. color:#333333;
  2993. }
  2994. #u60342 .text {
  2995. position:absolute;
  2996. align-self:center;
  2997. padding:2px 2px 2px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u60342_text {
  3002. border-width:0px;
  3003. word-wrap:break-word;
  3004. text-transform:none;
  3005. visibility:hidden;
  3006. }
  3007. #u60343_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:98px;
  3013. height:38px;
  3014. }
  3015. #u60343 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:537px;
  3019. top:82px;
  3020. width:98px;
  3021. height:38px;
  3022. display:flex;
  3023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. font-size:12px;
  3027. color:#333333;
  3028. }
  3029. #u60343 .text {
  3030. position:absolute;
  3031. align-self:center;
  3032. padding:2px 2px 2px 0px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u60343_text {
  3037. border-width:0px;
  3038. word-wrap:break-word;
  3039. text-transform:none;
  3040. visibility:hidden;
  3041. }
  3042. #u60344_img {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:98px;
  3048. height:38px;
  3049. }
  3050. #u60344 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:635px;
  3054. top:82px;
  3055. width:98px;
  3056. height:38px;
  3057. display:flex;
  3058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:12px;
  3062. color:#333333;
  3063. }
  3064. #u60344 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 0px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u60344_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u60345_img {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:92px;
  3083. height:38px;
  3084. }
  3085. #u60345 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:733px;
  3089. top:82px;
  3090. width:92px;
  3091. height:38px;
  3092. display:flex;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:12px;
  3097. color:#333333;
  3098. }
  3099. #u60345 .text {
  3100. position:absolute;
  3101. align-self:center;
  3102. padding:2px 2px 2px 0px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u60345_text {
  3107. border-width:0px;
  3108. word-wrap:break-word;
  3109. text-transform:none;
  3110. visibility:hidden;
  3111. }
  3112. #u60346_img {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:98px;
  3118. height:38px;
  3119. }
  3120. #u60346 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:825px;
  3124. top:82px;
  3125. width:98px;
  3126. height:38px;
  3127. display:flex;
  3128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3129. font-weight:400;
  3130. font-style:normal;
  3131. font-size:12px;
  3132. color:#333333;
  3133. }
  3134. #u60346 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:2px 2px 2px 0px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u60346_text {
  3142. border-width:0px;
  3143. word-wrap:break-word;
  3144. text-transform:none;
  3145. visibility:hidden;
  3146. }
  3147. #u60347_img {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:98px;
  3153. height:38px;
  3154. }
  3155. #u60347 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:923px;
  3159. top:82px;
  3160. width:98px;
  3161. height:38px;
  3162. display:flex;
  3163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. font-size:12px;
  3167. color:#333333;
  3168. }
  3169. #u60347 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 0px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u60347_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u60348_img {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:98px;
  3188. height:38px;
  3189. }
  3190. #u60348 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:1021px;
  3194. top:82px;
  3195. width:98px;
  3196. height:38px;
  3197. display:flex;
  3198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3199. font-weight:400;
  3200. font-style:normal;
  3201. font-size:12px;
  3202. color:#333333;
  3203. }
  3204. #u60348 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:2px 2px 2px 0px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u60348_text {
  3212. border-width:0px;
  3213. word-wrap:break-word;
  3214. text-transform:none;
  3215. visibility:hidden;
  3216. }
  3217. #u60349_img {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:95px;
  3223. height:38px;
  3224. }
  3225. #u60349 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:1119px;
  3229. top:82px;
  3230. width:95px;
  3231. height:38px;
  3232. display:flex;
  3233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:12px;
  3237. color:#0089FE;
  3238. }
  3239. #u60349 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:2px 2px 2px 0px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u60349_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. }
  3251. #u60350_img {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:84px;
  3257. height:38px;
  3258. }
  3259. #u60350 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:120px;
  3264. width:84px;
  3265. height:38px;
  3266. display:flex;
  3267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:12px;
  3271. color:#333333;
  3272. }
  3273. #u60350 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 2px 2px 0px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u60350_text {
  3281. border-width:0px;
  3282. word-wrap:break-word;
  3283. text-transform:none;
  3284. visibility:hidden;
  3285. }
  3286. #u60351_img {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:0px;
  3290. top:0px;
  3291. width:93px;
  3292. height:38px;
  3293. }
  3294. #u60351 {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:84px;
  3298. top:120px;
  3299. width:93px;
  3300. height:38px;
  3301. display:flex;
  3302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3303. font-weight:400;
  3304. font-style:normal;
  3305. font-size:12px;
  3306. color:#333333;
  3307. }
  3308. #u60351 .text {
  3309. position:absolute;
  3310. align-self:center;
  3311. padding:2px 2px 2px 0px;
  3312. box-sizing:border-box;
  3313. width:100%;
  3314. }
  3315. #u60351_text {
  3316. border-width:0px;
  3317. word-wrap:break-word;
  3318. text-transform:none;
  3319. visibility:hidden;
  3320. }
  3321. #u60352_img {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:94px;
  3327. height:38px;
  3328. }
  3329. #u60352 {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:177px;
  3333. top:120px;
  3334. width:94px;
  3335. height:38px;
  3336. display:flex;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:12px;
  3341. color:#333333;
  3342. }
  3343. #u60352 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 0px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u60352_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. visibility:hidden;
  3355. }
  3356. #u60353_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:84px;
  3362. height:38px;
  3363. }
  3364. #u60353 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:271px;
  3368. top:120px;
  3369. width:84px;
  3370. height:38px;
  3371. display:flex;
  3372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3373. font-weight:400;
  3374. font-style:normal;
  3375. font-size:12px;
  3376. color:#333333;
  3377. }
  3378. #u60353 .text {
  3379. position:absolute;
  3380. align-self:center;
  3381. padding:2px 2px 2px 0px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u60353_text {
  3386. border-width:0px;
  3387. word-wrap:break-word;
  3388. text-transform:none;
  3389. visibility:hidden;
  3390. }
  3391. #u60354_img {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:98px;
  3397. height:38px;
  3398. }
  3399. #u60354 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:355px;
  3403. top:120px;
  3404. width:98px;
  3405. height:38px;
  3406. display:flex;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:12px;
  3411. color:#333333;
  3412. }
  3413. #u60354 .text {
  3414. position:absolute;
  3415. align-self:center;
  3416. padding:2px 2px 2px 0px;
  3417. box-sizing:border-box;
  3418. width:100%;
  3419. }
  3420. #u60354_text {
  3421. border-width:0px;
  3422. word-wrap:break-word;
  3423. text-transform:none;
  3424. visibility:hidden;
  3425. }
  3426. #u60355_img {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:84px;
  3432. height:38px;
  3433. }
  3434. #u60355 {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:453px;
  3438. top:120px;
  3439. width:84px;
  3440. height:38px;
  3441. display:flex;
  3442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3443. font-weight:400;
  3444. font-style:normal;
  3445. font-size:12px;
  3446. color:#333333;
  3447. }
  3448. #u60355 .text {
  3449. position:absolute;
  3450. align-self:center;
  3451. padding:2px 2px 2px 0px;
  3452. box-sizing:border-box;
  3453. width:100%;
  3454. }
  3455. #u60355_text {
  3456. border-width:0px;
  3457. word-wrap:break-word;
  3458. text-transform:none;
  3459. visibility:hidden;
  3460. }
  3461. #u60356_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:98px;
  3467. height:38px;
  3468. }
  3469. #u60356 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:537px;
  3473. top:120px;
  3474. width:98px;
  3475. height:38px;
  3476. display:flex;
  3477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:12px;
  3481. color:#333333;
  3482. }
  3483. #u60356 .text {
  3484. position:absolute;
  3485. align-self:center;
  3486. padding:2px 2px 2px 0px;
  3487. box-sizing:border-box;
  3488. width:100%;
  3489. }
  3490. #u60356_text {
  3491. border-width:0px;
  3492. word-wrap:break-word;
  3493. text-transform:none;
  3494. visibility:hidden;
  3495. }
  3496. #u60357_img {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:0px;
  3501. width:98px;
  3502. height:38px;
  3503. }
  3504. #u60357 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:635px;
  3508. top:120px;
  3509. width:98px;
  3510. height:38px;
  3511. display:flex;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:12px;
  3516. color:#333333;
  3517. }
  3518. #u60357 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:2px 2px 2px 0px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u60357_text {
  3526. border-width:0px;
  3527. word-wrap:break-word;
  3528. text-transform:none;
  3529. visibility:hidden;
  3530. }
  3531. #u60358_img {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:92px;
  3537. height:38px;
  3538. }
  3539. #u60358 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:733px;
  3543. top:120px;
  3544. width:92px;
  3545. height:38px;
  3546. display:flex;
  3547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3548. font-weight:400;
  3549. font-style:normal;
  3550. font-size:12px;
  3551. color:#333333;
  3552. }
  3553. #u60358 .text {
  3554. position:absolute;
  3555. align-self:center;
  3556. padding:2px 2px 2px 0px;
  3557. box-sizing:border-box;
  3558. width:100%;
  3559. }
  3560. #u60358_text {
  3561. border-width:0px;
  3562. word-wrap:break-word;
  3563. text-transform:none;
  3564. visibility:hidden;
  3565. }
  3566. #u60359_img {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:98px;
  3572. height:38px;
  3573. }
  3574. #u60359 {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:825px;
  3578. top:120px;
  3579. width:98px;
  3580. height:38px;
  3581. display:flex;
  3582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3583. font-weight:400;
  3584. font-style:normal;
  3585. font-size:12px;
  3586. color:#333333;
  3587. }
  3588. #u60359 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 2px 2px 0px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u60359_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u60360_img {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:98px;
  3607. height:38px;
  3608. }
  3609. #u60360 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:923px;
  3613. top:120px;
  3614. width:98px;
  3615. height:38px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:12px;
  3621. color:#333333;
  3622. }
  3623. #u60360 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 2px 2px 0px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u60360_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. visibility:hidden;
  3635. }
  3636. #u60361_img {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:98px;
  3642. height:38px;
  3643. }
  3644. #u60361 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:1021px;
  3648. top:120px;
  3649. width:98px;
  3650. height:38px;
  3651. display:flex;
  3652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. font-size:12px;
  3656. color:#333333;
  3657. }
  3658. #u60361 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 0px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u60361_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. visibility:hidden;
  3670. }
  3671. #u60362_img {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:95px;
  3677. height:38px;
  3678. }
  3679. #u60362 {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:1119px;
  3683. top:120px;
  3684. width:95px;
  3685. height:38px;
  3686. display:flex;
  3687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3688. font-weight:400;
  3689. font-style:normal;
  3690. font-size:12px;
  3691. color:#0089FE;
  3692. }
  3693. #u60362 .text {
  3694. position:absolute;
  3695. align-self:center;
  3696. padding:2px 2px 2px 0px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u60362_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. visibility:hidden;
  3705. }
  3706. #u60363_img {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:84px;
  3712. height:38px;
  3713. }
  3714. #u60363 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:0px;
  3718. top:158px;
  3719. width:84px;
  3720. height:38px;
  3721. display:flex;
  3722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3723. font-weight:400;
  3724. font-style:normal;
  3725. font-size:12px;
  3726. color:#333333;
  3727. }
  3728. #u60363 .text {
  3729. position:absolute;
  3730. align-self:center;
  3731. padding:2px 2px 2px 0px;
  3732. box-sizing:border-box;
  3733. width:100%;
  3734. }
  3735. #u60363_text {
  3736. border-width:0px;
  3737. word-wrap:break-word;
  3738. text-transform:none;
  3739. visibility:hidden;
  3740. }
  3741. #u60364_img {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:93px;
  3747. height:38px;
  3748. }
  3749. #u60364 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:84px;
  3753. top:158px;
  3754. width:93px;
  3755. height:38px;
  3756. display:flex;
  3757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3758. font-weight:400;
  3759. font-style:normal;
  3760. font-size:12px;
  3761. color:#333333;
  3762. }
  3763. #u60364 .text {
  3764. position:absolute;
  3765. align-self:center;
  3766. padding:2px 2px 2px 0px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u60364_text {
  3771. border-width:0px;
  3772. word-wrap:break-word;
  3773. text-transform:none;
  3774. visibility:hidden;
  3775. }
  3776. #u60365_img {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:94px;
  3782. height:38px;
  3783. }
  3784. #u60365 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:177px;
  3788. top:158px;
  3789. width:94px;
  3790. height:38px;
  3791. display:flex;
  3792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3793. font-weight:400;
  3794. font-style:normal;
  3795. font-size:12px;
  3796. color:#333333;
  3797. }
  3798. #u60365 .text {
  3799. position:absolute;
  3800. align-self:center;
  3801. padding:2px 2px 2px 0px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u60365_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. visibility:hidden;
  3810. }
  3811. #u60366_img {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:84px;
  3817. height:38px;
  3818. }
  3819. #u60366 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:271px;
  3823. top:158px;
  3824. width:84px;
  3825. height:38px;
  3826. display:flex;
  3827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3828. font-weight:400;
  3829. font-style:normal;
  3830. font-size:12px;
  3831. color:#333333;
  3832. }
  3833. #u60366 .text {
  3834. position:absolute;
  3835. align-self:center;
  3836. padding:2px 2px 2px 0px;
  3837. box-sizing:border-box;
  3838. width:100%;
  3839. }
  3840. #u60366_text {
  3841. border-width:0px;
  3842. word-wrap:break-word;
  3843. text-transform:none;
  3844. visibility:hidden;
  3845. }
  3846. #u60367_img {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:0px;
  3850. top:0px;
  3851. width:98px;
  3852. height:38px;
  3853. }
  3854. #u60367 {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:355px;
  3858. top:158px;
  3859. width:98px;
  3860. height:38px;
  3861. display:flex;
  3862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3863. font-weight:400;
  3864. font-style:normal;
  3865. font-size:12px;
  3866. color:#333333;
  3867. }
  3868. #u60367 .text {
  3869. position:absolute;
  3870. align-self:center;
  3871. padding:2px 2px 2px 0px;
  3872. box-sizing:border-box;
  3873. width:100%;
  3874. }
  3875. #u60367_text {
  3876. border-width:0px;
  3877. word-wrap:break-word;
  3878. text-transform:none;
  3879. visibility:hidden;
  3880. }
  3881. #u60368_img {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:0px;
  3885. top:0px;
  3886. width:84px;
  3887. height:38px;
  3888. }
  3889. #u60368 {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:453px;
  3893. top:158px;
  3894. width:84px;
  3895. height:38px;
  3896. display:flex;
  3897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3898. font-weight:400;
  3899. font-style:normal;
  3900. font-size:12px;
  3901. color:#333333;
  3902. }
  3903. #u60368 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 0px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u60368_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u60369_img {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:98px;
  3922. height:38px;
  3923. }
  3924. #u60369 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:537px;
  3928. top:158px;
  3929. width:98px;
  3930. height:38px;
  3931. display:flex;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:12px;
  3936. color:#333333;
  3937. }
  3938. #u60369 .text {
  3939. position:absolute;
  3940. align-self:center;
  3941. padding:2px 2px 2px 0px;
  3942. box-sizing:border-box;
  3943. width:100%;
  3944. }
  3945. #u60369_text {
  3946. border-width:0px;
  3947. word-wrap:break-word;
  3948. text-transform:none;
  3949. visibility:hidden;
  3950. }
  3951. #u60370_img {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:98px;
  3957. height:38px;
  3958. }
  3959. #u60370 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:635px;
  3963. top:158px;
  3964. width:98px;
  3965. height:38px;
  3966. display:flex;
  3967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. font-size:12px;
  3971. color:#333333;
  3972. }
  3973. #u60370 .text {
  3974. position:absolute;
  3975. align-self:center;
  3976. padding:2px 2px 2px 0px;
  3977. box-sizing:border-box;
  3978. width:100%;
  3979. }
  3980. #u60370_text {
  3981. border-width:0px;
  3982. word-wrap:break-word;
  3983. text-transform:none;
  3984. visibility:hidden;
  3985. }
  3986. #u60371_img {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:92px;
  3992. height:38px;
  3993. }
  3994. #u60371 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:733px;
  3998. top:158px;
  3999. width:92px;
  4000. height:38px;
  4001. display:flex;
  4002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4003. font-weight:400;
  4004. font-style:normal;
  4005. font-size:12px;
  4006. color:#333333;
  4007. }
  4008. #u60371 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 0px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u60371_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u60372_img {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:98px;
  4027. height:38px;
  4028. }
  4029. #u60372 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:825px;
  4033. top:158px;
  4034. width:98px;
  4035. height:38px;
  4036. display:flex;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:12px;
  4041. color:#333333;
  4042. }
  4043. #u60372 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u60372_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u60373_img {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:98px;
  4062. height:38px;
  4063. }
  4064. #u60373 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:923px;
  4068. top:158px;
  4069. width:98px;
  4070. height:38px;
  4071. display:flex;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:12px;
  4076. color:#333333;
  4077. }
  4078. #u60373 .text {
  4079. position:absolute;
  4080. align-self:center;
  4081. padding:2px 2px 2px 0px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u60373_text {
  4086. border-width:0px;
  4087. word-wrap:break-word;
  4088. text-transform:none;
  4089. visibility:hidden;
  4090. }
  4091. #u60374_img {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:98px;
  4097. height:38px;
  4098. }
  4099. #u60374 {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:1021px;
  4103. top:158px;
  4104. width:98px;
  4105. height:38px;
  4106. display:flex;
  4107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:12px;
  4111. color:#333333;
  4112. }
  4113. #u60374 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 0px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u60374_text {
  4121. border-width:0px;
  4122. word-wrap:break-word;
  4123. text-transform:none;
  4124. visibility:hidden;
  4125. }
  4126. #u60375_img {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:95px;
  4132. height:38px;
  4133. }
  4134. #u60375 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:1119px;
  4138. top:158px;
  4139. width:95px;
  4140. height:38px;
  4141. display:flex;
  4142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:12px;
  4146. color:#AAAAAA;
  4147. }
  4148. #u60375 .text {
  4149. position:absolute;
  4150. align-self:center;
  4151. padding:2px 2px 2px 0px;
  4152. box-sizing:border-box;
  4153. width:100%;
  4154. }
  4155. #u60375_text {
  4156. border-width:0px;
  4157. word-wrap:break-word;
  4158. text-transform:none;
  4159. visibility:hidden;
  4160. }
  4161. #u60376_img {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:84px;
  4167. height:35px;
  4168. }
  4169. #u60376 {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:196px;
  4174. width:84px;
  4175. height:35px;
  4176. display:flex;
  4177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:12px;
  4181. color:#333333;
  4182. }
  4183. #u60376 .text {
  4184. position:absolute;
  4185. align-self:center;
  4186. padding:2px 2px 2px 0px;
  4187. box-sizing:border-box;
  4188. width:100%;
  4189. }
  4190. #u60376_text {
  4191. border-width:0px;
  4192. word-wrap:break-word;
  4193. text-transform:none;
  4194. visibility:hidden;
  4195. }
  4196. #u60377_img {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:93px;
  4202. height:35px;
  4203. }
  4204. #u60377 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:84px;
  4208. top:196px;
  4209. width:93px;
  4210. height:35px;
  4211. display:flex;
  4212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:12px;
  4216. color:#333333;
  4217. }
  4218. #u60377 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 2px 2px 0px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u60377_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. visibility:hidden;
  4230. }
  4231. #u60378_img {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:94px;
  4237. height:35px;
  4238. }
  4239. #u60378 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:177px;
  4243. top:196px;
  4244. width:94px;
  4245. height:35px;
  4246. display:flex;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:12px;
  4251. color:#333333;
  4252. }
  4253. #u60378 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:2px 2px 2px 0px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u60378_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. visibility:hidden;
  4265. }
  4266. #u60379_img {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:84px;
  4272. height:35px;
  4273. }
  4274. #u60379 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:271px;
  4278. top:196px;
  4279. width:84px;
  4280. height:35px;
  4281. display:flex;
  4282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4283. font-weight:400;
  4284. font-style:normal;
  4285. font-size:12px;
  4286. color:#333333;
  4287. }
  4288. #u60379 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:2px 2px 2px 0px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u60379_text {
  4296. border-width:0px;
  4297. word-wrap:break-word;
  4298. text-transform:none;
  4299. visibility:hidden;
  4300. }
  4301. #u60380_img {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:98px;
  4307. height:35px;
  4308. }
  4309. #u60380 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:355px;
  4313. top:196px;
  4314. width:98px;
  4315. height:35px;
  4316. display:flex;
  4317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4318. font-weight:400;
  4319. font-style:normal;
  4320. font-size:12px;
  4321. color:#333333;
  4322. }
  4323. #u60380 .text {
  4324. position:absolute;
  4325. align-self:center;
  4326. padding:2px 2px 2px 0px;
  4327. box-sizing:border-box;
  4328. width:100%;
  4329. }
  4330. #u60380_text {
  4331. border-width:0px;
  4332. word-wrap:break-word;
  4333. text-transform:none;
  4334. visibility:hidden;
  4335. }
  4336. #u60381_img {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:0px;
  4340. top:0px;
  4341. width:84px;
  4342. height:35px;
  4343. }
  4344. #u60381 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:453px;
  4348. top:196px;
  4349. width:84px;
  4350. height:35px;
  4351. display:flex;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:12px;
  4356. color:#333333;
  4357. }
  4358. #u60381 .text {
  4359. position:absolute;
  4360. align-self:center;
  4361. padding:2px 2px 2px 0px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u60381_text {
  4366. border-width:0px;
  4367. word-wrap:break-word;
  4368. text-transform:none;
  4369. visibility:hidden;
  4370. }
  4371. #u60382_img {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:98px;
  4377. height:35px;
  4378. }
  4379. #u60382 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:537px;
  4383. top:196px;
  4384. width:98px;
  4385. height:35px;
  4386. display:flex;
  4387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4388. font-weight:400;
  4389. font-style:normal;
  4390. font-size:12px;
  4391. color:#333333;
  4392. }
  4393. #u60382 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:2px 2px 2px 0px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u60382_text {
  4401. border-width:0px;
  4402. word-wrap:break-word;
  4403. text-transform:none;
  4404. visibility:hidden;
  4405. }
  4406. #u60383_img {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:98px;
  4412. height:35px;
  4413. }
  4414. #u60383 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:635px;
  4418. top:196px;
  4419. width:98px;
  4420. height:35px;
  4421. display:flex;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:12px;
  4426. color:#333333;
  4427. }
  4428. #u60383 .text {
  4429. position:absolute;
  4430. align-self:center;
  4431. padding:2px 2px 2px 0px;
  4432. box-sizing:border-box;
  4433. width:100%;
  4434. }
  4435. #u60383_text {
  4436. border-width:0px;
  4437. word-wrap:break-word;
  4438. text-transform:none;
  4439. visibility:hidden;
  4440. }
  4441. #u60384_img {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:92px;
  4447. height:35px;
  4448. }
  4449. #u60384 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:733px;
  4453. top:196px;
  4454. width:92px;
  4455. height:35px;
  4456. display:flex;
  4457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4458. font-weight:400;
  4459. font-style:normal;
  4460. font-size:12px;
  4461. color:#333333;
  4462. }
  4463. #u60384 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:2px 2px 2px 0px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u60384_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. visibility:hidden;
  4475. }
  4476. #u60385_img {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:98px;
  4482. height:35px;
  4483. }
  4484. #u60385 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:825px;
  4488. top:196px;
  4489. width:98px;
  4490. height:35px;
  4491. display:flex;
  4492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4493. font-weight:400;
  4494. font-style:normal;
  4495. font-size:12px;
  4496. color:#333333;
  4497. }
  4498. #u60385 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 0px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u60385_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. visibility:hidden;
  4510. }
  4511. #u60386_img {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:98px;
  4517. height:35px;
  4518. }
  4519. #u60386 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:923px;
  4523. top:196px;
  4524. width:98px;
  4525. height:35px;
  4526. display:flex;
  4527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4528. font-weight:400;
  4529. font-style:normal;
  4530. font-size:12px;
  4531. color:#333333;
  4532. }
  4533. #u60386 .text {
  4534. position:absolute;
  4535. align-self:center;
  4536. padding:2px 2px 2px 0px;
  4537. box-sizing:border-box;
  4538. width:100%;
  4539. }
  4540. #u60386_text {
  4541. border-width:0px;
  4542. word-wrap:break-word;
  4543. text-transform:none;
  4544. visibility:hidden;
  4545. }
  4546. #u60387_img {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:98px;
  4552. height:35px;
  4553. }
  4554. #u60387 {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:1021px;
  4558. top:196px;
  4559. width:98px;
  4560. height:35px;
  4561. display:flex;
  4562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4563. font-weight:400;
  4564. font-style:normal;
  4565. font-size:12px;
  4566. color:#333333;
  4567. }
  4568. #u60387 .text {
  4569. position:absolute;
  4570. align-self:center;
  4571. padding:2px 2px 2px 0px;
  4572. box-sizing:border-box;
  4573. width:100%;
  4574. }
  4575. #u60387_text {
  4576. border-width:0px;
  4577. word-wrap:break-word;
  4578. text-transform:none;
  4579. visibility:hidden;
  4580. }
  4581. #u60388_img {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:95px;
  4587. height:35px;
  4588. }
  4589. #u60388 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:1119px;
  4593. top:196px;
  4594. width:95px;
  4595. height:35px;
  4596. display:flex;
  4597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4598. font-weight:400;
  4599. font-style:normal;
  4600. font-size:12px;
  4601. color:#AAAAAA;
  4602. }
  4603. #u60388 .text {
  4604. position:absolute;
  4605. align-self:center;
  4606. padding:2px 2px 2px 0px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u60388_text {
  4611. border-width:0px;
  4612. word-wrap:break-word;
  4613. text-transform:none;
  4614. visibility:hidden;
  4615. }
  4616. #u60389_img {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:84px;
  4622. height:35px;
  4623. }
  4624. #u60389 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:231px;
  4629. width:84px;
  4630. height:35px;
  4631. display:flex;
  4632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. font-size:12px;
  4636. color:#333333;
  4637. }
  4638. #u60389 .text {
  4639. position:absolute;
  4640. align-self:center;
  4641. padding:2px 2px 2px 0px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u60389_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. visibility:hidden;
  4650. }
  4651. #u60390_img {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:93px;
  4657. height:35px;
  4658. }
  4659. #u60390 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:84px;
  4663. top:231px;
  4664. width:93px;
  4665. height:35px;
  4666. display:flex;
  4667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:12px;
  4671. color:#333333;
  4672. }
  4673. #u60390 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:2px 2px 2px 0px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u60390_text {
  4681. border-width:0px;
  4682. word-wrap:break-word;
  4683. text-transform:none;
  4684. visibility:hidden;
  4685. }
  4686. #u60391_img {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:94px;
  4692. height:35px;
  4693. }
  4694. #u60391 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:177px;
  4698. top:231px;
  4699. width:94px;
  4700. height:35px;
  4701. display:flex;
  4702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4703. font-weight:400;
  4704. font-style:normal;
  4705. font-size:12px;
  4706. color:#333333;
  4707. }
  4708. #u60391 .text {
  4709. position:absolute;
  4710. align-self:center;
  4711. padding:2px 2px 2px 0px;
  4712. box-sizing:border-box;
  4713. width:100%;
  4714. }
  4715. #u60391_text {
  4716. border-width:0px;
  4717. word-wrap:break-word;
  4718. text-transform:none;
  4719. visibility:hidden;
  4720. }
  4721. #u60392_img {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:84px;
  4727. height:35px;
  4728. }
  4729. #u60392 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:271px;
  4733. top:231px;
  4734. width:84px;
  4735. height:35px;
  4736. display:flex;
  4737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:12px;
  4741. color:#333333;
  4742. }
  4743. #u60392 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 0px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u60392_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u60393_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:98px;
  4762. height:35px;
  4763. }
  4764. #u60393 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:355px;
  4768. top:231px;
  4769. width:98px;
  4770. height:35px;
  4771. display:flex;
  4772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:12px;
  4776. color:#333333;
  4777. }
  4778. #u60393 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:2px 2px 2px 0px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u60393_text {
  4786. border-width:0px;
  4787. word-wrap:break-word;
  4788. text-transform:none;
  4789. visibility:hidden;
  4790. }
  4791. #u60394_img {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:84px;
  4797. height:35px;
  4798. }
  4799. #u60394 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:453px;
  4803. top:231px;
  4804. width:84px;
  4805. height:35px;
  4806. display:flex;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:12px;
  4811. color:#333333;
  4812. }
  4813. #u60394 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:2px 2px 2px 0px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u60394_text {
  4821. border-width:0px;
  4822. word-wrap:break-word;
  4823. text-transform:none;
  4824. visibility:hidden;
  4825. }
  4826. #u60395_img {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:98px;
  4832. height:35px;
  4833. }
  4834. #u60395 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:537px;
  4838. top:231px;
  4839. width:98px;
  4840. height:35px;
  4841. display:flex;
  4842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:12px;
  4846. color:#333333;
  4847. }
  4848. #u60395 .text {
  4849. position:absolute;
  4850. align-self:center;
  4851. padding:2px 2px 2px 0px;
  4852. box-sizing:border-box;
  4853. width:100%;
  4854. }
  4855. #u60395_text {
  4856. border-width:0px;
  4857. word-wrap:break-word;
  4858. text-transform:none;
  4859. visibility:hidden;
  4860. }
  4861. #u60396_img {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:98px;
  4867. height:35px;
  4868. }
  4869. #u60396 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:635px;
  4873. top:231px;
  4874. width:98px;
  4875. height:35px;
  4876. display:flex;
  4877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4878. font-weight:400;
  4879. font-style:normal;
  4880. font-size:12px;
  4881. color:#333333;
  4882. }
  4883. #u60396 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 2px 2px 0px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u60396_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. visibility:hidden;
  4895. }
  4896. #u60397_img {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:92px;
  4902. height:35px;
  4903. }
  4904. #u60397 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:733px;
  4908. top:231px;
  4909. width:92px;
  4910. height:35px;
  4911. display:flex;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:12px;
  4916. color:#333333;
  4917. }
  4918. #u60397 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u60397_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u60398_img {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:98px;
  4937. height:35px;
  4938. }
  4939. #u60398 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:825px;
  4943. top:231px;
  4944. width:98px;
  4945. height:35px;
  4946. display:flex;
  4947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:12px;
  4951. color:#333333;
  4952. }
  4953. #u60398 .text {
  4954. position:absolute;
  4955. align-self:center;
  4956. padding:2px 2px 2px 0px;
  4957. box-sizing:border-box;
  4958. width:100%;
  4959. }
  4960. #u60398_text {
  4961. border-width:0px;
  4962. word-wrap:break-word;
  4963. text-transform:none;
  4964. visibility:hidden;
  4965. }
  4966. #u60399_img {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:98px;
  4972. height:35px;
  4973. }
  4974. #u60399 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:923px;
  4978. top:231px;
  4979. width:98px;
  4980. height:35px;
  4981. display:flex;
  4982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:12px;
  4986. color:#333333;
  4987. }
  4988. #u60399 .text {
  4989. position:absolute;
  4990. align-self:center;
  4991. padding:2px 2px 2px 0px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u60399_text {
  4996. border-width:0px;
  4997. word-wrap:break-word;
  4998. text-transform:none;
  4999. visibility:hidden;
  5000. }
  5001. #u60400_img {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:98px;
  5007. height:35px;
  5008. }
  5009. #u60400 {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:1021px;
  5013. top:231px;
  5014. width:98px;
  5015. height:35px;
  5016. display:flex;
  5017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:12px;
  5021. color:#333333;
  5022. }
  5023. #u60400 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 2px 2px 0px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u60400_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u60401_img {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:95px;
  5042. height:35px;
  5043. }
  5044. #u60401 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:1119px;
  5048. top:231px;
  5049. width:95px;
  5050. height:35px;
  5051. display:flex;
  5052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:12px;
  5056. color:#333333;
  5057. }
  5058. #u60401 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:2px 2px 2px 0px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u60401_text {
  5066. border-width:0px;
  5067. word-wrap:break-word;
  5068. text-transform:none;
  5069. visibility:hidden;
  5070. }
  5071. #u60402_img {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:84px;
  5077. height:32px;
  5078. }
  5079. #u60402 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:266px;
  5084. width:84px;
  5085. height:32px;
  5086. display:flex;
  5087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:12px;
  5091. color:#333333;
  5092. }
  5093. #u60402 .text {
  5094. position:absolute;
  5095. align-self:center;
  5096. padding:2px 2px 2px 0px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u60402_text {
  5101. border-width:0px;
  5102. word-wrap:break-word;
  5103. text-transform:none;
  5104. visibility:hidden;
  5105. }
  5106. #u60403_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:93px;
  5112. height:32px;
  5113. }
  5114. #u60403 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:84px;
  5118. top:266px;
  5119. width:93px;
  5120. height:32px;
  5121. display:flex;
  5122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. font-size:12px;
  5126. color:#333333;
  5127. }
  5128. #u60403 .text {
  5129. position:absolute;
  5130. align-self:center;
  5131. padding:2px 2px 2px 0px;
  5132. box-sizing:border-box;
  5133. width:100%;
  5134. }
  5135. #u60403_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u60404_img {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:94px;
  5147. height:32px;
  5148. }
  5149. #u60404 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:177px;
  5153. top:266px;
  5154. width:94px;
  5155. height:32px;
  5156. display:flex;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:12px;
  5161. color:#333333;
  5162. }
  5163. #u60404 .text {
  5164. position:absolute;
  5165. align-self:center;
  5166. padding:2px 2px 2px 0px;
  5167. box-sizing:border-box;
  5168. width:100%;
  5169. }
  5170. #u60404_text {
  5171. border-width:0px;
  5172. word-wrap:break-word;
  5173. text-transform:none;
  5174. visibility:hidden;
  5175. }
  5176. #u60405_img {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:84px;
  5182. height:32px;
  5183. }
  5184. #u60405 {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:271px;
  5188. top:266px;
  5189. width:84px;
  5190. height:32px;
  5191. display:flex;
  5192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5193. font-weight:400;
  5194. font-style:normal;
  5195. font-size:12px;
  5196. color:#333333;
  5197. }
  5198. #u60405 .text {
  5199. position:absolute;
  5200. align-self:center;
  5201. padding:2px 2px 2px 0px;
  5202. box-sizing:border-box;
  5203. width:100%;
  5204. }
  5205. #u60405_text {
  5206. border-width:0px;
  5207. word-wrap:break-word;
  5208. text-transform:none;
  5209. visibility:hidden;
  5210. }
  5211. #u60406_img {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:98px;
  5217. height:32px;
  5218. }
  5219. #u60406 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:355px;
  5223. top:266px;
  5224. width:98px;
  5225. height:32px;
  5226. display:flex;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:12px;
  5231. color:#333333;
  5232. }
  5233. #u60406 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 0px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u60406_text {
  5241. border-width:0px;
  5242. word-wrap:break-word;
  5243. text-transform:none;
  5244. visibility:hidden;
  5245. }
  5246. #u60407_img {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:84px;
  5252. height:32px;
  5253. }
  5254. #u60407 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:453px;
  5258. top:266px;
  5259. width:84px;
  5260. height:32px;
  5261. display:flex;
  5262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5263. font-weight:400;
  5264. font-style:normal;
  5265. font-size:12px;
  5266. color:#333333;
  5267. }
  5268. #u60407 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:2px 2px 2px 0px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u60407_text {
  5276. border-width:0px;
  5277. word-wrap:break-word;
  5278. text-transform:none;
  5279. visibility:hidden;
  5280. }
  5281. #u60408_img {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:98px;
  5287. height:32px;
  5288. }
  5289. #u60408 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:537px;
  5293. top:266px;
  5294. width:98px;
  5295. height:32px;
  5296. display:flex;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:12px;
  5301. color:#333333;
  5302. }
  5303. #u60408 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 0px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u60408_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u60409_img {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:98px;
  5322. height:32px;
  5323. }
  5324. #u60409 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:635px;
  5328. top:266px;
  5329. width:98px;
  5330. height:32px;
  5331. display:flex;
  5332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:12px;
  5336. color:#333333;
  5337. }
  5338. #u60409 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u60409_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. visibility:hidden;
  5350. }
  5351. #u60410_img {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:92px;
  5357. height:32px;
  5358. }
  5359. #u60410 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:733px;
  5363. top:266px;
  5364. width:92px;
  5365. height:32px;
  5366. display:flex;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:12px;
  5371. color:#333333;
  5372. }
  5373. #u60410 .text {
  5374. position:absolute;
  5375. align-self:center;
  5376. padding:2px 2px 2px 0px;
  5377. box-sizing:border-box;
  5378. width:100%;
  5379. }
  5380. #u60410_text {
  5381. border-width:0px;
  5382. word-wrap:break-word;
  5383. text-transform:none;
  5384. visibility:hidden;
  5385. }
  5386. #u60411_img {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:0px;
  5390. top:0px;
  5391. width:98px;
  5392. height:32px;
  5393. }
  5394. #u60411 {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:825px;
  5398. top:266px;
  5399. width:98px;
  5400. height:32px;
  5401. display:flex;
  5402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:12px;
  5406. color:#333333;
  5407. }
  5408. #u60411 .text {
  5409. position:absolute;
  5410. align-self:center;
  5411. padding:2px 2px 2px 0px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u60411_text {
  5416. border-width:0px;
  5417. word-wrap:break-word;
  5418. text-transform:none;
  5419. visibility:hidden;
  5420. }
  5421. #u60412_img {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:98px;
  5427. height:32px;
  5428. }
  5429. #u60412 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:923px;
  5433. top:266px;
  5434. width:98px;
  5435. height:32px;
  5436. display:flex;
  5437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5438. font-weight:400;
  5439. font-style:normal;
  5440. font-size:12px;
  5441. color:#333333;
  5442. }
  5443. #u60412 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:2px 2px 2px 0px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u60412_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. visibility:hidden;
  5455. }
  5456. #u60413_img {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:98px;
  5462. height:32px;
  5463. }
  5464. #u60413 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:1021px;
  5468. top:266px;
  5469. width:98px;
  5470. height:32px;
  5471. display:flex;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:12px;
  5476. color:#333333;
  5477. }
  5478. #u60413 .text {
  5479. position:absolute;
  5480. align-self:center;
  5481. padding:2px 2px 2px 0px;
  5482. box-sizing:border-box;
  5483. width:100%;
  5484. }
  5485. #u60413_text {
  5486. border-width:0px;
  5487. word-wrap:break-word;
  5488. text-transform:none;
  5489. visibility:hidden;
  5490. }
  5491. #u60414_img {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:95px;
  5497. height:32px;
  5498. }
  5499. #u60414 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:1119px;
  5503. top:266px;
  5504. width:95px;
  5505. height:32px;
  5506. display:flex;
  5507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. font-size:12px;
  5511. color:#333333;
  5512. }
  5513. #u60414 .text {
  5514. position:absolute;
  5515. align-self:center;
  5516. padding:2px 2px 2px 0px;
  5517. box-sizing:border-box;
  5518. width:100%;
  5519. }
  5520. #u60414_text {
  5521. border-width:0px;
  5522. word-wrap:break-word;
  5523. text-transform:none;
  5524. visibility:hidden;
  5525. }
  5526. #u60415_img {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:84px;
  5532. height:30px;
  5533. }
  5534. #u60415 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:298px;
  5539. width:84px;
  5540. height:30px;
  5541. display:flex;
  5542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5543. font-weight:400;
  5544. font-style:normal;
  5545. font-size:12px;
  5546. color:#333333;
  5547. }
  5548. #u60415 .text {
  5549. position:absolute;
  5550. align-self:center;
  5551. padding:2px 2px 2px 0px;
  5552. box-sizing:border-box;
  5553. width:100%;
  5554. }
  5555. #u60415_text {
  5556. border-width:0px;
  5557. word-wrap:break-word;
  5558. text-transform:none;
  5559. visibility:hidden;
  5560. }
  5561. #u60416_img {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:93px;
  5567. height:30px;
  5568. }
  5569. #u60416 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:84px;
  5573. top:298px;
  5574. width:93px;
  5575. height:30px;
  5576. display:flex;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:12px;
  5581. color:#333333;
  5582. }
  5583. #u60416 .text {
  5584. position:absolute;
  5585. align-self:center;
  5586. padding:2px 2px 2px 0px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u60416_text {
  5591. border-width:0px;
  5592. word-wrap:break-word;
  5593. text-transform:none;
  5594. visibility:hidden;
  5595. }
  5596. #u60417_img {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:94px;
  5602. height:30px;
  5603. }
  5604. #u60417 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:177px;
  5608. top:298px;
  5609. width:94px;
  5610. height:30px;
  5611. display:flex;
  5612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5613. font-weight:400;
  5614. font-style:normal;
  5615. font-size:12px;
  5616. color:#333333;
  5617. }
  5618. #u60417 .text {
  5619. position:absolute;
  5620. align-self:center;
  5621. padding:2px 2px 2px 0px;
  5622. box-sizing:border-box;
  5623. width:100%;
  5624. }
  5625. #u60417_text {
  5626. border-width:0px;
  5627. word-wrap:break-word;
  5628. text-transform:none;
  5629. visibility:hidden;
  5630. }
  5631. #u60418_img {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:84px;
  5637. height:30px;
  5638. }
  5639. #u60418 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:271px;
  5643. top:298px;
  5644. width:84px;
  5645. height:30px;
  5646. display:flex;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:12px;
  5651. color:#333333;
  5652. }
  5653. #u60418 .text {
  5654. position:absolute;
  5655. align-self:center;
  5656. padding:2px 2px 2px 0px;
  5657. box-sizing:border-box;
  5658. width:100%;
  5659. }
  5660. #u60418_text {
  5661. border-width:0px;
  5662. word-wrap:break-word;
  5663. text-transform:none;
  5664. visibility:hidden;
  5665. }
  5666. #u60419_img {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:0px;
  5670. top:0px;
  5671. width:98px;
  5672. height:30px;
  5673. }
  5674. #u60419 {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:355px;
  5678. top:298px;
  5679. width:98px;
  5680. height:30px;
  5681. display:flex;
  5682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5683. font-weight:400;
  5684. font-style:normal;
  5685. font-size:12px;
  5686. color:#333333;
  5687. }
  5688. #u60419 .text {
  5689. position:absolute;
  5690. align-self:center;
  5691. padding:2px 2px 2px 0px;
  5692. box-sizing:border-box;
  5693. width:100%;
  5694. }
  5695. #u60419_text {
  5696. border-width:0px;
  5697. word-wrap:break-word;
  5698. text-transform:none;
  5699. visibility:hidden;
  5700. }
  5701. #u60420_img {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:84px;
  5707. height:30px;
  5708. }
  5709. #u60420 {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:453px;
  5713. top:298px;
  5714. width:84px;
  5715. height:30px;
  5716. display:flex;
  5717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5718. font-weight:400;
  5719. font-style:normal;
  5720. font-size:12px;
  5721. color:#333333;
  5722. }
  5723. #u60420 .text {
  5724. position:absolute;
  5725. align-self:center;
  5726. padding:2px 2px 2px 0px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u60420_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. visibility:hidden;
  5735. }
  5736. #u60421_img {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:98px;
  5742. height:30px;
  5743. }
  5744. #u60421 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:537px;
  5748. top:298px;
  5749. width:98px;
  5750. height:30px;
  5751. display:flex;
  5752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:12px;
  5756. color:#333333;
  5757. }
  5758. #u60421 .text {
  5759. position:absolute;
  5760. align-self:center;
  5761. padding:2px 2px 2px 0px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u60421_text {
  5766. border-width:0px;
  5767. word-wrap:break-word;
  5768. text-transform:none;
  5769. visibility:hidden;
  5770. }
  5771. #u60422_img {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:98px;
  5777. height:30px;
  5778. }
  5779. #u60422 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:635px;
  5783. top:298px;
  5784. width:98px;
  5785. height:30px;
  5786. display:flex;
  5787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:12px;
  5791. color:#333333;
  5792. }
  5793. #u60422 .text {
  5794. position:absolute;
  5795. align-self:center;
  5796. padding:2px 2px 2px 0px;
  5797. box-sizing:border-box;
  5798. width:100%;
  5799. }
  5800. #u60422_text {
  5801. border-width:0px;
  5802. word-wrap:break-word;
  5803. text-transform:none;
  5804. visibility:hidden;
  5805. }
  5806. #u60423_img {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:92px;
  5812. height:30px;
  5813. }
  5814. #u60423 {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:733px;
  5818. top:298px;
  5819. width:92px;
  5820. height:30px;
  5821. display:flex;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:12px;
  5826. color:#333333;
  5827. }
  5828. #u60423 .text {
  5829. position:absolute;
  5830. align-self:center;
  5831. padding:2px 2px 2px 0px;
  5832. box-sizing:border-box;
  5833. width:100%;
  5834. }
  5835. #u60423_text {
  5836. border-width:0px;
  5837. word-wrap:break-word;
  5838. text-transform:none;
  5839. visibility:hidden;
  5840. }
  5841. #u60424_img {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:98px;
  5847. height:30px;
  5848. }
  5849. #u60424 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:825px;
  5853. top:298px;
  5854. width:98px;
  5855. height:30px;
  5856. display:flex;
  5857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:12px;
  5861. color:#333333;
  5862. }
  5863. #u60424 .text {
  5864. position:absolute;
  5865. align-self:center;
  5866. padding:2px 2px 2px 0px;
  5867. box-sizing:border-box;
  5868. width:100%;
  5869. }
  5870. #u60424_text {
  5871. border-width:0px;
  5872. word-wrap:break-word;
  5873. text-transform:none;
  5874. visibility:hidden;
  5875. }
  5876. #u60425_img {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:98px;
  5882. height:30px;
  5883. }
  5884. #u60425 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:923px;
  5888. top:298px;
  5889. width:98px;
  5890. height:30px;
  5891. display:flex;
  5892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:12px;
  5896. color:#333333;
  5897. }
  5898. #u60425 .text {
  5899. position:absolute;
  5900. align-self:center;
  5901. padding:2px 2px 2px 0px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u60425_text {
  5906. border-width:0px;
  5907. word-wrap:break-word;
  5908. text-transform:none;
  5909. visibility:hidden;
  5910. }
  5911. #u60426_img {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:98px;
  5917. height:30px;
  5918. }
  5919. #u60426 {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:1021px;
  5923. top:298px;
  5924. width:98px;
  5925. height:30px;
  5926. display:flex;
  5927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5928. font-weight:400;
  5929. font-style:normal;
  5930. font-size:12px;
  5931. color:#333333;
  5932. }
  5933. #u60426 .text {
  5934. position:absolute;
  5935. align-self:center;
  5936. padding:2px 2px 2px 0px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u60426_text {
  5941. border-width:0px;
  5942. word-wrap:break-word;
  5943. text-transform:none;
  5944. visibility:hidden;
  5945. }
  5946. #u60427_img {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:95px;
  5952. height:30px;
  5953. }
  5954. #u60427 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:1119px;
  5958. top:298px;
  5959. width:95px;
  5960. height:30px;
  5961. display:flex;
  5962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:12px;
  5966. color:#333333;
  5967. }
  5968. #u60427 .text {
  5969. position:absolute;
  5970. align-self:center;
  5971. padding:2px 2px 2px 0px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u60427_text {
  5976. border-width:0px;
  5977. word-wrap:break-word;
  5978. text-transform:none;
  5979. visibility:hidden;
  5980. }
  5981. #u60428_div {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:59px;
  5987. height:30px;
  5988. background:inherit;
  5989. background-color:rgba(255, 255, 255, 1);
  5990. box-sizing:border-box;
  5991. border-width:1px;
  5992. border-style:solid;
  5993. border-color:rgba(170, 170, 170, 1);
  5994. border-radius:4px;
  5995. -moz-box-shadow:none;
  5996. -webkit-box-shadow:none;
  5997. box-shadow:none;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:14px;
  6002. color:#555555;
  6003. }
  6004. #u60428 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:523px;
  6008. top:198px;
  6009. width:59px;
  6010. height:30px;
  6011. display:flex;
  6012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:14px;
  6016. color:#555555;
  6017. }
  6018. #u60428 .text {
  6019. position:absolute;
  6020. align-self:center;
  6021. padding:5px 15px 5px 15px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u60428_text {
  6026. border-width:0px;
  6027. white-space:nowrap;
  6028. text-transform:none;
  6029. }
  6030. #u60429 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:0px;
  6036. height:0px;
  6037. }
  6038. #u60430_div {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:140px;
  6044. height:30px;
  6045. background:inherit;
  6046. background-color:rgba(255, 255, 255, 1);
  6047. box-sizing:border-box;
  6048. border-width:1px;
  6049. border-style:solid;
  6050. border-color:rgba(215, 215, 215, 1);
  6051. border-radius:4px;
  6052. -moz-box-shadow:none;
  6053. -webkit-box-shadow:none;
  6054. box-shadow:none;
  6055. font-size:11px;
  6056. }
  6057. #u60430 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:952px;
  6061. top:111px;
  6062. width:140px;
  6063. height:30px;
  6064. display:flex;
  6065. font-size:11px;
  6066. }
  6067. #u60430 .text {
  6068. position:absolute;
  6069. align-self:center;
  6070. padding:2px 2px 2px 2px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u60430_text {
  6075. border-width:0px;
  6076. word-wrap:break-word;
  6077. text-transform:none;
  6078. visibility:hidden;
  6079. }
  6080. #u60431_input {
  6081. position:absolute;
  6082. left:0px;
  6083. top:0px;
  6084. width:126px;
  6085. height:23px;
  6086. padding:2px 2px 2px 2px;
  6087. font-family:'ArialMT', 'Arial', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:11px;
  6091. letter-spacing:normal;
  6092. color:#AAAAAA;
  6093. vertical-align:none;
  6094. text-align:left;
  6095. text-transform:none;
  6096. background-color:transparent;
  6097. border-color:transparent;
  6098. }
  6099. #u60431_input.disabled {
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:126px;
  6104. height:23px;
  6105. padding:2px 2px 2px 2px;
  6106. font-family:'ArialMT', 'Arial', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:11px;
  6110. letter-spacing:normal;
  6111. color:#AAAAAA;
  6112. vertical-align:none;
  6113. text-align:left;
  6114. text-transform:none;
  6115. background-color:transparent;
  6116. border-color:transparent;
  6117. }
  6118. #u60431_div {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:126px;
  6124. height:23px;
  6125. background:inherit;
  6126. background-color:rgba(255, 255, 255, 1);
  6127. border:none;
  6128. border-radius:0px;
  6129. -moz-box-shadow:none;
  6130. -webkit-box-shadow:none;
  6131. box-shadow:none;
  6132. font-size:11px;
  6133. color:#AAAAAA;
  6134. }
  6135. #u60431 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:959px;
  6139. top:113px;
  6140. width:126px;
  6141. height:23px;
  6142. display:flex;
  6143. font-size:11px;
  6144. color:#AAAAAA;
  6145. }
  6146. #u60431 .text {
  6147. position:absolute;
  6148. align-self:flex-start;
  6149. padding:2px 2px 2px 2px;
  6150. box-sizing:border-box;
  6151. width:100%;
  6152. }
  6153. #u60431_div.disabled {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:126px;
  6159. height:23px;
  6160. background:inherit;
  6161. background-color:rgba(240, 240, 240, 1);
  6162. border:none;
  6163. border-radius:0px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. font-size:11px;
  6168. color:#AAAAAA;
  6169. }
  6170. #u60431.disabled {
  6171. }
  6172. .u60431_input_option {
  6173. font-size:11px;
  6174. }
  6175. #u60432 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:0px;
  6181. height:0px;
  6182. }
  6183. #u60433_div {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:0px;
  6187. top:0px;
  6188. width:100px;
  6189. height:100px;
  6190. background:inherit;
  6191. background-color:rgba(255, 255, 255, 1);
  6192. box-sizing:border-box;
  6193. border-width:1px;
  6194. border-style:solid;
  6195. border-color:rgba(242, 242, 242, 1);
  6196. border-radius:4px;
  6197. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6198. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6199. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:14px;
  6204. text-align:left;
  6205. }
  6206. #u60433 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:1438px;
  6210. top:346px;
  6211. width:100px;
  6212. height:100px;
  6213. display:flex;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:14px;
  6218. text-align:left;
  6219. }
  6220. #u60433 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:2px 2px 2px 2px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u60433_text {
  6228. border-width:0px;
  6229. word-wrap:break-word;
  6230. text-transform:none;
  6231. visibility:hidden;
  6232. }
  6233. #u60434_div {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:85px;
  6239. height:40px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 1);
  6242. box-sizing:border-box;
  6243. border-width:1px;
  6244. border-style:solid;
  6245. border-color:rgba(215, 215, 215, 1);
  6246. border-left:0px;
  6247. border-top:0px;
  6248. border-right:0px;
  6249. border-radius:0px;
  6250. border-bottom-right-radius:0px;
  6251. border-bottom-left-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. }
  6260. #u60434 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:1446px;
  6264. top:356px;
  6265. width:85px;
  6266. height:40px;
  6267. display:flex;
  6268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. font-size:14px;
  6272. }
  6273. #u60434 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:2px 2px 2px 2px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u60434_text {
  6281. border-width:0px;
  6282. word-wrap:break-word;
  6283. text-transform:none;
  6284. }
  6285. #u60435_div {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:85px;
  6291. height:40px;
  6292. background:inherit;
  6293. background-color:rgba(255, 255, 255, 1);
  6294. border:none;
  6295. border-left:0px;
  6296. border-top:0px;
  6297. border-right:0px;
  6298. border-radius:0px;
  6299. border-bottom-right-radius:0px;
  6300. border-bottom-left-radius:0px;
  6301. -moz-box-shadow:none;
  6302. -webkit-box-shadow:none;
  6303. box-shadow:none;
  6304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:14px;
  6308. }
  6309. #u60435 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:1446px;
  6313. top:396px;
  6314. width:85px;
  6315. height:40px;
  6316. display:flex;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:14px;
  6321. }
  6322. #u60435 .text {
  6323. position:absolute;
  6324. align-self:center;
  6325. padding:2px 2px 2px 2px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u60435_text {
  6330. border-width:0px;
  6331. word-wrap:break-word;
  6332. text-transform:none;
  6333. }
  6334. #u60436 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:0px;
  6340. height:0px;
  6341. }
  6342. #u60437_div {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:140px;
  6348. height:30px;
  6349. background:inherit;
  6350. background-color:rgba(255, 255, 255, 1);
  6351. box-sizing:border-box;
  6352. border-width:1px;
  6353. border-style:solid;
  6354. border-color:rgba(201, 201, 201, 1);
  6355. border-radius:4px;
  6356. -moz-box-shadow:none;
  6357. -webkit-box-shadow:none;
  6358. box-shadow:none;
  6359. font-family:'Microsoft YaHei', sans-serif;
  6360. font-weight:400;
  6361. font-style:normal;
  6362. font-size:14px;
  6363. color:#CCCCCC;
  6364. text-align:left;
  6365. }
  6366. #u60437 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:352px;
  6370. top:151px;
  6371. width:140px;
  6372. height:30px;
  6373. display:flex;
  6374. font-family:'Microsoft YaHei', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. font-size:14px;
  6378. color:#CCCCCC;
  6379. text-align:left;
  6380. }
  6381. #u60437 .text {
  6382. position:absolute;
  6383. align-self:center;
  6384. padding:2px 8px 2px 8px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u60437_text {
  6389. border-width:0px;
  6390. word-wrap:break-word;
  6391. text-transform:none;
  6392. visibility:hidden;
  6393. }
  6394. #u60438_input {
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:127px;
  6399. height:25px;
  6400. padding:2px 2px 2px 2px;
  6401. font-family:'Microsoft YaHei', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:10px;
  6405. letter-spacing:normal;
  6406. color:#000000;
  6407. vertical-align:none;
  6408. text-align:left;
  6409. text-transform:none;
  6410. background-color:transparent;
  6411. border-color:transparent;
  6412. }
  6413. #u60438_input.disabled {
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:127px;
  6418. height:25px;
  6419. padding:2px 2px 2px 2px;
  6420. font-family:'Microsoft YaHei', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:10px;
  6424. letter-spacing:normal;
  6425. color:#000000;
  6426. vertical-align:none;
  6427. text-align:left;
  6428. text-transform:none;
  6429. background-color:transparent;
  6430. border-color:transparent;
  6431. }
  6432. #u60438_div {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:0px;
  6436. top:0px;
  6437. width:127px;
  6438. height:25px;
  6439. background:inherit;
  6440. background-color:rgba(255, 255, 255, 1);
  6441. border:none;
  6442. border-radius:0px;
  6443. -moz-box-shadow:none;
  6444. -webkit-box-shadow:none;
  6445. box-shadow:none;
  6446. font-family:'Microsoft YaHei', sans-serif;
  6447. font-weight:400;
  6448. font-style:normal;
  6449. font-size:10px;
  6450. }
  6451. #u60438 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:360px;
  6455. top:152px;
  6456. width:127px;
  6457. height:25px;
  6458. display:flex;
  6459. font-family:'Microsoft YaHei', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:10px;
  6463. }
  6464. #u60438 .text {
  6465. position:absolute;
  6466. align-self:center;
  6467. padding:2px 2px 2px 2px;
  6468. box-sizing:border-box;
  6469. width:100%;
  6470. }
  6471. #u60438_div.disabled {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:127px;
  6477. height:25px;
  6478. background:inherit;
  6479. background-color:rgba(240, 240, 240, 1);
  6480. border:none;
  6481. border-radius:0px;
  6482. -moz-box-shadow:none;
  6483. -webkit-box-shadow:none;
  6484. box-shadow:none;
  6485. font-family:'Microsoft YaHei', sans-serif;
  6486. font-weight:400;
  6487. font-style:normal;
  6488. font-size:10px;
  6489. }
  6490. #u60438.disabled {
  6491. }
  6492. #u60439 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:0px;
  6498. height:0px;
  6499. }
  6500. #u60440_div {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:140px;
  6506. height:30px;
  6507. background:inherit;
  6508. background-color:rgba(255, 255, 255, 1);
  6509. box-sizing:border-box;
  6510. border-width:1px;
  6511. border-style:solid;
  6512. border-color:rgba(201, 201, 201, 1);
  6513. border-radius:4px;
  6514. -moz-box-shadow:none;
  6515. -webkit-box-shadow:none;
  6516. box-shadow:none;
  6517. font-family:'Microsoft YaHei', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. font-size:14px;
  6521. color:#CCCCCC;
  6522. text-align:left;
  6523. }
  6524. #u60440 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:502px;
  6528. top:151px;
  6529. width:140px;
  6530. height:30px;
  6531. display:flex;
  6532. font-family:'Microsoft YaHei', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:14px;
  6536. color:#CCCCCC;
  6537. text-align:left;
  6538. }
  6539. #u60440 .text {
  6540. position:absolute;
  6541. align-self:center;
  6542. padding:2px 8px 2px 8px;
  6543. box-sizing:border-box;
  6544. width:100%;
  6545. }
  6546. #u60440_text {
  6547. border-width:0px;
  6548. word-wrap:break-word;
  6549. text-transform:none;
  6550. visibility:hidden;
  6551. }
  6552. #u60441_input {
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:127px;
  6557. height:25px;
  6558. padding:2px 2px 2px 2px;
  6559. font-family:'Microsoft YaHei', sans-serif;
  6560. font-weight:400;
  6561. font-style:normal;
  6562. font-size:10px;
  6563. letter-spacing:normal;
  6564. color:#000000;
  6565. vertical-align:none;
  6566. text-align:left;
  6567. text-transform:none;
  6568. background-color:transparent;
  6569. border-color:transparent;
  6570. }
  6571. #u60441_input.disabled {
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:127px;
  6576. height:25px;
  6577. padding:2px 2px 2px 2px;
  6578. font-family:'Microsoft YaHei', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:10px;
  6582. letter-spacing:normal;
  6583. color:#000000;
  6584. vertical-align:none;
  6585. text-align:left;
  6586. text-transform:none;
  6587. background-color:transparent;
  6588. border-color:transparent;
  6589. }
  6590. #u60441_div {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:0px;
  6594. top:0px;
  6595. width:127px;
  6596. height:25px;
  6597. background:inherit;
  6598. background-color:rgba(255, 255, 255, 1);
  6599. border:none;
  6600. border-radius:0px;
  6601. -moz-box-shadow:none;
  6602. -webkit-box-shadow:none;
  6603. box-shadow:none;
  6604. font-family:'Microsoft YaHei', sans-serif;
  6605. font-weight:400;
  6606. font-style:normal;
  6607. font-size:10px;
  6608. }
  6609. #u60441 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:510px;
  6613. top:152px;
  6614. width:127px;
  6615. height:25px;
  6616. display:flex;
  6617. font-family:'Microsoft YaHei', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:10px;
  6621. }
  6622. #u60441 .text {
  6623. position:absolute;
  6624. align-self:center;
  6625. padding:2px 2px 2px 2px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u60441_div.disabled {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:0px;
  6633. top:0px;
  6634. width:127px;
  6635. height:25px;
  6636. background:inherit;
  6637. background-color:rgba(240, 240, 240, 1);
  6638. border:none;
  6639. border-radius:0px;
  6640. -moz-box-shadow:none;
  6641. -webkit-box-shadow:none;
  6642. box-shadow:none;
  6643. font-family:'Microsoft YaHei', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:10px;
  6647. }
  6648. #u60441.disabled {
  6649. }
  6650. #u60442 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:0px;
  6656. height:0px;
  6657. }
  6658. #u60443_div {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:140px;
  6664. height:30px;
  6665. background:inherit;
  6666. background-color:rgba(255, 255, 255, 1);
  6667. box-sizing:border-box;
  6668. border-width:1px;
  6669. border-style:solid;
  6670. border-color:rgba(215, 215, 215, 1);
  6671. border-radius:4px;
  6672. -moz-box-shadow:none;
  6673. -webkit-box-shadow:none;
  6674. box-shadow:none;
  6675. font-size:11px;
  6676. }
  6677. #u60443 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:1102px;
  6681. top:110px;
  6682. width:140px;
  6683. height:30px;
  6684. display:flex;
  6685. font-size:11px;
  6686. }
  6687. #u60443 .text {
  6688. position:absolute;
  6689. align-self:center;
  6690. padding:2px 2px 2px 2px;
  6691. box-sizing:border-box;
  6692. width:100%;
  6693. }
  6694. #u60443_text {
  6695. border-width:0px;
  6696. word-wrap:break-word;
  6697. text-transform:none;
  6698. visibility:hidden;
  6699. }
  6700. #u60444_input {
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:126px;
  6705. height:23px;
  6706. padding:2px 2px 2px 2px;
  6707. font-family:'ArialMT', 'Arial', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:11px;
  6711. letter-spacing:normal;
  6712. color:#AAAAAA;
  6713. vertical-align:none;
  6714. text-align:left;
  6715. text-transform:none;
  6716. background-color:transparent;
  6717. border-color:transparent;
  6718. }
  6719. #u60444_input.disabled {
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:126px;
  6724. height:23px;
  6725. padding:2px 2px 2px 2px;
  6726. font-family:'ArialMT', 'Arial', sans-serif;
  6727. font-weight:400;
  6728. font-style:normal;
  6729. font-size:11px;
  6730. letter-spacing:normal;
  6731. color:#AAAAAA;
  6732. vertical-align:none;
  6733. text-align:left;
  6734. text-transform:none;
  6735. background-color:transparent;
  6736. border-color:transparent;
  6737. }
  6738. #u60444_div {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:126px;
  6744. height:23px;
  6745. background:inherit;
  6746. background-color:rgba(255, 255, 255, 1);
  6747. border:none;
  6748. border-radius:0px;
  6749. -moz-box-shadow:none;
  6750. -webkit-box-shadow:none;
  6751. box-shadow:none;
  6752. font-size:11px;
  6753. color:#AAAAAA;
  6754. }
  6755. #u60444 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:1109px;
  6759. top:112px;
  6760. width:126px;
  6761. height:23px;
  6762. display:flex;
  6763. font-size:11px;
  6764. color:#AAAAAA;
  6765. }
  6766. #u60444 .text {
  6767. position:absolute;
  6768. align-self:flex-start;
  6769. padding:2px 2px 2px 2px;
  6770. box-sizing:border-box;
  6771. width:100%;
  6772. }
  6773. #u60444_div.disabled {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:126px;
  6779. height:23px;
  6780. background:inherit;
  6781. background-color:rgba(240, 240, 240, 1);
  6782. border:none;
  6783. border-radius:0px;
  6784. -moz-box-shadow:none;
  6785. -webkit-box-shadow:none;
  6786. box-shadow:none;
  6787. font-size:11px;
  6788. color:#AAAAAA;
  6789. }
  6790. #u60444.disabled {
  6791. }
  6792. .u60444_input_option {
  6793. font-size:11px;
  6794. }
  6795. #u60445_div {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:59px;
  6801. height:30px;
  6802. background:inherit;
  6803. background-color:rgba(255, 255, 255, 1);
  6804. box-sizing:border-box;
  6805. border-width:1px;
  6806. border-style:solid;
  6807. border-color:rgba(170, 170, 170, 1);
  6808. border-radius:4px;
  6809. -moz-box-shadow:none;
  6810. -webkit-box-shadow:none;
  6811. box-shadow:none;
  6812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:14px;
  6816. color:#555555;
  6817. }
  6818. #u60445 {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:454px;
  6822. top:198px;
  6823. width:59px;
  6824. height:30px;
  6825. display:flex;
  6826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6827. font-weight:400;
  6828. font-style:normal;
  6829. font-size:14px;
  6830. color:#555555;
  6831. }
  6832. #u60445 .text {
  6833. position:absolute;
  6834. align-self:center;
  6835. padding:5px 15px 5px 15px;
  6836. box-sizing:border-box;
  6837. width:100%;
  6838. }
  6839. #u60445_text {
  6840. border-width:0px;
  6841. white-space:nowrap;
  6842. text-transform:none;
  6843. }
  6844. #u60446 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:0px;
  6850. height:0px;
  6851. }
  6852. #u60447_div {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:140px;
  6858. height:30px;
  6859. background:inherit;
  6860. background-color:rgba(255, 255, 255, 1);
  6861. box-sizing:border-box;
  6862. border-width:1px;
  6863. border-style:solid;
  6864. border-color:rgba(215, 215, 215, 1);
  6865. border-radius:4px;
  6866. -moz-box-shadow:none;
  6867. -webkit-box-shadow:none;
  6868. box-shadow:none;
  6869. font-size:11px;
  6870. }
  6871. #u60447 {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:1252px;
  6875. top:110px;
  6876. width:140px;
  6877. height:30px;
  6878. display:flex;
  6879. font-size:11px;
  6880. }
  6881. #u60447 .text {
  6882. position:absolute;
  6883. align-self:center;
  6884. padding:2px 2px 2px 2px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u60447_text {
  6889. border-width:0px;
  6890. word-wrap:break-word;
  6891. text-transform:none;
  6892. visibility:hidden;
  6893. }
  6894. #u60448_input {
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:126px;
  6899. height:23px;
  6900. padding:2px 2px 2px 2px;
  6901. font-family:'ArialMT', 'Arial', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:11px;
  6905. letter-spacing:normal;
  6906. color:#AAAAAA;
  6907. vertical-align:none;
  6908. text-align:left;
  6909. text-transform:none;
  6910. background-color:transparent;
  6911. border-color:transparent;
  6912. }
  6913. #u60448_input.disabled {
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:126px;
  6918. height:23px;
  6919. padding:2px 2px 2px 2px;
  6920. font-family:'ArialMT', 'Arial', sans-serif;
  6921. font-weight:400;
  6922. font-style:normal;
  6923. font-size:11px;
  6924. letter-spacing:normal;
  6925. color:#AAAAAA;
  6926. vertical-align:none;
  6927. text-align:left;
  6928. text-transform:none;
  6929. background-color:transparent;
  6930. border-color:transparent;
  6931. }
  6932. #u60448_div {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:126px;
  6938. height:23px;
  6939. background:inherit;
  6940. background-color:rgba(255, 255, 255, 1);
  6941. border:none;
  6942. border-radius:0px;
  6943. -moz-box-shadow:none;
  6944. -webkit-box-shadow:none;
  6945. box-shadow:none;
  6946. font-size:11px;
  6947. color:#AAAAAA;
  6948. }
  6949. #u60448 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:1259px;
  6953. top:112px;
  6954. width:126px;
  6955. height:23px;
  6956. display:flex;
  6957. font-size:11px;
  6958. color:#AAAAAA;
  6959. }
  6960. #u60448 .text {
  6961. position:absolute;
  6962. align-self:flex-start;
  6963. padding:2px 2px 2px 2px;
  6964. box-sizing:border-box;
  6965. width:100%;
  6966. }
  6967. #u60448_div.disabled {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:126px;
  6973. height:23px;
  6974. background:inherit;
  6975. background-color:rgba(240, 240, 240, 1);
  6976. border:none;
  6977. border-radius:0px;
  6978. -moz-box-shadow:none;
  6979. -webkit-box-shadow:none;
  6980. box-shadow:none;
  6981. font-size:11px;
  6982. color:#AAAAAA;
  6983. }
  6984. #u60448.disabled {
  6985. }
  6986. .u60448_input_option {
  6987. font-size:11px;
  6988. }
  6989. #u60449 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:0px;
  6995. height:0px;
  6996. }
  6997. #u60450_div {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:140px;
  7003. height:30px;
  7004. background:inherit;
  7005. background-color:rgba(255, 255, 255, 1);
  7006. box-sizing:border-box;
  7007. border-width:1px;
  7008. border-style:solid;
  7009. border-color:rgba(215, 215, 215, 1);
  7010. border-radius:4px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-size:11px;
  7015. }
  7016. #u60450 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:802px;
  7020. top:111px;
  7021. width:140px;
  7022. height:30px;
  7023. display:flex;
  7024. font-size:11px;
  7025. }
  7026. #u60450 .text {
  7027. position:absolute;
  7028. align-self:center;
  7029. padding:2px 2px 2px 2px;
  7030. box-sizing:border-box;
  7031. width:100%;
  7032. }
  7033. #u60450_text {
  7034. border-width:0px;
  7035. word-wrap:break-word;
  7036. text-transform:none;
  7037. visibility:hidden;
  7038. }
  7039. #u60451_input {
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:126px;
  7044. height:23px;
  7045. padding:2px 2px 2px 2px;
  7046. font-family:'ArialMT', 'Arial', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. font-size:11px;
  7050. letter-spacing:normal;
  7051. color:#AAAAAA;
  7052. vertical-align:none;
  7053. text-align:left;
  7054. text-transform:none;
  7055. background-color:transparent;
  7056. border-color:transparent;
  7057. }
  7058. #u60451_input.disabled {
  7059. position:absolute;
  7060. left:0px;
  7061. top:0px;
  7062. width:126px;
  7063. height:23px;
  7064. padding:2px 2px 2px 2px;
  7065. font-family:'ArialMT', 'Arial', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:11px;
  7069. letter-spacing:normal;
  7070. color:#AAAAAA;
  7071. vertical-align:none;
  7072. text-align:left;
  7073. text-transform:none;
  7074. background-color:transparent;
  7075. border-color:transparent;
  7076. }
  7077. #u60451_div {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:126px;
  7083. height:23px;
  7084. background:inherit;
  7085. background-color:rgba(255, 255, 255, 1);
  7086. border:none;
  7087. border-radius:0px;
  7088. -moz-box-shadow:none;
  7089. -webkit-box-shadow:none;
  7090. box-shadow:none;
  7091. font-size:11px;
  7092. color:#AAAAAA;
  7093. }
  7094. #u60451 {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:809px;
  7098. top:113px;
  7099. width:126px;
  7100. height:23px;
  7101. display:flex;
  7102. font-size:11px;
  7103. color:#AAAAAA;
  7104. }
  7105. #u60451 .text {
  7106. position:absolute;
  7107. align-self:flex-start;
  7108. padding:2px 2px 2px 2px;
  7109. box-sizing:border-box;
  7110. width:100%;
  7111. }
  7112. #u60451_div.disabled {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:126px;
  7118. height:23px;
  7119. background:inherit;
  7120. background-color:rgba(240, 240, 240, 1);
  7121. border:none;
  7122. border-radius:0px;
  7123. -moz-box-shadow:none;
  7124. -webkit-box-shadow:none;
  7125. box-shadow:none;
  7126. font-size:11px;
  7127. color:#AAAAAA;
  7128. }
  7129. #u60451.disabled {
  7130. }
  7131. .u60451_input_option {
  7132. font-size:11px;
  7133. }
  7134. #u60452_div {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:87px;
  7140. height:30px;
  7141. background:inherit;
  7142. background-color:rgba(255, 255, 255, 1);
  7143. box-sizing:border-box;
  7144. border-width:1px;
  7145. border-style:solid;
  7146. border-color:rgba(170, 170, 170, 1);
  7147. border-radius:4px;
  7148. -moz-box-shadow:none;
  7149. -webkit-box-shadow:none;
  7150. box-shadow:none;
  7151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7152. font-weight:400;
  7153. font-style:normal;
  7154. font-size:14px;
  7155. color:#555555;
  7156. }
  7157. #u60452 {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:592px;
  7161. top:198px;
  7162. width:87px;
  7163. height:30px;
  7164. display:flex;
  7165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:14px;
  7169. color:#555555;
  7170. }
  7171. #u60452 .text {
  7172. position:absolute;
  7173. align-self:center;
  7174. padding:5px 15px 5px 15px;
  7175. box-sizing:border-box;
  7176. width:100%;
  7177. }
  7178. #u60452_text {
  7179. border-width:0px;
  7180. white-space:nowrap;
  7181. text-transform:none;
  7182. }
  7183. #u60453 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:0px;
  7187. top:0px;
  7188. width:0px;
  7189. height:0px;
  7190. }
  7191. #u60454_div {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:140px;
  7197. height:30px;
  7198. background:inherit;
  7199. background-color:rgba(255, 255, 255, 1);
  7200. box-sizing:border-box;
  7201. border-width:1px;
  7202. border-style:solid;
  7203. border-color:rgba(201, 201, 201, 1);
  7204. border-radius:4px;
  7205. -moz-box-shadow:none;
  7206. -webkit-box-shadow:none;
  7207. box-shadow:none;
  7208. font-family:'Microsoft YaHei', sans-serif;
  7209. font-weight:400;
  7210. font-style:normal;
  7211. font-size:14px;
  7212. color:#CCCCCC;
  7213. text-align:left;
  7214. }
  7215. #u60454 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:502px;
  7219. top:111px;
  7220. width:140px;
  7221. height:30px;
  7222. display:flex;
  7223. font-family:'Microsoft YaHei', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:14px;
  7227. color:#CCCCCC;
  7228. text-align:left;
  7229. }
  7230. #u60454 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:2px 8px 2px 8px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u60454_text {
  7238. border-width:0px;
  7239. word-wrap:break-word;
  7240. text-transform:none;
  7241. visibility:hidden;
  7242. }
  7243. #u60455_input {
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:127px;
  7248. height:25px;
  7249. padding:2px 2px 2px 2px;
  7250. font-family:'Microsoft YaHei', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:10px;
  7254. letter-spacing:normal;
  7255. color:#000000;
  7256. vertical-align:none;
  7257. text-align:left;
  7258. text-transform:none;
  7259. background-color:transparent;
  7260. border-color:transparent;
  7261. }
  7262. #u60455_input.disabled {
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:127px;
  7267. height:25px;
  7268. padding:2px 2px 2px 2px;
  7269. font-family:'Microsoft YaHei', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:10px;
  7273. letter-spacing:normal;
  7274. color:#000000;
  7275. vertical-align:none;
  7276. text-align:left;
  7277. text-transform:none;
  7278. background-color:transparent;
  7279. border-color:transparent;
  7280. }
  7281. #u60455_div {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:127px;
  7287. height:25px;
  7288. background:inherit;
  7289. background-color:rgba(255, 255, 255, 1);
  7290. border:none;
  7291. border-radius:0px;
  7292. -moz-box-shadow:none;
  7293. -webkit-box-shadow:none;
  7294. box-shadow:none;
  7295. font-family:'Microsoft YaHei', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:10px;
  7299. }
  7300. #u60455 {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:510px;
  7304. top:112px;
  7305. width:127px;
  7306. height:25px;
  7307. display:flex;
  7308. font-family:'Microsoft YaHei', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. font-size:10px;
  7312. }
  7313. #u60455 .text {
  7314. position:absolute;
  7315. align-self:center;
  7316. padding:2px 2px 2px 2px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u60455_div.disabled {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:127px;
  7326. height:25px;
  7327. background:inherit;
  7328. background-color:rgba(240, 240, 240, 1);
  7329. border:none;
  7330. border-radius:0px;
  7331. -moz-box-shadow:none;
  7332. -webkit-box-shadow:none;
  7333. box-shadow:none;
  7334. font-family:'Microsoft YaHei', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:10px;
  7338. }
  7339. #u60455.disabled {
  7340. }
  7341. #u60456 {
  7342. border-width:0px;
  7343. position:absolute;
  7344. left:0px;
  7345. top:0px;
  7346. width:0px;
  7347. height:0px;
  7348. }
  7349. #u60457_div {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:140px;
  7355. height:30px;
  7356. background:inherit;
  7357. background-color:rgba(255, 255, 255, 1);
  7358. box-sizing:border-box;
  7359. border-width:1px;
  7360. border-style:solid;
  7361. border-color:rgba(201, 201, 201, 1);
  7362. border-radius:4px;
  7363. -moz-box-shadow:none;
  7364. -webkit-box-shadow:none;
  7365. box-shadow:none;
  7366. font-family:'Microsoft YaHei', sans-serif;
  7367. font-weight:400;
  7368. font-style:normal;
  7369. font-size:14px;
  7370. color:#CCCCCC;
  7371. text-align:left;
  7372. }
  7373. #u60457 {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:652px;
  7377. top:111px;
  7378. width:140px;
  7379. height:30px;
  7380. display:flex;
  7381. font-family:'Microsoft YaHei', sans-serif;
  7382. font-weight:400;
  7383. font-style:normal;
  7384. font-size:14px;
  7385. color:#CCCCCC;
  7386. text-align:left;
  7387. }
  7388. #u60457 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:2px 8px 2px 8px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u60457_text {
  7396. border-width:0px;
  7397. word-wrap:break-word;
  7398. text-transform:none;
  7399. visibility:hidden;
  7400. }
  7401. #u60458_input {
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:127px;
  7406. height:25px;
  7407. padding:2px 2px 2px 2px;
  7408. font-family:'Microsoft YaHei', sans-serif;
  7409. font-weight:400;
  7410. font-style:normal;
  7411. font-size:10px;
  7412. letter-spacing:normal;
  7413. color:#000000;
  7414. vertical-align:none;
  7415. text-align:left;
  7416. text-transform:none;
  7417. background-color:transparent;
  7418. border-color:transparent;
  7419. }
  7420. #u60458_input.disabled {
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:127px;
  7425. height:25px;
  7426. padding:2px 2px 2px 2px;
  7427. font-family:'Microsoft YaHei', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:10px;
  7431. letter-spacing:normal;
  7432. color:#000000;
  7433. vertical-align:none;
  7434. text-align:left;
  7435. text-transform:none;
  7436. background-color:transparent;
  7437. border-color:transparent;
  7438. }
  7439. #u60458_div {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:127px;
  7445. height:25px;
  7446. background:inherit;
  7447. background-color:rgba(255, 255, 255, 1);
  7448. border:none;
  7449. border-radius:0px;
  7450. -moz-box-shadow:none;
  7451. -webkit-box-shadow:none;
  7452. box-shadow:none;
  7453. font-family:'Microsoft YaHei', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:10px;
  7457. }
  7458. #u60458 {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:660px;
  7462. top:112px;
  7463. width:127px;
  7464. height:25px;
  7465. display:flex;
  7466. font-family:'Microsoft YaHei', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:10px;
  7470. }
  7471. #u60458 .text {
  7472. position:absolute;
  7473. align-self:center;
  7474. padding:2px 2px 2px 2px;
  7475. box-sizing:border-box;
  7476. width:100%;
  7477. }
  7478. #u60458_div.disabled {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:127px;
  7484. height:25px;
  7485. background:inherit;
  7486. background-color:rgba(240, 240, 240, 1);
  7487. border:none;
  7488. border-radius:0px;
  7489. -moz-box-shadow:none;
  7490. -webkit-box-shadow:none;
  7491. box-shadow:none;
  7492. font-family:'Microsoft YaHei', sans-serif;
  7493. font-weight:400;
  7494. font-style:normal;
  7495. font-size:10px;
  7496. }
  7497. #u60458.disabled {
  7498. }
  7499. #u60459 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:0px;
  7505. height:0px;
  7506. }
  7507. #u60460_div {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:0px;
  7511. top:0px;
  7512. width:140px;
  7513. height:30px;
  7514. background:inherit;
  7515. background-color:rgba(255, 255, 255, 1);
  7516. box-sizing:border-box;
  7517. border-width:1px;
  7518. border-style:solid;
  7519. border-color:rgba(215, 215, 215, 1);
  7520. border-radius:4px;
  7521. -moz-box-shadow:none;
  7522. -webkit-box-shadow:none;
  7523. box-shadow:none;
  7524. font-size:11px;
  7525. }
  7526. #u60460 {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:352px;
  7530. top:111px;
  7531. width:140px;
  7532. height:30px;
  7533. display:flex;
  7534. font-size:11px;
  7535. }
  7536. #u60460 .text {
  7537. position:absolute;
  7538. align-self:center;
  7539. padding:2px 2px 2px 2px;
  7540. box-sizing:border-box;
  7541. width:100%;
  7542. }
  7543. #u60460_text {
  7544. border-width:0px;
  7545. word-wrap:break-word;
  7546. text-transform:none;
  7547. visibility:hidden;
  7548. }
  7549. #u60461_input {
  7550. position:absolute;
  7551. left:0px;
  7552. top:0px;
  7553. width:126px;
  7554. height:23px;
  7555. padding:2px 2px 2px 2px;
  7556. font-family:'ArialMT', 'Arial', sans-serif;
  7557. font-weight:400;
  7558. font-style:normal;
  7559. font-size:11px;
  7560. letter-spacing:normal;
  7561. color:#AAAAAA;
  7562. vertical-align:none;
  7563. text-align:left;
  7564. text-transform:none;
  7565. background-color:transparent;
  7566. border-color:transparent;
  7567. }
  7568. #u60461_input.disabled {
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:126px;
  7573. height:23px;
  7574. padding:2px 2px 2px 2px;
  7575. font-family:'ArialMT', 'Arial', sans-serif;
  7576. font-weight:400;
  7577. font-style:normal;
  7578. font-size:11px;
  7579. letter-spacing:normal;
  7580. color:#AAAAAA;
  7581. vertical-align:none;
  7582. text-align:left;
  7583. text-transform:none;
  7584. background-color:transparent;
  7585. border-color:transparent;
  7586. }
  7587. #u60461_div {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:126px;
  7593. height:23px;
  7594. background:inherit;
  7595. background-color:rgba(255, 255, 255, 1);
  7596. border:none;
  7597. border-radius:0px;
  7598. -moz-box-shadow:none;
  7599. -webkit-box-shadow:none;
  7600. box-shadow:none;
  7601. font-size:11px;
  7602. color:#AAAAAA;
  7603. }
  7604. #u60461 {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:359px;
  7608. top:113px;
  7609. width:126px;
  7610. height:23px;
  7611. display:flex;
  7612. font-size:11px;
  7613. color:#AAAAAA;
  7614. }
  7615. #u60461 .text {
  7616. position:absolute;
  7617. align-self:flex-start;
  7618. padding:2px 2px 2px 2px;
  7619. box-sizing:border-box;
  7620. width:100%;
  7621. }
  7622. #u60461_div.disabled {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:126px;
  7628. height:23px;
  7629. background:inherit;
  7630. background-color:rgba(240, 240, 240, 1);
  7631. border:none;
  7632. border-radius:0px;
  7633. -moz-box-shadow:none;
  7634. -webkit-box-shadow:none;
  7635. box-shadow:none;
  7636. font-size:11px;
  7637. color:#AAAAAA;
  7638. }
  7639. #u60461.disabled {
  7640. }
  7641. .u60461_input_option {
  7642. font-size:11px;
  7643. }
  7644. #u60462_div {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:87px;
  7650. height:30px;
  7651. background:inherit;
  7652. background-color:rgba(24, 144, 255, 1);
  7653. box-sizing:border-box;
  7654. border-width:1px;
  7655. border-style:solid;
  7656. border-color:rgba(0, 153, 255, 1);
  7657. border-radius:4px;
  7658. -moz-box-shadow:none;
  7659. -webkit-box-shadow:none;
  7660. box-shadow:none;
  7661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7662. font-weight:400;
  7663. font-style:normal;
  7664. font-size:14px;
  7665. color:#FFFFFF;
  7666. }
  7667. #u60462 {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:356px;
  7671. top:201px;
  7672. width:87px;
  7673. height:30px;
  7674. display:flex;
  7675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7676. font-weight:400;
  7677. font-style:normal;
  7678. font-size:14px;
  7679. color:#FFFFFF;
  7680. }
  7681. #u60462 .text {
  7682. position:absolute;
  7683. align-self:center;
  7684. padding:5px 15px 5px 15px;
  7685. box-sizing:border-box;
  7686. width:100%;
  7687. }
  7688. #u60462_text {
  7689. border-width:0px;
  7690. white-space:nowrap;
  7691. text-transform:none;
  7692. }
  7693. #u60463_div {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:0px;
  7697. top:0px;
  7698. width:211px;
  7699. height:50px;
  7700. background:inherit;
  7701. background-color:rgba(255, 255, 255, 0);
  7702. border:none;
  7703. border-left:0px;
  7704. border-top:0px;
  7705. border-right:0px;
  7706. border-radius:0px;
  7707. border-bottom-right-radius:0px;
  7708. border-bottom-left-radius:0px;
  7709. -moz-box-shadow:none;
  7710. -webkit-box-shadow:none;
  7711. box-shadow:none;
  7712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7713. font-weight:400;
  7714. font-style:normal;
  7715. font-size:14px;
  7716. color:#D9001B;
  7717. }
  7718. #u60463 {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:1629px;
  7722. top:50px;
  7723. width:211px;
  7724. height:50px;
  7725. display:flex;
  7726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7727. font-weight:400;
  7728. font-style:normal;
  7729. font-size:14px;
  7730. color:#D9001B;
  7731. }
  7732. #u60463 .text {
  7733. position:absolute;
  7734. align-self:center;
  7735. padding:0px 0px 0px 0px;
  7736. box-sizing:border-box;
  7737. width:100%;
  7738. }
  7739. #u60463_text {
  7740. border-width:0px;
  7741. white-space:nowrap;
  7742. text-transform:none;
  7743. }
  7744. #u60464 {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:0px;
  7748. top:0px;
  7749. width:0px;
  7750. height:0px;
  7751. }
  7752. #u60465 {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:0px;
  7758. height:0px;
  7759. }
  7760. #u60466_div {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:0px;
  7764. top:0px;
  7765. width:680px;
  7766. height:1198px;
  7767. background:inherit;
  7768. background-color:rgba(255, 255, 255, 1);
  7769. box-sizing:border-box;
  7770. border-width:1px;
  7771. border-style:solid;
  7772. border-color:rgba(215, 215, 215, 1);
  7773. border-radius:0px;
  7774. -moz-box-shadow:none;
  7775. -webkit-box-shadow:none;
  7776. box-shadow:none;
  7777. }
  7778. #u60466 {
  7779. border-width:0px;
  7780. position:absolute;
  7781. left:1629px;
  7782. top:100px;
  7783. width:680px;
  7784. height:1198px;
  7785. display:flex;
  7786. }
  7787. #u60466 .text {
  7788. position:absolute;
  7789. align-self:center;
  7790. padding:2px 2px 2px 2px;
  7791. box-sizing:border-box;
  7792. width:100%;
  7793. }
  7794. #u60466_text {
  7795. border-width:0px;
  7796. word-wrap:break-word;
  7797. text-transform:none;
  7798. visibility:hidden;
  7799. }
  7800. #u60467_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:109px;
  7806. height:30px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 0);
  7809. border:none;
  7810. border-radius:0px;
  7811. -moz-box-shadow:none;
  7812. -webkit-box-shadow:none;
  7813. box-shadow:none;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:18px;
  7818. color:#000000;
  7819. line-height:30px;
  7820. }
  7821. #u60467 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:1649px;
  7825. top:120px;
  7826. width:109px;
  7827. height:30px;
  7828. display:flex;
  7829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:18px;
  7833. color:#000000;
  7834. line-height:30px;
  7835. }
  7836. #u60467 .text {
  7837. position:absolute;
  7838. align-self:flex-start;
  7839. padding:0px 0px 0px 0px;
  7840. box-sizing:border-box;
  7841. width:100%;
  7842. }
  7843. #u60467_text {
  7844. border-width:0px;
  7845. white-space:nowrap;
  7846. text-transform:none;
  7847. }
  7848. #u60468 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:0px;
  7852. top:0px;
  7853. width:0px;
  7854. height:0px;
  7855. }
  7856. #u60469_div {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:0px;
  7860. top:0px;
  7861. width:40px;
  7862. height:40px;
  7863. background:inherit;
  7864. background-color:rgba(255, 255, 255, 0);
  7865. border:none;
  7866. border-top:0px;
  7867. border-right:0px;
  7868. border-bottom:0px;
  7869. border-radius:0px;
  7870. border-top-left-radius:0px;
  7871. border-bottom-left-radius:0px;
  7872. -moz-box-shadow:none;
  7873. -webkit-box-shadow:none;
  7874. box-shadow:none;
  7875. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7876. font-weight:500;
  7877. font-style:normal;
  7878. font-size:18px;
  7879. text-align:center;
  7880. }
  7881. #u60469 {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:2269px;
  7885. top:100px;
  7886. width:40px;
  7887. height:40px;
  7888. display:flex;
  7889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7890. font-weight:500;
  7891. font-style:normal;
  7892. font-size:18px;
  7893. text-align:center;
  7894. }
  7895. #u60469 .text {
  7896. position:absolute;
  7897. align-self:center;
  7898. padding:5px 10px 5px 0px;
  7899. box-sizing:border-box;
  7900. width:100%;
  7901. }
  7902. #u60469_text {
  7903. border-width:0px;
  7904. word-wrap:break-word;
  7905. text-transform:none;
  7906. }
  7907. #u60470_img {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:0px;
  7911. top:0px;
  7912. width:13px;
  7913. height:17px;
  7914. }
  7915. #u60470 {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:2256px;
  7919. top:112px;
  7920. width:13px;
  7921. height:17px;
  7922. display:flex;
  7923. }
  7924. #u60470 .text {
  7925. position:absolute;
  7926. align-self:center;
  7927. padding:2px 2px 2px 2px;
  7928. box-sizing:border-box;
  7929. width:100%;
  7930. }
  7931. #u60470_text {
  7932. border-width:0px;
  7933. word-wrap:break-word;
  7934. text-transform:none;
  7935. visibility:hidden;
  7936. }
  7937. #u60471 {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:0px;
  7941. top:0px;
  7942. width:0px;
  7943. height:0px;
  7944. }
  7945. #u60472_div {
  7946. border-width:0px;
  7947. position:absolute;
  7948. left:0px;
  7949. top:0px;
  7950. width:680px;
  7951. height:60px;
  7952. background:inherit;
  7953. background-color:rgba(255, 255, 255, 1);
  7954. box-sizing:border-box;
  7955. border-width:1px;
  7956. border-style:solid;
  7957. border-color:rgba(215, 215, 215, 1);
  7958. border-radius:0px;
  7959. -moz-box-shadow:none;
  7960. -webkit-box-shadow:none;
  7961. box-shadow:none;
  7962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7963. font-weight:400;
  7964. font-style:normal;
  7965. font-size:14px;
  7966. color:#AAAAAA;
  7967. text-align:center;
  7968. line-height:30px;
  7969. }
  7970. #u60472 {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:1629px;
  7974. top:1238px;
  7975. width:680px;
  7976. height:60px;
  7977. display:flex;
  7978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7979. font-weight:400;
  7980. font-style:normal;
  7981. font-size:14px;
  7982. color:#AAAAAA;
  7983. text-align:center;
  7984. line-height:30px;
  7985. }
  7986. #u60472 .text {
  7987. position:absolute;
  7988. align-self:center;
  7989. padding:5px 10px 5px 10px;
  7990. box-sizing:border-box;
  7991. width:100%;
  7992. }
  7993. #u60472_text {
  7994. border-width:0px;
  7995. word-wrap:break-word;
  7996. text-transform:none;
  7997. visibility:hidden;
  7998. }
  7999. #u60473_div {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:0px;
  8003. top:0px;
  8004. width:80px;
  8005. height:30px;
  8006. background:inherit;
  8007. background-color:rgba(24, 144, 255, 1);
  8008. border:none;
  8009. border-radius:4px;
  8010. -moz-box-shadow:none;
  8011. -webkit-box-shadow:none;
  8012. box-shadow:none;
  8013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8014. font-weight:400;
  8015. font-style:normal;
  8016. font-size:14px;
  8017. color:#FFFFFF;
  8018. }
  8019. #u60473 {
  8020. border-width:0px;
  8021. position:absolute;
  8022. left:2184px;
  8023. top:1253px;
  8024. width:80px;
  8025. height:30px;
  8026. display:flex;
  8027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8028. font-weight:400;
  8029. font-style:normal;
  8030. font-size:14px;
  8031. color:#FFFFFF;
  8032. }
  8033. #u60473 .text {
  8034. position:absolute;
  8035. align-self:center;
  8036. padding:2px 2px 2px 2px;
  8037. box-sizing:border-box;
  8038. width:100%;
  8039. }
  8040. #u60473_text {
  8041. border-width:0px;
  8042. word-wrap:break-word;
  8043. text-transform:none;
  8044. }
  8045. #u60474_div {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:0px;
  8049. top:0px;
  8050. width:80px;
  8051. height:30px;
  8052. background:inherit;
  8053. background-color:rgba(255, 255, 255, 1);
  8054. box-sizing:border-box;
  8055. border-width:1px;
  8056. border-style:solid;
  8057. border-color:rgba(170, 170, 170, 1);
  8058. border-radius:4px;
  8059. -moz-box-shadow:none;
  8060. -webkit-box-shadow:none;
  8061. box-shadow:none;
  8062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:14px;
  8066. }
  8067. #u60474 {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:2085px;
  8071. top:1253px;
  8072. width:80px;
  8073. height:30px;
  8074. display:flex;
  8075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8076. font-weight:400;
  8077. font-style:normal;
  8078. font-size:14px;
  8079. }
  8080. #u60474 .text {
  8081. position:absolute;
  8082. align-self:center;
  8083. padding:2px 2px 2px 2px;
  8084. box-sizing:border-box;
  8085. width:100%;
  8086. }
  8087. #u60474_text {
  8088. border-width:0px;
  8089. word-wrap:break-word;
  8090. text-transform:none;
  8091. }
  8092. #u60475 {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:0px;
  8098. height:0px;
  8099. }
  8100. #u60476_div {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:0px;
  8104. top:0px;
  8105. width:400px;
  8106. height:40px;
  8107. background:inherit;
  8108. background-color:rgba(255, 255, 255, 1);
  8109. box-sizing:border-box;
  8110. border-width:1px;
  8111. border-style:solid;
  8112. border-color:rgba(170, 170, 170, 1);
  8113. border-radius:4px;
  8114. -moz-box-shadow:none;
  8115. -webkit-box-shadow:none;
  8116. box-shadow:none;
  8117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8118. font-weight:400;
  8119. font-style:normal;
  8120. text-align:left;
  8121. }
  8122. #u60476 {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:1781px;
  8126. top:519px;
  8127. width:400px;
  8128. height:40px;
  8129. display:flex;
  8130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8131. font-weight:400;
  8132. font-style:normal;
  8133. text-align:left;
  8134. }
  8135. #u60476 .text {
  8136. position:absolute;
  8137. align-self:center;
  8138. padding:2px 2px 2px 10px;
  8139. box-sizing:border-box;
  8140. width:100%;
  8141. }
  8142. #u60476_text {
  8143. border-width:0px;
  8144. word-wrap:break-word;
  8145. text-transform:none;
  8146. visibility:hidden;
  8147. }
  8148. #u60477_input {
  8149. position:absolute;
  8150. left:0px;
  8151. top:0px;
  8152. width:188px;
  8153. height:31px;
  8154. padding:2px 2px 2px 2px;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:13px;
  8159. letter-spacing:normal;
  8160. color:#AAAAAA;
  8161. vertical-align:none;
  8162. text-align:left;
  8163. text-transform:none;
  8164. background-color:transparent;
  8165. border-color:transparent;
  8166. }
  8167. #u60477_input.disabled {
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:188px;
  8172. height:31px;
  8173. padding:2px 2px 2px 2px;
  8174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8175. font-weight:400;
  8176. font-style:normal;
  8177. font-size:13px;
  8178. letter-spacing:normal;
  8179. color:#AAAAAA;
  8180. vertical-align:none;
  8181. text-align:left;
  8182. text-transform:none;
  8183. background-color:transparent;
  8184. border-color:transparent;
  8185. }
  8186. #u60477_div {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:0px;
  8190. top:0px;
  8191. width:188px;
  8192. height:31px;
  8193. background:inherit;
  8194. background-color:rgba(255, 255, 255, 0);
  8195. border:none;
  8196. border-radius:0px;
  8197. -moz-box-shadow:none;
  8198. -webkit-box-shadow:none;
  8199. box-shadow:none;
  8200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8201. font-weight:400;
  8202. font-style:normal;
  8203. color:#AAAAAA;
  8204. }
  8205. #u60477 {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:1791px;
  8209. top:524px;
  8210. width:188px;
  8211. height:31px;
  8212. display:flex;
  8213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8214. font-weight:400;
  8215. font-style:normal;
  8216. color:#AAAAAA;
  8217. }
  8218. #u60477 .text {
  8219. position:absolute;
  8220. align-self:center;
  8221. padding:2px 2px 2px 2px;
  8222. box-sizing:border-box;
  8223. width:100%;
  8224. }
  8225. #u60477_div.disabled {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:188px;
  8231. height:31px;
  8232. background:inherit;
  8233. background-color:rgba(240, 240, 240, 1);
  8234. border:none;
  8235. border-radius:0px;
  8236. -moz-box-shadow:none;
  8237. -webkit-box-shadow:none;
  8238. box-shadow:none;
  8239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. color:#AAAAAA;
  8243. }
  8244. #u60477.disabled {
  8245. }
  8246. #u60478_div {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:0px;
  8250. top:0px;
  8251. width:63px;
  8252. height:30px;
  8253. background:inherit;
  8254. background-color:rgba(255, 255, 255, 0);
  8255. border:none;
  8256. border-top:0px;
  8257. border-right:0px;
  8258. border-bottom:0px;
  8259. border-radius:0px;
  8260. border-top-left-radius:0px;
  8261. border-bottom-left-radius:0px;
  8262. -moz-box-shadow:none;
  8263. -webkit-box-shadow:none;
  8264. box-shadow:none;
  8265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8266. font-weight:400;
  8267. font-style:normal;
  8268. font-size:14px;
  8269. text-align:right;
  8270. }
  8271. #u60478 {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:1708px;
  8275. top:524px;
  8276. width:63px;
  8277. height:30px;
  8278. display:flex;
  8279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8280. font-weight:400;
  8281. font-style:normal;
  8282. font-size:14px;
  8283. text-align:right;
  8284. }
  8285. #u60478 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:5px 0px 5px 0px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u60478_text {
  8293. border-width:0px;
  8294. white-space:nowrap;
  8295. text-transform:none;
  8296. }
  8297. #u60479 {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:0px;
  8303. height:0px;
  8304. }
  8305. #u60480_div {
  8306. border-width:0px;
  8307. position:absolute;
  8308. left:0px;
  8309. top:0px;
  8310. width:400px;
  8311. height:40px;
  8312. background:inherit;
  8313. background-color:rgba(255, 255, 255, 1);
  8314. box-sizing:border-box;
  8315. border-width:1px;
  8316. border-style:solid;
  8317. border-color:rgba(170, 170, 170, 1);
  8318. border-radius:4px;
  8319. -moz-box-shadow:none;
  8320. -webkit-box-shadow:none;
  8321. box-shadow:none;
  8322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8323. font-weight:400;
  8324. font-style:normal;
  8325. text-align:left;
  8326. }
  8327. #u60480 {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:1781px;
  8331. top:569px;
  8332. width:400px;
  8333. height:40px;
  8334. display:flex;
  8335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8336. font-weight:400;
  8337. font-style:normal;
  8338. text-align:left;
  8339. }
  8340. #u60480 .text {
  8341. position:absolute;
  8342. align-self:center;
  8343. padding:2px 2px 2px 10px;
  8344. box-sizing:border-box;
  8345. width:100%;
  8346. }
  8347. #u60480_text {
  8348. border-width:0px;
  8349. word-wrap:break-word;
  8350. text-transform:none;
  8351. visibility:hidden;
  8352. }
  8353. #u60481_input {
  8354. position:absolute;
  8355. left:0px;
  8356. top:0px;
  8357. width:188px;
  8358. height:31px;
  8359. padding:2px 2px 2px 2px;
  8360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8361. font-weight:400;
  8362. font-style:normal;
  8363. font-size:13px;
  8364. letter-spacing:normal;
  8365. color:#AAAAAA;
  8366. vertical-align:none;
  8367. text-align:left;
  8368. text-transform:none;
  8369. background-color:transparent;
  8370. border-color:transparent;
  8371. }
  8372. #u60481_input.disabled {
  8373. position:absolute;
  8374. left:0px;
  8375. top:0px;
  8376. width:188px;
  8377. height:31px;
  8378. padding:2px 2px 2px 2px;
  8379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8380. font-weight:400;
  8381. font-style:normal;
  8382. font-size:13px;
  8383. letter-spacing:normal;
  8384. color:#AAAAAA;
  8385. vertical-align:none;
  8386. text-align:left;
  8387. text-transform:none;
  8388. background-color:transparent;
  8389. border-color:transparent;
  8390. }
  8391. #u60481_div {
  8392. border-width:0px;
  8393. position:absolute;
  8394. left:0px;
  8395. top:0px;
  8396. width:188px;
  8397. height:31px;
  8398. background:inherit;
  8399. background-color:rgba(255, 255, 255, 0);
  8400. border:none;
  8401. border-radius:0px;
  8402. -moz-box-shadow:none;
  8403. -webkit-box-shadow:none;
  8404. box-shadow:none;
  8405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8406. font-weight:400;
  8407. font-style:normal;
  8408. color:#AAAAAA;
  8409. }
  8410. #u60481 {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:1791px;
  8414. top:574px;
  8415. width:188px;
  8416. height:31px;
  8417. display:flex;
  8418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8419. font-weight:400;
  8420. font-style:normal;
  8421. color:#AAAAAA;
  8422. }
  8423. #u60481 .text {
  8424. position:absolute;
  8425. align-self:center;
  8426. padding:2px 2px 2px 2px;
  8427. box-sizing:border-box;
  8428. width:100%;
  8429. }
  8430. #u60481_div.disabled {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:0px;
  8434. top:0px;
  8435. width:188px;
  8436. height:31px;
  8437. background:inherit;
  8438. background-color:rgba(240, 240, 240, 1);
  8439. border:none;
  8440. border-radius:0px;
  8441. -moz-box-shadow:none;
  8442. -webkit-box-shadow:none;
  8443. box-shadow:none;
  8444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8445. font-weight:400;
  8446. font-style:normal;
  8447. color:#AAAAAA;
  8448. }
  8449. #u60481.disabled {
  8450. }
  8451. #u60482_div {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:64px;
  8457. height:30px;
  8458. background:inherit;
  8459. background-color:rgba(255, 255, 255, 0);
  8460. border:none;
  8461. border-top:0px;
  8462. border-right:0px;
  8463. border-bottom:0px;
  8464. border-radius:0px;
  8465. border-top-left-radius:0px;
  8466. border-bottom-left-radius:0px;
  8467. -moz-box-shadow:none;
  8468. -webkit-box-shadow:none;
  8469. box-shadow:none;
  8470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8471. font-weight:400;
  8472. font-style:normal;
  8473. font-size:14px;
  8474. text-align:right;
  8475. }
  8476. #u60482 {
  8477. border-width:0px;
  8478. position:absolute;
  8479. left:1707px;
  8480. top:574px;
  8481. width:64px;
  8482. height:30px;
  8483. display:flex;
  8484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8485. font-weight:400;
  8486. font-style:normal;
  8487. font-size:14px;
  8488. text-align:right;
  8489. }
  8490. #u60482 .text {
  8491. position:absolute;
  8492. align-self:center;
  8493. padding:5px 0px 5px 0px;
  8494. box-sizing:border-box;
  8495. width:100%;
  8496. }
  8497. #u60482_text {
  8498. border-width:0px;
  8499. white-space:nowrap;
  8500. text-transform:none;
  8501. }
  8502. #u60483 {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:0px;
  8508. height:0px;
  8509. }
  8510. #u60484_div {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:0px;
  8514. top:0px;
  8515. width:400px;
  8516. height:40px;
  8517. background:inherit;
  8518. background-color:rgba(255, 255, 255, 1);
  8519. box-sizing:border-box;
  8520. border-width:1px;
  8521. border-style:solid;
  8522. border-color:rgba(170, 170, 170, 1);
  8523. border-radius:4px;
  8524. -moz-box-shadow:none;
  8525. -webkit-box-shadow:none;
  8526. box-shadow:none;
  8527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8528. font-weight:400;
  8529. font-style:normal;
  8530. text-align:left;
  8531. }
  8532. #u60484 {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:1781px;
  8536. top:819px;
  8537. width:400px;
  8538. height:40px;
  8539. display:flex;
  8540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8541. font-weight:400;
  8542. font-style:normal;
  8543. text-align:left;
  8544. }
  8545. #u60484 .text {
  8546. position:absolute;
  8547. align-self:center;
  8548. padding:2px 2px 2px 10px;
  8549. box-sizing:border-box;
  8550. width:100%;
  8551. }
  8552. #u60484_text {
  8553. border-width:0px;
  8554. word-wrap:break-word;
  8555. text-transform:none;
  8556. visibility:hidden;
  8557. }
  8558. #u60485_input {
  8559. position:absolute;
  8560. left:0px;
  8561. top:0px;
  8562. width:188px;
  8563. height:31px;
  8564. padding:2px 2px 2px 2px;
  8565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8566. font-weight:400;
  8567. font-style:normal;
  8568. font-size:13px;
  8569. letter-spacing:normal;
  8570. color:#AAAAAA;
  8571. vertical-align:none;
  8572. text-align:left;
  8573. text-transform:none;
  8574. background-color:transparent;
  8575. border-color:transparent;
  8576. }
  8577. #u60485_input.disabled {
  8578. position:absolute;
  8579. left:0px;
  8580. top:0px;
  8581. width:188px;
  8582. height:31px;
  8583. padding:2px 2px 2px 2px;
  8584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8585. font-weight:400;
  8586. font-style:normal;
  8587. font-size:13px;
  8588. letter-spacing:normal;
  8589. color:#AAAAAA;
  8590. vertical-align:none;
  8591. text-align:left;
  8592. text-transform:none;
  8593. background-color:transparent;
  8594. border-color:transparent;
  8595. }
  8596. #u60485_div {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:0px;
  8600. top:0px;
  8601. width:188px;
  8602. height:31px;
  8603. background:inherit;
  8604. background-color:rgba(255, 255, 255, 0);
  8605. border:none;
  8606. border-radius:0px;
  8607. -moz-box-shadow:none;
  8608. -webkit-box-shadow:none;
  8609. box-shadow:none;
  8610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8611. font-weight:400;
  8612. font-style:normal;
  8613. color:#AAAAAA;
  8614. }
  8615. #u60485 {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:1791px;
  8619. top:824px;
  8620. width:188px;
  8621. height:31px;
  8622. display:flex;
  8623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8624. font-weight:400;
  8625. font-style:normal;
  8626. color:#AAAAAA;
  8627. }
  8628. #u60485 .text {
  8629. position:absolute;
  8630. align-self:center;
  8631. padding:2px 2px 2px 2px;
  8632. box-sizing:border-box;
  8633. width:100%;
  8634. }
  8635. #u60485_div.disabled {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:188px;
  8641. height:31px;
  8642. background:inherit;
  8643. background-color:rgba(240, 240, 240, 1);
  8644. border:none;
  8645. border-radius:0px;
  8646. -moz-box-shadow:none;
  8647. -webkit-box-shadow:none;
  8648. box-shadow:none;
  8649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8650. font-weight:400;
  8651. font-style:normal;
  8652. color:#AAAAAA;
  8653. }
  8654. #u60485.disabled {
  8655. }
  8656. #u60486_div {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:0px;
  8660. top:0px;
  8661. width:64px;
  8662. height:30px;
  8663. background:inherit;
  8664. background-color:rgba(255, 255, 255, 0);
  8665. border:none;
  8666. border-top:0px;
  8667. border-right:0px;
  8668. border-bottom:0px;
  8669. border-radius:0px;
  8670. border-top-left-radius:0px;
  8671. border-bottom-left-radius:0px;
  8672. -moz-box-shadow:none;
  8673. -webkit-box-shadow:none;
  8674. box-shadow:none;
  8675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8676. font-weight:400;
  8677. font-style:normal;
  8678. font-size:14px;
  8679. text-align:right;
  8680. }
  8681. #u60486 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:1707px;
  8685. top:824px;
  8686. width:64px;
  8687. height:30px;
  8688. display:flex;
  8689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8690. font-weight:400;
  8691. font-style:normal;
  8692. font-size:14px;
  8693. text-align:right;
  8694. }
  8695. #u60486 .text {
  8696. position:absolute;
  8697. align-self:center;
  8698. padding:5px 0px 5px 0px;
  8699. box-sizing:border-box;
  8700. width:100%;
  8701. }
  8702. #u60486_text {
  8703. border-width:0px;
  8704. white-space:nowrap;
  8705. text-transform:none;
  8706. }
  8707. #u60487 {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:0px;
  8713. height:0px;
  8714. }
  8715. #u60488_div {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:0px;
  8719. top:0px;
  8720. width:400px;
  8721. height:40px;
  8722. background:inherit;
  8723. background-color:rgba(255, 255, 255, 1);
  8724. box-sizing:border-box;
  8725. border-width:1px;
  8726. border-style:solid;
  8727. border-color:rgba(170, 170, 170, 1);
  8728. border-radius:4px;
  8729. -moz-box-shadow:none;
  8730. -webkit-box-shadow:none;
  8731. box-shadow:none;
  8732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8733. font-weight:400;
  8734. font-style:normal;
  8735. text-align:left;
  8736. }
  8737. #u60488 {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:1781px;
  8741. top:619px;
  8742. width:400px;
  8743. height:40px;
  8744. display:flex;
  8745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8746. font-weight:400;
  8747. font-style:normal;
  8748. text-align:left;
  8749. }
  8750. #u60488 .text {
  8751. position:absolute;
  8752. align-self:center;
  8753. padding:2px 2px 2px 10px;
  8754. box-sizing:border-box;
  8755. width:100%;
  8756. }
  8757. #u60488_text {
  8758. border-width:0px;
  8759. word-wrap:break-word;
  8760. text-transform:none;
  8761. visibility:hidden;
  8762. }
  8763. #u60489_input {
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:188px;
  8768. height:31px;
  8769. padding:2px 2px 2px 2px;
  8770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8771. font-weight:400;
  8772. font-style:normal;
  8773. font-size:13px;
  8774. letter-spacing:normal;
  8775. color:#AAAAAA;
  8776. vertical-align:none;
  8777. text-align:left;
  8778. text-transform:none;
  8779. background-color:transparent;
  8780. border-color:transparent;
  8781. }
  8782. #u60489_input.disabled {
  8783. position:absolute;
  8784. left:0px;
  8785. top:0px;
  8786. width:188px;
  8787. height:31px;
  8788. padding:2px 2px 2px 2px;
  8789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8790. font-weight:400;
  8791. font-style:normal;
  8792. font-size:13px;
  8793. letter-spacing:normal;
  8794. color:#AAAAAA;
  8795. vertical-align:none;
  8796. text-align:left;
  8797. text-transform:none;
  8798. background-color:transparent;
  8799. border-color:transparent;
  8800. }
  8801. #u60489_div {
  8802. border-width:0px;
  8803. position:absolute;
  8804. left:0px;
  8805. top:0px;
  8806. width:188px;
  8807. height:31px;
  8808. background:inherit;
  8809. background-color:rgba(255, 255, 255, 0);
  8810. border:none;
  8811. border-radius:0px;
  8812. -moz-box-shadow:none;
  8813. -webkit-box-shadow:none;
  8814. box-shadow:none;
  8815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8816. font-weight:400;
  8817. font-style:normal;
  8818. color:#AAAAAA;
  8819. }
  8820. #u60489 {
  8821. border-width:0px;
  8822. position:absolute;
  8823. left:1791px;
  8824. top:624px;
  8825. width:188px;
  8826. height:31px;
  8827. display:flex;
  8828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8829. font-weight:400;
  8830. font-style:normal;
  8831. color:#AAAAAA;
  8832. }
  8833. #u60489 .text {
  8834. position:absolute;
  8835. align-self:center;
  8836. padding:2px 2px 2px 2px;
  8837. box-sizing:border-box;
  8838. width:100%;
  8839. }
  8840. #u60489_div.disabled {
  8841. border-width:0px;
  8842. position:absolute;
  8843. left:0px;
  8844. top:0px;
  8845. width:188px;
  8846. height:31px;
  8847. background:inherit;
  8848. background-color:rgba(240, 240, 240, 1);
  8849. border:none;
  8850. border-radius:0px;
  8851. -moz-box-shadow:none;
  8852. -webkit-box-shadow:none;
  8853. box-shadow:none;
  8854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8855. font-weight:400;
  8856. font-style:normal;
  8857. color:#AAAAAA;
  8858. }
  8859. #u60489.disabled {
  8860. }
  8861. #u60490_div {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:64px;
  8867. height:30px;
  8868. background:inherit;
  8869. background-color:rgba(255, 255, 255, 0);
  8870. border:none;
  8871. border-top:0px;
  8872. border-right:0px;
  8873. border-bottom:0px;
  8874. border-radius:0px;
  8875. border-top-left-radius:0px;
  8876. border-bottom-left-radius:0px;
  8877. -moz-box-shadow:none;
  8878. -webkit-box-shadow:none;
  8879. box-shadow:none;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. font-size:14px;
  8884. text-align:right;
  8885. }
  8886. #u60490 {
  8887. border-width:0px;
  8888. position:absolute;
  8889. left:1707px;
  8890. top:624px;
  8891. width:64px;
  8892. height:30px;
  8893. display:flex;
  8894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8895. font-weight:400;
  8896. font-style:normal;
  8897. font-size:14px;
  8898. text-align:right;
  8899. }
  8900. #u60490 .text {
  8901. position:absolute;
  8902. align-self:center;
  8903. padding:5px 0px 5px 0px;
  8904. box-sizing:border-box;
  8905. width:100%;
  8906. }
  8907. #u60490_text {
  8908. border-width:0px;
  8909. white-space:nowrap;
  8910. text-transform:none;
  8911. }
  8912. #u60491_div {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:0px;
  8916. top:0px;
  8917. width:78px;
  8918. height:30px;
  8919. background:inherit;
  8920. background-color:rgba(255, 255, 255, 0);
  8921. border:none;
  8922. border-top:0px;
  8923. border-right:0px;
  8924. border-bottom:0px;
  8925. border-radius:0px;
  8926. border-top-left-radius:0px;
  8927. border-bottom-left-radius:0px;
  8928. -moz-box-shadow:none;
  8929. -webkit-box-shadow:none;
  8930. box-shadow:none;
  8931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8932. font-weight:400;
  8933. font-style:normal;
  8934. font-size:14px;
  8935. text-align:right;
  8936. }
  8937. #u60491 {
  8938. border-width:0px;
  8939. position:absolute;
  8940. left:1693px;
  8941. top:674px;
  8942. width:78px;
  8943. height:30px;
  8944. display:flex;
  8945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8946. font-weight:400;
  8947. font-style:normal;
  8948. font-size:14px;
  8949. text-align:right;
  8950. }
  8951. #u60491 .text {
  8952. position:absolute;
  8953. align-self:center;
  8954. padding:5px 0px 5px 0px;
  8955. box-sizing:border-box;
  8956. width:100%;
  8957. }
  8958. #u60491_text {
  8959. border-width:0px;
  8960. white-space:nowrap;
  8961. text-transform:none;
  8962. }
  8963. #u60492_div {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:78px;
  8969. height:30px;
  8970. background:inherit;
  8971. background-color:rgba(255, 255, 255, 0);
  8972. border:none;
  8973. border-top:0px;
  8974. border-right:0px;
  8975. border-bottom:0px;
  8976. border-radius:0px;
  8977. border-top-left-radius:0px;
  8978. border-bottom-left-radius:0px;
  8979. -moz-box-shadow:none;
  8980. -webkit-box-shadow:none;
  8981. box-shadow:none;
  8982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8983. font-weight:400;
  8984. font-style:normal;
  8985. font-size:14px;
  8986. text-align:right;
  8987. }
  8988. #u60492 {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:1693px;
  8992. top:724px;
  8993. width:78px;
  8994. height:30px;
  8995. display:flex;
  8996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8997. font-weight:400;
  8998. font-style:normal;
  8999. font-size:14px;
  9000. text-align:right;
  9001. }
  9002. #u60492 .text {
  9003. position:absolute;
  9004. align-self:center;
  9005. padding:5px 0px 5px 0px;
  9006. box-sizing:border-box;
  9007. width:100%;
  9008. }
  9009. #u60492_text {
  9010. border-width:0px;
  9011. white-space:nowrap;
  9012. text-transform:none;
  9013. }
  9014. #u60493 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:0px;
  9018. top:0px;
  9019. width:0px;
  9020. height:0px;
  9021. }
  9022. #u60494_div {
  9023. border-width:0px;
  9024. position:absolute;
  9025. left:0px;
  9026. top:0px;
  9027. width:400px;
  9028. height:40px;
  9029. background:inherit;
  9030. background-color:rgba(255, 255, 255, 1);
  9031. box-sizing:border-box;
  9032. border-width:1px;
  9033. border-style:solid;
  9034. border-color:rgba(170, 170, 170, 1);
  9035. border-radius:4px;
  9036. -moz-box-shadow:none;
  9037. -webkit-box-shadow:none;
  9038. box-shadow:none;
  9039. }
  9040. #u60494 {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:1781px;
  9044. top:669px;
  9045. width:400px;
  9046. height:40px;
  9047. display:flex;
  9048. }
  9049. #u60494 .text {
  9050. position:absolute;
  9051. align-self:center;
  9052. padding:2px 2px 2px 0px;
  9053. box-sizing:border-box;
  9054. width:100%;
  9055. }
  9056. #u60494_text {
  9057. border-width:0px;
  9058. word-wrap:break-word;
  9059. text-transform:none;
  9060. visibility:hidden;
  9061. }
  9062. #u60495_input {
  9063. position:absolute;
  9064. left:0px;
  9065. top:0px;
  9066. width:380px;
  9067. height:30px;
  9068. padding:2px 2px 2px 0px;
  9069. font-family:'ArialMT', 'Arial', sans-serif;
  9070. font-weight:400;
  9071. font-style:normal;
  9072. font-size:13px;
  9073. letter-spacing:normal;
  9074. color:#AAAAAA;
  9075. vertical-align:none;
  9076. text-align:left;
  9077. text-transform:none;
  9078. background-color:transparent;
  9079. border-color:transparent;
  9080. }
  9081. #u60495_input.disabled {
  9082. position:absolute;
  9083. left:0px;
  9084. top:0px;
  9085. width:380px;
  9086. height:30px;
  9087. padding:2px 2px 2px 0px;
  9088. font-family:'ArialMT', 'Arial', sans-serif;
  9089. font-weight:400;
  9090. font-style:normal;
  9091. font-size:13px;
  9092. letter-spacing:normal;
  9093. color:#AAAAAA;
  9094. vertical-align:none;
  9095. text-align:left;
  9096. text-transform:none;
  9097. background-color:transparent;
  9098. border-color:transparent;
  9099. }
  9100. #u60495_div {
  9101. border-width:0px;
  9102. position:absolute;
  9103. left:0px;
  9104. top:0px;
  9105. width:380px;
  9106. height:30px;
  9107. background:inherit;
  9108. background-color:rgba(255, 255, 255, 1);
  9109. border:none;
  9110. border-radius:0px;
  9111. -moz-box-shadow:none;
  9112. -webkit-box-shadow:none;
  9113. box-shadow:none;
  9114. color:#AAAAAA;
  9115. }
  9116. #u60495 {
  9117. border-width:0px;
  9118. position:absolute;
  9119. left:1791px;
  9120. top:673px;
  9121. width:380px;
  9122. height:30px;
  9123. display:flex;
  9124. color:#AAAAAA;
  9125. }
  9126. #u60495 .text {
  9127. position:absolute;
  9128. align-self:flex-start;
  9129. padding:2px 2px 2px 0px;
  9130. box-sizing:border-box;
  9131. width:100%;
  9132. }
  9133. #u60495_div.disabled {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:380px;
  9139. height:30px;
  9140. background:inherit;
  9141. background-color:rgba(240, 240, 240, 1);
  9142. border:none;
  9143. border-radius:0px;
  9144. -moz-box-shadow:none;
  9145. -webkit-box-shadow:none;
  9146. box-shadow:none;
  9147. color:#AAAAAA;
  9148. }
  9149. #u60495.disabled {
  9150. }
  9151. .u60495_input_option {
  9152. }
  9153. #u60496 {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:0px;
  9157. top:0px;
  9158. width:0px;
  9159. height:0px;
  9160. }
  9161. #u60497_div {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:0px;
  9165. top:0px;
  9166. width:400px;
  9167. height:40px;
  9168. background:inherit;
  9169. background-color:rgba(255, 255, 255, 1);
  9170. box-sizing:border-box;
  9171. border-width:1px;
  9172. border-style:solid;
  9173. border-color:rgba(170, 170, 170, 1);
  9174. border-radius:4px;
  9175. -moz-box-shadow:none;
  9176. -webkit-box-shadow:none;
  9177. box-shadow:none;
  9178. }
  9179. #u60497 {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:1781px;
  9183. top:719px;
  9184. width:400px;
  9185. height:40px;
  9186. display:flex;
  9187. }
  9188. #u60497 .text {
  9189. position:absolute;
  9190. align-self:center;
  9191. padding:2px 2px 2px 0px;
  9192. box-sizing:border-box;
  9193. width:100%;
  9194. }
  9195. #u60497_text {
  9196. border-width:0px;
  9197. word-wrap:break-word;
  9198. text-transform:none;
  9199. visibility:hidden;
  9200. }
  9201. #u60498_input {
  9202. position:absolute;
  9203. left:0px;
  9204. top:0px;
  9205. width:380px;
  9206. height:30px;
  9207. padding:2px 2px 2px 0px;
  9208. font-family:'ArialMT', 'Arial', sans-serif;
  9209. font-weight:400;
  9210. font-style:normal;
  9211. font-size:13px;
  9212. letter-spacing:normal;
  9213. color:#AAAAAA;
  9214. vertical-align:none;
  9215. text-align:left;
  9216. text-transform:none;
  9217. background-color:transparent;
  9218. border-color:transparent;
  9219. }
  9220. #u60498_input.disabled {
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:380px;
  9225. height:30px;
  9226. padding:2px 2px 2px 0px;
  9227. font-family:'ArialMT', 'Arial', sans-serif;
  9228. font-weight:400;
  9229. font-style:normal;
  9230. font-size:13px;
  9231. letter-spacing:normal;
  9232. color:#AAAAAA;
  9233. vertical-align:none;
  9234. text-align:left;
  9235. text-transform:none;
  9236. background-color:transparent;
  9237. border-color:transparent;
  9238. }
  9239. #u60498_div {
  9240. border-width:0px;
  9241. position:absolute;
  9242. left:0px;
  9243. top:0px;
  9244. width:380px;
  9245. height:30px;
  9246. background:inherit;
  9247. background-color:rgba(255, 255, 255, 1);
  9248. border:none;
  9249. border-radius:0px;
  9250. -moz-box-shadow:none;
  9251. -webkit-box-shadow:none;
  9252. box-shadow:none;
  9253. color:#AAAAAA;
  9254. }
  9255. #u60498 {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:1791px;
  9259. top:723px;
  9260. width:380px;
  9261. height:30px;
  9262. display:flex;
  9263. color:#AAAAAA;
  9264. }
  9265. #u60498 .text {
  9266. position:absolute;
  9267. align-self:flex-start;
  9268. padding:2px 2px 2px 0px;
  9269. box-sizing:border-box;
  9270. width:100%;
  9271. }
  9272. #u60498_div.disabled {
  9273. border-width:0px;
  9274. position:absolute;
  9275. left:0px;
  9276. top:0px;
  9277. width:380px;
  9278. height:30px;
  9279. background:inherit;
  9280. background-color:rgba(240, 240, 240, 1);
  9281. border:none;
  9282. border-radius:0px;
  9283. -moz-box-shadow:none;
  9284. -webkit-box-shadow:none;
  9285. box-shadow:none;
  9286. color:#AAAAAA;
  9287. }
  9288. #u60498.disabled {
  9289. }
  9290. .u60498_input_option {
  9291. }
  9292. #u60499 {
  9293. border-width:0px;
  9294. position:absolute;
  9295. left:0px;
  9296. top:0px;
  9297. width:0px;
  9298. height:0px;
  9299. }
  9300. #u60500_div {
  9301. border-width:0px;
  9302. position:absolute;
  9303. left:0px;
  9304. top:0px;
  9305. width:400px;
  9306. height:40px;
  9307. background:inherit;
  9308. background-color:rgba(255, 255, 255, 1);
  9309. box-sizing:border-box;
  9310. border-width:1px;
  9311. border-style:solid;
  9312. border-color:rgba(170, 170, 170, 1);
  9313. border-radius:4px;
  9314. -moz-box-shadow:none;
  9315. -webkit-box-shadow:none;
  9316. box-shadow:none;
  9317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9318. font-weight:400;
  9319. font-style:normal;
  9320. text-align:left;
  9321. }
  9322. #u60500 {
  9323. border-width:0px;
  9324. position:absolute;
  9325. left:1781px;
  9326. top:869px;
  9327. width:400px;
  9328. height:40px;
  9329. display:flex;
  9330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9331. font-weight:400;
  9332. font-style:normal;
  9333. text-align:left;
  9334. }
  9335. #u60500 .text {
  9336. position:absolute;
  9337. align-self:center;
  9338. padding:2px 2px 2px 10px;
  9339. box-sizing:border-box;
  9340. width:100%;
  9341. }
  9342. #u60500_text {
  9343. border-width:0px;
  9344. word-wrap:break-word;
  9345. text-transform:none;
  9346. visibility:hidden;
  9347. }
  9348. #u60501_input {
  9349. position:absolute;
  9350. left:0px;
  9351. top:0px;
  9352. width:188px;
  9353. height:31px;
  9354. padding:2px 2px 2px 2px;
  9355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9356. font-weight:400;
  9357. font-style:normal;
  9358. font-size:13px;
  9359. letter-spacing:normal;
  9360. color:#AAAAAA;
  9361. vertical-align:none;
  9362. text-align:left;
  9363. text-transform:none;
  9364. background-color:transparent;
  9365. border-color:transparent;
  9366. }
  9367. #u60501_input.disabled {
  9368. position:absolute;
  9369. left:0px;
  9370. top:0px;
  9371. width:188px;
  9372. height:31px;
  9373. padding:2px 2px 2px 2px;
  9374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9375. font-weight:400;
  9376. font-style:normal;
  9377. font-size:13px;
  9378. letter-spacing:normal;
  9379. color:#AAAAAA;
  9380. vertical-align:none;
  9381. text-align:left;
  9382. text-transform:none;
  9383. background-color:transparent;
  9384. border-color:transparent;
  9385. }
  9386. #u60501_div {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:0px;
  9390. top:0px;
  9391. width:188px;
  9392. height:31px;
  9393. background:inherit;
  9394. background-color:rgba(255, 255, 255, 0);
  9395. border:none;
  9396. border-radius:0px;
  9397. -moz-box-shadow:none;
  9398. -webkit-box-shadow:none;
  9399. box-shadow:none;
  9400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9401. font-weight:400;
  9402. font-style:normal;
  9403. color:#AAAAAA;
  9404. }
  9405. #u60501 {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:1791px;
  9409. top:874px;
  9410. width:188px;
  9411. height:31px;
  9412. display:flex;
  9413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9414. font-weight:400;
  9415. font-style:normal;
  9416. color:#AAAAAA;
  9417. }
  9418. #u60501 .text {
  9419. position:absolute;
  9420. align-self:center;
  9421. padding:2px 2px 2px 2px;
  9422. box-sizing:border-box;
  9423. width:100%;
  9424. }
  9425. #u60501_div.disabled {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:0px;
  9429. top:0px;
  9430. width:188px;
  9431. height:31px;
  9432. background:inherit;
  9433. background-color:rgba(240, 240, 240, 1);
  9434. border:none;
  9435. border-radius:0px;
  9436. -moz-box-shadow:none;
  9437. -webkit-box-shadow:none;
  9438. box-shadow:none;
  9439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9440. font-weight:400;
  9441. font-style:normal;
  9442. color:#AAAAAA;
  9443. }
  9444. #u60501.disabled {
  9445. }
  9446. #u60502_div {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:0px;
  9450. top:0px;
  9451. width:50px;
  9452. height:30px;
  9453. background:inherit;
  9454. background-color:rgba(255, 255, 255, 0);
  9455. border:none;
  9456. border-top:0px;
  9457. border-right:0px;
  9458. border-bottom:0px;
  9459. border-radius:0px;
  9460. border-top-left-radius:0px;
  9461. border-bottom-left-radius:0px;
  9462. -moz-box-shadow:none;
  9463. -webkit-box-shadow:none;
  9464. box-shadow:none;
  9465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9466. font-weight:400;
  9467. font-style:normal;
  9468. font-size:14px;
  9469. text-align:right;
  9470. }
  9471. #u60502 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:1721px;
  9475. top:874px;
  9476. width:50px;
  9477. height:30px;
  9478. display:flex;
  9479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9480. font-weight:400;
  9481. font-style:normal;
  9482. font-size:14px;
  9483. text-align:right;
  9484. }
  9485. #u60502 .text {
  9486. position:absolute;
  9487. align-self:center;
  9488. padding:5px 0px 5px 0px;
  9489. box-sizing:border-box;
  9490. width:100%;
  9491. }
  9492. #u60502_text {
  9493. border-width:0px;
  9494. white-space:nowrap;
  9495. text-transform:none;
  9496. }
  9497. #u60503_div {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:0px;
  9501. top:0px;
  9502. width:71px;
  9503. height:30px;
  9504. background:inherit;
  9505. background-color:rgba(255, 255, 255, 0);
  9506. border:none;
  9507. border-top:0px;
  9508. border-right:0px;
  9509. border-bottom:0px;
  9510. border-radius:0px;
  9511. border-top-left-radius:0px;
  9512. border-bottom-left-radius:0px;
  9513. -moz-box-shadow:none;
  9514. -webkit-box-shadow:none;
  9515. box-shadow:none;
  9516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9517. font-weight:400;
  9518. font-style:normal;
  9519. font-size:14px;
  9520. text-align:right;
  9521. }
  9522. #u60503 {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:1700px;
  9526. top:774px;
  9527. width:71px;
  9528. height:30px;
  9529. display:flex;
  9530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9531. font-weight:400;
  9532. font-style:normal;
  9533. font-size:14px;
  9534. text-align:right;
  9535. }
  9536. #u60503 .text {
  9537. position:absolute;
  9538. align-self:center;
  9539. padding:5px 0px 5px 0px;
  9540. box-sizing:border-box;
  9541. width:100%;
  9542. }
  9543. #u60503_text {
  9544. border-width:0px;
  9545. white-space:nowrap;
  9546. text-transform:none;
  9547. }
  9548. #u60504 {
  9549. border-width:0px;
  9550. position:absolute;
  9551. left:0px;
  9552. top:0px;
  9553. width:0px;
  9554. height:0px;
  9555. }
  9556. #u60505_div {
  9557. border-width:0px;
  9558. position:absolute;
  9559. left:0px;
  9560. top:0px;
  9561. width:400px;
  9562. height:40px;
  9563. background:inherit;
  9564. background-color:rgba(255, 255, 255, 1);
  9565. box-sizing:border-box;
  9566. border-width:1px;
  9567. border-style:solid;
  9568. border-color:rgba(170, 170, 170, 1);
  9569. border-radius:4px;
  9570. -moz-box-shadow:none;
  9571. -webkit-box-shadow:none;
  9572. box-shadow:none;
  9573. }
  9574. #u60505 {
  9575. border-width:0px;
  9576. position:absolute;
  9577. left:1781px;
  9578. top:769px;
  9579. width:400px;
  9580. height:40px;
  9581. display:flex;
  9582. }
  9583. #u60505 .text {
  9584. position:absolute;
  9585. align-self:center;
  9586. padding:2px 2px 2px 0px;
  9587. box-sizing:border-box;
  9588. width:100%;
  9589. }
  9590. #u60505_text {
  9591. border-width:0px;
  9592. word-wrap:break-word;
  9593. text-transform:none;
  9594. visibility:hidden;
  9595. }
  9596. #u60506_input {
  9597. position:absolute;
  9598. left:0px;
  9599. top:0px;
  9600. width:380px;
  9601. height:30px;
  9602. padding:2px 2px 2px 0px;
  9603. font-family:'ArialMT', 'Arial', sans-serif;
  9604. font-weight:400;
  9605. font-style:normal;
  9606. font-size:13px;
  9607. letter-spacing:normal;
  9608. color:#AAAAAA;
  9609. vertical-align:none;
  9610. text-align:left;
  9611. text-transform:none;
  9612. background-color:transparent;
  9613. border-color:transparent;
  9614. }
  9615. #u60506_input.disabled {
  9616. position:absolute;
  9617. left:0px;
  9618. top:0px;
  9619. width:380px;
  9620. height:30px;
  9621. padding:2px 2px 2px 0px;
  9622. font-family:'ArialMT', 'Arial', sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. font-size:13px;
  9626. letter-spacing:normal;
  9627. color:#AAAAAA;
  9628. vertical-align:none;
  9629. text-align:left;
  9630. text-transform:none;
  9631. background-color:transparent;
  9632. border-color:transparent;
  9633. }
  9634. #u60506_div {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:0px;
  9638. top:0px;
  9639. width:380px;
  9640. height:30px;
  9641. background:inherit;
  9642. background-color:rgba(255, 255, 255, 1);
  9643. border:none;
  9644. border-radius:0px;
  9645. -moz-box-shadow:none;
  9646. -webkit-box-shadow:none;
  9647. box-shadow:none;
  9648. color:#AAAAAA;
  9649. }
  9650. #u60506 {
  9651. border-width:0px;
  9652. position:absolute;
  9653. left:1791px;
  9654. top:773px;
  9655. width:380px;
  9656. height:30px;
  9657. display:flex;
  9658. color:#AAAAAA;
  9659. }
  9660. #u60506 .text {
  9661. position:absolute;
  9662. align-self:flex-start;
  9663. padding:2px 2px 2px 0px;
  9664. box-sizing:border-box;
  9665. width:100%;
  9666. }
  9667. #u60506_div.disabled {
  9668. border-width:0px;
  9669. position:absolute;
  9670. left:0px;
  9671. top:0px;
  9672. width:380px;
  9673. height:30px;
  9674. background:inherit;
  9675. background-color:rgba(240, 240, 240, 1);
  9676. border:none;
  9677. border-radius:0px;
  9678. -moz-box-shadow:none;
  9679. -webkit-box-shadow:none;
  9680. box-shadow:none;
  9681. color:#AAAAAA;
  9682. }
  9683. #u60506.disabled {
  9684. }
  9685. .u60506_input_option {
  9686. }
  9687. #u60507_div {
  9688. border-width:0px;
  9689. position:absolute;
  9690. left:0px;
  9691. top:0px;
  9692. width:78px;
  9693. height:30px;
  9694. background:inherit;
  9695. background-color:rgba(255, 255, 255, 0);
  9696. border:none;
  9697. border-top:0px;
  9698. border-right:0px;
  9699. border-bottom:0px;
  9700. border-radius:0px;
  9701. border-top-left-radius:0px;
  9702. border-bottom-left-radius:0px;
  9703. -moz-box-shadow:none;
  9704. -webkit-box-shadow:none;
  9705. box-shadow:none;
  9706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9707. font-weight:400;
  9708. font-style:normal;
  9709. font-size:14px;
  9710. text-align:right;
  9711. }
  9712. #u60507 {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:1693px;
  9716. top:174px;
  9717. width:78px;
  9718. height:30px;
  9719. display:flex;
  9720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9721. font-weight:400;
  9722. font-style:normal;
  9723. font-size:14px;
  9724. text-align:right;
  9725. }
  9726. #u60507 .text {
  9727. position:absolute;
  9728. align-self:center;
  9729. padding:5px 0px 5px 0px;
  9730. box-sizing:border-box;
  9731. width:100%;
  9732. }
  9733. #u60507_text {
  9734. border-width:0px;
  9735. white-space:nowrap;
  9736. text-transform:none;
  9737. }
  9738. #u60508 {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:0px;
  9742. top:0px;
  9743. width:0px;
  9744. height:0px;
  9745. }
  9746. #u60509_div {
  9747. border-width:0px;
  9748. position:absolute;
  9749. left:0px;
  9750. top:0px;
  9751. width:400px;
  9752. height:40px;
  9753. background:inherit;
  9754. background-color:rgba(255, 255, 255, 1);
  9755. box-sizing:border-box;
  9756. border-width:1px;
  9757. border-style:solid;
  9758. border-color:rgba(170, 170, 170, 1);
  9759. border-radius:4px;
  9760. -moz-box-shadow:none;
  9761. -webkit-box-shadow:none;
  9762. box-shadow:none;
  9763. }
  9764. #u60509 {
  9765. border-width:0px;
  9766. position:absolute;
  9767. left:1781px;
  9768. top:169px;
  9769. width:400px;
  9770. height:40px;
  9771. display:flex;
  9772. }
  9773. #u60509 .text {
  9774. position:absolute;
  9775. align-self:center;
  9776. padding:2px 2px 2px 0px;
  9777. box-sizing:border-box;
  9778. width:100%;
  9779. }
  9780. #u60509_text {
  9781. border-width:0px;
  9782. word-wrap:break-word;
  9783. text-transform:none;
  9784. visibility:hidden;
  9785. }
  9786. #u60510_input {
  9787. position:absolute;
  9788. left:0px;
  9789. top:0px;
  9790. width:380px;
  9791. height:30px;
  9792. padding:2px 2px 2px 0px;
  9793. font-family:'ArialMT', 'Arial', sans-serif;
  9794. font-weight:400;
  9795. font-style:normal;
  9796. font-size:13px;
  9797. letter-spacing:normal;
  9798. color:#AAAAAA;
  9799. vertical-align:none;
  9800. text-align:left;
  9801. text-transform:none;
  9802. background-color:transparent;
  9803. border-color:transparent;
  9804. }
  9805. #u60510_input.disabled {
  9806. position:absolute;
  9807. left:0px;
  9808. top:0px;
  9809. width:380px;
  9810. height:30px;
  9811. padding:2px 2px 2px 0px;
  9812. font-family:'ArialMT', 'Arial', sans-serif;
  9813. font-weight:400;
  9814. font-style:normal;
  9815. font-size:13px;
  9816. letter-spacing:normal;
  9817. color:#AAAAAA;
  9818. vertical-align:none;
  9819. text-align:left;
  9820. text-transform:none;
  9821. background-color:transparent;
  9822. border-color:transparent;
  9823. }
  9824. #u60510_div {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:0px;
  9828. top:0px;
  9829. width:380px;
  9830. height:30px;
  9831. background:inherit;
  9832. background-color:rgba(255, 255, 255, 1);
  9833. border:none;
  9834. border-radius:0px;
  9835. -moz-box-shadow:none;
  9836. -webkit-box-shadow:none;
  9837. box-shadow:none;
  9838. color:#AAAAAA;
  9839. }
  9840. #u60510 {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:1791px;
  9844. top:173px;
  9845. width:380px;
  9846. height:30px;
  9847. display:flex;
  9848. color:#AAAAAA;
  9849. }
  9850. #u60510 .text {
  9851. position:absolute;
  9852. align-self:flex-start;
  9853. padding:2px 2px 2px 0px;
  9854. box-sizing:border-box;
  9855. width:100%;
  9856. }
  9857. #u60510_div.disabled {
  9858. border-width:0px;
  9859. position:absolute;
  9860. left:0px;
  9861. top:0px;
  9862. width:380px;
  9863. height:30px;
  9864. background:inherit;
  9865. background-color:rgba(240, 240, 240, 1);
  9866. border:none;
  9867. border-radius:0px;
  9868. -moz-box-shadow:none;
  9869. -webkit-box-shadow:none;
  9870. box-shadow:none;
  9871. color:#AAAAAA;
  9872. }
  9873. #u60510.disabled {
  9874. }
  9875. .u60510_input_option {
  9876. }
  9877. #u60511_div {
  9878. border-width:0px;
  9879. position:absolute;
  9880. left:0px;
  9881. top:0px;
  9882. width:71px;
  9883. height:30px;
  9884. background:inherit;
  9885. background-color:rgba(255, 255, 255, 0);
  9886. border:none;
  9887. border-top:0px;
  9888. border-right:0px;
  9889. border-bottom:0px;
  9890. border-radius:0px;
  9891. border-top-left-radius:0px;
  9892. border-bottom-left-radius:0px;
  9893. -moz-box-shadow:none;
  9894. -webkit-box-shadow:none;
  9895. box-shadow:none;
  9896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9897. font-weight:400;
  9898. font-style:normal;
  9899. font-size:14px;
  9900. text-align:right;
  9901. }
  9902. #u60511 {
  9903. border-width:0px;
  9904. position:absolute;
  9905. left:1700px;
  9906. top:924px;
  9907. width:71px;
  9908. height:30px;
  9909. display:flex;
  9910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9911. font-weight:400;
  9912. font-style:normal;
  9913. font-size:14px;
  9914. text-align:right;
  9915. }
  9916. #u60511 .text {
  9917. position:absolute;
  9918. align-self:center;
  9919. padding:5px 0px 5px 0px;
  9920. box-sizing:border-box;
  9921. width:100%;
  9922. }
  9923. #u60511_text {
  9924. border-width:0px;
  9925. white-space:nowrap;
  9926. text-transform:none;
  9927. }
  9928. #u60512 {
  9929. border-width:0px;
  9930. position:absolute;
  9931. left:0px;
  9932. top:0px;
  9933. width:0px;
  9934. height:0px;
  9935. }
  9936. #u60513_div {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:0px;
  9940. top:0px;
  9941. width:400px;
  9942. height:40px;
  9943. background:inherit;
  9944. background-color:rgba(255, 255, 255, 1);
  9945. box-sizing:border-box;
  9946. border-width:1px;
  9947. border-style:solid;
  9948. border-color:rgba(170, 170, 170, 1);
  9949. border-radius:4px;
  9950. -moz-box-shadow:none;
  9951. -webkit-box-shadow:none;
  9952. box-shadow:none;
  9953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9954. font-weight:400;
  9955. font-style:normal;
  9956. text-align:left;
  9957. }
  9958. #u60513 {
  9959. border-width:0px;
  9960. position:absolute;
  9961. left:1781px;
  9962. top:919px;
  9963. width:400px;
  9964. height:40px;
  9965. display:flex;
  9966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9967. font-weight:400;
  9968. font-style:normal;
  9969. text-align:left;
  9970. }
  9971. #u60513 .text {
  9972. position:absolute;
  9973. align-self:center;
  9974. padding:2px 2px 2px 10px;
  9975. box-sizing:border-box;
  9976. width:100%;
  9977. }
  9978. #u60513_text {
  9979. border-width:0px;
  9980. word-wrap:break-word;
  9981. text-transform:none;
  9982. visibility:hidden;
  9983. }
  9984. #u60514_input {
  9985. position:absolute;
  9986. left:0px;
  9987. top:0px;
  9988. width:380px;
  9989. height:31px;
  9990. padding:2px 2px 2px 2px;
  9991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9992. font-weight:400;
  9993. font-style:normal;
  9994. font-size:13px;
  9995. letter-spacing:normal;
  9996. color:#AAAAAA;
  9997. vertical-align:none;
  9998. text-align:left;
  9999. text-transform:none;
  10000. background-color:transparent;
  10001. border-color:transparent;
  10002. }
  10003. #u60514_input.disabled {
  10004. position:absolute;
  10005. left:0px;
  10006. top:0px;
  10007. width:380px;
  10008. height:31px;
  10009. padding:2px 2px 2px 2px;
  10010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10011. font-weight:400;
  10012. font-style:normal;
  10013. font-size:13px;
  10014. letter-spacing:normal;
  10015. color:#AAAAAA;
  10016. vertical-align:none;
  10017. text-align:left;
  10018. text-transform:none;
  10019. background-color:transparent;
  10020. border-color:transparent;
  10021. }
  10022. #u60514_div {
  10023. border-width:0px;
  10024. position:absolute;
  10025. left:0px;
  10026. top:0px;
  10027. width:380px;
  10028. height:31px;
  10029. background:inherit;
  10030. background-color:rgba(255, 255, 255, 0);
  10031. border:none;
  10032. border-radius:0px;
  10033. -moz-box-shadow:none;
  10034. -webkit-box-shadow:none;
  10035. box-shadow:none;
  10036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10037. font-weight:400;
  10038. font-style:normal;
  10039. color:#AAAAAA;
  10040. }
  10041. #u60514 {
  10042. border-width:0px;
  10043. position:absolute;
  10044. left:1791px;
  10045. top:924px;
  10046. width:380px;
  10047. height:31px;
  10048. display:flex;
  10049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10050. font-weight:400;
  10051. font-style:normal;
  10052. color:#AAAAAA;
  10053. }
  10054. #u60514 .text {
  10055. position:absolute;
  10056. align-self:center;
  10057. padding:2px 2px 2px 2px;
  10058. box-sizing:border-box;
  10059. width:100%;
  10060. }
  10061. #u60514_div.disabled {
  10062. border-width:0px;
  10063. position:absolute;
  10064. left:0px;
  10065. top:0px;
  10066. width:380px;
  10067. height:31px;
  10068. background:inherit;
  10069. background-color:rgba(240, 240, 240, 1);
  10070. border:none;
  10071. border-radius:0px;
  10072. -moz-box-shadow:none;
  10073. -webkit-box-shadow:none;
  10074. box-shadow:none;
  10075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10076. font-weight:400;
  10077. font-style:normal;
  10078. color:#AAAAAA;
  10079. }
  10080. #u60514.disabled {
  10081. }
  10082. #u60515 {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:0px;
  10086. top:0px;
  10087. width:0px;
  10088. height:0px;
  10089. }
  10090. #u60516_div {
  10091. border-width:0px;
  10092. position:absolute;
  10093. left:0px;
  10094. top:0px;
  10095. width:400px;
  10096. height:80px;
  10097. background:inherit;
  10098. background-color:rgba(255, 255, 255, 1);
  10099. box-sizing:border-box;
  10100. border-width:1px;
  10101. border-style:solid;
  10102. border-color:rgba(170, 170, 170, 1);
  10103. border-radius:4px;
  10104. -moz-box-shadow:none;
  10105. -webkit-box-shadow:none;
  10106. box-shadow:none;
  10107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10108. font-weight:400;
  10109. font-style:normal;
  10110. text-align:left;
  10111. }
  10112. #u60516 {
  10113. border-width:0px;
  10114. position:absolute;
  10115. left:1781px;
  10116. top:1059px;
  10117. width:400px;
  10118. height:80px;
  10119. display:flex;
  10120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10121. font-weight:400;
  10122. font-style:normal;
  10123. text-align:left;
  10124. }
  10125. #u60516 .text {
  10126. position:absolute;
  10127. align-self:center;
  10128. padding:2px 2px 2px 10px;
  10129. box-sizing:border-box;
  10130. width:100%;
  10131. }
  10132. #u60516_text {
  10133. border-width:0px;
  10134. word-wrap:break-word;
  10135. text-transform:none;
  10136. visibility:hidden;
  10137. }
  10138. #u60517_input {
  10139. position:absolute;
  10140. left:0px;
  10141. top:0px;
  10142. width:188px;
  10143. height:31px;
  10144. padding:2px 2px 2px 2px;
  10145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10146. font-weight:400;
  10147. font-style:normal;
  10148. font-size:13px;
  10149. letter-spacing:normal;
  10150. color:#AAAAAA;
  10151. vertical-align:none;
  10152. text-align:left;
  10153. text-transform:none;
  10154. background-color:transparent;
  10155. border-color:transparent;
  10156. }
  10157. #u60517_input.disabled {
  10158. position:absolute;
  10159. left:0px;
  10160. top:0px;
  10161. width:188px;
  10162. height:31px;
  10163. padding:2px 2px 2px 2px;
  10164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10165. font-weight:400;
  10166. font-style:normal;
  10167. font-size:13px;
  10168. letter-spacing:normal;
  10169. color:#AAAAAA;
  10170. vertical-align:none;
  10171. text-align:left;
  10172. text-transform:none;
  10173. background-color:transparent;
  10174. border-color:transparent;
  10175. }
  10176. #u60517_div {
  10177. border-width:0px;
  10178. position:absolute;
  10179. left:0px;
  10180. top:0px;
  10181. width:188px;
  10182. height:31px;
  10183. background:inherit;
  10184. background-color:rgba(255, 255, 255, 0);
  10185. border:none;
  10186. border-radius:0px;
  10187. -moz-box-shadow:none;
  10188. -webkit-box-shadow:none;
  10189. box-shadow:none;
  10190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10191. font-weight:400;
  10192. font-style:normal;
  10193. color:#AAAAAA;
  10194. }
  10195. #u60517 {
  10196. border-width:0px;
  10197. position:absolute;
  10198. left:1791px;
  10199. top:1064px;
  10200. width:188px;
  10201. height:31px;
  10202. display:flex;
  10203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10204. font-weight:400;
  10205. font-style:normal;
  10206. color:#AAAAAA;
  10207. }
  10208. #u60517 .text {
  10209. position:absolute;
  10210. align-self:center;
  10211. padding:2px 2px 2px 2px;
  10212. box-sizing:border-box;
  10213. width:100%;
  10214. }
  10215. #u60517_div.disabled {
  10216. border-width:0px;
  10217. position:absolute;
  10218. left:0px;
  10219. top:0px;
  10220. width:188px;
  10221. height:31px;
  10222. background:inherit;
  10223. background-color:rgba(240, 240, 240, 1);
  10224. border:none;
  10225. border-radius:0px;
  10226. -moz-box-shadow:none;
  10227. -webkit-box-shadow:none;
  10228. box-shadow:none;
  10229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10230. font-weight:400;
  10231. font-style:normal;
  10232. color:#AAAAAA;
  10233. }
  10234. #u60517.disabled {
  10235. }
  10236. #u60518_div {
  10237. border-width:0px;
  10238. position:absolute;
  10239. left:0px;
  10240. top:0px;
  10241. width:39px;
  10242. height:24px;
  10243. background:inherit;
  10244. background-color:rgba(255, 255, 255, 0);
  10245. border:none;
  10246. border-top:0px;
  10247. border-right:0px;
  10248. border-bottom:0px;
  10249. border-radius:0px;
  10250. border-top-left-radius:0px;
  10251. border-bottom-left-radius:0px;
  10252. -moz-box-shadow:none;
  10253. -webkit-box-shadow:none;
  10254. box-shadow:none;
  10255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10256. font-weight:400;
  10257. font-style:normal;
  10258. font-size:10px;
  10259. color:#AAAAAA;
  10260. text-align:right;
  10261. }
  10262. #u60518 {
  10263. border-width:0px;
  10264. position:absolute;
  10265. left:2139px;
  10266. top:1114px;
  10267. width:39px;
  10268. height:24px;
  10269. display:flex;
  10270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10271. font-weight:400;
  10272. font-style:normal;
  10273. font-size:10px;
  10274. color:#AAAAAA;
  10275. text-align:right;
  10276. }
  10277. #u60518 .text {
  10278. position:absolute;
  10279. align-self:center;
  10280. padding:5px 0px 5px 0px;
  10281. box-sizing:border-box;
  10282. width:100%;
  10283. }
  10284. #u60518_text {
  10285. border-width:0px;
  10286. white-space:nowrap;
  10287. text-transform:none;
  10288. }
  10289. #u60519_div {
  10290. border-width:0px;
  10291. position:absolute;
  10292. left:0px;
  10293. top:0px;
  10294. width:71px;
  10295. height:30px;
  10296. background:inherit;
  10297. background-color:rgba(255, 255, 255, 0);
  10298. border:none;
  10299. border-top:0px;
  10300. border-right:0px;
  10301. border-bottom:0px;
  10302. border-radius:0px;
  10303. border-top-left-radius:0px;
  10304. border-bottom-left-radius:0px;
  10305. -moz-box-shadow:none;
  10306. -webkit-box-shadow:none;
  10307. box-shadow:none;
  10308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10309. font-weight:400;
  10310. font-style:normal;
  10311. font-size:14px;
  10312. text-align:right;
  10313. }
  10314. #u60519 {
  10315. border-width:0px;
  10316. position:absolute;
  10317. left:1700px;
  10318. top:1059px;
  10319. width:71px;
  10320. height:30px;
  10321. display:flex;
  10322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10323. font-weight:400;
  10324. font-style:normal;
  10325. font-size:14px;
  10326. text-align:right;
  10327. }
  10328. #u60519 .text {
  10329. position:absolute;
  10330. align-self:center;
  10331. padding:5px 0px 5px 0px;
  10332. box-sizing:border-box;
  10333. width:100%;
  10334. }
  10335. #u60519_text {
  10336. border-width:0px;
  10337. white-space:nowrap;
  10338. text-transform:none;
  10339. }
  10340. #u60520_div {
  10341. border-width:0px;
  10342. position:absolute;
  10343. left:0px;
  10344. top:0px;
  10345. width:80px;
  10346. height:80px;
  10347. background:inherit;
  10348. background-color:rgba(255, 255, 255, 1);
  10349. box-sizing:border-box;
  10350. border-width:1px;
  10351. border-style:solid;
  10352. border-color:rgba(170, 170, 170, 1);
  10353. border-radius:4px;
  10354. -moz-box-shadow:none;
  10355. -webkit-box-shadow:none;
  10356. box-shadow:none;
  10357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10358. font-weight:400;
  10359. font-style:normal;
  10360. }
  10361. #u60520 {
  10362. border-width:0px;
  10363. position:absolute;
  10364. left:1781px;
  10365. top:969px;
  10366. width:80px;
  10367. height:80px;
  10368. display:flex;
  10369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10370. font-weight:400;
  10371. font-style:normal;
  10372. }
  10373. #u60520 .text {
  10374. position:absolute;
  10375. align-self:center;
  10376. padding:2px 2px 2px 2px;
  10377. box-sizing:border-box;
  10378. width:100%;
  10379. }
  10380. #u60520_text {
  10381. border-width:0px;
  10382. word-wrap:break-word;
  10383. text-transform:none;
  10384. }
  10385. #u60521_div {
  10386. border-width:0px;
  10387. position:absolute;
  10388. left:0px;
  10389. top:0px;
  10390. width:71px;
  10391. height:30px;
  10392. background:inherit;
  10393. background-color:rgba(255, 255, 255, 0);
  10394. border:none;
  10395. border-top:0px;
  10396. border-right:0px;
  10397. border-bottom:0px;
  10398. border-radius:0px;
  10399. border-top-left-radius:0px;
  10400. border-bottom-left-radius:0px;
  10401. -moz-box-shadow:none;
  10402. -webkit-box-shadow:none;
  10403. box-shadow:none;
  10404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10405. font-weight:400;
  10406. font-style:normal;
  10407. font-size:14px;
  10408. text-align:right;
  10409. }
  10410. #u60521 {
  10411. border-width:0px;
  10412. position:absolute;
  10413. left:1700px;
  10414. top:974px;
  10415. width:71px;
  10416. height:30px;
  10417. display:flex;
  10418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10419. font-weight:400;
  10420. font-style:normal;
  10421. font-size:14px;
  10422. text-align:right;
  10423. }
  10424. #u60521 .text {
  10425. position:absolute;
  10426. align-self:center;
  10427. padding:5px 0px 5px 0px;
  10428. box-sizing:border-box;
  10429. width:100%;
  10430. }
  10431. #u60521_text {
  10432. border-width:0px;
  10433. white-space:nowrap;
  10434. text-transform:none;
  10435. }
  10436. #u60522_div {
  10437. border-width:0px;
  10438. position:absolute;
  10439. left:0px;
  10440. top:0px;
  10441. width:78px;
  10442. height:30px;
  10443. background:inherit;
  10444. background-color:rgba(255, 255, 255, 0);
  10445. border:none;
  10446. border-top:0px;
  10447. border-right:0px;
  10448. border-bottom:0px;
  10449. border-radius:0px;
  10450. border-top-left-radius:0px;
  10451. border-bottom-left-radius:0px;
  10452. -moz-box-shadow:none;
  10453. -webkit-box-shadow:none;
  10454. box-shadow:none;
  10455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10456. font-weight:400;
  10457. font-style:normal;
  10458. font-size:14px;
  10459. text-align:right;
  10460. }
  10461. #u60522 {
  10462. border-width:0px;
  10463. position:absolute;
  10464. left:1693px;
  10465. top:324px;
  10466. width:78px;
  10467. height:30px;
  10468. display:flex;
  10469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10470. font-weight:400;
  10471. font-style:normal;
  10472. font-size:14px;
  10473. text-align:right;
  10474. }
  10475. #u60522 .text {
  10476. position:absolute;
  10477. align-self:center;
  10478. padding:5px 0px 5px 0px;
  10479. box-sizing:border-box;
  10480. width:100%;
  10481. }
  10482. #u60522_text {
  10483. border-width:0px;
  10484. white-space:nowrap;
  10485. text-transform:none;
  10486. }
  10487. #u60523 {
  10488. border-width:0px;
  10489. position:absolute;
  10490. left:0px;
  10491. top:0px;
  10492. width:0px;
  10493. height:0px;
  10494. }
  10495. #u60524_div {
  10496. border-width:0px;
  10497. position:absolute;
  10498. left:0px;
  10499. top:0px;
  10500. width:400px;
  10501. height:40px;
  10502. background:inherit;
  10503. background-color:rgba(255, 255, 255, 1);
  10504. box-sizing:border-box;
  10505. border-width:1px;
  10506. border-style:solid;
  10507. border-color:rgba(170, 170, 170, 1);
  10508. border-radius:4px;
  10509. -moz-box-shadow:none;
  10510. -webkit-box-shadow:none;
  10511. box-shadow:none;
  10512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10513. font-weight:400;
  10514. font-style:normal;
  10515. text-align:left;
  10516. }
  10517. #u60524 {
  10518. border-width:0px;
  10519. position:absolute;
  10520. left:1781px;
  10521. top:369px;
  10522. width:400px;
  10523. height:40px;
  10524. display:flex;
  10525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10526. font-weight:400;
  10527. font-style:normal;
  10528. text-align:left;
  10529. }
  10530. #u60524 .text {
  10531. position:absolute;
  10532. align-self:center;
  10533. padding:2px 2px 2px 10px;
  10534. box-sizing:border-box;
  10535. width:100%;
  10536. }
  10537. #u60524_text {
  10538. border-width:0px;
  10539. word-wrap:break-word;
  10540. text-transform:none;
  10541. visibility:hidden;
  10542. }
  10543. #u60525_input {
  10544. position:absolute;
  10545. left:0px;
  10546. top:0px;
  10547. width:380px;
  10548. height:31px;
  10549. padding:2px 2px 2px 2px;
  10550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10551. font-weight:400;
  10552. font-style:normal;
  10553. font-size:13px;
  10554. letter-spacing:normal;
  10555. color:#AAAAAA;
  10556. vertical-align:none;
  10557. text-align:left;
  10558. text-transform:none;
  10559. background-color:transparent;
  10560. border-color:transparent;
  10561. }
  10562. #u60525_input.disabled {
  10563. position:absolute;
  10564. left:0px;
  10565. top:0px;
  10566. width:380px;
  10567. height:31px;
  10568. padding:2px 2px 2px 2px;
  10569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10570. font-weight:400;
  10571. font-style:normal;
  10572. font-size:13px;
  10573. letter-spacing:normal;
  10574. color:#AAAAAA;
  10575. vertical-align:none;
  10576. text-align:left;
  10577. text-transform:none;
  10578. background-color:transparent;
  10579. border-color:transparent;
  10580. }
  10581. #u60525_div {
  10582. border-width:0px;
  10583. position:absolute;
  10584. left:0px;
  10585. top:0px;
  10586. width:380px;
  10587. height:31px;
  10588. background:inherit;
  10589. background-color:rgba(255, 255, 255, 0);
  10590. border:none;
  10591. border-radius:0px;
  10592. -moz-box-shadow:none;
  10593. -webkit-box-shadow:none;
  10594. box-shadow:none;
  10595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10596. font-weight:400;
  10597. font-style:normal;
  10598. color:#AAAAAA;
  10599. }
  10600. #u60525 {
  10601. border-width:0px;
  10602. position:absolute;
  10603. left:1791px;
  10604. top:374px;
  10605. width:380px;
  10606. height:31px;
  10607. display:flex;
  10608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10609. font-weight:400;
  10610. font-style:normal;
  10611. color:#AAAAAA;
  10612. }
  10613. #u60525 .text {
  10614. position:absolute;
  10615. align-self:center;
  10616. padding:2px 2px 2px 2px;
  10617. box-sizing:border-box;
  10618. width:100%;
  10619. }
  10620. #u60525_div.disabled {
  10621. border-width:0px;
  10622. position:absolute;
  10623. left:0px;
  10624. top:0px;
  10625. width:380px;
  10626. height:31px;
  10627. background:inherit;
  10628. background-color:rgba(240, 240, 240, 1);
  10629. border:none;
  10630. border-radius:0px;
  10631. -moz-box-shadow:none;
  10632. -webkit-box-shadow:none;
  10633. box-shadow:none;
  10634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10635. font-weight:400;
  10636. font-style:normal;
  10637. color:#AAAAAA;
  10638. }
  10639. #u60525.disabled {
  10640. }
  10641. #u60526_div {
  10642. border-width:0px;
  10643. position:absolute;
  10644. left:0px;
  10645. top:0px;
  10646. width:78px;
  10647. height:30px;
  10648. background:inherit;
  10649. background-color:rgba(255, 255, 255, 0);
  10650. border:none;
  10651. border-top:0px;
  10652. border-right:0px;
  10653. border-bottom:0px;
  10654. border-radius:0px;
  10655. border-top-left-radius:0px;
  10656. border-bottom-left-radius:0px;
  10657. -moz-box-shadow:none;
  10658. -webkit-box-shadow:none;
  10659. box-shadow:none;
  10660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10661. font-weight:400;
  10662. font-style:normal;
  10663. font-size:14px;
  10664. text-align:right;
  10665. }
  10666. #u60526 {
  10667. border-width:0px;
  10668. position:absolute;
  10669. left:1693px;
  10670. top:374px;
  10671. width:78px;
  10672. height:30px;
  10673. display:flex;
  10674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10675. font-weight:400;
  10676. font-style:normal;
  10677. font-size:14px;
  10678. text-align:right;
  10679. }
  10680. #u60526 .text {
  10681. position:absolute;
  10682. align-self:center;
  10683. padding:5px 0px 5px 0px;
  10684. box-sizing:border-box;
  10685. width:100%;
  10686. }
  10687. #u60526_text {
  10688. border-width:0px;
  10689. white-space:nowrap;
  10690. text-transform:none;
  10691. }
  10692. #u60527_div {
  10693. border-width:0px;
  10694. position:absolute;
  10695. left:0px;
  10696. top:0px;
  10697. width:78px;
  10698. height:30px;
  10699. background:inherit;
  10700. background-color:rgba(255, 255, 255, 0);
  10701. border:none;
  10702. border-top:0px;
  10703. border-right:0px;
  10704. border-bottom:0px;
  10705. border-radius:0px;
  10706. border-top-left-radius:0px;
  10707. border-bottom-left-radius:0px;
  10708. -moz-box-shadow:none;
  10709. -webkit-box-shadow:none;
  10710. box-shadow:none;
  10711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10712. font-weight:400;
  10713. font-style:normal;
  10714. font-size:14px;
  10715. text-align:right;
  10716. }
  10717. #u60527 {
  10718. border-width:0px;
  10719. position:absolute;
  10720. left:1693px;
  10721. top:274px;
  10722. width:78px;
  10723. height:30px;
  10724. display:flex;
  10725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10726. font-weight:400;
  10727. font-style:normal;
  10728. font-size:14px;
  10729. text-align:right;
  10730. }
  10731. #u60527 .text {
  10732. position:absolute;
  10733. align-self:center;
  10734. padding:5px 0px 5px 0px;
  10735. box-sizing:border-box;
  10736. width:100%;
  10737. }
  10738. #u60527_text {
  10739. border-width:0px;
  10740. white-space:nowrap;
  10741. text-transform:none;
  10742. }
  10743. #u60528 {
  10744. border-width:0px;
  10745. position:absolute;
  10746. left:0px;
  10747. top:0px;
  10748. width:0px;
  10749. height:0px;
  10750. }
  10751. #u60529_div {
  10752. border-width:0px;
  10753. position:absolute;
  10754. left:0px;
  10755. top:0px;
  10756. width:400px;
  10757. height:40px;
  10758. background:inherit;
  10759. background-color:rgba(255, 255, 255, 1);
  10760. box-sizing:border-box;
  10761. border-width:1px;
  10762. border-style:solid;
  10763. border-color:rgba(170, 170, 170, 1);
  10764. border-radius:4px;
  10765. -moz-box-shadow:none;
  10766. -webkit-box-shadow:none;
  10767. box-shadow:none;
  10768. }
  10769. #u60529 {
  10770. border-width:0px;
  10771. position:absolute;
  10772. left:1781px;
  10773. top:269px;
  10774. width:400px;
  10775. height:40px;
  10776. display:flex;
  10777. }
  10778. #u60529 .text {
  10779. position:absolute;
  10780. align-self:center;
  10781. padding:2px 2px 2px 0px;
  10782. box-sizing:border-box;
  10783. width:100%;
  10784. }
  10785. #u60529_text {
  10786. border-width:0px;
  10787. word-wrap:break-word;
  10788. text-transform:none;
  10789. visibility:hidden;
  10790. }
  10791. #u60530_input {
  10792. position:absolute;
  10793. left:0px;
  10794. top:0px;
  10795. width:380px;
  10796. height:30px;
  10797. padding:2px 2px 2px 0px;
  10798. font-family:'ArialMT', 'Arial', sans-serif;
  10799. font-weight:400;
  10800. font-style:normal;
  10801. font-size:13px;
  10802. letter-spacing:normal;
  10803. color:#AAAAAA;
  10804. vertical-align:none;
  10805. text-align:left;
  10806. text-transform:none;
  10807. background-color:transparent;
  10808. border-color:transparent;
  10809. }
  10810. #u60530_input.disabled {
  10811. position:absolute;
  10812. left:0px;
  10813. top:0px;
  10814. width:380px;
  10815. height:30px;
  10816. padding:2px 2px 2px 0px;
  10817. font-family:'ArialMT', 'Arial', sans-serif;
  10818. font-weight:400;
  10819. font-style:normal;
  10820. font-size:13px;
  10821. letter-spacing:normal;
  10822. color:#AAAAAA;
  10823. vertical-align:none;
  10824. text-align:left;
  10825. text-transform:none;
  10826. background-color:transparent;
  10827. border-color:transparent;
  10828. }
  10829. #u60530_div {
  10830. border-width:0px;
  10831. position:absolute;
  10832. left:0px;
  10833. top:0px;
  10834. width:380px;
  10835. height:30px;
  10836. background:inherit;
  10837. background-color:rgba(255, 255, 255, 1);
  10838. border:none;
  10839. border-radius:0px;
  10840. -moz-box-shadow:none;
  10841. -webkit-box-shadow:none;
  10842. box-shadow:none;
  10843. color:#AAAAAA;
  10844. }
  10845. #u60530 {
  10846. border-width:0px;
  10847. position:absolute;
  10848. left:1791px;
  10849. top:273px;
  10850. width:380px;
  10851. height:30px;
  10852. display:flex;
  10853. color:#AAAAAA;
  10854. }
  10855. #u60530 .text {
  10856. position:absolute;
  10857. align-self:flex-start;
  10858. padding:2px 2px 2px 0px;
  10859. box-sizing:border-box;
  10860. width:100%;
  10861. }
  10862. #u60530_div.disabled {
  10863. border-width:0px;
  10864. position:absolute;
  10865. left:0px;
  10866. top:0px;
  10867. width:380px;
  10868. height:30px;
  10869. background:inherit;
  10870. background-color:rgba(240, 240, 240, 1);
  10871. border:none;
  10872. border-radius:0px;
  10873. -moz-box-shadow:none;
  10874. -webkit-box-shadow:none;
  10875. box-shadow:none;
  10876. color:#AAAAAA;
  10877. }
  10878. #u60530.disabled {
  10879. }
  10880. .u60530_input_option {
  10881. }
  10882. #u60531_div {
  10883. border-width:0px;
  10884. position:absolute;
  10885. left:0px;
  10886. top:0px;
  10887. width:78px;
  10888. height:30px;
  10889. background:inherit;
  10890. background-color:rgba(255, 255, 255, 0);
  10891. border:none;
  10892. border-top:0px;
  10893. border-right:0px;
  10894. border-bottom:0px;
  10895. border-radius:0px;
  10896. border-top-left-radius:0px;
  10897. border-bottom-left-radius:0px;
  10898. -moz-box-shadow:none;
  10899. -webkit-box-shadow:none;
  10900. box-shadow:none;
  10901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10902. font-weight:400;
  10903. font-style:normal;
  10904. font-size:14px;
  10905. text-align:right;
  10906. }
  10907. #u60531 {
  10908. border-width:0px;
  10909. position:absolute;
  10910. left:1693px;
  10911. top:224px;
  10912. width:78px;
  10913. height:30px;
  10914. display:flex;
  10915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10916. font-weight:400;
  10917. font-style:normal;
  10918. font-size:14px;
  10919. text-align:right;
  10920. }
  10921. #u60531 .text {
  10922. position:absolute;
  10923. align-self:center;
  10924. padding:5px 0px 5px 0px;
  10925. box-sizing:border-box;
  10926. width:100%;
  10927. }
  10928. #u60531_text {
  10929. border-width:0px;
  10930. white-space:nowrap;
  10931. text-transform:none;
  10932. }
  10933. #u60532 {
  10934. border-width:0px;
  10935. position:absolute;
  10936. left:0px;
  10937. top:0px;
  10938. width:0px;
  10939. height:0px;
  10940. }
  10941. #u60533_div {
  10942. border-width:0px;
  10943. position:absolute;
  10944. left:0px;
  10945. top:0px;
  10946. width:400px;
  10947. height:40px;
  10948. background:inherit;
  10949. background-color:rgba(255, 255, 255, 1);
  10950. box-sizing:border-box;
  10951. border-width:1px;
  10952. border-style:solid;
  10953. border-color:rgba(170, 170, 170, 1);
  10954. border-radius:4px;
  10955. -moz-box-shadow:none;
  10956. -webkit-box-shadow:none;
  10957. box-shadow:none;
  10958. }
  10959. #u60533 {
  10960. border-width:0px;
  10961. position:absolute;
  10962. left:1781px;
  10963. top:219px;
  10964. width:400px;
  10965. height:40px;
  10966. display:flex;
  10967. }
  10968. #u60533 .text {
  10969. position:absolute;
  10970. align-self:center;
  10971. padding:2px 2px 2px 0px;
  10972. box-sizing:border-box;
  10973. width:100%;
  10974. }
  10975. #u60533_text {
  10976. border-width:0px;
  10977. word-wrap:break-word;
  10978. text-transform:none;
  10979. visibility:hidden;
  10980. }
  10981. #u60534_input {
  10982. position:absolute;
  10983. left:0px;
  10984. top:0px;
  10985. width:380px;
  10986. height:30px;
  10987. padding:2px 2px 2px 0px;
  10988. font-family:'ArialMT', 'Arial', sans-serif;
  10989. font-weight:400;
  10990. font-style:normal;
  10991. font-size:13px;
  10992. letter-spacing:normal;
  10993. color:#AAAAAA;
  10994. vertical-align:none;
  10995. text-align:left;
  10996. text-transform:none;
  10997. background-color:transparent;
  10998. border-color:transparent;
  10999. }
  11000. #u60534_input.disabled {
  11001. position:absolute;
  11002. left:0px;
  11003. top:0px;
  11004. width:380px;
  11005. height:30px;
  11006. padding:2px 2px 2px 0px;
  11007. font-family:'ArialMT', 'Arial', sans-serif;
  11008. font-weight:400;
  11009. font-style:normal;
  11010. font-size:13px;
  11011. letter-spacing:normal;
  11012. color:#AAAAAA;
  11013. vertical-align:none;
  11014. text-align:left;
  11015. text-transform:none;
  11016. background-color:transparent;
  11017. border-color:transparent;
  11018. }
  11019. #u60534_div {
  11020. border-width:0px;
  11021. position:absolute;
  11022. left:0px;
  11023. top:0px;
  11024. width:380px;
  11025. height:30px;
  11026. background:inherit;
  11027. background-color:rgba(255, 255, 255, 1);
  11028. border:none;
  11029. border-radius:0px;
  11030. -moz-box-shadow:none;
  11031. -webkit-box-shadow:none;
  11032. box-shadow:none;
  11033. color:#AAAAAA;
  11034. }
  11035. #u60534 {
  11036. border-width:0px;
  11037. position:absolute;
  11038. left:1791px;
  11039. top:223px;
  11040. width:380px;
  11041. height:30px;
  11042. display:flex;
  11043. color:#AAAAAA;
  11044. }
  11045. #u60534 .text {
  11046. position:absolute;
  11047. align-self:flex-start;
  11048. padding:2px 2px 2px 0px;
  11049. box-sizing:border-box;
  11050. width:100%;
  11051. }
  11052. #u60534_div.disabled {
  11053. border-width:0px;
  11054. position:absolute;
  11055. left:0px;
  11056. top:0px;
  11057. width:380px;
  11058. height:30px;
  11059. background:inherit;
  11060. background-color:rgba(240, 240, 240, 1);
  11061. border:none;
  11062. border-radius:0px;
  11063. -moz-box-shadow:none;
  11064. -webkit-box-shadow:none;
  11065. box-shadow:none;
  11066. color:#AAAAAA;
  11067. }
  11068. #u60534.disabled {
  11069. }
  11070. .u60534_input_option {
  11071. }
  11072. #u60535 {
  11073. border-width:0px;
  11074. position:absolute;
  11075. left:0px;
  11076. top:0px;
  11077. width:0px;
  11078. height:0px;
  11079. }
  11080. #u60536_div {
  11081. border-width:0px;
  11082. position:absolute;
  11083. left:0px;
  11084. top:0px;
  11085. width:400px;
  11086. height:40px;
  11087. background:inherit;
  11088. background-color:rgba(255, 255, 255, 1);
  11089. box-sizing:border-box;
  11090. border-width:1px;
  11091. border-style:solid;
  11092. border-color:rgba(170, 170, 170, 1);
  11093. border-radius:4px;
  11094. -moz-box-shadow:none;
  11095. -webkit-box-shadow:none;
  11096. box-shadow:none;
  11097. }
  11098. #u60536 {
  11099. border-width:0px;
  11100. position:absolute;
  11101. left:1781px;
  11102. top:319px;
  11103. width:400px;
  11104. height:40px;
  11105. display:flex;
  11106. }
  11107. #u60536 .text {
  11108. position:absolute;
  11109. align-self:center;
  11110. padding:2px 2px 2px 0px;
  11111. box-sizing:border-box;
  11112. width:100%;
  11113. }
  11114. #u60536_text {
  11115. border-width:0px;
  11116. word-wrap:break-word;
  11117. text-transform:none;
  11118. visibility:hidden;
  11119. }
  11120. #u60537_input {
  11121. position:absolute;
  11122. left:0px;
  11123. top:0px;
  11124. width:380px;
  11125. height:30px;
  11126. padding:2px 2px 2px 0px;
  11127. font-family:'ArialMT', 'Arial', sans-serif;
  11128. font-weight:400;
  11129. font-style:normal;
  11130. font-size:13px;
  11131. letter-spacing:normal;
  11132. color:#AAAAAA;
  11133. vertical-align:none;
  11134. text-align:left;
  11135. text-transform:none;
  11136. background-color:transparent;
  11137. border-color:transparent;
  11138. }
  11139. #u60537_input.disabled {
  11140. position:absolute;
  11141. left:0px;
  11142. top:0px;
  11143. width:380px;
  11144. height:30px;
  11145. padding:2px 2px 2px 0px;
  11146. font-family:'ArialMT', 'Arial', sans-serif;
  11147. font-weight:400;
  11148. font-style:normal;
  11149. font-size:13px;
  11150. letter-spacing:normal;
  11151. color:#AAAAAA;
  11152. vertical-align:none;
  11153. text-align:left;
  11154. text-transform:none;
  11155. background-color:transparent;
  11156. border-color:transparent;
  11157. }
  11158. #u60537_div {
  11159. border-width:0px;
  11160. position:absolute;
  11161. left:0px;
  11162. top:0px;
  11163. width:380px;
  11164. height:30px;
  11165. background:inherit;
  11166. background-color:rgba(255, 255, 255, 1);
  11167. border:none;
  11168. border-radius:0px;
  11169. -moz-box-shadow:none;
  11170. -webkit-box-shadow:none;
  11171. box-shadow:none;
  11172. color:#AAAAAA;
  11173. }
  11174. #u60537 {
  11175. border-width:0px;
  11176. position:absolute;
  11177. left:1791px;
  11178. top:323px;
  11179. width:380px;
  11180. height:30px;
  11181. display:flex;
  11182. color:#AAAAAA;
  11183. }
  11184. #u60537 .text {
  11185. position:absolute;
  11186. align-self:flex-start;
  11187. padding:2px 2px 2px 0px;
  11188. box-sizing:border-box;
  11189. width:100%;
  11190. }
  11191. #u60537_div.disabled {
  11192. border-width:0px;
  11193. position:absolute;
  11194. left:0px;
  11195. top:0px;
  11196. width:380px;
  11197. height:30px;
  11198. background:inherit;
  11199. background-color:rgba(240, 240, 240, 1);
  11200. border:none;
  11201. border-radius:0px;
  11202. -moz-box-shadow:none;
  11203. -webkit-box-shadow:none;
  11204. box-shadow:none;
  11205. color:#AAAAAA;
  11206. }
  11207. #u60537.disabled {
  11208. }
  11209. .u60537_input_option {
  11210. }
  11211. #u60538_div {
  11212. border-width:0px;
  11213. position:absolute;
  11214. left:0px;
  11215. top:0px;
  11216. width:499px;
  11217. height:90px;
  11218. background:inherit;
  11219. background-color:rgba(255, 255, 255, 0);
  11220. border:none;
  11221. border-top:0px;
  11222. border-right:0px;
  11223. border-bottom:0px;
  11224. border-radius:0px;
  11225. border-top-left-radius:0px;
  11226. border-bottom-left-radius:0px;
  11227. -moz-box-shadow:none;
  11228. -webkit-box-shadow:none;
  11229. box-shadow:none;
  11230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11231. font-weight:400;
  11232. font-style:normal;
  11233. font-size:14px;
  11234. color:#D9001B;
  11235. }
  11236. #u60538 {
  11237. border-width:0px;
  11238. position:absolute;
  11239. left:1732px;
  11240. top:1316px;
  11241. width:499px;
  11242. height:90px;
  11243. display:flex;
  11244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11245. font-weight:400;
  11246. font-style:normal;
  11247. font-size:14px;
  11248. color:#D9001B;
  11249. }
  11250. #u60538 .text {
  11251. position:absolute;
  11252. align-self:center;
  11253. padding:5px 0px 5px 0px;
  11254. box-sizing:border-box;
  11255. width:100%;
  11256. }
  11257. #u60538_text {
  11258. border-width:0px;
  11259. white-space:nowrap;
  11260. text-transform:none;
  11261. }
  11262. #u60539 {
  11263. border-width:0px;
  11264. position:absolute;
  11265. left:1693px;
  11266. top:339px;
  11267. width:0px;
  11268. height:0px;
  11269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11270. font-weight:400;
  11271. font-style:normal;
  11272. color:#D9001B;
  11273. }
  11274. #u60539_seg0 {
  11275. border-width:0px;
  11276. position:absolute;
  11277. left:-18px;
  11278. top:-5px;
  11279. width:18px;
  11280. height:10px;
  11281. }
  11282. #u60539_seg1 {
  11283. border-width:0px;
  11284. position:absolute;
  11285. left:-18px;
  11286. top:-5px;
  11287. width:10px;
  11288. height:1032px;
  11289. }
  11290. #u60539_seg2 {
  11291. border-width:0px;
  11292. position:absolute;
  11293. left:-18px;
  11294. top:1017px;
  11295. width:57px;
  11296. height:10px;
  11297. }
  11298. #u60539_seg3 {
  11299. border-width:0px;
  11300. position:absolute;
  11301. left:29px;
  11302. top:1013px;
  11303. width:18px;
  11304. height:18px;
  11305. }
  11306. #u60539_text {
  11307. border-width:0px;
  11308. position:absolute;
  11309. left:-63px;
  11310. top:522px;
  11311. width:100px;
  11312. word-wrap:break-word;
  11313. text-transform:none;
  11314. visibility:hidden;
  11315. }
  11316. #u60540_div {
  11317. border-width:0px;
  11318. position:absolute;
  11319. left:0px;
  11320. top:0px;
  11321. width:71px;
  11322. height:30px;
  11323. background:inherit;
  11324. background-color:rgba(255, 255, 255, 0);
  11325. border:none;
  11326. border-top:0px;
  11327. border-right:0px;
  11328. border-bottom:0px;
  11329. border-radius:0px;
  11330. border-top-left-radius:0px;
  11331. border-bottom-left-radius:0px;
  11332. -moz-box-shadow:none;
  11333. -webkit-box-shadow:none;
  11334. box-shadow:none;
  11335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11336. font-weight:400;
  11337. font-style:normal;
  11338. font-size:14px;
  11339. text-align:right;
  11340. }
  11341. #u60540 {
  11342. border-width:0px;
  11343. position:absolute;
  11344. left:1700px;
  11345. top:474px;
  11346. width:71px;
  11347. height:30px;
  11348. display:flex;
  11349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11350. font-weight:400;
  11351. font-style:normal;
  11352. font-size:14px;
  11353. text-align:right;
  11354. }
  11355. #u60540 .text {
  11356. position:absolute;
  11357. align-self:center;
  11358. padding:5px 0px 5px 0px;
  11359. box-sizing:border-box;
  11360. width:100%;
  11361. }
  11362. #u60540_text {
  11363. border-width:0px;
  11364. white-space:nowrap;
  11365. text-transform:none;
  11366. }
  11367. #u60541 {
  11368. border-width:0px;
  11369. position:absolute;
  11370. left:0px;
  11371. top:0px;
  11372. width:0px;
  11373. height:0px;
  11374. }
  11375. #u60542_div {
  11376. border-width:0px;
  11377. position:absolute;
  11378. left:0px;
  11379. top:0px;
  11380. width:400px;
  11381. height:40px;
  11382. background:inherit;
  11383. background-color:rgba(255, 255, 255, 1);
  11384. box-sizing:border-box;
  11385. border-width:1px;
  11386. border-style:solid;
  11387. border-color:rgba(170, 170, 170, 1);
  11388. border-radius:4px;
  11389. -moz-box-shadow:none;
  11390. -webkit-box-shadow:none;
  11391. box-shadow:none;
  11392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11393. font-weight:400;
  11394. font-style:normal;
  11395. color:#AAAAAA;
  11396. text-align:left;
  11397. }
  11398. #u60542 {
  11399. border-width:0px;
  11400. position:absolute;
  11401. left:1781px;
  11402. top:469px;
  11403. width:400px;
  11404. height:40px;
  11405. display:flex;
  11406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11407. font-weight:400;
  11408. font-style:normal;
  11409. color:#AAAAAA;
  11410. text-align:left;
  11411. }
  11412. #u60542 .text {
  11413. position:absolute;
  11414. align-self:center;
  11415. padding:2px 2px 2px 10px;
  11416. box-sizing:border-box;
  11417. width:100%;
  11418. }
  11419. #u60542_text {
  11420. border-width:0px;
  11421. word-wrap:break-word;
  11422. text-transform:none;
  11423. }
  11424. #u60543_div {
  11425. border-width:0px;
  11426. position:absolute;
  11427. left:0px;
  11428. top:0px;
  11429. width:68px;
  11430. height:40px;
  11431. background:inherit;
  11432. background-color:rgba(24, 144, 255, 1);
  11433. border:none;
  11434. border-radius:4px;
  11435. -moz-box-shadow:none;
  11436. -webkit-box-shadow:none;
  11437. box-shadow:none;
  11438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11439. font-weight:400;
  11440. font-style:normal;
  11441. color:#FFFFFF;
  11442. }
  11443. #u60543 {
  11444. border-width:0px;
  11445. position:absolute;
  11446. left:2113px;
  11447. top:469px;
  11448. width:68px;
  11449. height:40px;
  11450. display:flex;
  11451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11452. font-weight:400;
  11453. font-style:normal;
  11454. color:#FFFFFF;
  11455. }
  11456. #u60543 .text {
  11457. position:absolute;
  11458. align-self:center;
  11459. padding:2px 2px 2px 2px;
  11460. box-sizing:border-box;
  11461. width:100%;
  11462. }
  11463. #u60543_text {
  11464. border-width:0px;
  11465. word-wrap:break-word;
  11466. text-transform:none;
  11467. }
  11468. #u60544_div {
  11469. border-width:0px;
  11470. position:absolute;
  11471. left:0px;
  11472. top:0px;
  11473. width:71px;
  11474. height:30px;
  11475. background:inherit;
  11476. background-color:rgba(255, 255, 255, 0);
  11477. border:none;
  11478. border-top:0px;
  11479. border-right:0px;
  11480. border-bottom:0px;
  11481. border-radius:0px;
  11482. border-top-left-radius:0px;
  11483. border-bottom-left-radius:0px;
  11484. -moz-box-shadow:none;
  11485. -webkit-box-shadow:none;
  11486. box-shadow:none;
  11487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11488. font-weight:400;
  11489. font-style:normal;
  11490. font-size:14px;
  11491. text-align:right;
  11492. }
  11493. #u60544 {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:1699px;
  11497. top:424px;
  11498. width:71px;
  11499. height:30px;
  11500. display:flex;
  11501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11502. font-weight:400;
  11503. font-style:normal;
  11504. font-size:14px;
  11505. text-align:right;
  11506. }
  11507. #u60544 .text {
  11508. position:absolute;
  11509. align-self:center;
  11510. padding:5px 0px 5px 0px;
  11511. box-sizing:border-box;
  11512. width:100%;
  11513. }
  11514. #u60544_text {
  11515. border-width:0px;
  11516. white-space:nowrap;
  11517. text-transform:none;
  11518. }
  11519. #u60545 {
  11520. border-width:0px;
  11521. position:absolute;
  11522. left:0px;
  11523. top:0px;
  11524. width:0px;
  11525. height:0px;
  11526. }
  11527. #u60546_div {
  11528. border-width:0px;
  11529. position:absolute;
  11530. left:0px;
  11531. top:0px;
  11532. width:400px;
  11533. height:40px;
  11534. background:inherit;
  11535. background-color:rgba(242, 242, 242, 1);
  11536. box-sizing:border-box;
  11537. border-width:1px;
  11538. border-style:solid;
  11539. border-color:rgba(170, 170, 170, 1);
  11540. border-radius:4px;
  11541. -moz-box-shadow:none;
  11542. -webkit-box-shadow:none;
  11543. box-shadow:none;
  11544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11545. font-weight:400;
  11546. font-style:normal;
  11547. text-align:left;
  11548. }
  11549. #u60546 {
  11550. border-width:0px;
  11551. position:absolute;
  11552. left:1780px;
  11553. top:419px;
  11554. width:400px;
  11555. height:40px;
  11556. display:flex;
  11557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11558. font-weight:400;
  11559. font-style:normal;
  11560. text-align:left;
  11561. }
  11562. #u60546 .text {
  11563. position:absolute;
  11564. align-self:center;
  11565. padding:2px 2px 2px 10px;
  11566. box-sizing:border-box;
  11567. width:100%;
  11568. }
  11569. #u60546_text {
  11570. border-width:0px;
  11571. word-wrap:break-word;
  11572. text-transform:none;
  11573. visibility:hidden;
  11574. }
  11575. #u60547_input {
  11576. position:absolute;
  11577. left:0px;
  11578. top:0px;
  11579. width:380px;
  11580. height:31px;
  11581. padding:2px 2px 2px 2px;
  11582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11583. font-weight:400;
  11584. font-style:normal;
  11585. font-size:13px;
  11586. letter-spacing:normal;
  11587. color:#AAAAAA;
  11588. vertical-align:none;
  11589. text-align:left;
  11590. text-transform:none;
  11591. background-color:transparent;
  11592. border-color:transparent;
  11593. }
  11594. #u60547_input.disabled {
  11595. position:absolute;
  11596. left:0px;
  11597. top:0px;
  11598. width:380px;
  11599. height:31px;
  11600. padding:2px 2px 2px 2px;
  11601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11602. font-weight:400;
  11603. font-style:normal;
  11604. font-size:13px;
  11605. letter-spacing:normal;
  11606. color:#AAAAAA;
  11607. vertical-align:none;
  11608. text-align:left;
  11609. text-transform:none;
  11610. background-color:transparent;
  11611. border-color:transparent;
  11612. }
  11613. #u60547_div {
  11614. border-width:0px;
  11615. position:absolute;
  11616. left:0px;
  11617. top:0px;
  11618. width:380px;
  11619. height:31px;
  11620. background:inherit;
  11621. background-color:rgba(242, 242, 242, 1);
  11622. border:none;
  11623. border-radius:0px;
  11624. -moz-box-shadow:none;
  11625. -webkit-box-shadow:none;
  11626. box-shadow:none;
  11627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11628. font-weight:400;
  11629. font-style:normal;
  11630. color:#AAAAAA;
  11631. }
  11632. #u60547 {
  11633. border-width:0px;
  11634. position:absolute;
  11635. left:1790px;
  11636. top:424px;
  11637. width:380px;
  11638. height:31px;
  11639. display:flex;
  11640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11641. font-weight:400;
  11642. font-style:normal;
  11643. color:#AAAAAA;
  11644. }
  11645. #u60547 .text {
  11646. position:absolute;
  11647. align-self:center;
  11648. padding:2px 2px 2px 2px;
  11649. box-sizing:border-box;
  11650. width:100%;
  11651. }
  11652. #u60547_div.disabled {
  11653. border-width:0px;
  11654. position:absolute;
  11655. left:0px;
  11656. top:0px;
  11657. width:380px;
  11658. height:31px;
  11659. background:inherit;
  11660. background-color:rgba(240, 240, 240, 1);
  11661. border:none;
  11662. border-radius:0px;
  11663. -moz-box-shadow:none;
  11664. -webkit-box-shadow:none;
  11665. box-shadow:none;
  11666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11667. font-weight:400;
  11668. font-style:normal;
  11669. color:#AAAAAA;
  11670. }
  11671. #u60547.disabled {
  11672. }
  11673. #u60548_div {
  11674. border-width:0px;
  11675. position:absolute;
  11676. left:0px;
  11677. top:0px;
  11678. width:240px;
  11679. height:30px;
  11680. background:inherit;
  11681. background-color:rgba(255, 255, 255, 0);
  11682. border:none;
  11683. border-top:0px;
  11684. border-right:0px;
  11685. border-bottom:0px;
  11686. border-radius:0px;
  11687. border-top-left-radius:0px;
  11688. border-bottom-left-radius:0px;
  11689. -moz-box-shadow:none;
  11690. -webkit-box-shadow:none;
  11691. box-shadow:none;
  11692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11693. font-weight:400;
  11694. font-style:normal;
  11695. font-size:14px;
  11696. color:#D9001B;
  11697. }
  11698. #u60548 {
  11699. border-width:0px;
  11700. position:absolute;
  11701. left:2199px;
  11702. top:273px;
  11703. width:240px;
  11704. height:30px;
  11705. display:flex;
  11706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11707. font-weight:400;
  11708. font-style:normal;
  11709. font-size:14px;
  11710. color:#D9001B;
  11711. }
  11712. #u60548 .text {
  11713. position:absolute;
  11714. align-self:center;
  11715. padding:5px 0px 5px 0px;
  11716. box-sizing:border-box;
  11717. width:100%;
  11718. }
  11719. #u60548_text {
  11720. border-width:0px;
  11721. white-space:nowrap;
  11722. text-transform:none;
  11723. }
  11724. #u60549_div {
  11725. border-width:0px;
  11726. position:absolute;
  11727. left:0px;
  11728. top:0px;
  11729. width:91px;
  11730. height:50px;
  11731. background:inherit;
  11732. background-color:rgba(255, 255, 255, 0);
  11733. border:none;
  11734. border-left:0px;
  11735. border-top:0px;
  11736. border-right:0px;
  11737. border-radius:0px;
  11738. border-bottom-right-radius:0px;
  11739. border-bottom-left-radius:0px;
  11740. -moz-box-shadow:none;
  11741. -webkit-box-shadow:none;
  11742. box-shadow:none;
  11743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11744. font-weight:400;
  11745. font-style:normal;
  11746. font-size:18px;
  11747. }
  11748. #u60549 {
  11749. border-width:0px;
  11750. position:absolute;
  11751. left:470px;
  11752. top:50px;
  11753. width:91px;
  11754. height:50px;
  11755. display:flex;
  11756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11757. font-weight:400;
  11758. font-style:normal;
  11759. font-size:18px;
  11760. }
  11761. #u60549 .text {
  11762. position:absolute;
  11763. align-self:center;
  11764. padding:0px 0px 0px 0px;
  11765. box-sizing:border-box;
  11766. width:100%;
  11767. }
  11768. #u60549_text {
  11769. border-width:0px;
  11770. white-space:nowrap;
  11771. text-transform:none;
  11772. }
  11773. #u60550 {
  11774. border-width:0px;
  11775. position:absolute;
  11776. left:0px;
  11777. top:0px;
  11778. width:0px;
  11779. height:0px;
  11780. }
  11781. #u60551_div {
  11782. border-width:0px;
  11783. position:absolute;
  11784. left:0px;
  11785. top:0px;
  11786. width:200px;
  11787. height:1180px;
  11788. background:inherit;
  11789. background-color:rgba(255, 255, 255, 1);
  11790. border:none;
  11791. border-radius:0px;
  11792. -moz-box-shadow:none;
  11793. -webkit-box-shadow:none;
  11794. box-shadow:none;
  11795. }
  11796. #u60551 {
  11797. border-width:0px;
  11798. position:absolute;
  11799. left:120px;
  11800. top:51px;
  11801. width:200px;
  11802. height:1180px;
  11803. display:flex;
  11804. }
  11805. #u60551 .text {
  11806. position:absolute;
  11807. align-self:center;
  11808. padding:2px 2px 2px 2px;
  11809. box-sizing:border-box;
  11810. width:100%;
  11811. }
  11812. #u60551_text {
  11813. border-width:0px;
  11814. word-wrap:break-word;
  11815. text-transform:none;
  11816. visibility:hidden;
  11817. }
  11818. #u60552_div {
  11819. border-width:0px;
  11820. position:absolute;
  11821. left:0px;
  11822. top:0px;
  11823. width:200px;
  11824. height:60px;
  11825. background:inherit;
  11826. background-color:rgba(224, 231, 247, 1);
  11827. border:none;
  11828. border-radius:0px;
  11829. -moz-box-shadow:none;
  11830. -webkit-box-shadow:none;
  11831. box-shadow:none;
  11832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11833. font-weight:500;
  11834. font-style:normal;
  11835. font-size:18px;
  11836. }
  11837. #u60552 {
  11838. border-width:0px;
  11839. position:absolute;
  11840. left:120px;
  11841. top:51px;
  11842. width:200px;
  11843. height:60px;
  11844. display:flex;
  11845. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11846. font-weight:500;
  11847. font-style:normal;
  11848. font-size:18px;
  11849. }
  11850. #u60552 .text {
  11851. position:absolute;
  11852. align-self:center;
  11853. padding:0px 0px 0px 20px;
  11854. box-sizing:border-box;
  11855. width:100%;
  11856. }
  11857. #u60552_text {
  11858. border-width:0px;
  11859. word-wrap:break-word;
  11860. text-transform:none;
  11861. }
  11862. #u60553_div {
  11863. border-width:0px;
  11864. position:absolute;
  11865. left:0px;
  11866. top:0px;
  11867. width:65px;
  11868. height:22px;
  11869. background:inherit;
  11870. background-color:rgba(255, 255, 255, 0);
  11871. border:none;
  11872. border-radius:0px;
  11873. -moz-box-shadow:none;
  11874. -webkit-box-shadow:none;
  11875. box-shadow:none;
  11876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11877. font-weight:400;
  11878. font-style:normal;
  11879. font-size:16px;
  11880. }
  11881. #u60553 {
  11882. border-width:0px;
  11883. position:absolute;
  11884. left:142px;
  11885. top:162px;
  11886. width:65px;
  11887. height:22px;
  11888. display:flex;
  11889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11890. font-weight:400;
  11891. font-style:normal;
  11892. font-size:16px;
  11893. }
  11894. #u60553 .text {
  11895. position:absolute;
  11896. align-self:flex-start;
  11897. padding:0px 0px 0px 0px;
  11898. box-sizing:border-box;
  11899. width:100%;
  11900. }
  11901. #u60553_text {
  11902. border-width:0px;
  11903. white-space:nowrap;
  11904. text-transform:none;
  11905. }
  11906. #u60554_div {
  11907. border-width:0px;
  11908. position:absolute;
  11909. left:0px;
  11910. top:0px;
  11911. width:49px;
  11912. height:17px;
  11913. background:inherit;
  11914. background-color:rgba(255, 255, 255, 0);
  11915. border:none;
  11916. border-radius:0px;
  11917. -moz-box-shadow:none;
  11918. -webkit-box-shadow:none;
  11919. box-shadow:none;
  11920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11921. font-weight:400;
  11922. font-style:normal;
  11923. font-size:12px;
  11924. color:#AAAAAA;
  11925. }
  11926. #u60554 {
  11927. border-width:0px;
  11928. position:absolute;
  11929. left:142px;
  11930. top:126px;
  11931. width:49px;
  11932. height:17px;
  11933. display:flex;
  11934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11935. font-weight:400;
  11936. font-style:normal;
  11937. font-size:12px;
  11938. color:#AAAAAA;
  11939. }
  11940. #u60554 .text {
  11941. position:absolute;
  11942. align-self:flex-start;
  11943. padding:0px 0px 0px 0px;
  11944. box-sizing:border-box;
  11945. width:100%;
  11946. }
  11947. #u60554_text {
  11948. border-width:0px;
  11949. white-space:nowrap;
  11950. text-transform:none;
  11951. }
  11952. #u60555_img {
  11953. border-width:0px;
  11954. position:absolute;
  11955. left:0px;
  11956. top:0px;
  11957. width:201px;
  11958. height:2px;
  11959. }
  11960. #u60555 {
  11961. border-width:0px;
  11962. position:absolute;
  11963. left:120px;
  11964. top:246px;
  11965. width:200px;
  11966. height:1px;
  11967. display:flex;
  11968. }
  11969. #u60555 .text {
  11970. position:absolute;
  11971. align-self:center;
  11972. padding:2px 2px 2px 2px;
  11973. box-sizing:border-box;
  11974. width:100%;
  11975. }
  11976. #u60555_text {
  11977. border-width:0px;
  11978. word-wrap:break-word;
  11979. text-transform:none;
  11980. visibility:hidden;
  11981. }
  11982. #u60556_div {
  11983. border-width:0px;
  11984. position:absolute;
  11985. left:0px;
  11986. top:0px;
  11987. width:65px;
  11988. height:22px;
  11989. background:inherit;
  11990. background-color:rgba(255, 255, 255, 0);
  11991. border:none;
  11992. border-radius:0px;
  11993. -moz-box-shadow:none;
  11994. -webkit-box-shadow:none;
  11995. box-shadow:none;
  11996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11997. font-weight:400;
  11998. font-style:normal;
  11999. font-size:16px;
  12000. }
  12001. #u60556 {
  12002. border-width:0px;
  12003. position:absolute;
  12004. left:142px;
  12005. top:302px;
  12006. width:65px;
  12007. height:22px;
  12008. display:flex;
  12009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12010. font-weight:400;
  12011. font-style:normal;
  12012. font-size:16px;
  12013. }
  12014. #u60556 .text {
  12015. position:absolute;
  12016. align-self:flex-start;
  12017. padding:0px 0px 0px 0px;
  12018. box-sizing:border-box;
  12019. width:100%;
  12020. }
  12021. #u60556_text {
  12022. border-width:0px;
  12023. white-space:nowrap;
  12024. text-transform:none;
  12025. }
  12026. #u60557_div {
  12027. border-width:0px;
  12028. position:absolute;
  12029. left:0px;
  12030. top:0px;
  12031. width:49px;
  12032. height:17px;
  12033. background:inherit;
  12034. background-color:rgba(255, 255, 255, 0);
  12035. border:none;
  12036. border-radius:0px;
  12037. -moz-box-shadow:none;
  12038. -webkit-box-shadow:none;
  12039. box-shadow:none;
  12040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12041. font-weight:400;
  12042. font-style:normal;
  12043. font-size:12px;
  12044. color:#AAAAAA;
  12045. }
  12046. #u60557 {
  12047. border-width:0px;
  12048. position:absolute;
  12049. left:142px;
  12050. top:266px;
  12051. width:49px;
  12052. height:17px;
  12053. display:flex;
  12054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12055. font-weight:400;
  12056. font-style:normal;
  12057. font-size:12px;
  12058. color:#AAAAAA;
  12059. }
  12060. #u60557 .text {
  12061. position:absolute;
  12062. align-self:flex-start;
  12063. padding:0px 0px 0px 0px;
  12064. box-sizing:border-box;
  12065. width:100%;
  12066. }
  12067. #u60557_text {
  12068. border-width:0px;
  12069. white-space:nowrap;
  12070. text-transform:none;
  12071. }
  12072. #u60558_div {
  12073. border-width:0px;
  12074. position:absolute;
  12075. left:0px;
  12076. top:0px;
  12077. width:65px;
  12078. height:22px;
  12079. background:inherit;
  12080. background-color:rgba(255, 255, 255, 0);
  12081. border:none;
  12082. border-radius:0px;
  12083. -moz-box-shadow:none;
  12084. -webkit-box-shadow:none;
  12085. box-shadow:none;
  12086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12087. font-weight:400;
  12088. font-style:normal;
  12089. font-size:16px;
  12090. }
  12091. #u60558 {
  12092. border-width:0px;
  12093. position:absolute;
  12094. left:142px;
  12095. top:344px;
  12096. width:65px;
  12097. height:22px;
  12098. display:flex;
  12099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12100. font-weight:400;
  12101. font-style:normal;
  12102. font-size:16px;
  12103. }
  12104. #u60558 .text {
  12105. position:absolute;
  12106. align-self:flex-start;
  12107. padding:0px 0px 0px 0px;
  12108. box-sizing:border-box;
  12109. width:100%;
  12110. }
  12111. #u60558_text {
  12112. border-width:0px;
  12113. white-space:nowrap;
  12114. text-transform:none;
  12115. }
  12116. #u60559_div {
  12117. border-width:0px;
  12118. position:absolute;
  12119. left:0px;
  12120. top:0px;
  12121. width:65px;
  12122. height:22px;
  12123. background:inherit;
  12124. background-color:rgba(255, 255, 255, 0);
  12125. border:none;
  12126. border-radius:0px;
  12127. -moz-box-shadow:none;
  12128. -webkit-box-shadow:none;
  12129. box-shadow:none;
  12130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12131. font-weight:400;
  12132. font-style:normal;
  12133. font-size:16px;
  12134. }
  12135. #u60559 {
  12136. border-width:0px;
  12137. position:absolute;
  12138. left:142px;
  12139. top:204px;
  12140. width:65px;
  12141. height:22px;
  12142. display:flex;
  12143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12144. font-weight:400;
  12145. font-style:normal;
  12146. font-size:16px;
  12147. }
  12148. #u60559 .text {
  12149. position:absolute;
  12150. align-self:flex-start;
  12151. padding:0px 0px 0px 0px;
  12152. box-sizing:border-box;
  12153. width:100%;
  12154. }
  12155. #u60559_text {
  12156. border-width:0px;
  12157. white-space:nowrap;
  12158. text-transform:none;
  12159. }