styles.css 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u60415_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. #u60415 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u60415 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u60415_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u60416_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. #u60416 {
  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. #u60416 .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. #u60416_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u60417_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. #u60417 {
  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. #u60417 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u60417_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u60418 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u60419_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u60419 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u60419 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u60419_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u60420_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. #u60420 {
  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. #u60420 .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. #u60420_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u60421_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. #u60421 {
  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. #u60421 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u60421_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u60422 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u60423_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. #u60423_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. #u60423_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. #u60423 {
  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. #u60423 .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. #u60423_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. #u60423.disabled {
  356. }
  357. .u60423_input_option {
  358. font-size:14px;
  359. }
  360. #u60424_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u60424 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u60424 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u60424_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u60425_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. #u60425 {
  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. #u60425 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u60425_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u60426_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. #u60426 {
  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. #u60426 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u60426_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u60427 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u60428_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. #u60428 {
  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. #u60428 .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. #u60428_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u60429_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u60429 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u60429 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u60429_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u60430 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u60431_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. #u60431 {
  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. #u60431 .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. #u60431_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u60432_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u60432 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u60432 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u60432_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u60433 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u60434_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. #u60434 {
  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. #u60434 .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. #u60434_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u60435_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u60435 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u60435 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u60435_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u60436 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u60437_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. #u60437 {
  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. #u60437 .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. #u60437_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u60438_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u60438 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u60438 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u60438_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u60439 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u60440_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. #u60440 {
  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. #u60440 .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. #u60440_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u60441_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u60441 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u60441 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u60441_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u60442 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u60443_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. #u60443 {
  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. #u60443 .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. #u60443_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u60444_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u60444 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u60444 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u60444_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u60445 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u60446_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. #u60446 {
  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. #u60446 .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. #u60446_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u60447_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u60447 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u60447 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u60447_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u60448 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u60449_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. #u60449 {
  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. #u60449 .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. #u60449_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u60450_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u60450 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u60450 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u60450_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u60451 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u60452_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. #u60452 {
  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. #u60452 .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. #u60452_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u60453_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u60453 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u60453 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u60453_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u60454 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u60455_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. #u60455 {
  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. #u60455 .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. #u60455_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u60456_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u60456 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u60456 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u60456_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u60457_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. #u60457 {
  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. #u60457 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u60457_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u60458_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u60458 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u60458 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u60458_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u60459_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. #u60459 {
  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. #u60459 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u60459_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u60460_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u60460 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u60460 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u60460_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u60461 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u60462_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. #u60462 {
  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. #u60462 .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. #u60462_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u60463_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u60463 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u60463 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u60463_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u60464 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u60465_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. #u60465 {
  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. #u60465 .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. #u60465_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u60466_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u60466 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u60466 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u60466_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u60467_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1258px;
  1644. height:1179px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(242, 242, 242, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. }
  1656. #u60467 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:333px;
  1660. top:51px;
  1661. width:1258px;
  1662. height:1179px;
  1663. display:flex;
  1664. }
  1665. #u60467 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u60467_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u60468 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:356px;
  1682. top:373px;
  1683. width:1214px;
  1684. height:296px;
  1685. }
  1686. #u60469_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:81px;
  1692. height:30px;
  1693. }
  1694. #u60469 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:81px;
  1700. height:30px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:14px;
  1706. color:#FFFFFF;
  1707. }
  1708. #u60469 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u60469_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. }
  1720. #u60470_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:81px;
  1726. height:30px;
  1727. }
  1728. #u60470 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:81px;
  1732. top:0px;
  1733. width:81px;
  1734. height:30px;
  1735. display:flex;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:14px;
  1740. color:#FFFFFF;
  1741. }
  1742. #u60470 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:2px 2px 2px 2px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u60470_text {
  1750. border-width:0px;
  1751. word-wrap:break-word;
  1752. text-transform:none;
  1753. }
  1754. #u60471_img {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:81px;
  1760. height:30px;
  1761. }
  1762. #u60471 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:162px;
  1766. top:0px;
  1767. width:81px;
  1768. height:30px;
  1769. display:flex;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:14px;
  1774. color:#FFFFFF;
  1775. }
  1776. #u60471 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u60471_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u60472_img {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:121px;
  1794. height:30px;
  1795. }
  1796. #u60472 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:243px;
  1800. top:0px;
  1801. width:121px;
  1802. height:30px;
  1803. display:flex;
  1804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1805. font-weight:400;
  1806. font-style:normal;
  1807. font-size:14px;
  1808. color:#FFFFFF;
  1809. }
  1810. #u60472 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u60472_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u60473_img {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:81px;
  1828. height:30px;
  1829. }
  1830. #u60473 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:364px;
  1834. top:0px;
  1835. width:81px;
  1836. height:30px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:14px;
  1842. color:#FFFFFF;
  1843. }
  1844. #u60473 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u60473_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. }
  1856. #u60474_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:122px;
  1862. height:30px;
  1863. }
  1864. #u60474 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:445px;
  1868. top:0px;
  1869. width:122px;
  1870. height:30px;
  1871. display:flex;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:14px;
  1876. color:#FFFFFF;
  1877. }
  1878. #u60474 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u60474_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u60475_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:102px;
  1896. height:30px;
  1897. }
  1898. #u60475 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:567px;
  1902. top:0px;
  1903. width:102px;
  1904. height:30px;
  1905. display:flex;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:14px;
  1910. color:#FFFFFF;
  1911. }
  1912. #u60475 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 2px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u60475_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u60476_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:98px;
  1930. height:30px;
  1931. }
  1932. #u60476 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:669px;
  1936. top:0px;
  1937. width:98px;
  1938. height:30px;
  1939. display:flex;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:14px;
  1944. color:#FFFFFF;
  1945. }
  1946. #u60476 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 2px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u60476_text {
  1954. border-width:0px;
  1955. word-wrap:break-word;
  1956. text-transform:none;
  1957. }
  1958. #u60477_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:102px;
  1964. height:30px;
  1965. }
  1966. #u60477 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:767px;
  1970. top:0px;
  1971. width:102px;
  1972. height:30px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:14px;
  1978. color:#FFFFFF;
  1979. }
  1980. #u60477 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 2px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u60477_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u60478_img {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:98px;
  1998. height:30px;
  1999. }
  2000. #u60478 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:869px;
  2004. top:0px;
  2005. width:98px;
  2006. height:30px;
  2007. display:flex;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:14px;
  2012. color:#FFFFFF;
  2013. }
  2014. #u60478 .text {
  2015. position:absolute;
  2016. align-self:center;
  2017. padding:2px 2px 2px 2px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u60478_text {
  2022. border-width:0px;
  2023. word-wrap:break-word;
  2024. text-transform:none;
  2025. }
  2026. #u60479_img {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:102px;
  2032. height:30px;
  2033. }
  2034. #u60479 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:967px;
  2038. top:0px;
  2039. width:102px;
  2040. height:30px;
  2041. display:flex;
  2042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:14px;
  2046. color:#FFFFFF;
  2047. }
  2048. #u60479 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 2px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u60479_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. }
  2060. #u60480_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:145px;
  2066. height:30px;
  2067. }
  2068. #u60480 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:1069px;
  2072. top:0px;
  2073. width:145px;
  2074. height:30px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. color:#FFFFFF;
  2081. }
  2082. #u60480 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 2px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u60480_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. }
  2094. #u60481_img {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:81px;
  2100. height:38px;
  2101. }
  2102. #u60481 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:30px;
  2107. width:81px;
  2108. height:38px;
  2109. display:flex;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:14px;
  2114. }
  2115. #u60481 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u60481_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. visibility:hidden;
  2127. }
  2128. #u60482_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:81px;
  2134. height:38px;
  2135. }
  2136. #u60482 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:81px;
  2140. top:30px;
  2141. width:81px;
  2142. height:38px;
  2143. display:flex;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:14px;
  2148. }
  2149. #u60482 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u60482_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u60483_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:81px;
  2168. height:38px;
  2169. }
  2170. #u60483 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:162px;
  2174. top:30px;
  2175. width:81px;
  2176. height:38px;
  2177. display:flex;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:14px;
  2182. }
  2183. #u60483 .text {
  2184. position:absolute;
  2185. align-self:center;
  2186. padding:2px 2px 2px 2px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u60483_text {
  2191. border-width:0px;
  2192. word-wrap:break-word;
  2193. text-transform:none;
  2194. visibility:hidden;
  2195. }
  2196. #u60484_img {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:121px;
  2202. height:38px;
  2203. }
  2204. #u60484 {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:243px;
  2208. top:30px;
  2209. width:121px;
  2210. height:38px;
  2211. display:flex;
  2212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:14px;
  2216. }
  2217. #u60484 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 2px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u60484_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. }
  2229. #u60485_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:81px;
  2235. height:38px;
  2236. }
  2237. #u60485 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:364px;
  2241. top:30px;
  2242. width:81px;
  2243. height:38px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:14px;
  2249. }
  2250. #u60485 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:2px 2px 2px 2px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u60485_text {
  2258. border-width:0px;
  2259. word-wrap:break-word;
  2260. text-transform:none;
  2261. visibility:hidden;
  2262. }
  2263. #u60486_img {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:122px;
  2269. height:38px;
  2270. }
  2271. #u60486 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:445px;
  2275. top:30px;
  2276. width:122px;
  2277. height:38px;
  2278. display:flex;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. }
  2284. #u60486 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 2px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u60486_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. visibility:hidden;
  2296. }
  2297. #u60487_img {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:102px;
  2303. height:38px;
  2304. }
  2305. #u60487 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:567px;
  2309. top:30px;
  2310. width:102px;
  2311. height:38px;
  2312. display:flex;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:14px;
  2317. }
  2318. #u60487 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 2px 2px 2px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u60487_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. visibility:hidden;
  2330. }
  2331. #u60488_img {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:98px;
  2337. height:38px;
  2338. }
  2339. #u60488 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:669px;
  2343. top:30px;
  2344. width:98px;
  2345. height:38px;
  2346. display:flex;
  2347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2348. font-weight:400;
  2349. font-style:normal;
  2350. font-size:14px;
  2351. }
  2352. #u60488 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:2px 2px 2px 2px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u60488_text {
  2360. border-width:0px;
  2361. word-wrap:break-word;
  2362. text-transform:none;
  2363. visibility:hidden;
  2364. }
  2365. #u60489_img {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:102px;
  2371. height:38px;
  2372. }
  2373. #u60489 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:767px;
  2377. top:30px;
  2378. width:102px;
  2379. height:38px;
  2380. display:flex;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:14px;
  2385. }
  2386. #u60489 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:2px 2px 2px 2px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u60489_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. visibility:hidden;
  2398. }
  2399. #u60490_img {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:98px;
  2405. height:38px;
  2406. }
  2407. #u60490 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:869px;
  2411. top:30px;
  2412. width:98px;
  2413. height:38px;
  2414. display:flex;
  2415. font-size:14px;
  2416. }
  2417. #u60490 .text {
  2418. position:absolute;
  2419. align-self:center;
  2420. padding:2px 2px 2px 2px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u60490_text {
  2425. border-width:0px;
  2426. word-wrap:break-word;
  2427. text-transform:none;
  2428. visibility:hidden;
  2429. }
  2430. #u60491_img {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:102px;
  2436. height:38px;
  2437. }
  2438. #u60491 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:967px;
  2442. top:30px;
  2443. width:102px;
  2444. height:38px;
  2445. display:flex;
  2446. font-size:14px;
  2447. }
  2448. #u60491 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 2px 2px 2px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u60491_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. visibility:hidden;
  2460. }
  2461. #u60492_img {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:145px;
  2467. height:38px;
  2468. }
  2469. #u60492 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:1069px;
  2473. top:30px;
  2474. width:145px;
  2475. height:38px;
  2476. display:flex;
  2477. font-size:14px;
  2478. color:#1890FF;
  2479. }
  2480. #u60492 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:2px 2px 2px 2px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u60492_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. }
  2492. #u60493_img {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:81px;
  2498. height:38px;
  2499. }
  2500. #u60493 {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:68px;
  2505. width:81px;
  2506. height:38px;
  2507. display:flex;
  2508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2509. font-weight:400;
  2510. font-style:normal;
  2511. font-size:14px;
  2512. }
  2513. #u60493 .text {
  2514. position:absolute;
  2515. align-self:center;
  2516. padding:2px 2px 2px 2px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u60493_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. visibility:hidden;
  2525. }
  2526. #u60494_img {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:81px;
  2532. height:38px;
  2533. }
  2534. #u60494 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:81px;
  2538. top:68px;
  2539. width:81px;
  2540. height:38px;
  2541. display:flex;
  2542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. font-size:14px;
  2546. }
  2547. #u60494 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 2px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u60494_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. visibility:hidden;
  2559. }
  2560. #u60495_img {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:81px;
  2566. height:38px;
  2567. }
  2568. #u60495 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:162px;
  2572. top:68px;
  2573. width:81px;
  2574. height:38px;
  2575. display:flex;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:14px;
  2580. }
  2581. #u60495 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 2px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u60495_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. visibility:hidden;
  2593. }
  2594. #u60496_img {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:121px;
  2600. height:38px;
  2601. }
  2602. #u60496 {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:243px;
  2606. top:68px;
  2607. width:121px;
  2608. height:38px;
  2609. display:flex;
  2610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2611. font-weight:400;
  2612. font-style:normal;
  2613. font-size:14px;
  2614. }
  2615. #u60496 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u60496_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u60497_img {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:81px;
  2633. height:38px;
  2634. }
  2635. #u60497 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:364px;
  2639. top:68px;
  2640. width:81px;
  2641. height:38px;
  2642. display:flex;
  2643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:14px;
  2647. }
  2648. #u60497 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:2px 2px 2px 2px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u60497_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. visibility:hidden;
  2660. }
  2661. #u60498_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:122px;
  2667. height:38px;
  2668. }
  2669. #u60498 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:445px;
  2673. top:68px;
  2674. width:122px;
  2675. height:38px;
  2676. display:flex;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:14px;
  2681. }
  2682. #u60498 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 2px 2px 2px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u60498_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. visibility:hidden;
  2694. }
  2695. #u60499_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:102px;
  2701. height:38px;
  2702. }
  2703. #u60499 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:567px;
  2707. top:68px;
  2708. width:102px;
  2709. height:38px;
  2710. display:flex;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:14px;
  2715. }
  2716. #u60499 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 2px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u60499_text {
  2724. border-width:0px;
  2725. word-wrap:break-word;
  2726. text-transform:none;
  2727. visibility:hidden;
  2728. }
  2729. #u60500_img {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:98px;
  2735. height:38px;
  2736. }
  2737. #u60500 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:669px;
  2741. top:68px;
  2742. width:98px;
  2743. height:38px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:14px;
  2749. }
  2750. #u60500 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 2px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u60500_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u60501_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:102px;
  2769. height:38px;
  2770. }
  2771. #u60501 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:767px;
  2775. top:68px;
  2776. width:102px;
  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:14px;
  2783. }
  2784. #u60501 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u60501_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u60502_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:98px;
  2803. height:38px;
  2804. }
  2805. #u60502 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:869px;
  2809. top:68px;
  2810. width:98px;
  2811. height:38px;
  2812. display:flex;
  2813. font-size:14px;
  2814. }
  2815. #u60502 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:2px 2px 2px 2px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u60502_text {
  2823. border-width:0px;
  2824. word-wrap:break-word;
  2825. text-transform:none;
  2826. visibility:hidden;
  2827. }
  2828. #u60503_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:102px;
  2834. height:38px;
  2835. }
  2836. #u60503 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:967px;
  2840. top:68px;
  2841. width:102px;
  2842. height:38px;
  2843. display:flex;
  2844. font-size:14px;
  2845. }
  2846. #u60503 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 2px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u60503_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u60504_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:145px;
  2865. height:38px;
  2866. }
  2867. #u60504 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:1069px;
  2871. top:68px;
  2872. width:145px;
  2873. height:38px;
  2874. display:flex;
  2875. font-size:14px;
  2876. }
  2877. #u60504 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 2px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u60504_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. }
  2889. #u60505_img {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:81px;
  2895. height:38px;
  2896. }
  2897. #u60505 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:106px;
  2902. width:81px;
  2903. height:38px;
  2904. display:flex;
  2905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2906. font-weight:400;
  2907. font-style:normal;
  2908. font-size:14px;
  2909. }
  2910. #u60505 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 2px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u60505_text {
  2918. border-width:0px;
  2919. word-wrap:break-word;
  2920. text-transform:none;
  2921. visibility:hidden;
  2922. }
  2923. #u60506_img {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:81px;
  2929. height:38px;
  2930. }
  2931. #u60506 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:81px;
  2935. top:106px;
  2936. width:81px;
  2937. height:38px;
  2938. display:flex;
  2939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2940. font-weight:400;
  2941. font-style:normal;
  2942. font-size:14px;
  2943. }
  2944. #u60506 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 2px 2px 2px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u60506_text {
  2952. border-width:0px;
  2953. word-wrap:break-word;
  2954. text-transform:none;
  2955. visibility:hidden;
  2956. }
  2957. #u60507_img {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:81px;
  2963. height:38px;
  2964. }
  2965. #u60507 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:162px;
  2969. top:106px;
  2970. width:81px;
  2971. height:38px;
  2972. display:flex;
  2973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. font-size:14px;
  2977. }
  2978. #u60507 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 2px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u60507_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. visibility:hidden;
  2990. }
  2991. #u60508_img {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:121px;
  2997. height:38px;
  2998. }
  2999. #u60508 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:243px;
  3003. top:106px;
  3004. width:121px;
  3005. height:38px;
  3006. display:flex;
  3007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3008. font-weight:400;
  3009. font-style:normal;
  3010. font-size:14px;
  3011. }
  3012. #u60508 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 2px 2px 2px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u60508_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. }
  3024. #u60509_img {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:81px;
  3030. height:38px;
  3031. }
  3032. #u60509 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:364px;
  3036. top:106px;
  3037. width:81px;
  3038. height:38px;
  3039. display:flex;
  3040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3041. font-weight:400;
  3042. font-style:normal;
  3043. font-size:14px;
  3044. }
  3045. #u60509 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 2px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u60509_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u60510_img {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:122px;
  3064. height:38px;
  3065. }
  3066. #u60510 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:445px;
  3070. top:106px;
  3071. width:122px;
  3072. height:38px;
  3073. display:flex;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:14px;
  3078. }
  3079. #u60510 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 2px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u60510_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u60511_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:102px;
  3098. height:38px;
  3099. }
  3100. #u60511 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:567px;
  3104. top:106px;
  3105. width:102px;
  3106. height:38px;
  3107. display:flex;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:14px;
  3112. }
  3113. #u60511 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 2px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u60511_text {
  3121. border-width:0px;
  3122. word-wrap:break-word;
  3123. text-transform:none;
  3124. visibility:hidden;
  3125. }
  3126. #u60512_img {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:98px;
  3132. height:38px;
  3133. }
  3134. #u60512 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:669px;
  3138. top:106px;
  3139. width:98px;
  3140. height:38px;
  3141. display:flex;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:14px;
  3146. }
  3147. #u60512 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 2px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u60512_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. visibility:hidden;
  3159. }
  3160. #u60513_img {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:102px;
  3166. height:38px;
  3167. }
  3168. #u60513 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:767px;
  3172. top:106px;
  3173. width:102px;
  3174. height:38px;
  3175. display:flex;
  3176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:14px;
  3180. }
  3181. #u60513 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u60513_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u60514_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:98px;
  3200. height:38px;
  3201. }
  3202. #u60514 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:869px;
  3206. top:106px;
  3207. width:98px;
  3208. height:38px;
  3209. display:flex;
  3210. font-size:14px;
  3211. }
  3212. #u60514 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 2px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u60514_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. visibility:hidden;
  3224. }
  3225. #u60515_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:102px;
  3231. height:38px;
  3232. }
  3233. #u60515 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:967px;
  3237. top:106px;
  3238. width:102px;
  3239. height:38px;
  3240. display:flex;
  3241. font-size:14px;
  3242. }
  3243. #u60515 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 2px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u60515_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. visibility:hidden;
  3255. }
  3256. #u60516_img {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:145px;
  3262. height:38px;
  3263. }
  3264. #u60516 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:1069px;
  3268. top:106px;
  3269. width:145px;
  3270. height:38px;
  3271. display:flex;
  3272. font-size:14px;
  3273. }
  3274. #u60516 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 2px 2px 2px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u60516_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. visibility:hidden;
  3286. }
  3287. #u60517_img {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:81px;
  3293. height:38px;
  3294. }
  3295. #u60517 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:144px;
  3300. width:81px;
  3301. height:38px;
  3302. display:flex;
  3303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3304. font-weight:400;
  3305. font-style:normal;
  3306. font-size:14px;
  3307. }
  3308. #u60517 .text {
  3309. position:absolute;
  3310. align-self:center;
  3311. padding:2px 2px 2px 2px;
  3312. box-sizing:border-box;
  3313. width:100%;
  3314. }
  3315. #u60517_text {
  3316. border-width:0px;
  3317. word-wrap:break-word;
  3318. text-transform:none;
  3319. visibility:hidden;
  3320. }
  3321. #u60518_img {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:81px;
  3327. height:38px;
  3328. }
  3329. #u60518 {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:81px;
  3333. top:144px;
  3334. width:81px;
  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:14px;
  3341. }
  3342. #u60518 .text {
  3343. position:absolute;
  3344. align-self:center;
  3345. padding:2px 2px 2px 2px;
  3346. box-sizing:border-box;
  3347. width:100%;
  3348. }
  3349. #u60518_text {
  3350. border-width:0px;
  3351. word-wrap:break-word;
  3352. text-transform:none;
  3353. visibility:hidden;
  3354. }
  3355. #u60519_img {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:81px;
  3361. height:38px;
  3362. }
  3363. #u60519 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:162px;
  3367. top:144px;
  3368. width:81px;
  3369. height:38px;
  3370. display:flex;
  3371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3372. font-weight:400;
  3373. font-style:normal;
  3374. font-size:14px;
  3375. }
  3376. #u60519 .text {
  3377. position:absolute;
  3378. align-self:center;
  3379. padding:2px 2px 2px 2px;
  3380. box-sizing:border-box;
  3381. width:100%;
  3382. }
  3383. #u60519_text {
  3384. border-width:0px;
  3385. word-wrap:break-word;
  3386. text-transform:none;
  3387. visibility:hidden;
  3388. }
  3389. #u60520_img {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:121px;
  3395. height:38px;
  3396. }
  3397. #u60520 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:243px;
  3401. top:144px;
  3402. width:121px;
  3403. height:38px;
  3404. display:flex;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:14px;
  3409. }
  3410. #u60520 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 2px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u60520_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. visibility:hidden;
  3422. }
  3423. #u60521_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:81px;
  3429. height:38px;
  3430. }
  3431. #u60521 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:364px;
  3435. top:144px;
  3436. width:81px;
  3437. height:38px;
  3438. display:flex;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:14px;
  3443. }
  3444. #u60521 .text {
  3445. position:absolute;
  3446. align-self:center;
  3447. padding:2px 2px 2px 2px;
  3448. box-sizing:border-box;
  3449. width:100%;
  3450. }
  3451. #u60521_text {
  3452. border-width:0px;
  3453. word-wrap:break-word;
  3454. text-transform:none;
  3455. visibility:hidden;
  3456. }
  3457. #u60522_img {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:122px;
  3463. height:38px;
  3464. }
  3465. #u60522 {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:445px;
  3469. top:144px;
  3470. width:122px;
  3471. height:38px;
  3472. display:flex;
  3473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:14px;
  3477. }
  3478. #u60522 .text {
  3479. position:absolute;
  3480. align-self:center;
  3481. padding:2px 2px 2px 2px;
  3482. box-sizing:border-box;
  3483. width:100%;
  3484. }
  3485. #u60522_text {
  3486. border-width:0px;
  3487. word-wrap:break-word;
  3488. text-transform:none;
  3489. visibility:hidden;
  3490. }
  3491. #u60523_img {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:102px;
  3497. height:38px;
  3498. }
  3499. #u60523 {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:567px;
  3503. top:144px;
  3504. width:102px;
  3505. height:38px;
  3506. display:flex;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:14px;
  3511. }
  3512. #u60523 .text {
  3513. position:absolute;
  3514. align-self:center;
  3515. padding:2px 2px 2px 2px;
  3516. box-sizing:border-box;
  3517. width:100%;
  3518. }
  3519. #u60523_text {
  3520. border-width:0px;
  3521. word-wrap:break-word;
  3522. text-transform:none;
  3523. visibility:hidden;
  3524. }
  3525. #u60524_img {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:98px;
  3531. height:38px;
  3532. }
  3533. #u60524 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:669px;
  3537. top:144px;
  3538. width:98px;
  3539. height:38px;
  3540. display:flex;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:14px;
  3545. }
  3546. #u60524 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u60524_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u60525_img {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:102px;
  3565. height:38px;
  3566. }
  3567. #u60525 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:767px;
  3571. top:144px;
  3572. width:102px;
  3573. height:38px;
  3574. display:flex;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:14px;
  3579. }
  3580. #u60525 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 2px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u60525_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u60526_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:98px;
  3599. height:38px;
  3600. }
  3601. #u60526 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:869px;
  3605. top:144px;
  3606. width:98px;
  3607. height:38px;
  3608. display:flex;
  3609. font-size:14px;
  3610. }
  3611. #u60526 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 2px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u60526_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u60527_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:102px;
  3630. height:38px;
  3631. }
  3632. #u60527 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:967px;
  3636. top:144px;
  3637. width:102px;
  3638. height:38px;
  3639. display:flex;
  3640. font-size:14px;
  3641. }
  3642. #u60527 .text {
  3643. position:absolute;
  3644. align-self:center;
  3645. padding:2px 2px 2px 2px;
  3646. box-sizing:border-box;
  3647. width:100%;
  3648. }
  3649. #u60527_text {
  3650. border-width:0px;
  3651. word-wrap:break-word;
  3652. text-transform:none;
  3653. visibility:hidden;
  3654. }
  3655. #u60528_img {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:145px;
  3661. height:38px;
  3662. }
  3663. #u60528 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:1069px;
  3667. top:144px;
  3668. width:145px;
  3669. height:38px;
  3670. display:flex;
  3671. font-size:14px;
  3672. }
  3673. #u60528 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 2px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u60528_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. visibility:hidden;
  3685. }
  3686. #u60529_img {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:81px;
  3692. height:38px;
  3693. }
  3694. #u60529 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:182px;
  3699. width:81px;
  3700. height:38px;
  3701. display:flex;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:14px;
  3706. }
  3707. #u60529 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 2px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u60529_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u60530_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:81px;
  3726. height:38px;
  3727. }
  3728. #u60530 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:81px;
  3732. top:182px;
  3733. width:81px;
  3734. height:38px;
  3735. display:flex;
  3736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3737. font-weight:400;
  3738. font-style:normal;
  3739. font-size:14px;
  3740. }
  3741. #u60530 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 2px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u60530_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. visibility:hidden;
  3753. }
  3754. #u60531_img {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:81px;
  3760. height:38px;
  3761. }
  3762. #u60531 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:162px;
  3766. top:182px;
  3767. width:81px;
  3768. height:38px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:14px;
  3774. }
  3775. #u60531 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 2px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u60531_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u60532_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:121px;
  3794. height:38px;
  3795. }
  3796. #u60532 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:243px;
  3800. top:182px;
  3801. width:121px;
  3802. height:38px;
  3803. display:flex;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:14px;
  3808. }
  3809. #u60532 .text {
  3810. position:absolute;
  3811. align-self:center;
  3812. padding:2px 2px 2px 2px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u60532_text {
  3817. border-width:0px;
  3818. word-wrap:break-word;
  3819. text-transform:none;
  3820. visibility:hidden;
  3821. }
  3822. #u60533_img {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:0px;
  3826. top:0px;
  3827. width:81px;
  3828. height:38px;
  3829. }
  3830. #u60533 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:364px;
  3834. top:182px;
  3835. width:81px;
  3836. height:38px;
  3837. display:flex;
  3838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:14px;
  3842. }
  3843. #u60533 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 2px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u60533_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u60534_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:122px;
  3862. height:38px;
  3863. }
  3864. #u60534 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:445px;
  3868. top:182px;
  3869. width:122px;
  3870. height:38px;
  3871. display:flex;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:14px;
  3876. }
  3877. #u60534 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 2px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u60534_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u60535_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:102px;
  3896. height:38px;
  3897. }
  3898. #u60535 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:567px;
  3902. top:182px;
  3903. width:102px;
  3904. height:38px;
  3905. display:flex;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:14px;
  3910. }
  3911. #u60535 .text {
  3912. position:absolute;
  3913. align-self:center;
  3914. padding:2px 2px 2px 2px;
  3915. box-sizing:border-box;
  3916. width:100%;
  3917. }
  3918. #u60535_text {
  3919. border-width:0px;
  3920. word-wrap:break-word;
  3921. text-transform:none;
  3922. visibility:hidden;
  3923. }
  3924. #u60536_img {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:98px;
  3930. height:38px;
  3931. }
  3932. #u60536 {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:669px;
  3936. top:182px;
  3937. width:98px;
  3938. height:38px;
  3939. display:flex;
  3940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. font-size:14px;
  3944. }
  3945. #u60536 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 2px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u60536_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u60537_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:102px;
  3964. height:38px;
  3965. }
  3966. #u60537 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:767px;
  3970. top:182px;
  3971. width:102px;
  3972. height:38px;
  3973. display:flex;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:14px;
  3978. }
  3979. #u60537 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 2px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u60537_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. visibility:hidden;
  3991. }
  3992. #u60538_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:98px;
  3998. height:38px;
  3999. }
  4000. #u60538 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:869px;
  4004. top:182px;
  4005. width:98px;
  4006. height:38px;
  4007. display:flex;
  4008. font-size:14px;
  4009. }
  4010. #u60538 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 2px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u60538_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. visibility:hidden;
  4022. }
  4023. #u60539_img {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:102px;
  4029. height:38px;
  4030. }
  4031. #u60539 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:967px;
  4035. top:182px;
  4036. width:102px;
  4037. height:38px;
  4038. display:flex;
  4039. font-size:14px;
  4040. }
  4041. #u60539 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 2px 2px 2px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u60539_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }
  4054. #u60540_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:145px;
  4060. height:38px;
  4061. }
  4062. #u60540 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:1069px;
  4066. top:182px;
  4067. width:145px;
  4068. height:38px;
  4069. display:flex;
  4070. font-size:14px;
  4071. }
  4072. #u60540 .text {
  4073. position:absolute;
  4074. align-self:center;
  4075. padding:2px 2px 2px 2px;
  4076. box-sizing:border-box;
  4077. width:100%;
  4078. }
  4079. #u60540_text {
  4080. border-width:0px;
  4081. word-wrap:break-word;
  4082. text-transform:none;
  4083. visibility:hidden;
  4084. }
  4085. #u60541_img {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:81px;
  4091. height:38px;
  4092. }
  4093. #u60541 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:220px;
  4098. width:81px;
  4099. height:38px;
  4100. display:flex;
  4101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:14px;
  4105. }
  4106. #u60541 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 2px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u60541_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. visibility:hidden;
  4118. }
  4119. #u60542_img {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:81px;
  4125. height:38px;
  4126. }
  4127. #u60542 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:81px;
  4131. top:220px;
  4132. width:81px;
  4133. height:38px;
  4134. display:flex;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:14px;
  4139. }
  4140. #u60542 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 2px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u60542_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u60543_img {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:81px;
  4159. height:38px;
  4160. }
  4161. #u60543 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:162px;
  4165. top:220px;
  4166. width:81px;
  4167. height:38px;
  4168. display:flex;
  4169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4170. font-weight:400;
  4171. font-style:normal;
  4172. font-size:14px;
  4173. }
  4174. #u60543 .text {
  4175. position:absolute;
  4176. align-self:center;
  4177. padding:2px 2px 2px 2px;
  4178. box-sizing:border-box;
  4179. width:100%;
  4180. }
  4181. #u60543_text {
  4182. border-width:0px;
  4183. word-wrap:break-word;
  4184. text-transform:none;
  4185. visibility:hidden;
  4186. }
  4187. #u60544_img {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:121px;
  4193. height:38px;
  4194. }
  4195. #u60544 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:243px;
  4199. top:220px;
  4200. width:121px;
  4201. height:38px;
  4202. display:flex;
  4203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4204. font-weight:400;
  4205. font-style:normal;
  4206. font-size:14px;
  4207. }
  4208. #u60544 .text {
  4209. position:absolute;
  4210. align-self:center;
  4211. padding:2px 2px 2px 2px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u60544_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u60545_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:81px;
  4227. height:38px;
  4228. }
  4229. #u60545 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:364px;
  4233. top:220px;
  4234. width:81px;
  4235. height:38px;
  4236. display:flex;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:14px;
  4241. }
  4242. #u60545 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 2px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u60545_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u60546_img {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:122px;
  4261. height:38px;
  4262. }
  4263. #u60546 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:445px;
  4267. top:220px;
  4268. width:122px;
  4269. height:38px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:14px;
  4275. }
  4276. #u60546 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 2px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u60546_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. visibility:hidden;
  4288. }
  4289. #u60547_img {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:102px;
  4295. height:38px;
  4296. }
  4297. #u60547 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:567px;
  4301. top:220px;
  4302. width:102px;
  4303. height:38px;
  4304. display:flex;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:14px;
  4309. }
  4310. #u60547 .text {
  4311. position:absolute;
  4312. align-self:center;
  4313. padding:2px 2px 2px 2px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u60547_text {
  4318. border-width:0px;
  4319. word-wrap:break-word;
  4320. text-transform:none;
  4321. visibility:hidden;
  4322. }
  4323. #u60548_img {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:98px;
  4329. height:38px;
  4330. }
  4331. #u60548 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:669px;
  4335. top:220px;
  4336. width:98px;
  4337. height:38px;
  4338. display:flex;
  4339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4340. font-weight:400;
  4341. font-style:normal;
  4342. font-size:14px;
  4343. }
  4344. #u60548 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u60548_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. visibility:hidden;
  4356. }
  4357. #u60549_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:102px;
  4363. height:38px;
  4364. }
  4365. #u60549 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:767px;
  4369. top:220px;
  4370. width:102px;
  4371. height:38px;
  4372. display:flex;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:14px;
  4377. }
  4378. #u60549 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u60549_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u60550_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:98px;
  4397. height:38px;
  4398. }
  4399. #u60550 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:869px;
  4403. top:220px;
  4404. width:98px;
  4405. height:38px;
  4406. display:flex;
  4407. font-size:14px;
  4408. }
  4409. #u60550 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u60550_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u60551_img {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:102px;
  4428. height:38px;
  4429. }
  4430. #u60551 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:967px;
  4434. top:220px;
  4435. width:102px;
  4436. height:38px;
  4437. display:flex;
  4438. font-size:14px;
  4439. }
  4440. #u60551 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 2px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u60551_text {
  4448. border-width:0px;
  4449. word-wrap:break-word;
  4450. text-transform:none;
  4451. visibility:hidden;
  4452. }
  4453. #u60552_img {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:145px;
  4459. height:38px;
  4460. }
  4461. #u60552 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:1069px;
  4465. top:220px;
  4466. width:145px;
  4467. height:38px;
  4468. display:flex;
  4469. font-size:14px;
  4470. }
  4471. #u60552 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 2px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u60552_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u60553_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:81px;
  4490. height:38px;
  4491. }
  4492. #u60553 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:258px;
  4497. width:81px;
  4498. height:38px;
  4499. display:flex;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:14px;
  4504. }
  4505. #u60553 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 2px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u60553_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u60554_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:81px;
  4524. height:38px;
  4525. }
  4526. #u60554 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:81px;
  4530. top:258px;
  4531. width:81px;
  4532. height:38px;
  4533. display:flex;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:14px;
  4538. }
  4539. #u60554 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 2px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u60554_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u60555_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:81px;
  4558. height:38px;
  4559. }
  4560. #u60555 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:162px;
  4564. top:258px;
  4565. width:81px;
  4566. height:38px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. }
  4573. #u60555 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u60555_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u60556_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:121px;
  4592. height:38px;
  4593. }
  4594. #u60556 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:243px;
  4598. top:258px;
  4599. width:121px;
  4600. height:38px;
  4601. display:flex;
  4602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:14px;
  4606. }
  4607. #u60556 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u60556_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u60557_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:81px;
  4626. height:38px;
  4627. }
  4628. #u60557 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:364px;
  4632. top:258px;
  4633. width:81px;
  4634. height:38px;
  4635. display:flex;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:14px;
  4640. }
  4641. #u60557 .text {
  4642. position:absolute;
  4643. align-self:center;
  4644. padding:2px 2px 2px 2px;
  4645. box-sizing:border-box;
  4646. width:100%;
  4647. }
  4648. #u60557_text {
  4649. border-width:0px;
  4650. word-wrap:break-word;
  4651. text-transform:none;
  4652. visibility:hidden;
  4653. }
  4654. #u60558_img {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:122px;
  4660. height:38px;
  4661. }
  4662. #u60558 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:445px;
  4666. top:258px;
  4667. width:122px;
  4668. height:38px;
  4669. display:flex;
  4670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4671. font-weight:400;
  4672. font-style:normal;
  4673. font-size:14px;
  4674. }
  4675. #u60558 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 2px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u60558_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. visibility:hidden;
  4687. }
  4688. #u60559_img {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:102px;
  4694. height:38px;
  4695. }
  4696. #u60559 {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:567px;
  4700. top:258px;
  4701. width:102px;
  4702. height:38px;
  4703. display:flex;
  4704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4705. font-weight:400;
  4706. font-style:normal;
  4707. font-size:14px;
  4708. }
  4709. #u60559 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u60559_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u60560_img {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:98px;
  4728. height:38px;
  4729. }
  4730. #u60560 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:669px;
  4734. top:258px;
  4735. width:98px;
  4736. height:38px;
  4737. display:flex;
  4738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:14px;
  4742. }
  4743. #u60560 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 2px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u60560_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u60561_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:102px;
  4762. height:38px;
  4763. }
  4764. #u60561 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:767px;
  4768. top:258px;
  4769. width:102px;
  4770. height:38px;
  4771. display:flex;
  4772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:14px;
  4776. }
  4777. #u60561 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:2px 2px 2px 2px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u60561_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. visibility:hidden;
  4789. }
  4790. #u60562_img {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:98px;
  4796. height:38px;
  4797. }
  4798. #u60562 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:869px;
  4802. top:258px;
  4803. width:98px;
  4804. height:38px;
  4805. display:flex;
  4806. font-size:14px;
  4807. }
  4808. #u60562 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 2px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u60562_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u60563_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:102px;
  4827. height:38px;
  4828. }
  4829. #u60563 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:967px;
  4833. top:258px;
  4834. width:102px;
  4835. height:38px;
  4836. display:flex;
  4837. font-size:14px;
  4838. }
  4839. #u60563 .text {
  4840. position:absolute;
  4841. align-self:center;
  4842. padding:2px 2px 2px 2px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u60563_text {
  4847. border-width:0px;
  4848. word-wrap:break-word;
  4849. text-transform:none;
  4850. visibility:hidden;
  4851. }
  4852. #u60564_img {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:145px;
  4858. height:38px;
  4859. }
  4860. #u60564 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:1069px;
  4864. top:258px;
  4865. width:145px;
  4866. height:38px;
  4867. display:flex;
  4868. font-size:14px;
  4869. }
  4870. #u60564 .text {
  4871. position:absolute;
  4872. align-self:center;
  4873. padding:2px 2px 2px 2px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u60564_text {
  4878. border-width:0px;
  4879. word-wrap:break-word;
  4880. text-transform:none;
  4881. visibility:hidden;
  4882. }
  4883. #u60565_div {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:80px;
  4889. height:40px;
  4890. background:inherit;
  4891. background-color:rgba(24, 144, 255, 1);
  4892. border:none;
  4893. border-radius:0px;
  4894. -moz-box-shadow:none;
  4895. -webkit-box-shadow:none;
  4896. box-shadow:none;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:14px;
  4901. color:#FFFFFF;
  4902. }
  4903. #u60565 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:356px;
  4907. top:333px;
  4908. width:80px;
  4909. height:40px;
  4910. display:flex;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:14px;
  4915. color:#FFFFFF;
  4916. }
  4917. #u60565 .text {
  4918. position:absolute;
  4919. align-self:center;
  4920. padding:2px 2px 2px 2px;
  4921. box-sizing:border-box;
  4922. width:100%;
  4923. }
  4924. #u60565_text {
  4925. border-width:0px;
  4926. word-wrap:break-word;
  4927. text-transform:none;
  4928. }
  4929. #u60566_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:80px;
  4935. height:40px;
  4936. background:inherit;
  4937. background-color:rgba(255, 255, 255, 1);
  4938. box-sizing:border-box;
  4939. border-width:1px;
  4940. border-style:solid;
  4941. border-color:rgba(170, 170, 170, 1);
  4942. border-radius:0px;
  4943. -moz-box-shadow:none;
  4944. -webkit-box-shadow:none;
  4945. box-shadow:none;
  4946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:14px;
  4950. }
  4951. #u60566 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:436px;
  4955. top:333px;
  4956. width:80px;
  4957. height:40px;
  4958. display:flex;
  4959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. font-size:14px;
  4963. }
  4964. #u60566 .text {
  4965. position:absolute;
  4966. align-self:center;
  4967. padding:2px 2px 2px 2px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u60566_text {
  4972. border-width:0px;
  4973. word-wrap:break-word;
  4974. text-transform:none;
  4975. }
  4976. #u60567 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:0px;
  4982. height:0px;
  4983. }
  4984. #u60568_div {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:160px;
  4990. height:30px;
  4991. background:inherit;
  4992. background-color:rgba(255, 255, 255, 1);
  4993. box-sizing:border-box;
  4994. border-width:1px;
  4995. border-style:solid;
  4996. border-color:rgba(201, 201, 201, 1);
  4997. border-radius:4px;
  4998. -moz-box-shadow:none;
  4999. -webkit-box-shadow:none;
  5000. box-shadow:none;
  5001. font-family:'Microsoft YaHei', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:14px;
  5005. color:#CCCCCC;
  5006. text-align:left;
  5007. }
  5008. #u60568 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:868px;
  5012. top:101px;
  5013. width:160px;
  5014. height:30px;
  5015. display:flex;
  5016. font-family:'Microsoft YaHei', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. color:#CCCCCC;
  5021. text-align:left;
  5022. }
  5023. #u60568 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 8px 2px 8px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u60568_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u60569_input {
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:150px;
  5041. height:28px;
  5042. padding:2px 2px 2px 2px;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:14px;
  5047. letter-spacing:normal;
  5048. color:#000000;
  5049. vertical-align:none;
  5050. text-align:left;
  5051. text-transform:none;
  5052. background-color:transparent;
  5053. border-color:transparent;
  5054. }
  5055. #u60569_input.disabled {
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:150px;
  5060. height:28px;
  5061. padding:2px 2px 2px 2px;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:14px;
  5066. letter-spacing:normal;
  5067. color:#000000;
  5068. vertical-align:none;
  5069. text-align:left;
  5070. text-transform:none;
  5071. background-color:transparent;
  5072. border-color:transparent;
  5073. }
  5074. #u60569_div {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:150px;
  5080. height:28px;
  5081. background:inherit;
  5082. background-color:rgba(255, 255, 255, 1);
  5083. border:none;
  5084. border-radius:0px;
  5085. -moz-box-shadow:none;
  5086. -webkit-box-shadow:none;
  5087. box-shadow:none;
  5088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5089. font-weight:400;
  5090. font-style:normal;
  5091. font-size:14px;
  5092. }
  5093. #u60569 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:874px;
  5097. top:102px;
  5098. width:150px;
  5099. height:28px;
  5100. display:flex;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:14px;
  5105. }
  5106. #u60569 .text {
  5107. position:absolute;
  5108. align-self:center;
  5109. padding:2px 2px 2px 2px;
  5110. box-sizing:border-box;
  5111. width:100%;
  5112. }
  5113. #u60569_div.disabled {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:150px;
  5119. height:28px;
  5120. background:inherit;
  5121. background-color:rgba(240, 240, 240, 1);
  5122. border:none;
  5123. border-radius:0px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:14px;
  5131. }
  5132. #u60569.disabled {
  5133. }
  5134. #u60570 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:0px;
  5140. height:0px;
  5141. }
  5142. #u60571_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:60px;
  5148. height:30px;
  5149. background:inherit;
  5150. background-color:rgba(24, 144, 255, 1);
  5151. border:none;
  5152. border-radius:4px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:14px;
  5160. color:#FFFFFF;
  5161. }
  5162. #u60571 {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:527px;
  5166. top:141px;
  5167. width:60px;
  5168. height:30px;
  5169. display:flex;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:14px;
  5174. color:#FFFFFF;
  5175. }
  5176. #u60571 .text {
  5177. position:absolute;
  5178. align-self:center;
  5179. padding:2px 2px 2px 2px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u60571_text {
  5184. border-width:0px;
  5185. word-wrap:break-word;
  5186. text-transform:none;
  5187. }
  5188. #u60572_div {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:60px;
  5194. height:30px;
  5195. background:inherit;
  5196. background-color:rgba(255, 255, 255, 1);
  5197. box-sizing:border-box;
  5198. border-width:1px;
  5199. border-style:solid;
  5200. border-color:rgba(170, 170, 170, 1);
  5201. border-radius:4px;
  5202. -moz-box-shadow:none;
  5203. -webkit-box-shadow:none;
  5204. box-shadow:none;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:14px;
  5209. }
  5210. #u60572 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:597px;
  5214. top:141px;
  5215. width:60px;
  5216. height:30px;
  5217. display:flex;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:14px;
  5222. }
  5223. #u60572 .text {
  5224. position:absolute;
  5225. align-self:center;
  5226. padding:2px 2px 2px 2px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u60572_text {
  5231. border-width:0px;
  5232. word-wrap:break-word;
  5233. text-transform:none;
  5234. }
  5235. #u60573 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:0px;
  5241. height:0px;
  5242. }
  5243. #u60574_div {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:160px;
  5249. height:30px;
  5250. background:inherit;
  5251. background-color:rgba(255, 255, 255, 1);
  5252. box-sizing:border-box;
  5253. border-width:1px;
  5254. border-style:solid;
  5255. border-color:rgba(215, 215, 215, 1);
  5256. border-radius:4px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. font-size:14px;
  5261. }
  5262. #u60574 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:1038px;
  5266. top:101px;
  5267. width:160px;
  5268. height:30px;
  5269. display:flex;
  5270. font-size:14px;
  5271. }
  5272. #u60574 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 2px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u60574_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u60575_input {
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:153px;
  5290. height:23px;
  5291. padding:2px 2px 2px 2px;
  5292. font-family:'ArialMT', 'Arial', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:14px;
  5296. letter-spacing:normal;
  5297. color:#AAAAAA;
  5298. vertical-align:none;
  5299. text-align:left;
  5300. text-transform:none;
  5301. background-color:transparent;
  5302. border-color:transparent;
  5303. }
  5304. #u60575_input.disabled {
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:153px;
  5309. height:23px;
  5310. padding:2px 2px 2px 2px;
  5311. font-family:'ArialMT', 'Arial', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:14px;
  5315. letter-spacing:normal;
  5316. color:#AAAAAA;
  5317. vertical-align:none;
  5318. text-align:left;
  5319. text-transform:none;
  5320. background-color:transparent;
  5321. border-color:transparent;
  5322. }
  5323. #u60575_div {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:153px;
  5329. height:23px;
  5330. background:inherit;
  5331. background-color:rgba(255, 255, 255, 1);
  5332. border:none;
  5333. border-radius:0px;
  5334. -moz-box-shadow:none;
  5335. -webkit-box-shadow:none;
  5336. box-shadow:none;
  5337. font-size:14px;
  5338. color:#AAAAAA;
  5339. }
  5340. #u60575 {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:1043px;
  5344. top:103px;
  5345. width:153px;
  5346. height:23px;
  5347. display:flex;
  5348. font-size:14px;
  5349. color:#AAAAAA;
  5350. }
  5351. #u60575 .text {
  5352. position:absolute;
  5353. align-self:flex-start;
  5354. padding:2px 2px 2px 2px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u60575_div.disabled {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:153px;
  5364. height:23px;
  5365. background:inherit;
  5366. background-color:rgba(240, 240, 240, 1);
  5367. border:none;
  5368. border-radius:0px;
  5369. -moz-box-shadow:none;
  5370. -webkit-box-shadow:none;
  5371. box-shadow:none;
  5372. font-size:14px;
  5373. color:#AAAAAA;
  5374. }
  5375. #u60575.disabled {
  5376. }
  5377. .u60575_input_option {
  5378. font-size:14px;
  5379. }
  5380. #u60576_div {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:73px;
  5386. height:50px;
  5387. background:inherit;
  5388. background-color:rgba(255, 255, 255, 0);
  5389. border:none;
  5390. border-left:0px;
  5391. border-top:0px;
  5392. border-right:0px;
  5393. border-radius:0px;
  5394. border-bottom-right-radius:0px;
  5395. border-bottom-left-radius:0px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5400. font-weight:400;
  5401. font-style:normal;
  5402. font-size:18px;
  5403. line-height:40px;
  5404. }
  5405. #u60576 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:355px;
  5409. top:50px;
  5410. width:73px;
  5411. height:50px;
  5412. display:flex;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:18px;
  5417. line-height:40px;
  5418. }
  5419. #u60576 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:0px 0px 0px 0px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u60576_text {
  5427. border-width:0px;
  5428. white-space:nowrap;
  5429. text-transform:none;
  5430. }
  5431. #u60577 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:0px;
  5437. height:0px;
  5438. }
  5439. #u60578_div {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:160px;
  5445. height:30px;
  5446. background:inherit;
  5447. background-color:rgba(255, 255, 255, 1);
  5448. box-sizing:border-box;
  5449. border-width:1px;
  5450. border-style:solid;
  5451. border-color:rgba(215, 215, 215, 1);
  5452. border-radius:4px;
  5453. -moz-box-shadow:none;
  5454. -webkit-box-shadow:none;
  5455. box-shadow:none;
  5456. font-size:14px;
  5457. }
  5458. #u60578 {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:698px;
  5462. top:101px;
  5463. width:160px;
  5464. height:30px;
  5465. display:flex;
  5466. font-size:14px;
  5467. }
  5468. #u60578 .text {
  5469. position:absolute;
  5470. align-self:center;
  5471. padding:2px 2px 2px 2px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u60578_text {
  5476. border-width:0px;
  5477. word-wrap:break-word;
  5478. text-transform:none;
  5479. visibility:hidden;
  5480. }
  5481. #u60579_input {
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:153px;
  5486. height:23px;
  5487. padding:2px 2px 2px 2px;
  5488. font-family:'ArialMT', 'Arial', sans-serif;
  5489. font-weight:400;
  5490. font-style:normal;
  5491. font-size:14px;
  5492. letter-spacing:normal;
  5493. color:#AAAAAA;
  5494. vertical-align:none;
  5495. text-align:left;
  5496. text-transform:none;
  5497. background-color:transparent;
  5498. border-color:transparent;
  5499. }
  5500. #u60579_input.disabled {
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:153px;
  5505. height:23px;
  5506. padding:2px 2px 2px 2px;
  5507. font-family:'ArialMT', 'Arial', sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. font-size:14px;
  5511. letter-spacing:normal;
  5512. color:#AAAAAA;
  5513. vertical-align:none;
  5514. text-align:left;
  5515. text-transform:none;
  5516. background-color:transparent;
  5517. border-color:transparent;
  5518. }
  5519. #u60579_div {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:153px;
  5525. height:23px;
  5526. background:inherit;
  5527. background-color:rgba(255, 255, 255, 1);
  5528. border:none;
  5529. border-radius:0px;
  5530. -moz-box-shadow:none;
  5531. -webkit-box-shadow:none;
  5532. box-shadow:none;
  5533. font-size:14px;
  5534. color:#AAAAAA;
  5535. }
  5536. #u60579 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:703px;
  5540. top:103px;
  5541. width:153px;
  5542. height:23px;
  5543. display:flex;
  5544. font-size:14px;
  5545. color:#AAAAAA;
  5546. }
  5547. #u60579 .text {
  5548. position:absolute;
  5549. align-self:flex-start;
  5550. padding:2px 2px 2px 2px;
  5551. box-sizing:border-box;
  5552. width:100%;
  5553. }
  5554. #u60579_div.disabled {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:153px;
  5560. height:23px;
  5561. background:inherit;
  5562. background-color:rgba(240, 240, 240, 1);
  5563. border:none;
  5564. border-radius:0px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. font-size:14px;
  5569. color:#AAAAAA;
  5570. }
  5571. #u60579.disabled {
  5572. }
  5573. .u60579_input_option {
  5574. font-size:14px;
  5575. }
  5576. #u60580 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:0px;
  5582. height:0px;
  5583. }
  5584. #u60581_div {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:160px;
  5590. height:30px;
  5591. background:inherit;
  5592. background-color:rgba(255, 255, 255, 1);
  5593. box-sizing:border-box;
  5594. border-width:1px;
  5595. border-style:solid;
  5596. border-color:rgba(215, 215, 215, 1);
  5597. border-radius:4px;
  5598. -moz-box-shadow:none;
  5599. -webkit-box-shadow:none;
  5600. box-shadow:none;
  5601. font-size:14px;
  5602. }
  5603. #u60581 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:1378px;
  5607. top:101px;
  5608. width:160px;
  5609. height:30px;
  5610. display:flex;
  5611. font-size:14px;
  5612. }
  5613. #u60581 .text {
  5614. position:absolute;
  5615. align-self:center;
  5616. padding:2px 2px 2px 2px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u60581_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. visibility:hidden;
  5625. }
  5626. #u60582_input {
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:153px;
  5631. height:23px;
  5632. padding:2px 2px 2px 2px;
  5633. font-family:'ArialMT', 'Arial', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:14px;
  5637. letter-spacing:normal;
  5638. color:#AAAAAA;
  5639. vertical-align:none;
  5640. text-align:left;
  5641. text-transform:none;
  5642. background-color:transparent;
  5643. border-color:transparent;
  5644. }
  5645. #u60582_input.disabled {
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:153px;
  5650. height:23px;
  5651. padding:2px 2px 2px 2px;
  5652. font-family:'ArialMT', 'Arial', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:14px;
  5656. letter-spacing:normal;
  5657. color:#AAAAAA;
  5658. vertical-align:none;
  5659. text-align:left;
  5660. text-transform:none;
  5661. background-color:transparent;
  5662. border-color:transparent;
  5663. }
  5664. #u60582_div {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:153px;
  5670. height:23px;
  5671. background:inherit;
  5672. background-color:rgba(255, 255, 255, 1);
  5673. border:none;
  5674. border-radius:0px;
  5675. -moz-box-shadow:none;
  5676. -webkit-box-shadow:none;
  5677. box-shadow:none;
  5678. font-size:14px;
  5679. color:#AAAAAA;
  5680. }
  5681. #u60582 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:1383px;
  5685. top:103px;
  5686. width:153px;
  5687. height:23px;
  5688. display:flex;
  5689. font-size:14px;
  5690. color:#AAAAAA;
  5691. }
  5692. #u60582 .text {
  5693. position:absolute;
  5694. align-self:flex-start;
  5695. padding:2px 2px 2px 2px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u60582_div.disabled {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:153px;
  5705. height:23px;
  5706. background:inherit;
  5707. background-color:rgba(240, 240, 240, 1);
  5708. border:none;
  5709. border-radius:0px;
  5710. -moz-box-shadow:none;
  5711. -webkit-box-shadow:none;
  5712. box-shadow:none;
  5713. font-size:14px;
  5714. color:#AAAAAA;
  5715. }
  5716. #u60582.disabled {
  5717. }
  5718. .u60582_input_option {
  5719. font-size:14px;
  5720. }
  5721. #u60583_div {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:1220px;
  5727. height:120px;
  5728. background:inherit;
  5729. background-color:rgba(255, 255, 255, 1);
  5730. box-sizing:border-box;
  5731. border-width:1px;
  5732. border-style:solid;
  5733. border-color:rgba(201, 201, 201, 1);
  5734. border-radius:4px;
  5735. -moz-box-shadow:none;
  5736. -webkit-box-shadow:none;
  5737. box-shadow:none;
  5738. font-family:'Microsoft YaHei', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:14px;
  5742. color:#CCCCCC;
  5743. text-align:left;
  5744. }
  5745. #u60583 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:356px;
  5749. top:191px;
  5750. width:1220px;
  5751. height:120px;
  5752. display:flex;
  5753. font-family:'Microsoft YaHei', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:14px;
  5757. color:#CCCCCC;
  5758. text-align:left;
  5759. }
  5760. #u60583 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 8px 2px 8px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u60583_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u60584_div {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:190px;
  5779. height:60px;
  5780. background:inherit;
  5781. background-color:rgba(255, 255, 255, 0);
  5782. border:none;
  5783. border-left:0px;
  5784. border-top:0px;
  5785. border-right:0px;
  5786. border-radius:0px;
  5787. border-bottom-right-radius:0px;
  5788. border-bottom-left-radius:0px;
  5789. -moz-box-shadow:none;
  5790. -webkit-box-shadow:none;
  5791. box-shadow:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:14px;
  5796. line-height:30px;
  5797. }
  5798. #u60584 {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:481px;
  5802. top:221px;
  5803. width:190px;
  5804. height:60px;
  5805. display:flex;
  5806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:14px;
  5810. line-height:30px;
  5811. }
  5812. #u60584 .text {
  5813. position:absolute;
  5814. align-self:center;
  5815. padding:0px 0px 0px 0px;
  5816. box-sizing:border-box;
  5817. width:100%;
  5818. }
  5819. #u60584_text {
  5820. border-width:0px;
  5821. white-space:nowrap;
  5822. text-transform:none;
  5823. }
  5824. #u60585_img {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:75px;
  5830. height:75px;
  5831. }
  5832. #u60585 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:385px;
  5836. top:211px;
  5837. width:75px;
  5838. height:75px;
  5839. display:flex;
  5840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. }
  5844. #u60585 .text {
  5845. position:absolute;
  5846. align-self:center;
  5847. padding:2px 2px 2px 2px;
  5848. box-sizing:border-box;
  5849. width:100%;
  5850. }
  5851. #u60585_text {
  5852. border-width:0px;
  5853. word-wrap:break-word;
  5854. text-transform:none;
  5855. }
  5856. #u60586_div {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:173px;
  5862. height:90px;
  5863. background:inherit;
  5864. background-color:rgba(255, 255, 255, 0);
  5865. border:none;
  5866. border-left:0px;
  5867. border-top:0px;
  5868. border-right:0px;
  5869. border-radius:0px;
  5870. border-bottom-right-radius:0px;
  5871. border-bottom-left-radius:0px;
  5872. -moz-box-shadow:none;
  5873. -webkit-box-shadow:none;
  5874. box-shadow:none;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:14px;
  5879. line-height:30px;
  5880. }
  5881. #u60586 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:946px;
  5885. top:206px;
  5886. width:173px;
  5887. height:90px;
  5888. display:flex;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:14px;
  5893. line-height:30px;
  5894. }
  5895. #u60586 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:0px 0px 0px 0px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u60586_text {
  5903. border-width:0px;
  5904. white-space:nowrap;
  5905. text-transform:none;
  5906. }
  5907. #u60587_img {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:75px;
  5913. height:75px;
  5914. }
  5915. #u60587 {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:850px;
  5919. top:211px;
  5920. width:75px;
  5921. height:75px;
  5922. display:flex;
  5923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. }
  5927. #u60587 .text {
  5928. position:absolute;
  5929. align-self:center;
  5930. padding:2px 2px 2px 2px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u60587_text {
  5935. border-width:0px;
  5936. word-wrap:break-word;
  5937. text-transform:none;
  5938. }
  5939. #u60588_div {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:0px;
  5944. width:127px;
  5945. height:90px;
  5946. background:inherit;
  5947. background-color:rgba(255, 255, 255, 0);
  5948. border:none;
  5949. border-left:0px;
  5950. border-top:0px;
  5951. border-right:0px;
  5952. border-radius:0px;
  5953. border-bottom-right-radius:0px;
  5954. border-bottom-left-radius:0px;
  5955. -moz-box-shadow:none;
  5956. -webkit-box-shadow:none;
  5957. box-shadow:none;
  5958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:14px;
  5962. line-height:30px;
  5963. }
  5964. #u60588 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:1372px;
  5968. top:206px;
  5969. width:127px;
  5970. height:90px;
  5971. display:flex;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:14px;
  5976. line-height:30px;
  5977. }
  5978. #u60588 .text {
  5979. position:absolute;
  5980. align-self:center;
  5981. padding:0px 0px 0px 0px;
  5982. box-sizing:border-box;
  5983. width:100%;
  5984. }
  5985. #u60588_text {
  5986. border-width:0px;
  5987. white-space:nowrap;
  5988. text-transform:none;
  5989. }
  5990. #u60589_img {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:75px;
  5996. height:75px;
  5997. }
  5998. #u60589 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:1276px;
  6002. top:211px;
  6003. width:75px;
  6004. height:75px;
  6005. display:flex;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. }
  6010. #u60589 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:2px 2px 2px 2px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u60589_text {
  6018. border-width:0px;
  6019. word-wrap:break-word;
  6020. text-transform:none;
  6021. }
  6022. #u60590 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:0px;
  6028. height:0px;
  6029. }
  6030. #u60591_div {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:160px;
  6036. height:30px;
  6037. background:inherit;
  6038. background-color:rgba(255, 255, 255, 1);
  6039. box-sizing:border-box;
  6040. border-width:1px;
  6041. border-style:solid;
  6042. border-color:rgba(215, 215, 215, 1);
  6043. border-radius:4px;
  6044. -moz-box-shadow:none;
  6045. -webkit-box-shadow:none;
  6046. box-shadow:none;
  6047. font-size:14px;
  6048. }
  6049. #u60591 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:357px;
  6053. top:141px;
  6054. width:160px;
  6055. height:30px;
  6056. display:flex;
  6057. font-size:14px;
  6058. }
  6059. #u60591 .text {
  6060. position:absolute;
  6061. align-self:center;
  6062. padding:2px 2px 2px 2px;
  6063. box-sizing:border-box;
  6064. width:100%;
  6065. }
  6066. #u60591_text {
  6067. border-width:0px;
  6068. word-wrap:break-word;
  6069. text-transform:none;
  6070. visibility:hidden;
  6071. }
  6072. #u60592_input {
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:153px;
  6077. height:23px;
  6078. padding:2px 2px 2px 2px;
  6079. font-family:'ArialMT', 'Arial', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:14px;
  6083. letter-spacing:normal;
  6084. color:#AAAAAA;
  6085. vertical-align:none;
  6086. text-align:left;
  6087. text-transform:none;
  6088. background-color:transparent;
  6089. border-color:transparent;
  6090. }
  6091. #u60592_input.disabled {
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:153px;
  6096. height:23px;
  6097. padding:2px 2px 2px 2px;
  6098. font-family:'ArialMT', 'Arial', sans-serif;
  6099. font-weight:400;
  6100. font-style:normal;
  6101. font-size:14px;
  6102. letter-spacing:normal;
  6103. color:#AAAAAA;
  6104. vertical-align:none;
  6105. text-align:left;
  6106. text-transform:none;
  6107. background-color:transparent;
  6108. border-color:transparent;
  6109. }
  6110. #u60592_div {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:153px;
  6116. height:23px;
  6117. background:inherit;
  6118. background-color:rgba(255, 255, 255, 1);
  6119. border:none;
  6120. border-radius:0px;
  6121. -moz-box-shadow:none;
  6122. -webkit-box-shadow:none;
  6123. box-shadow:none;
  6124. font-size:14px;
  6125. color:#AAAAAA;
  6126. }
  6127. #u60592 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:362px;
  6131. top:143px;
  6132. width:153px;
  6133. height:23px;
  6134. display:flex;
  6135. font-size:14px;
  6136. color:#AAAAAA;
  6137. }
  6138. #u60592 .text {
  6139. position:absolute;
  6140. align-self:flex-start;
  6141. padding:2px 2px 2px 2px;
  6142. box-sizing:border-box;
  6143. width:100%;
  6144. }
  6145. #u60592_div.disabled {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:153px;
  6151. height:23px;
  6152. background:inherit;
  6153. background-color:rgba(240, 240, 240, 1);
  6154. border:none;
  6155. border-radius:0px;
  6156. -moz-box-shadow:none;
  6157. -webkit-box-shadow:none;
  6158. box-shadow:none;
  6159. font-size:14px;
  6160. color:#AAAAAA;
  6161. }
  6162. #u60592.disabled {
  6163. }
  6164. .u60592_input_option {
  6165. font-size:14px;
  6166. }
  6167. #u60593_div {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:0px;
  6171. top:0px;
  6172. width:100px;
  6173. height:30px;
  6174. background:inherit;
  6175. background-color:rgba(24, 144, 255, 1);
  6176. border:none;
  6177. border-radius:4px;
  6178. -moz-box-shadow:none;
  6179. -webkit-box-shadow:none;
  6180. box-shadow:none;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:14px;
  6185. color:#FFFFFF;
  6186. }
  6187. #u60593 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:1470px;
  6191. top:333px;
  6192. width:100px;
  6193. height:30px;
  6194. display:flex;
  6195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6196. font-weight:400;
  6197. font-style:normal;
  6198. font-size:14px;
  6199. color:#FFFFFF;
  6200. }
  6201. #u60593 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 2px 2px 2px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u60593_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. }
  6213. #u60594_div {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:60px;
  6219. height:30px;
  6220. background:inherit;
  6221. background-color:rgba(255, 255, 255, 1);
  6222. box-sizing:border-box;
  6223. border-width:1px;
  6224. border-style:solid;
  6225. border-color:rgba(170, 170, 170, 1);
  6226. border-radius:4px;
  6227. -moz-box-shadow:none;
  6228. -webkit-box-shadow:none;
  6229. box-shadow:none;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:14px;
  6234. }
  6235. #u60594 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:1400px;
  6239. top:333px;
  6240. width:60px;
  6241. height:30px;
  6242. display:flex;
  6243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:14px;
  6247. }
  6248. #u60594 .text {
  6249. position:absolute;
  6250. align-self:center;
  6251. padding:2px 2px 2px 2px;
  6252. box-sizing:border-box;
  6253. width:100%;
  6254. }
  6255. #u60594_text {
  6256. border-width:0px;
  6257. word-wrap:break-word;
  6258. text-transform:none;
  6259. }
  6260. #u60595 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:0px;
  6264. top:0px;
  6265. width:0px;
  6266. height:0px;
  6267. }
  6268. #u60596 {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:0px;
  6274. height:0px;
  6275. }
  6276. #u60597_div {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:480px;
  6282. height:350px;
  6283. background:inherit;
  6284. background-color:rgba(255, 255, 255, 1);
  6285. border:none;
  6286. border-radius:4px;
  6287. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6288. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6289. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6290. font-family:'Microsoft YaHei', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. }
  6294. #u60597 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:436px;
  6298. top:738px;
  6299. width:480px;
  6300. height:350px;
  6301. display:flex;
  6302. font-family:'Microsoft YaHei', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. }
  6306. #u60597 .text {
  6307. position:absolute;
  6308. align-self:center;
  6309. padding:2px 2px 2px 2px;
  6310. box-sizing:border-box;
  6311. width:100%;
  6312. }
  6313. #u60597_text {
  6314. border-width:0px;
  6315. word-wrap:break-word;
  6316. text-transform:none;
  6317. visibility:hidden;
  6318. }
  6319. #u60598_div {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:299px;
  6325. height:22px;
  6326. background:inherit;
  6327. background-color:rgba(255, 255, 255, 0);
  6328. border:none;
  6329. border-radius:0px;
  6330. -moz-box-shadow:none;
  6331. -webkit-box-shadow:none;
  6332. box-shadow:none;
  6333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6334. font-weight:400;
  6335. font-style:normal;
  6336. font-size:14px;
  6337. color:#666666;
  6338. line-height:22px;
  6339. }
  6340. #u60598 {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:463px;
  6344. top:801px;
  6345. width:299px;
  6346. height:22px;
  6347. display:flex;
  6348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:14px;
  6352. color:#666666;
  6353. line-height:22px;
  6354. }
  6355. #u60598 .text {
  6356. position:absolute;
  6357. align-self:flex-start;
  6358. padding:0px 0px 0px 0px;
  6359. box-sizing:border-box;
  6360. width:100%;
  6361. }
  6362. #u60598_text {
  6363. border-width:0px;
  6364. word-wrap:break-word;
  6365. text-transform:none;
  6366. }
  6367. #u60599_div {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:109px;
  6373. height:21px;
  6374. background:inherit;
  6375. background-color:rgba(255, 255, 255, 0);
  6376. border:none;
  6377. border-radius:0px;
  6378. -moz-box-shadow:none;
  6379. -webkit-box-shadow:none;
  6380. box-shadow:none;
  6381. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6382. font-weight:650;
  6383. font-style:normal;
  6384. font-size:18px;
  6385. color:#000000;
  6386. line-height:22px;
  6387. }
  6388. #u60599 {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:463px;
  6392. top:759px;
  6393. width:109px;
  6394. height:21px;
  6395. display:flex;
  6396. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6397. font-weight:650;
  6398. font-style:normal;
  6399. font-size:18px;
  6400. color:#000000;
  6401. line-height:22px;
  6402. }
  6403. #u60599 .text {
  6404. position:absolute;
  6405. align-self:flex-start;
  6406. padding:0px 0px 0px 0px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u60599_text {
  6411. border-width:0px;
  6412. white-space:nowrap;
  6413. text-transform:none;
  6414. }
  6415. #u60600 label {
  6416. left:0px;
  6417. width:100%;
  6418. }
  6419. #u60600_img {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:3px;
  6424. width:12px;
  6425. height:12px;
  6426. }
  6427. #u60600 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:540px;
  6431. top:804px;
  6432. width:100px;
  6433. height:18px;
  6434. display:flex;
  6435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. }
  6439. #u60600 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:0px 2px 0px 2px;
  6443. box-sizing:border-box;
  6444. }
  6445. #u60600_img.selected {
  6446. }
  6447. #u60600.selected {
  6448. }
  6449. #u60600_img.disabled {
  6450. }
  6451. #u60600.disabled {
  6452. }
  6453. #u60600_img.selectedDisabled {
  6454. }
  6455. #u60600.selectedDisabled {
  6456. }
  6457. #u60600_text {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:14px;
  6461. top:0px;
  6462. width:84px;
  6463. word-wrap:break-word;
  6464. text-transform:none;
  6465. }
  6466. #u60600_input {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:0px;
  6472. height:0px;
  6473. opacity:0;
  6474. }
  6475. #u60601 label {
  6476. left:0px;
  6477. width:100%;
  6478. }
  6479. #u60601_img {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:3px;
  6484. width:12px;
  6485. height:12px;
  6486. }
  6487. #u60601 {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:540px;
  6491. top:837px;
  6492. width:100px;
  6493. height:18px;
  6494. display:flex;
  6495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6496. font-weight:400;
  6497. font-style:normal;
  6498. }
  6499. #u60601 .text {
  6500. position:absolute;
  6501. align-self:center;
  6502. padding:0px 2px 0px 2px;
  6503. box-sizing:border-box;
  6504. }
  6505. #u60601_img.selected {
  6506. }
  6507. #u60601.selected {
  6508. }
  6509. #u60601_img.disabled {
  6510. }
  6511. #u60601.disabled {
  6512. }
  6513. #u60601_img.selectedDisabled {
  6514. }
  6515. #u60601.selectedDisabled {
  6516. }
  6517. #u60601_text {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:14px;
  6521. top:0px;
  6522. width:84px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. }
  6526. #u60601_input {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:0px;
  6532. height:0px;
  6533. opacity:0;
  6534. }
  6535. #u60602 label {
  6536. left:0px;
  6537. width:100%;
  6538. }
  6539. #u60602_img {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:3px;
  6544. width:12px;
  6545. height:12px;
  6546. }
  6547. #u60602 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:540px;
  6551. top:870px;
  6552. width:100px;
  6553. height:18px;
  6554. display:flex;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. }
  6559. #u60602 .text {
  6560. position:absolute;
  6561. align-self:center;
  6562. padding:0px 2px 0px 2px;
  6563. box-sizing:border-box;
  6564. }
  6565. #u60602_img.selected {
  6566. }
  6567. #u60602.selected {
  6568. }
  6569. #u60602_img.disabled {
  6570. }
  6571. #u60602.disabled {
  6572. }
  6573. #u60602_img.selectedDisabled {
  6574. }
  6575. #u60602.selectedDisabled {
  6576. }
  6577. #u60602_text {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:14px;
  6581. top:0px;
  6582. width:84px;
  6583. word-wrap:break-word;
  6584. text-transform:none;
  6585. }
  6586. #u60602_input {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:0px;
  6592. height:0px;
  6593. opacity:0;
  6594. }
  6595. #u60603 label {
  6596. left:0px;
  6597. width:100%;
  6598. }
  6599. #u60603_img {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:3px;
  6604. width:12px;
  6605. height:12px;
  6606. }
  6607. #u60603 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:540px;
  6611. top:903px;
  6612. width:100px;
  6613. height:18px;
  6614. display:flex;
  6615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. }
  6619. #u60603 .text {
  6620. position:absolute;
  6621. align-self:center;
  6622. padding:0px 2px 0px 2px;
  6623. box-sizing:border-box;
  6624. }
  6625. #u60603_img.selected {
  6626. }
  6627. #u60603.selected {
  6628. }
  6629. #u60603_img.disabled {
  6630. }
  6631. #u60603.disabled {
  6632. }
  6633. #u60603_img.selectedDisabled {
  6634. }
  6635. #u60603.selectedDisabled {
  6636. }
  6637. #u60603_text {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:14px;
  6641. top:0px;
  6642. width:84px;
  6643. word-wrap:break-word;
  6644. text-transform:none;
  6645. }
  6646. #u60603_input {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:0px;
  6652. height:0px;
  6653. opacity:0;
  6654. }
  6655. #u60604 label {
  6656. left:0px;
  6657. width:100%;
  6658. }
  6659. #u60604_img {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:3px;
  6664. width:12px;
  6665. height:12px;
  6666. }
  6667. #u60604 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:540px;
  6671. top:936px;
  6672. width:100px;
  6673. height:18px;
  6674. display:flex;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. }
  6679. #u60604 .text {
  6680. position:absolute;
  6681. align-self:center;
  6682. padding:0px 2px 0px 2px;
  6683. box-sizing:border-box;
  6684. }
  6685. #u60604_img.selected {
  6686. }
  6687. #u60604.selected {
  6688. }
  6689. #u60604_img.disabled {
  6690. }
  6691. #u60604.disabled {
  6692. }
  6693. #u60604_img.selectedDisabled {
  6694. }
  6695. #u60604.selectedDisabled {
  6696. }
  6697. #u60604_text {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:14px;
  6701. top:0px;
  6702. width:84px;
  6703. word-wrap:break-word;
  6704. text-transform:none;
  6705. }
  6706. #u60604_input {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:0px;
  6712. height:0px;
  6713. opacity:0;
  6714. }
  6715. #u60605 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:0px;
  6721. height:0px;
  6722. }
  6723. #u60606_div {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:347px;
  6729. height:60px;
  6730. background:inherit;
  6731. background-color:rgba(255, 255, 255, 1);
  6732. box-sizing:border-box;
  6733. border-width:1px;
  6734. border-style:solid;
  6735. border-color:rgba(41, 143, 255, 1);
  6736. border-radius:4px;
  6737. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6738. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6739. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6740. font-family:'Microsoft YaHei', sans-serif;
  6741. font-weight:400;
  6742. font-style:normal;
  6743. font-size:14px;
  6744. color:#CCCCCC;
  6745. text-align:left;
  6746. }
  6747. #u60606 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:540px;
  6751. top:964px;
  6752. width:347px;
  6753. height:60px;
  6754. display:flex;
  6755. font-family:'Microsoft YaHei', sans-serif;
  6756. font-weight:400;
  6757. font-style:normal;
  6758. font-size:14px;
  6759. color:#CCCCCC;
  6760. text-align:left;
  6761. }
  6762. #u60606 .text {
  6763. position:absolute;
  6764. align-self:center;
  6765. padding:2px 8px 2px 8px;
  6766. box-sizing:border-box;
  6767. width:100%;
  6768. }
  6769. #u60606_text {
  6770. border-width:0px;
  6771. word-wrap:break-word;
  6772. text-transform:none;
  6773. visibility:hidden;
  6774. }
  6775. #u60607_input {
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:330px;
  6780. height:38px;
  6781. padding:2px 2px 2px 2px;
  6782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:14px;
  6786. letter-spacing:normal;
  6787. color:#000000;
  6788. vertical-align:none;
  6789. text-align:left;
  6790. text-transform:none;
  6791. background-color:transparent;
  6792. border-color:transparent;
  6793. }
  6794. #u60607_input.disabled {
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:330px;
  6799. height:38px;
  6800. padding:2px 2px 2px 2px;
  6801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6802. font-weight:400;
  6803. font-style:normal;
  6804. font-size:14px;
  6805. letter-spacing:normal;
  6806. color:#000000;
  6807. vertical-align:none;
  6808. text-align:left;
  6809. text-transform:none;
  6810. background-color:transparent;
  6811. border-color:transparent;
  6812. }
  6813. #u60607_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:330px;
  6819. height:38px;
  6820. background:inherit;
  6821. background-color:rgba(255, 255, 255, 1);
  6822. border:none;
  6823. border-radius:0px;
  6824. -moz-box-shadow:none;
  6825. -webkit-box-shadow:none;
  6826. box-shadow:none;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:14px;
  6831. }
  6832. #u60607 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:549px;
  6836. top:965px;
  6837. width:330px;
  6838. height:38px;
  6839. display:flex;
  6840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6841. font-weight:400;
  6842. font-style:normal;
  6843. font-size:14px;
  6844. }
  6845. #u60607 .text {
  6846. position:absolute;
  6847. align-self:center;
  6848. padding:2px 2px 2px 2px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u60607_div.disabled {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:330px;
  6858. height:38px;
  6859. background:inherit;
  6860. background-color:rgba(240, 240, 240, 1);
  6861. border:none;
  6862. border-radius:0px;
  6863. -moz-box-shadow:none;
  6864. -webkit-box-shadow:none;
  6865. box-shadow:none;
  6866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6867. font-weight:400;
  6868. font-style:normal;
  6869. font-size:14px;
  6870. }
  6871. #u60607.disabled {
  6872. }
  6873. #u60608 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:0px;
  6879. height:0px;
  6880. }
  6881. #u60609_div {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:80px;
  6887. height:30px;
  6888. background:inherit;
  6889. background-color:rgba(24, 144, 255, 1);
  6890. border:none;
  6891. border-radius:4px;
  6892. -moz-box-shadow:none;
  6893. -webkit-box-shadow:none;
  6894. box-shadow:none;
  6895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:14px;
  6899. color:#FFFFFF;
  6900. }
  6901. #u60609 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:807px;
  6905. top:1044px;
  6906. width:80px;
  6907. height:30px;
  6908. display:flex;
  6909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6910. font-weight:400;
  6911. font-style:normal;
  6912. font-size:14px;
  6913. color:#FFFFFF;
  6914. }
  6915. #u60609 .text {
  6916. position:absolute;
  6917. align-self:center;
  6918. padding:2px 2px 2px 2px;
  6919. box-sizing:border-box;
  6920. width:100%;
  6921. }
  6922. #u60609_text {
  6923. border-width:0px;
  6924. word-wrap:break-word;
  6925. text-transform:none;
  6926. }
  6927. #u60610_div {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:80px;
  6933. height:30px;
  6934. background:inherit;
  6935. background-color:rgba(255, 255, 255, 1);
  6936. box-sizing:border-box;
  6937. border-width:1px;
  6938. border-style:solid;
  6939. border-color:rgba(170, 170, 170, 1);
  6940. border-radius:4px;
  6941. -moz-box-shadow:none;
  6942. -webkit-box-shadow:none;
  6943. box-shadow:none;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:14px;
  6948. }
  6949. #u60610 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:708px;
  6953. top:1044px;
  6954. width:80px;
  6955. height:30px;
  6956. display:flex;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:14px;
  6961. }
  6962. #u60610 .text {
  6963. position:absolute;
  6964. align-self:center;
  6965. padding:2px 2px 2px 2px;
  6966. box-sizing:border-box;
  6967. width:100%;
  6968. }
  6969. #u60610_text {
  6970. border-width:0px;
  6971. word-wrap:break-word;
  6972. text-transform:none;
  6973. }
  6974. #u60611 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:0px;
  6980. height:0px;
  6981. }
  6982. #u60612_div {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:0px;
  6986. top:0px;
  6987. width:160px;
  6988. height:30px;
  6989. background:inherit;
  6990. background-color:rgba(255, 255, 255, 1);
  6991. box-sizing:border-box;
  6992. border-width:1px;
  6993. border-style:solid;
  6994. border-color:rgba(215, 215, 215, 1);
  6995. border-radius:4px;
  6996. -moz-box-shadow:none;
  6997. -webkit-box-shadow:none;
  6998. box-shadow:none;
  6999. font-size:14px;
  7000. }
  7001. #u60612 {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:1208px;
  7005. top:101px;
  7006. width:160px;
  7007. height:30px;
  7008. display:flex;
  7009. font-size:14px;
  7010. }
  7011. #u60612 .text {
  7012. position:absolute;
  7013. align-self:center;
  7014. padding:2px 2px 2px 2px;
  7015. box-sizing:border-box;
  7016. width:100%;
  7017. }
  7018. #u60612_text {
  7019. border-width:0px;
  7020. word-wrap:break-word;
  7021. text-transform:none;
  7022. visibility:hidden;
  7023. }
  7024. #u60613_input {
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:153px;
  7029. height:23px;
  7030. padding:2px 2px 2px 2px;
  7031. font-family:'ArialMT', 'Arial', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. font-size:14px;
  7035. letter-spacing:normal;
  7036. color:#AAAAAA;
  7037. vertical-align:none;
  7038. text-align:left;
  7039. text-transform:none;
  7040. background-color:transparent;
  7041. border-color:transparent;
  7042. }
  7043. #u60613_input.disabled {
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:153px;
  7048. height:23px;
  7049. padding:2px 2px 2px 2px;
  7050. font-family:'ArialMT', 'Arial', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:14px;
  7054. letter-spacing:normal;
  7055. color:#AAAAAA;
  7056. vertical-align:none;
  7057. text-align:left;
  7058. text-transform:none;
  7059. background-color:transparent;
  7060. border-color:transparent;
  7061. }
  7062. #u60613_div {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:0px;
  7066. top:0px;
  7067. width:153px;
  7068. height:23px;
  7069. background:inherit;
  7070. background-color:rgba(255, 255, 255, 1);
  7071. border:none;
  7072. border-radius:0px;
  7073. -moz-box-shadow:none;
  7074. -webkit-box-shadow:none;
  7075. box-shadow:none;
  7076. font-size:14px;
  7077. color:#AAAAAA;
  7078. }
  7079. #u60613 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:1213px;
  7083. top:103px;
  7084. width:153px;
  7085. height:23px;
  7086. display:flex;
  7087. font-size:14px;
  7088. color:#AAAAAA;
  7089. }
  7090. #u60613 .text {
  7091. position:absolute;
  7092. align-self:flex-start;
  7093. padding:2px 2px 2px 2px;
  7094. box-sizing:border-box;
  7095. width:100%;
  7096. }
  7097. #u60613_div.disabled {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:153px;
  7103. height:23px;
  7104. background:inherit;
  7105. background-color:rgba(240, 240, 240, 1);
  7106. border:none;
  7107. border-radius:0px;
  7108. -moz-box-shadow:none;
  7109. -webkit-box-shadow:none;
  7110. box-shadow:none;
  7111. font-size:14px;
  7112. color:#AAAAAA;
  7113. }
  7114. #u60613.disabled {
  7115. }
  7116. .u60613_input_option {
  7117. font-size:14px;
  7118. }
  7119. #u60614_div {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:443px;
  7125. height:60px;
  7126. background:inherit;
  7127. background-color:rgba(255, 255, 255, 0);
  7128. border:none;
  7129. border-radius:0px;
  7130. -moz-box-shadow:none;
  7131. -webkit-box-shadow:none;
  7132. box-shadow:none;
  7133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:14px;
  7137. color:#000000;
  7138. }
  7139. #u60614 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:1066px;
  7143. top:696px;
  7144. width:443px;
  7145. height:60px;
  7146. display:flex;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:14px;
  7151. color:#000000;
  7152. }
  7153. #u60614 .text {
  7154. position:absolute;
  7155. align-self:flex-start;
  7156. padding:0px 0px 0px 0px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u60614_text {
  7161. border-width:0px;
  7162. white-space:nowrap;
  7163. text-transform:none;
  7164. }
  7165. #u60615_div {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:0px;
  7169. top:0px;
  7170. width:275px;
  7171. height:60px;
  7172. background:inherit;
  7173. background-color:rgba(255, 255, 255, 0);
  7174. border:none;
  7175. border-radius:0px;
  7176. -moz-box-shadow:none;
  7177. -webkit-box-shadow:none;
  7178. box-shadow:none;
  7179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7180. font-weight:400;
  7181. font-style:normal;
  7182. font-size:14px;
  7183. color:#000000;
  7184. }
  7185. #u60615 {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:1066px;
  7189. top:792px;
  7190. width:275px;
  7191. height:60px;
  7192. display:flex;
  7193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7194. font-weight:400;
  7195. font-style:normal;
  7196. font-size:14px;
  7197. color:#000000;
  7198. }
  7199. #u60615 .text {
  7200. position:absolute;
  7201. align-self:flex-start;
  7202. padding:0px 0px 0px 0px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u60615_text {
  7207. border-width:0px;
  7208. white-space:nowrap;
  7209. text-transform:none;
  7210. }
  7211. #u60616 {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:0px;
  7217. height:0px;
  7218. }
  7219. #u60617_div {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:160px;
  7225. height:30px;
  7226. background:inherit;
  7227. background-color:rgba(255, 255, 255, 1);
  7228. box-sizing:border-box;
  7229. border-width:1px;
  7230. border-style:solid;
  7231. border-color:rgba(215, 215, 215, 1);
  7232. border-radius:4px;
  7233. -moz-box-shadow:none;
  7234. -webkit-box-shadow:none;
  7235. box-shadow:none;
  7236. font-size:14px;
  7237. }
  7238. #u60617 {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:357px;
  7242. top:101px;
  7243. width:160px;
  7244. height:30px;
  7245. display:flex;
  7246. font-size:14px;
  7247. }
  7248. #u60617 .text {
  7249. position:absolute;
  7250. align-self:center;
  7251. padding:2px 2px 2px 2px;
  7252. box-sizing:border-box;
  7253. width:100%;
  7254. }
  7255. #u60617_text {
  7256. border-width:0px;
  7257. word-wrap:break-word;
  7258. text-transform:none;
  7259. visibility:hidden;
  7260. }
  7261. #u60618_input {
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:153px;
  7266. height:23px;
  7267. padding:2px 2px 2px 2px;
  7268. font-family:'ArialMT', 'Arial', sans-serif;
  7269. font-weight:400;
  7270. font-style:normal;
  7271. font-size:14px;
  7272. letter-spacing:normal;
  7273. color:#AAAAAA;
  7274. vertical-align:none;
  7275. text-align:left;
  7276. text-transform:none;
  7277. background-color:transparent;
  7278. border-color:transparent;
  7279. }
  7280. #u60618_input.disabled {
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:153px;
  7285. height:23px;
  7286. padding:2px 2px 2px 2px;
  7287. font-family:'ArialMT', 'Arial', sans-serif;
  7288. font-weight:400;
  7289. font-style:normal;
  7290. font-size:14px;
  7291. letter-spacing:normal;
  7292. color:#AAAAAA;
  7293. vertical-align:none;
  7294. text-align:left;
  7295. text-transform:none;
  7296. background-color:transparent;
  7297. border-color:transparent;
  7298. }
  7299. #u60618_div {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:153px;
  7305. height:23px;
  7306. background:inherit;
  7307. background-color:rgba(255, 255, 255, 1);
  7308. border:none;
  7309. border-radius:0px;
  7310. -moz-box-shadow:none;
  7311. -webkit-box-shadow:none;
  7312. box-shadow:none;
  7313. font-size:14px;
  7314. color:#AAAAAA;
  7315. }
  7316. #u60618 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:362px;
  7320. top:103px;
  7321. width:153px;
  7322. height:23px;
  7323. display:flex;
  7324. font-size:14px;
  7325. color:#AAAAAA;
  7326. }
  7327. #u60618 .text {
  7328. position:absolute;
  7329. align-self:flex-start;
  7330. padding:2px 2px 2px 2px;
  7331. box-sizing:border-box;
  7332. width:100%;
  7333. }
  7334. #u60618_div.disabled {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:153px;
  7340. height:23px;
  7341. background:inherit;
  7342. background-color:rgba(240, 240, 240, 1);
  7343. border:none;
  7344. border-radius:0px;
  7345. -moz-box-shadow:none;
  7346. -webkit-box-shadow:none;
  7347. box-shadow:none;
  7348. font-size:14px;
  7349. color:#AAAAAA;
  7350. }
  7351. #u60618.disabled {
  7352. }
  7353. .u60618_input_option {
  7354. font-size:14px;
  7355. }
  7356. #u60619_div {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:561px;
  7362. height:30px;
  7363. background:inherit;
  7364. background-color:rgba(255, 255, 255, 0);
  7365. border:none;
  7366. border-left:0px;
  7367. border-top:0px;
  7368. border-right:0px;
  7369. border-radius:0px;
  7370. border-bottom-right-radius:0px;
  7371. border-bottom-left-radius:0px;
  7372. -moz-box-shadow:none;
  7373. -webkit-box-shadow:none;
  7374. box-shadow:none;
  7375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7376. font-weight:400;
  7377. font-style:normal;
  7378. font-size:14px;
  7379. color:#D9001B;
  7380. line-height:30px;
  7381. }
  7382. #u60619 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:919px;
  7386. top:146px;
  7387. width:561px;
  7388. height:30px;
  7389. display:flex;
  7390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7391. font-weight:400;
  7392. font-style:normal;
  7393. font-size:14px;
  7394. color:#D9001B;
  7395. line-height:30px;
  7396. }
  7397. #u60619 .text {
  7398. position:absolute;
  7399. align-self:center;
  7400. padding:0px 0px 0px 0px;
  7401. box-sizing:border-box;
  7402. width:100%;
  7403. }
  7404. #u60619_text {
  7405. border-width:0px;
  7406. white-space:nowrap;
  7407. text-transform:none;
  7408. }
  7409. #u60620 {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:0px;
  7415. height:0px;
  7416. }
  7417. #u60621_div {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:0px;
  7421. top:0px;
  7422. width:160px;
  7423. height:30px;
  7424. background:inherit;
  7425. background-color:rgba(255, 255, 255, 1);
  7426. box-sizing:border-box;
  7427. border-width:1px;
  7428. border-style:solid;
  7429. border-color:rgba(215, 215, 215, 1);
  7430. border-radius:4px;
  7431. -moz-box-shadow:none;
  7432. -webkit-box-shadow:none;
  7433. box-shadow:none;
  7434. font-size:14px;
  7435. }
  7436. #u60621 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:527px;
  7440. top:101px;
  7441. width:160px;
  7442. height:30px;
  7443. display:flex;
  7444. font-size:14px;
  7445. }
  7446. #u60621 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:2px 2px 2px 2px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u60621_text {
  7454. border-width:0px;
  7455. word-wrap:break-word;
  7456. text-transform:none;
  7457. visibility:hidden;
  7458. }
  7459. #u60622_input {
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:153px;
  7464. height:23px;
  7465. padding:2px 2px 2px 2px;
  7466. font-family:'ArialMT', 'Arial', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:14px;
  7470. letter-spacing:normal;
  7471. color:#AAAAAA;
  7472. vertical-align:none;
  7473. text-align:left;
  7474. text-transform:none;
  7475. background-color:transparent;
  7476. border-color:transparent;
  7477. }
  7478. #u60622_input.disabled {
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:153px;
  7483. height:23px;
  7484. padding:2px 2px 2px 2px;
  7485. font-family:'ArialMT', 'Arial', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:14px;
  7489. letter-spacing:normal;
  7490. color:#AAAAAA;
  7491. vertical-align:none;
  7492. text-align:left;
  7493. text-transform:none;
  7494. background-color:transparent;
  7495. border-color:transparent;
  7496. }
  7497. #u60622_div {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:153px;
  7503. height:23px;
  7504. background:inherit;
  7505. background-color:rgba(255, 255, 255, 1);
  7506. border:none;
  7507. border-radius:0px;
  7508. -moz-box-shadow:none;
  7509. -webkit-box-shadow:none;
  7510. box-shadow:none;
  7511. font-size:14px;
  7512. color:#AAAAAA;
  7513. }
  7514. #u60622 {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:532px;
  7518. top:103px;
  7519. width:153px;
  7520. height:23px;
  7521. display:flex;
  7522. font-size:14px;
  7523. color:#AAAAAA;
  7524. }
  7525. #u60622 .text {
  7526. position:absolute;
  7527. align-self:flex-start;
  7528. padding:2px 2px 2px 2px;
  7529. box-sizing:border-box;
  7530. width:100%;
  7531. }
  7532. #u60622_div.disabled {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:153px;
  7538. height:23px;
  7539. background:inherit;
  7540. background-color:rgba(240, 240, 240, 1);
  7541. border:none;
  7542. border-radius:0px;
  7543. -moz-box-shadow:none;
  7544. -webkit-box-shadow:none;
  7545. box-shadow:none;
  7546. font-size:14px;
  7547. color:#AAAAAA;
  7548. }
  7549. #u60622.disabled {
  7550. }
  7551. .u60622_input_option {
  7552. font-size:14px;
  7553. }
  7554. #u60623 {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:0px;
  7560. height:0px;
  7561. }
  7562. #u60624_div {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:200px;
  7568. height:1188px;
  7569. background:inherit;
  7570. background-color:rgba(255, 255, 255, 1);
  7571. border:none;
  7572. border-radius:0px;
  7573. -moz-box-shadow:none;
  7574. -webkit-box-shadow:none;
  7575. box-shadow:none;
  7576. }
  7577. #u60624 {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:120px;
  7581. top:50px;
  7582. width:200px;
  7583. height:1188px;
  7584. display:flex;
  7585. }
  7586. #u60624 .text {
  7587. position:absolute;
  7588. align-self:center;
  7589. padding:2px 2px 2px 2px;
  7590. box-sizing:border-box;
  7591. width:100%;
  7592. }
  7593. #u60624_text {
  7594. border-width:0px;
  7595. word-wrap:break-word;
  7596. text-transform:none;
  7597. visibility:hidden;
  7598. }
  7599. #u60625_div {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:0px;
  7603. top:0px;
  7604. width:200px;
  7605. height:60px;
  7606. background:inherit;
  7607. background-color:rgba(224, 231, 247, 1);
  7608. border:none;
  7609. border-radius:0px;
  7610. -moz-box-shadow:none;
  7611. -webkit-box-shadow:none;
  7612. box-shadow:none;
  7613. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7614. font-weight:500;
  7615. font-style:normal;
  7616. font-size:18px;
  7617. }
  7618. #u60625 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:120px;
  7622. top:50px;
  7623. width:200px;
  7624. height:60px;
  7625. display:flex;
  7626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7627. font-weight:500;
  7628. font-style:normal;
  7629. font-size:18px;
  7630. }
  7631. #u60625 .text {
  7632. position:absolute;
  7633. align-self:center;
  7634. padding:0px 0px 0px 20px;
  7635. box-sizing:border-box;
  7636. width:100%;
  7637. }
  7638. #u60625_text {
  7639. border-width:0px;
  7640. word-wrap:break-word;
  7641. text-transform:none;
  7642. }
  7643. #u60626_div {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:0px;
  7647. top:0px;
  7648. width:65px;
  7649. height:22px;
  7650. background:inherit;
  7651. background-color:rgba(255, 255, 255, 0);
  7652. border:none;
  7653. border-radius:0px;
  7654. -moz-box-shadow:none;
  7655. -webkit-box-shadow:none;
  7656. box-shadow:none;
  7657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7658. font-weight:400;
  7659. font-style:normal;
  7660. font-size:16px;
  7661. }
  7662. #u60626 {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:147px;
  7666. top:346px;
  7667. width:65px;
  7668. height:22px;
  7669. display:flex;
  7670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7671. font-weight:400;
  7672. font-style:normal;
  7673. font-size:16px;
  7674. }
  7675. #u60626 .text {
  7676. position:absolute;
  7677. align-self:flex-start;
  7678. padding:0px 0px 0px 0px;
  7679. box-sizing:border-box;
  7680. width:100%;
  7681. }
  7682. #u60626_text {
  7683. border-width:0px;
  7684. white-space:nowrap;
  7685. text-transform:none;
  7686. }
  7687. #u60627_div {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:65px;
  7693. height:22px;
  7694. background:inherit;
  7695. background-color:rgba(255, 255, 255, 0);
  7696. border:none;
  7697. border-radius:0px;
  7698. -moz-box-shadow:none;
  7699. -webkit-box-shadow:none;
  7700. box-shadow:none;
  7701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. font-size:16px;
  7705. }
  7706. #u60627 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:147px;
  7710. top:388px;
  7711. width:65px;
  7712. height:22px;
  7713. display:flex;
  7714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7715. font-weight:400;
  7716. font-style:normal;
  7717. font-size:16px;
  7718. }
  7719. #u60627 .text {
  7720. position:absolute;
  7721. align-self:flex-start;
  7722. padding:0px 0px 0px 0px;
  7723. box-sizing:border-box;
  7724. width:100%;
  7725. }
  7726. #u60627_text {
  7727. border-width:0px;
  7728. white-space:nowrap;
  7729. text-transform:none;
  7730. }
  7731. #u60628_div {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:0px;
  7735. top:0px;
  7736. width:81px;
  7737. height:22px;
  7738. background:inherit;
  7739. background-color:rgba(255, 255, 255, 0);
  7740. border:none;
  7741. border-radius:0px;
  7742. -moz-box-shadow:none;
  7743. -webkit-box-shadow:none;
  7744. box-shadow:none;
  7745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7746. font-weight:400;
  7747. font-style:normal;
  7748. font-size:16px;
  7749. }
  7750. #u60628 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:147px;
  7754. top:430px;
  7755. width:81px;
  7756. height:22px;
  7757. display:flex;
  7758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7759. font-weight:400;
  7760. font-style:normal;
  7761. font-size:16px;
  7762. }
  7763. #u60628 .text {
  7764. position:absolute;
  7765. align-self:flex-start;
  7766. padding:0px 0px 0px 0px;
  7767. box-sizing:border-box;
  7768. width:100%;
  7769. }
  7770. #u60628_text {
  7771. border-width:0px;
  7772. white-space:nowrap;
  7773. text-transform:none;
  7774. }
  7775. #u60629_div {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:81px;
  7781. height:22px;
  7782. background:inherit;
  7783. background-color:rgba(255, 255, 255, 0);
  7784. border:none;
  7785. border-radius:0px;
  7786. -moz-box-shadow:none;
  7787. -webkit-box-shadow:none;
  7788. box-shadow:none;
  7789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7790. font-weight:400;
  7791. font-style:normal;
  7792. font-size:16px;
  7793. }
  7794. #u60629 {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:147px;
  7798. top:472px;
  7799. width:81px;
  7800. height:22px;
  7801. display:flex;
  7802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7803. font-weight:400;
  7804. font-style:normal;
  7805. font-size:16px;
  7806. }
  7807. #u60629 .text {
  7808. position:absolute;
  7809. align-self:flex-start;
  7810. padding:0px 0px 0px 0px;
  7811. box-sizing:border-box;
  7812. width:100%;
  7813. }
  7814. #u60629_text {
  7815. border-width:0px;
  7816. white-space:nowrap;
  7817. text-transform:none;
  7818. }
  7819. #u60630_div {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:49px;
  7825. height:17px;
  7826. background:inherit;
  7827. background-color:rgba(255, 255, 255, 0);
  7828. border:none;
  7829. border-radius:0px;
  7830. -moz-box-shadow:none;
  7831. -webkit-box-shadow:none;
  7832. box-shadow:none;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. font-size:12px;
  7837. color:#AAAAAA;
  7838. }
  7839. #u60630 {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:147px;
  7843. top:310px;
  7844. width:49px;
  7845. height:17px;
  7846. display:flex;
  7847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7848. font-weight:400;
  7849. font-style:normal;
  7850. font-size:12px;
  7851. color:#AAAAAA;
  7852. }
  7853. #u60630 .text {
  7854. position:absolute;
  7855. align-self:flex-start;
  7856. padding:0px 0px 0px 0px;
  7857. box-sizing:border-box;
  7858. width:100%;
  7859. }
  7860. #u60630_text {
  7861. border-width:0px;
  7862. white-space:nowrap;
  7863. text-transform:none;
  7864. }
  7865. #u60631_img {
  7866. border-width:0px;
  7867. position:absolute;
  7868. left:0px;
  7869. top:0px;
  7870. width:201px;
  7871. height:2px;
  7872. }
  7873. #u60631 {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:120px;
  7877. top:598px;
  7878. width:200px;
  7879. height:1px;
  7880. display:flex;
  7881. }
  7882. #u60631 .text {
  7883. position:absolute;
  7884. align-self:center;
  7885. padding:2px 2px 2px 2px;
  7886. box-sizing:border-box;
  7887. width:100%;
  7888. }
  7889. #u60631_text {
  7890. border-width:0px;
  7891. word-wrap:break-word;
  7892. text-transform:none;
  7893. visibility:hidden;
  7894. }
  7895. #u60632_div {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:0px;
  7900. width:65px;
  7901. height:22px;
  7902. background:inherit;
  7903. background-color:rgba(255, 255, 255, 0);
  7904. border:none;
  7905. border-radius:0px;
  7906. -moz-box-shadow:none;
  7907. -webkit-box-shadow:none;
  7908. box-shadow:none;
  7909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7910. font-weight:400;
  7911. font-style:normal;
  7912. font-size:16px;
  7913. }
  7914. #u60632 {
  7915. border-width:0px;
  7916. position:absolute;
  7917. left:147px;
  7918. top:514px;
  7919. width:65px;
  7920. height:22px;
  7921. display:flex;
  7922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7923. font-weight:400;
  7924. font-style:normal;
  7925. font-size:16px;
  7926. }
  7927. #u60632 .text {
  7928. position:absolute;
  7929. align-self:flex-start;
  7930. padding:0px 0px 0px 0px;
  7931. box-sizing:border-box;
  7932. width:100%;
  7933. }
  7934. #u60632_text {
  7935. border-width:0px;
  7936. white-space:nowrap;
  7937. text-transform:none;
  7938. }
  7939. #u60633_div {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:0px;
  7943. top:0px;
  7944. width:65px;
  7945. height:22px;
  7946. background:inherit;
  7947. background-color:rgba(255, 255, 255, 0);
  7948. border:none;
  7949. border-radius:0px;
  7950. -moz-box-shadow:none;
  7951. -webkit-box-shadow:none;
  7952. box-shadow:none;
  7953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7954. font-weight:400;
  7955. font-style:normal;
  7956. font-size:16px;
  7957. }
  7958. #u60633 {
  7959. border-width:0px;
  7960. position:absolute;
  7961. left:147px;
  7962. top:556px;
  7963. width:65px;
  7964. height:22px;
  7965. display:flex;
  7966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:16px;
  7970. }
  7971. #u60633 .text {
  7972. position:absolute;
  7973. align-self:flex-start;
  7974. padding:0px 0px 0px 0px;
  7975. box-sizing:border-box;
  7976. width:100%;
  7977. }
  7978. #u60633_text {
  7979. border-width:0px;
  7980. white-space:nowrap;
  7981. text-transform:none;
  7982. }
  7983. #u60634_div {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:0px;
  7987. top:0px;
  7988. width:65px;
  7989. height:22px;
  7990. background:inherit;
  7991. background-color:rgba(255, 255, 255, 0);
  7992. border:none;
  7993. border-radius:0px;
  7994. -moz-box-shadow:none;
  7995. -webkit-box-shadow:none;
  7996. box-shadow:none;
  7997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7998. font-weight:400;
  7999. font-style:normal;
  8000. font-size:16px;
  8001. }
  8002. #u60634 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:147px;
  8006. top:656px;
  8007. width:65px;
  8008. height:22px;
  8009. display:flex;
  8010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8011. font-weight:400;
  8012. font-style:normal;
  8013. font-size:16px;
  8014. }
  8015. #u60634 .text {
  8016. position:absolute;
  8017. align-self:flex-start;
  8018. padding:0px 0px 0px 0px;
  8019. box-sizing:border-box;
  8020. width:100%;
  8021. }
  8022. #u60634_text {
  8023. border-width:0px;
  8024. white-space:nowrap;
  8025. text-transform:none;
  8026. }
  8027. #u60635_div {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:49px;
  8033. height:17px;
  8034. background:inherit;
  8035. background-color:rgba(255, 255, 255, 0);
  8036. border:none;
  8037. border-radius:0px;
  8038. -moz-box-shadow:none;
  8039. -webkit-box-shadow:none;
  8040. box-shadow:none;
  8041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8042. font-weight:400;
  8043. font-style:normal;
  8044. font-size:12px;
  8045. color:#AAAAAA;
  8046. }
  8047. #u60635 {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:147px;
  8051. top:620px;
  8052. width:49px;
  8053. height:17px;
  8054. display:flex;
  8055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8056. font-weight:400;
  8057. font-style:normal;
  8058. font-size:12px;
  8059. color:#AAAAAA;
  8060. }
  8061. #u60635 .text {
  8062. position:absolute;
  8063. align-self:flex-start;
  8064. padding:0px 0px 0px 0px;
  8065. box-sizing:border-box;
  8066. width:100%;
  8067. }
  8068. #u60635_text {
  8069. border-width:0px;
  8070. white-space:nowrap;
  8071. text-transform:none;
  8072. }
  8073. #u60636_div {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:0px;
  8077. top:0px;
  8078. width:65px;
  8079. height:22px;
  8080. background:inherit;
  8081. background-color:rgba(255, 255, 255, 0);
  8082. border:none;
  8083. border-radius:0px;
  8084. -moz-box-shadow:none;
  8085. -webkit-box-shadow:none;
  8086. box-shadow:none;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. font-size:16px;
  8091. }
  8092. #u60636 {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:147px;
  8096. top:166px;
  8097. width:65px;
  8098. height:22px;
  8099. display:flex;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:16px;
  8104. }
  8105. #u60636 .text {
  8106. position:absolute;
  8107. align-self:flex-start;
  8108. padding:0px 0px 0px 0px;
  8109. box-sizing:border-box;
  8110. width:100%;
  8111. }
  8112. #u60636_text {
  8113. border-width:0px;
  8114. white-space:nowrap;
  8115. text-transform:none;
  8116. }
  8117. #u60637_div {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:65px;
  8123. height:22px;
  8124. background:inherit;
  8125. background-color:rgba(255, 255, 255, 0);
  8126. border:none;
  8127. border-radius:0px;
  8128. -moz-box-shadow:none;
  8129. -webkit-box-shadow:none;
  8130. box-shadow:none;
  8131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. font-size:16px;
  8135. }
  8136. #u60637 {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:147px;
  8140. top:248px;
  8141. width:65px;
  8142. height:22px;
  8143. display:flex;
  8144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:16px;
  8148. }
  8149. #u60637 .text {
  8150. position:absolute;
  8151. align-self:flex-start;
  8152. padding:0px 0px 0px 0px;
  8153. box-sizing:border-box;
  8154. width:100%;
  8155. }
  8156. #u60637_text {
  8157. border-width:0px;
  8158. white-space:nowrap;
  8159. text-transform:none;
  8160. }
  8161. #u60638_div {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:49px;
  8167. height:17px;
  8168. background:inherit;
  8169. background-color:rgba(255, 255, 255, 0);
  8170. border:none;
  8171. border-radius:0px;
  8172. -moz-box-shadow:none;
  8173. -webkit-box-shadow:none;
  8174. box-shadow:none;
  8175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8176. font-weight:400;
  8177. font-style:normal;
  8178. font-size:12px;
  8179. color:#AAAAAA;
  8180. }
  8181. #u60638 {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:147px;
  8185. top:130px;
  8186. width:49px;
  8187. height:17px;
  8188. display:flex;
  8189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:12px;
  8193. color:#AAAAAA;
  8194. }
  8195. #u60638 .text {
  8196. position:absolute;
  8197. align-self:flex-start;
  8198. padding:0px 0px 0px 0px;
  8199. box-sizing:border-box;
  8200. width:100%;
  8201. }
  8202. #u60638_text {
  8203. border-width:0px;
  8204. white-space:nowrap;
  8205. text-transform:none;
  8206. }
  8207. #u60639_img {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:201px;
  8213. height:2px;
  8214. }
  8215. #u60639 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:120px;
  8219. top:289px;
  8220. width:200px;
  8221. height:1px;
  8222. display:flex;
  8223. }
  8224. #u60639 .text {
  8225. position:absolute;
  8226. align-self:center;
  8227. padding:2px 2px 2px 2px;
  8228. box-sizing:border-box;
  8229. width:100%;
  8230. }
  8231. #u60639_text {
  8232. border-width:0px;
  8233. word-wrap:break-word;
  8234. text-transform:none;
  8235. visibility:hidden;
  8236. }
  8237. #u60640_div {
  8238. border-width:0px;
  8239. position:absolute;
  8240. left:0px;
  8241. top:0px;
  8242. width:65px;
  8243. height:22px;
  8244. background:inherit;
  8245. background-color:rgba(255, 255, 255, 0);
  8246. border:none;
  8247. border-radius:0px;
  8248. -moz-box-shadow:none;
  8249. -webkit-box-shadow:none;
  8250. box-shadow:none;
  8251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8252. font-weight:400;
  8253. font-style:normal;
  8254. font-size:16px;
  8255. }
  8256. #u60640 {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:147px;
  8260. top:206px;
  8261. width:65px;
  8262. height:22px;
  8263. display:flex;
  8264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8265. font-weight:400;
  8266. font-style:normal;
  8267. font-size:16px;
  8268. }
  8269. #u60640 .text {
  8270. position:absolute;
  8271. align-self:flex-start;
  8272. padding:0px 0px 0px 0px;
  8273. box-sizing:border-box;
  8274. width:100%;
  8275. }
  8276. #u60640_text {
  8277. border-width:0px;
  8278. white-space:nowrap;
  8279. text-transform:none;
  8280. }