styles.css 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2650px;
  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. #u59751_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. #u59751 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u59751 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u59751_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u59752_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. #u59752 {
  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. #u59752 .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. #u59752_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u59753_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. #u59753 {
  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. #u59753 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u59753_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u59754 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u59755_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u59755 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u59755 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u59755_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u59756_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. #u59756 {
  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. #u59756 .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. #u59756_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u59757_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. #u59757 {
  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. #u59757 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u59757_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u59758 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u59759_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. #u59759_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. #u59759_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. #u59759 {
  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. #u59759 .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. #u59759_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. #u59759.disabled {
  356. }
  357. .u59759_input_option {
  358. font-size:14px;
  359. }
  360. #u59760_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u59760 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u59760 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u59760_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u59761_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. #u59761 {
  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. #u59761 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u59761_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u59762_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. #u59762 {
  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. #u59762 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u59762_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u59763 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u59764_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. #u59764 {
  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. #u59764 .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. #u59764_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u59765_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u59765 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u59765 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u59765_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u59766 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u59767_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. #u59767 {
  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. #u59767 .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. #u59767_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u59768_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u59768 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u59768 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u59768_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u59769 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u59770_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. #u59770 {
  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. #u59770 .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. #u59770_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u59771_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u59771 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u59771 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u59771_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u59772 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u59773_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. #u59773 {
  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. #u59773 .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. #u59773_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u59774_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u59774 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u59774 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u59774_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u59775 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u59776_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. #u59776 {
  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. #u59776 .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. #u59776_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u59777_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u59777 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u59777 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u59777_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u59778 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u59779_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. #u59779 {
  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. #u59779 .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. #u59779_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u59780_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u59780 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u59780 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u59780_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u59781 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u59782_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. #u59782 {
  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. #u59782 .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. #u59782_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u59783_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u59783 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u59783 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u59783_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u59784 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u59785_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. #u59785 {
  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. #u59785 .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. #u59785_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u59786_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u59786 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u59786 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u59786_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u59787 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u59788_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. #u59788 {
  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. #u59788 .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. #u59788_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u59789_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u59789 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u59789 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u59789_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u59790 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u59791_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. #u59791 {
  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. #u59791 .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. #u59791_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u59792_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u59792 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u59792 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u59792_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u59793_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. #u59793 {
  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. #u59793 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u59793_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u59794_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u59794 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u59794 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u59794_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u59795_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. #u59795 {
  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. #u59795 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u59795_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u59796_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u59796 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u59796 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u59796_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u59797 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u59798_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. #u59798 {
  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. #u59798 .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. #u59798_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u59799_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u59799 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u59799 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u59799_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u59800 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u59801_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. #u59801 {
  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. #u59801 .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. #u59801_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u59802_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u59802 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u59802 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u59802_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u59803_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. #u59803 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:333px;
  1660. top:51px;
  1661. width:1258px;
  1662. height:1179px;
  1663. display:flex;
  1664. }
  1665. #u59803 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u59803_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u59804 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:356px;
  1682. top:151px;
  1683. width:1212px;
  1684. height:296px;
  1685. }
  1686. #u59805_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:164px;
  1692. height:30px;
  1693. }
  1694. #u59805 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:164px;
  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. #u59805 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u59805_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. }
  1720. #u59806_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:208px;
  1726. height:30px;
  1727. }
  1728. #u59806 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:164px;
  1732. top:0px;
  1733. width:208px;
  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. #u59806 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:2px 2px 2px 2px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u59806_text {
  1750. border-width:0px;
  1751. word-wrap:break-word;
  1752. text-transform:none;
  1753. }
  1754. #u59807_img {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:169px;
  1760. height:30px;
  1761. }
  1762. #u59807 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:372px;
  1766. top:0px;
  1767. width:169px;
  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. #u59807 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u59807_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u59808_img {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:209px;
  1794. height:30px;
  1795. }
  1796. #u59808 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:541px;
  1800. top:0px;
  1801. width:209px;
  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. #u59808 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u59808_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u59809_img {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:168px;
  1828. height:30px;
  1829. }
  1830. #u59809 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:750px;
  1834. top:0px;
  1835. width:168px;
  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. #u59809 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u59809_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. }
  1856. #u59810_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:134px;
  1862. height:30px;
  1863. }
  1864. #u59810 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:918px;
  1868. top:0px;
  1869. width:134px;
  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. #u59810 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u59810_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u59811_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:160px;
  1896. height:30px;
  1897. }
  1898. #u59811 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:1052px;
  1902. top:0px;
  1903. width:160px;
  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. #u59811 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 2px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u59811_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u59812_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:164px;
  1930. height:38px;
  1931. }
  1932. #u59812 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:30px;
  1937. width:164px;
  1938. height:38px;
  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. }
  1945. #u59812 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 2px 2px 2px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u59812_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. visibility:hidden;
  1957. }
  1958. #u59813_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:208px;
  1964. height:38px;
  1965. }
  1966. #u59813 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:164px;
  1970. top:30px;
  1971. width:208px;
  1972. height:38px;
  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. }
  1979. #u59813 .text {
  1980. position:absolute;
  1981. align-self:center;
  1982. padding:2px 2px 2px 2px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u59813_text {
  1987. border-width:0px;
  1988. word-wrap:break-word;
  1989. text-transform:none;
  1990. visibility:hidden;
  1991. }
  1992. #u59814_img {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:169px;
  1998. height:38px;
  1999. }
  2000. #u59814 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:372px;
  2004. top:30px;
  2005. width:169px;
  2006. height:38px;
  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. }
  2013. #u59814 .text {
  2014. position:absolute;
  2015. align-self:center;
  2016. padding:2px 2px 2px 2px;
  2017. box-sizing:border-box;
  2018. width:100%;
  2019. }
  2020. #u59814_text {
  2021. border-width:0px;
  2022. word-wrap:break-word;
  2023. text-transform:none;
  2024. visibility:hidden;
  2025. }
  2026. #u59815_img {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:209px;
  2032. height:38px;
  2033. }
  2034. #u59815 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:541px;
  2038. top:30px;
  2039. width:209px;
  2040. height:38px;
  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. }
  2047. #u59815 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 2px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u59815_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. visibility:hidden;
  2059. }
  2060. #u59816_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:168px;
  2066. height:38px;
  2067. }
  2068. #u59816 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:750px;
  2072. top:30px;
  2073. width:168px;
  2074. height:38px;
  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. }
  2081. #u59816 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:2px 2px 2px 2px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u59816_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. visibility:hidden;
  2093. }
  2094. #u59817_img {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:134px;
  2100. height:38px;
  2101. }
  2102. #u59817 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:918px;
  2106. top:30px;
  2107. width:134px;
  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. #u59817 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u59817_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. visibility:hidden;
  2127. }
  2128. #u59818_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:160px;
  2134. height:38px;
  2135. }
  2136. #u59818 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:1052px;
  2140. top:30px;
  2141. width:160px;
  2142. height:38px;
  2143. display:flex;
  2144. font-size:14px;
  2145. color:#1890FF;
  2146. }
  2147. #u59818 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 2px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u59818_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. }
  2159. #u59819_img {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:164px;
  2165. height:38px;
  2166. }
  2167. #u59819 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:68px;
  2172. width:164px;
  2173. height:38px;
  2174. display:flex;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:14px;
  2179. }
  2180. #u59819 .text {
  2181. position:absolute;
  2182. align-self:center;
  2183. padding:2px 2px 2px 2px;
  2184. box-sizing:border-box;
  2185. width:100%;
  2186. }
  2187. #u59819_text {
  2188. border-width:0px;
  2189. word-wrap:break-word;
  2190. text-transform:none;
  2191. visibility:hidden;
  2192. }
  2193. #u59820_img {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:208px;
  2199. height:38px;
  2200. }
  2201. #u59820 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:164px;
  2205. top:68px;
  2206. width:208px;
  2207. height:38px;
  2208. display:flex;
  2209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:14px;
  2213. }
  2214. #u59820 .text {
  2215. position:absolute;
  2216. align-self:center;
  2217. padding:2px 2px 2px 2px;
  2218. box-sizing:border-box;
  2219. width:100%;
  2220. }
  2221. #u59820_text {
  2222. border-width:0px;
  2223. word-wrap:break-word;
  2224. text-transform:none;
  2225. visibility:hidden;
  2226. }
  2227. #u59821_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:169px;
  2233. height:38px;
  2234. }
  2235. #u59821 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:372px;
  2239. top:68px;
  2240. width:169px;
  2241. height:38px;
  2242. display:flex;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:14px;
  2247. }
  2248. #u59821 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:2px 2px 2px 2px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u59821_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. visibility:hidden;
  2260. }
  2261. #u59822_img {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:209px;
  2267. height:38px;
  2268. }
  2269. #u59822 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:541px;
  2273. top:68px;
  2274. width:209px;
  2275. height:38px;
  2276. display:flex;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:14px;
  2281. }
  2282. #u59822 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 2px 2px 2px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u59822_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. visibility:hidden;
  2294. }
  2295. #u59823_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:168px;
  2301. height:38px;
  2302. }
  2303. #u59823 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:750px;
  2307. top:68px;
  2308. width:168px;
  2309. height:38px;
  2310. display:flex;
  2311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2312. font-weight:400;
  2313. font-style:normal;
  2314. font-size:14px;
  2315. }
  2316. #u59823 .text {
  2317. position:absolute;
  2318. align-self:center;
  2319. padding:2px 2px 2px 2px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u59823_text {
  2324. border-width:0px;
  2325. word-wrap:break-word;
  2326. text-transform:none;
  2327. visibility:hidden;
  2328. }
  2329. #u59824_img {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:134px;
  2335. height:38px;
  2336. }
  2337. #u59824 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:918px;
  2341. top:68px;
  2342. width:134px;
  2343. height:38px;
  2344. display:flex;
  2345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2346. font-weight:400;
  2347. font-style:normal;
  2348. font-size:14px;
  2349. }
  2350. #u59824 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 2px 2px 2px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u59824_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. visibility:hidden;
  2362. }
  2363. #u59825_img {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:160px;
  2369. height:38px;
  2370. }
  2371. #u59825 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:1052px;
  2375. top:68px;
  2376. width:160px;
  2377. height:38px;
  2378. display:flex;
  2379. font-size:14px;
  2380. color:#1890FF;
  2381. }
  2382. #u59825 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 2px 2px 2px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u59825_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. }
  2394. #u59826_img {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:164px;
  2400. height:38px;
  2401. }
  2402. #u59826 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:106px;
  2407. width:164px;
  2408. height:38px;
  2409. display:flex;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:14px;
  2414. }
  2415. #u59826 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 2px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u59826_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u59827_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:208px;
  2434. height:38px;
  2435. }
  2436. #u59827 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:164px;
  2440. top:106px;
  2441. width:208px;
  2442. height:38px;
  2443. display:flex;
  2444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:14px;
  2448. }
  2449. #u59827 .text {
  2450. position:absolute;
  2451. align-self:center;
  2452. padding:2px 2px 2px 2px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u59827_text {
  2457. border-width:0px;
  2458. word-wrap:break-word;
  2459. text-transform:none;
  2460. visibility:hidden;
  2461. }
  2462. #u59828_img {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:169px;
  2468. height:38px;
  2469. }
  2470. #u59828 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:372px;
  2474. top:106px;
  2475. width:169px;
  2476. height:38px;
  2477. display:flex;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:14px;
  2482. }
  2483. #u59828 .text {
  2484. position:absolute;
  2485. align-self:center;
  2486. padding:2px 2px 2px 2px;
  2487. box-sizing:border-box;
  2488. width:100%;
  2489. }
  2490. #u59828_text {
  2491. border-width:0px;
  2492. word-wrap:break-word;
  2493. text-transform:none;
  2494. visibility:hidden;
  2495. }
  2496. #u59829_img {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:209px;
  2502. height:38px;
  2503. }
  2504. #u59829 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:541px;
  2508. top:106px;
  2509. width:209px;
  2510. height:38px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:14px;
  2516. }
  2517. #u59829 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:2px 2px 2px 2px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u59829_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. visibility:hidden;
  2529. }
  2530. #u59830_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:168px;
  2536. height:38px;
  2537. }
  2538. #u59830 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:750px;
  2542. top:106px;
  2543. width:168px;
  2544. height:38px;
  2545. display:flex;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:14px;
  2550. }
  2551. #u59830 .text {
  2552. position:absolute;
  2553. align-self:center;
  2554. padding:2px 2px 2px 2px;
  2555. box-sizing:border-box;
  2556. width:100%;
  2557. }
  2558. #u59830_text {
  2559. border-width:0px;
  2560. word-wrap:break-word;
  2561. text-transform:none;
  2562. visibility:hidden;
  2563. }
  2564. #u59831_img {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:134px;
  2570. height:38px;
  2571. }
  2572. #u59831 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:918px;
  2576. top:106px;
  2577. width:134px;
  2578. height:38px;
  2579. display:flex;
  2580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. font-size:14px;
  2584. }
  2585. #u59831 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 2px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u59831_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u59832_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:160px;
  2604. height:38px;
  2605. }
  2606. #u59832 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:1052px;
  2610. top:106px;
  2611. width:160px;
  2612. height:38px;
  2613. display:flex;
  2614. font-size:14px;
  2615. }
  2616. #u59832 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 2px 2px 2px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u59832_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. visibility:hidden;
  2628. }
  2629. #u59833_img {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:164px;
  2635. height:38px;
  2636. }
  2637. #u59833 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:144px;
  2642. width:164px;
  2643. height:38px;
  2644. display:flex;
  2645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. font-size:14px;
  2649. }
  2650. #u59833 .text {
  2651. position:absolute;
  2652. align-self:center;
  2653. padding:2px 2px 2px 2px;
  2654. box-sizing:border-box;
  2655. width:100%;
  2656. }
  2657. #u59833_text {
  2658. border-width:0px;
  2659. word-wrap:break-word;
  2660. text-transform:none;
  2661. visibility:hidden;
  2662. }
  2663. #u59834_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:208px;
  2669. height:38px;
  2670. }
  2671. #u59834 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:164px;
  2675. top:144px;
  2676. width:208px;
  2677. height:38px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:14px;
  2683. }
  2684. #u59834 .text {
  2685. position:absolute;
  2686. align-self:center;
  2687. padding:2px 2px 2px 2px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u59834_text {
  2692. border-width:0px;
  2693. word-wrap:break-word;
  2694. text-transform:none;
  2695. visibility:hidden;
  2696. }
  2697. #u59835_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:169px;
  2703. height:38px;
  2704. }
  2705. #u59835 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:372px;
  2709. top:144px;
  2710. width:169px;
  2711. height:38px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:14px;
  2717. }
  2718. #u59835 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 2px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u59835_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u59836_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:209px;
  2737. height:38px;
  2738. }
  2739. #u59836 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:541px;
  2743. top:144px;
  2744. width:209px;
  2745. height:38px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:14px;
  2751. }
  2752. #u59836 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 2px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u59836_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u59837_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:168px;
  2771. height:38px;
  2772. }
  2773. #u59837 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:750px;
  2777. top:144px;
  2778. width:168px;
  2779. height:38px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:14px;
  2785. }
  2786. #u59837 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 2px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u59837_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. visibility:hidden;
  2798. }
  2799. #u59838_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:134px;
  2805. height:38px;
  2806. }
  2807. #u59838 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:918px;
  2811. top:144px;
  2812. width:134px;
  2813. height:38px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:14px;
  2819. }
  2820. #u59838 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u59838_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u59839_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:160px;
  2839. height:38px;
  2840. }
  2841. #u59839 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:1052px;
  2845. top:144px;
  2846. width:160px;
  2847. height:38px;
  2848. display:flex;
  2849. font-size:14px;
  2850. }
  2851. #u59839 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 2px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u59839_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. visibility:hidden;
  2863. }
  2864. #u59840_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:164px;
  2870. height:38px;
  2871. }
  2872. #u59840 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:182px;
  2877. width:164px;
  2878. height:38px;
  2879. display:flex;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:14px;
  2884. }
  2885. #u59840 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 2px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u59840_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. visibility:hidden;
  2897. }
  2898. #u59841_img {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:208px;
  2904. height:38px;
  2905. }
  2906. #u59841 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:164px;
  2910. top:182px;
  2911. width:208px;
  2912. height:38px;
  2913. display:flex;
  2914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:14px;
  2918. }
  2919. #u59841 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 2px 2px 2px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u59841_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. visibility:hidden;
  2931. }
  2932. #u59842_img {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:169px;
  2938. height:38px;
  2939. }
  2940. #u59842 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:372px;
  2944. top:182px;
  2945. width:169px;
  2946. height:38px;
  2947. display:flex;
  2948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2949. font-weight:400;
  2950. font-style:normal;
  2951. font-size:14px;
  2952. }
  2953. #u59842 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 2px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u59842_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. visibility:hidden;
  2965. }
  2966. #u59843_img {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:209px;
  2972. height:38px;
  2973. }
  2974. #u59843 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:541px;
  2978. top:182px;
  2979. width:209px;
  2980. height:38px;
  2981. display:flex;
  2982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:14px;
  2986. }
  2987. #u59843 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 2px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u59843_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u59844_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:168px;
  3006. height:38px;
  3007. }
  3008. #u59844 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:750px;
  3012. top:182px;
  3013. width:168px;
  3014. height:38px;
  3015. display:flex;
  3016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:14px;
  3020. }
  3021. #u59844 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 2px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u59844_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u59845_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:134px;
  3040. height:38px;
  3041. }
  3042. #u59845 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:918px;
  3046. top:182px;
  3047. width:134px;
  3048. height:38px;
  3049. display:flex;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:14px;
  3054. }
  3055. #u59845 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 2px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u59845_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u59846_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:160px;
  3074. height:38px;
  3075. }
  3076. #u59846 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:1052px;
  3080. top:182px;
  3081. width:160px;
  3082. height:38px;
  3083. display:flex;
  3084. font-size:14px;
  3085. }
  3086. #u59846 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 2px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u59846_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u59847_img {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:164px;
  3105. height:38px;
  3106. }
  3107. #u59847 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:220px;
  3112. width:164px;
  3113. height:38px;
  3114. display:flex;
  3115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:14px;
  3119. }
  3120. #u59847 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:2px 2px 2px 2px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u59847_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. visibility:hidden;
  3132. }
  3133. #u59848_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:208px;
  3139. height:38px;
  3140. }
  3141. #u59848 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:164px;
  3145. top:220px;
  3146. width:208px;
  3147. height:38px;
  3148. display:flex;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:14px;
  3153. }
  3154. #u59848 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 2px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u59848_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u59849_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:169px;
  3173. height:38px;
  3174. }
  3175. #u59849 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:372px;
  3179. top:220px;
  3180. width:169px;
  3181. height:38px;
  3182. display:flex;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:14px;
  3187. }
  3188. #u59849 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 2px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u59849_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. visibility:hidden;
  3200. }
  3201. #u59850_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:209px;
  3207. height:38px;
  3208. }
  3209. #u59850 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:541px;
  3213. top:220px;
  3214. width:209px;
  3215. height:38px;
  3216. display:flex;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:14px;
  3221. }
  3222. #u59850 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 2px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u59850_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. visibility:hidden;
  3234. }
  3235. #u59851_img {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:168px;
  3241. height:38px;
  3242. }
  3243. #u59851 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:750px;
  3247. top:220px;
  3248. width:168px;
  3249. height:38px;
  3250. display:flex;
  3251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:14px;
  3255. }
  3256. #u59851 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 2px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u59851_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u59852_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:134px;
  3275. height:38px;
  3276. }
  3277. #u59852 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:918px;
  3281. top:220px;
  3282. width:134px;
  3283. height:38px;
  3284. display:flex;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:14px;
  3289. }
  3290. #u59852 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:2px 2px 2px 2px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u59852_text {
  3298. border-width:0px;
  3299. word-wrap:break-word;
  3300. text-transform:none;
  3301. visibility:hidden;
  3302. }
  3303. #u59853_img {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:160px;
  3309. height:38px;
  3310. }
  3311. #u59853 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:1052px;
  3315. top:220px;
  3316. width:160px;
  3317. height:38px;
  3318. display:flex;
  3319. font-size:14px;
  3320. }
  3321. #u59853 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 2px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u59853_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. visibility:hidden;
  3333. }
  3334. #u59854_img {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:164px;
  3340. height:38px;
  3341. }
  3342. #u59854 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:258px;
  3347. width:164px;
  3348. height:38px;
  3349. display:flex;
  3350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3351. font-weight:400;
  3352. font-style:normal;
  3353. font-size:14px;
  3354. }
  3355. #u59854 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 2px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u59854_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. visibility:hidden;
  3367. }
  3368. #u59855_img {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:208px;
  3374. height:38px;
  3375. }
  3376. #u59855 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:164px;
  3380. top:258px;
  3381. width:208px;
  3382. height:38px;
  3383. display:flex;
  3384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:14px;
  3388. }
  3389. #u59855 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u59855_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. visibility:hidden;
  3401. }
  3402. #u59856_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:169px;
  3408. height:38px;
  3409. }
  3410. #u59856 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:372px;
  3414. top:258px;
  3415. width:169px;
  3416. height:38px;
  3417. display:flex;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:14px;
  3422. }
  3423. #u59856 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 2px 2px 2px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u59856_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u59857_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:209px;
  3442. height:38px;
  3443. }
  3444. #u59857 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:541px;
  3448. top:258px;
  3449. width:209px;
  3450. height:38px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:14px;
  3456. }
  3457. #u59857 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:2px 2px 2px 2px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u59857_text {
  3465. border-width:0px;
  3466. word-wrap:break-word;
  3467. text-transform:none;
  3468. visibility:hidden;
  3469. }
  3470. #u59858_img {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:168px;
  3476. height:38px;
  3477. }
  3478. #u59858 {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:750px;
  3482. top:258px;
  3483. width:168px;
  3484. height:38px;
  3485. display:flex;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:14px;
  3490. }
  3491. #u59858 .text {
  3492. position:absolute;
  3493. align-self:center;
  3494. padding:2px 2px 2px 2px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u59858_text {
  3499. border-width:0px;
  3500. word-wrap:break-word;
  3501. text-transform:none;
  3502. visibility:hidden;
  3503. }
  3504. #u59859_img {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:134px;
  3510. height:38px;
  3511. }
  3512. #u59859 {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:918px;
  3516. top:258px;
  3517. width:134px;
  3518. height:38px;
  3519. display:flex;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:14px;
  3524. }
  3525. #u59859 .text {
  3526. position:absolute;
  3527. align-self:center;
  3528. padding:2px 2px 2px 2px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u59859_text {
  3533. border-width:0px;
  3534. word-wrap:break-word;
  3535. text-transform:none;
  3536. visibility:hidden;
  3537. }
  3538. #u59860_img {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:160px;
  3544. height:38px;
  3545. }
  3546. #u59860 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:1052px;
  3550. top:258px;
  3551. width:160px;
  3552. height:38px;
  3553. display:flex;
  3554. font-size:14px;
  3555. }
  3556. #u59860 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 2px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u59860_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. visibility:hidden;
  3568. }
  3569. #u59861 {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:0px;
  3575. height:0px;
  3576. }
  3577. #u59862_div {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:60px;
  3583. height:30px;
  3584. background:inherit;
  3585. background-color:rgba(24, 144, 255, 1);
  3586. border:none;
  3587. border-radius:4px;
  3588. -moz-box-shadow:none;
  3589. -webkit-box-shadow:none;
  3590. box-shadow:none;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:14px;
  3595. color:#FFFFFF;
  3596. }
  3597. #u59862 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:1408px;
  3601. top:100px;
  3602. width:60px;
  3603. height:30px;
  3604. display:flex;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:14px;
  3609. color:#FFFFFF;
  3610. }
  3611. #u59862 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 2px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u59862_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. }
  3623. #u59863_div {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:60px;
  3629. height:30px;
  3630. background:inherit;
  3631. background-color:rgba(255, 255, 255, 1);
  3632. box-sizing:border-box;
  3633. border-width:1px;
  3634. border-style:solid;
  3635. border-color:rgba(170, 170, 170, 1);
  3636. border-radius:4px;
  3637. -moz-box-shadow:none;
  3638. -webkit-box-shadow:none;
  3639. box-shadow:none;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:14px;
  3644. }
  3645. #u59863 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:1478px;
  3649. top:100px;
  3650. width:60px;
  3651. height:30px;
  3652. display:flex;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:14px;
  3657. }
  3658. #u59863 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 2px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u59863_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. }
  3670. #u59864 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:0px;
  3676. height:0px;
  3677. }
  3678. #u59865_div {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:140px;
  3684. height:30px;
  3685. background:inherit;
  3686. background-color:rgba(255, 255, 255, 1);
  3687. box-sizing:border-box;
  3688. border-width:1px;
  3689. border-style:solid;
  3690. border-color:rgba(215, 215, 215, 1);
  3691. border-radius:4px;
  3692. -moz-box-shadow:none;
  3693. -webkit-box-shadow:none;
  3694. box-shadow:none;
  3695. font-size:14px;
  3696. }
  3697. #u59865 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:957px;
  3701. top:101px;
  3702. width:140px;
  3703. height:30px;
  3704. display:flex;
  3705. font-size:14px;
  3706. }
  3707. #u59865 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 2px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u59865_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u59866_input {
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:134px;
  3725. height:23px;
  3726. padding:2px 2px 2px 2px;
  3727. font-family:'ArialMT', 'Arial', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:14px;
  3731. letter-spacing:normal;
  3732. color:#AAAAAA;
  3733. vertical-align:none;
  3734. text-align:left;
  3735. text-transform:none;
  3736. background-color:transparent;
  3737. border-color:transparent;
  3738. }
  3739. #u59866_input.disabled {
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:134px;
  3744. height:23px;
  3745. padding:2px 2px 2px 2px;
  3746. font-family:'ArialMT', 'Arial', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. font-size:14px;
  3750. letter-spacing:normal;
  3751. color:#AAAAAA;
  3752. vertical-align:none;
  3753. text-align:left;
  3754. text-transform:none;
  3755. background-color:transparent;
  3756. border-color:transparent;
  3757. }
  3758. #u59866_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:134px;
  3764. height:23px;
  3765. background:inherit;
  3766. background-color:rgba(255, 255, 255, 1);
  3767. border:none;
  3768. border-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-size:14px;
  3773. color:#AAAAAA;
  3774. }
  3775. #u59866 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:961px;
  3779. top:103px;
  3780. width:134px;
  3781. height:23px;
  3782. display:flex;
  3783. font-size:14px;
  3784. color:#AAAAAA;
  3785. }
  3786. #u59866 .text {
  3787. position:absolute;
  3788. align-self:flex-start;
  3789. padding:2px 2px 2px 2px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u59866_div.disabled {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:134px;
  3799. height:23px;
  3800. background:inherit;
  3801. background-color:rgba(240, 240, 240, 1);
  3802. border:none;
  3803. border-radius:0px;
  3804. -moz-box-shadow:none;
  3805. -webkit-box-shadow:none;
  3806. box-shadow:none;
  3807. font-size:14px;
  3808. color:#AAAAAA;
  3809. }
  3810. #u59866.disabled {
  3811. }
  3812. .u59866_input_option {
  3813. font-size:14px;
  3814. }
  3815. #u59867_div {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:73px;
  3821. height:50px;
  3822. background:inherit;
  3823. background-color:rgba(255, 255, 255, 0);
  3824. border:none;
  3825. border-left:0px;
  3826. border-top:0px;
  3827. border-right:0px;
  3828. border-radius:0px;
  3829. border-bottom-right-radius:0px;
  3830. border-bottom-left-radius:0px;
  3831. -moz-box-shadow:none;
  3832. -webkit-box-shadow:none;
  3833. box-shadow:none;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:18px;
  3838. line-height:40px;
  3839. }
  3840. #u59867 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:355px;
  3844. top:50px;
  3845. width:73px;
  3846. height:50px;
  3847. display:flex;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:18px;
  3852. line-height:40px;
  3853. }
  3854. #u59867 .text {
  3855. position:absolute;
  3856. align-self:center;
  3857. padding:0px 0px 0px 0px;
  3858. box-sizing:border-box;
  3859. width:100%;
  3860. }
  3861. #u59867_text {
  3862. border-width:0px;
  3863. white-space:nowrap;
  3864. text-transform:none;
  3865. }
  3866. #u59868 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:0px;
  3872. height:0px;
  3873. }
  3874. #u59869_div {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:140px;
  3880. height:30px;
  3881. background:inherit;
  3882. background-color:rgba(255, 255, 255, 1);
  3883. box-sizing:border-box;
  3884. border-width:1px;
  3885. border-style:solid;
  3886. border-color:rgba(215, 215, 215, 1);
  3887. border-radius:4px;
  3888. -moz-box-shadow:none;
  3889. -webkit-box-shadow:none;
  3890. box-shadow:none;
  3891. font-size:14px;
  3892. }
  3893. #u59869 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:507px;
  3897. top:101px;
  3898. width:140px;
  3899. height:30px;
  3900. display:flex;
  3901. font-size:14px;
  3902. }
  3903. #u59869 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 2px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u59869_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u59870_input {
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:134px;
  3921. height:23px;
  3922. padding:2px 2px 2px 2px;
  3923. font-family:'ArialMT', 'Arial', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:14px;
  3927. letter-spacing:normal;
  3928. color:#AAAAAA;
  3929. vertical-align:none;
  3930. text-align:left;
  3931. text-transform:none;
  3932. background-color:transparent;
  3933. border-color:transparent;
  3934. }
  3935. #u59870_input.disabled {
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:134px;
  3940. height:23px;
  3941. padding:2px 2px 2px 2px;
  3942. font-family:'ArialMT', 'Arial', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:14px;
  3946. letter-spacing:normal;
  3947. color:#AAAAAA;
  3948. vertical-align:none;
  3949. text-align:left;
  3950. text-transform:none;
  3951. background-color:transparent;
  3952. border-color:transparent;
  3953. }
  3954. #u59870_div {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:134px;
  3960. height:23px;
  3961. background:inherit;
  3962. background-color:rgba(255, 255, 255, 1);
  3963. border:none;
  3964. border-radius:0px;
  3965. -moz-box-shadow:none;
  3966. -webkit-box-shadow:none;
  3967. box-shadow:none;
  3968. font-size:14px;
  3969. color:#AAAAAA;
  3970. }
  3971. #u59870 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:511px;
  3975. top:103px;
  3976. width:134px;
  3977. height:23px;
  3978. display:flex;
  3979. font-size:14px;
  3980. color:#AAAAAA;
  3981. }
  3982. #u59870 .text {
  3983. position:absolute;
  3984. align-self:flex-start;
  3985. padding:2px 2px 2px 2px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u59870_div.disabled {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:134px;
  3995. height:23px;
  3996. background:inherit;
  3997. background-color:rgba(240, 240, 240, 1);
  3998. border:none;
  3999. border-radius:0px;
  4000. -moz-box-shadow:none;
  4001. -webkit-box-shadow:none;
  4002. box-shadow:none;
  4003. font-size:14px;
  4004. color:#AAAAAA;
  4005. }
  4006. #u59870.disabled {
  4007. }
  4008. .u59870_input_option {
  4009. font-size:14px;
  4010. }
  4011. #u59871 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:0px;
  4017. height:0px;
  4018. }
  4019. #u59872_div {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:140px;
  4025. height:30px;
  4026. background:inherit;
  4027. background-color:rgba(255, 255, 255, 1);
  4028. box-sizing:border-box;
  4029. border-width:1px;
  4030. border-style:solid;
  4031. border-color:rgba(215, 215, 215, 1);
  4032. border-radius:4px;
  4033. -moz-box-shadow:none;
  4034. -webkit-box-shadow:none;
  4035. box-shadow:none;
  4036. font-size:14px;
  4037. }
  4038. #u59872 {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:1107px;
  4042. top:101px;
  4043. width:140px;
  4044. height:30px;
  4045. display:flex;
  4046. font-size:14px;
  4047. }
  4048. #u59872 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 2px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u59872_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. visibility:hidden;
  4060. }
  4061. #u59873_input {
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:134px;
  4066. height:23px;
  4067. padding:2px 2px 2px 2px;
  4068. font-family:'ArialMT', 'Arial', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:14px;
  4072. letter-spacing:normal;
  4073. color:#AAAAAA;
  4074. vertical-align:none;
  4075. text-align:left;
  4076. text-transform:none;
  4077. background-color:transparent;
  4078. border-color:transparent;
  4079. }
  4080. #u59873_input.disabled {
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:134px;
  4085. height:23px;
  4086. padding:2px 2px 2px 2px;
  4087. font-family:'ArialMT', 'Arial', sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. font-size:14px;
  4091. letter-spacing:normal;
  4092. color:#AAAAAA;
  4093. vertical-align:none;
  4094. text-align:left;
  4095. text-transform:none;
  4096. background-color:transparent;
  4097. border-color:transparent;
  4098. }
  4099. #u59873_div {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:134px;
  4105. height:23px;
  4106. background:inherit;
  4107. background-color:rgba(255, 255, 255, 1);
  4108. border:none;
  4109. border-radius:0px;
  4110. -moz-box-shadow:none;
  4111. -webkit-box-shadow:none;
  4112. box-shadow:none;
  4113. font-size:14px;
  4114. color:#AAAAAA;
  4115. }
  4116. #u59873 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:1111px;
  4120. top:103px;
  4121. width:134px;
  4122. height:23px;
  4123. display:flex;
  4124. font-size:14px;
  4125. color:#AAAAAA;
  4126. }
  4127. #u59873 .text {
  4128. position:absolute;
  4129. align-self:flex-start;
  4130. padding:2px 2px 2px 2px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u59873_div.disabled {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:134px;
  4140. height:23px;
  4141. background:inherit;
  4142. background-color:rgba(240, 240, 240, 1);
  4143. border:none;
  4144. border-radius:0px;
  4145. -moz-box-shadow:none;
  4146. -webkit-box-shadow:none;
  4147. box-shadow:none;
  4148. font-size:14px;
  4149. color:#AAAAAA;
  4150. }
  4151. #u59873.disabled {
  4152. }
  4153. .u59873_input_option {
  4154. font-size:14px;
  4155. }
  4156. #u59874 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:0px;
  4161. width:0px;
  4162. height:0px;
  4163. }
  4164. #u59875_div {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:140px;
  4170. height:30px;
  4171. background:inherit;
  4172. background-color:rgba(255, 255, 255, 1);
  4173. box-sizing:border-box;
  4174. border-width:1px;
  4175. border-style:solid;
  4176. border-color:rgba(215, 215, 215, 1);
  4177. border-radius:4px;
  4178. -moz-box-shadow:none;
  4179. -webkit-box-shadow:none;
  4180. box-shadow:none;
  4181. font-size:14px;
  4182. }
  4183. #u59875 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:1257px;
  4187. top:101px;
  4188. width:140px;
  4189. height:30px;
  4190. display:flex;
  4191. font-size:14px;
  4192. }
  4193. #u59875 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u59875_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u59876_input {
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:134px;
  4211. height:23px;
  4212. padding:2px 2px 2px 2px;
  4213. font-family:'ArialMT', 'Arial', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. letter-spacing:normal;
  4218. color:#AAAAAA;
  4219. vertical-align:none;
  4220. text-align:left;
  4221. text-transform:none;
  4222. background-color:transparent;
  4223. border-color:transparent;
  4224. }
  4225. #u59876_input.disabled {
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:134px;
  4230. height:23px;
  4231. padding:2px 2px 2px 2px;
  4232. font-family:'ArialMT', 'Arial', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:14px;
  4236. letter-spacing:normal;
  4237. color:#AAAAAA;
  4238. vertical-align:none;
  4239. text-align:left;
  4240. text-transform:none;
  4241. background-color:transparent;
  4242. border-color:transparent;
  4243. }
  4244. #u59876_div {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:134px;
  4250. height:23px;
  4251. background:inherit;
  4252. background-color:rgba(255, 255, 255, 1);
  4253. border:none;
  4254. border-radius:0px;
  4255. -moz-box-shadow:none;
  4256. -webkit-box-shadow:none;
  4257. box-shadow:none;
  4258. font-size:14px;
  4259. color:#AAAAAA;
  4260. }
  4261. #u59876 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:1261px;
  4265. top:103px;
  4266. width:134px;
  4267. height:23px;
  4268. display:flex;
  4269. font-size:14px;
  4270. color:#AAAAAA;
  4271. }
  4272. #u59876 .text {
  4273. position:absolute;
  4274. align-self:flex-start;
  4275. padding:2px 2px 2px 2px;
  4276. box-sizing:border-box;
  4277. width:100%;
  4278. }
  4279. #u59876_div.disabled {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:134px;
  4285. height:23px;
  4286. background:inherit;
  4287. background-color:rgba(240, 240, 240, 1);
  4288. border:none;
  4289. border-radius:0px;
  4290. -moz-box-shadow:none;
  4291. -webkit-box-shadow:none;
  4292. box-shadow:none;
  4293. font-size:14px;
  4294. color:#AAAAAA;
  4295. }
  4296. #u59876.disabled {
  4297. }
  4298. .u59876_input_option {
  4299. font-size:14px;
  4300. }
  4301. #u59877 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:0px;
  4307. height:0px;
  4308. }
  4309. #u59878 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:0px;
  4315. height:0px;
  4316. }
  4317. #u59879_div {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:480px;
  4323. height:300px;
  4324. background:inherit;
  4325. background-color:rgba(255, 255, 255, 1);
  4326. border:none;
  4327. border-radius:4px;
  4328. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4329. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4330. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4331. font-family:'Microsoft YaHei', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. }
  4335. #u59879 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:436px;
  4339. top:516px;
  4340. width:480px;
  4341. height:300px;
  4342. display:flex;
  4343. font-family:'Microsoft YaHei', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. }
  4347. #u59879 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 2px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u59879_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. visibility:hidden;
  4359. }
  4360. #u59880_div {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:299px;
  4366. height:22px;
  4367. background:inherit;
  4368. background-color:rgba(255, 255, 255, 0);
  4369. border:none;
  4370. border-radius:0px;
  4371. -moz-box-shadow:none;
  4372. -webkit-box-shadow:none;
  4373. box-shadow:none;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:14px;
  4378. color:#666666;
  4379. line-height:22px;
  4380. }
  4381. #u59880 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:463px;
  4385. top:579px;
  4386. width:299px;
  4387. height:22px;
  4388. display:flex;
  4389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4390. font-weight:400;
  4391. font-style:normal;
  4392. font-size:14px;
  4393. color:#666666;
  4394. line-height:22px;
  4395. }
  4396. #u59880 .text {
  4397. position:absolute;
  4398. align-self:flex-start;
  4399. padding:0px 0px 0px 0px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u59880_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. }
  4408. #u59881_div {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:109px;
  4414. height:21px;
  4415. background:inherit;
  4416. background-color:rgba(255, 255, 255, 0);
  4417. border:none;
  4418. border-radius:0px;
  4419. -moz-box-shadow:none;
  4420. -webkit-box-shadow:none;
  4421. box-shadow:none;
  4422. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4423. font-weight:650;
  4424. font-style:normal;
  4425. font-size:18px;
  4426. color:#000000;
  4427. line-height:22px;
  4428. }
  4429. #u59881 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:463px;
  4433. top:537px;
  4434. width:109px;
  4435. height:21px;
  4436. display:flex;
  4437. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4438. font-weight:650;
  4439. font-style:normal;
  4440. font-size:18px;
  4441. color:#000000;
  4442. line-height:22px;
  4443. }
  4444. #u59881 .text {
  4445. position:absolute;
  4446. align-self:flex-start;
  4447. padding:0px 0px 0px 0px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u59881_text {
  4452. border-width:0px;
  4453. white-space:nowrap;
  4454. text-transform:none;
  4455. }
  4456. #u59882 label {
  4457. left:0px;
  4458. width:100%;
  4459. }
  4460. #u59882_img {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:3px;
  4465. width:12px;
  4466. height:12px;
  4467. }
  4468. #u59882 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:540px;
  4472. top:582px;
  4473. width:100px;
  4474. height:18px;
  4475. display:flex;
  4476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4477. font-weight:400;
  4478. font-style:normal;
  4479. }
  4480. #u59882 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:0px 2px 0px 2px;
  4484. box-sizing:border-box;
  4485. }
  4486. #u59882_img.selected {
  4487. }
  4488. #u59882.selected {
  4489. }
  4490. #u59882_img.disabled {
  4491. }
  4492. #u59882.disabled {
  4493. }
  4494. #u59882_img.selectedDisabled {
  4495. }
  4496. #u59882.selectedDisabled {
  4497. }
  4498. #u59882_text {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:14px;
  4502. top:0px;
  4503. width:84px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. }
  4507. #u59882_input {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:0px;
  4513. height:0px;
  4514. opacity:0;
  4515. }
  4516. #u59883 label {
  4517. left:0px;
  4518. width:100%;
  4519. }
  4520. #u59883_img {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:3px;
  4525. width:12px;
  4526. height:12px;
  4527. }
  4528. #u59883 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:540px;
  4532. top:615px;
  4533. width:100px;
  4534. height:18px;
  4535. display:flex;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. }
  4540. #u59883 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:0px 2px 0px 2px;
  4544. box-sizing:border-box;
  4545. }
  4546. #u59883_img.selected {
  4547. }
  4548. #u59883.selected {
  4549. }
  4550. #u59883_img.disabled {
  4551. }
  4552. #u59883.disabled {
  4553. }
  4554. #u59883_img.selectedDisabled {
  4555. }
  4556. #u59883.selectedDisabled {
  4557. }
  4558. #u59883_text {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:14px;
  4562. top:0px;
  4563. width:84px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. }
  4567. #u59883_input {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:0px;
  4573. height:0px;
  4574. opacity:0;
  4575. }
  4576. #u59884 label {
  4577. left:0px;
  4578. width:100%;
  4579. }
  4580. #u59884_img {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:0px;
  4584. top:3px;
  4585. width:12px;
  4586. height:12px;
  4587. }
  4588. #u59884 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:540px;
  4592. top:648px;
  4593. width:100px;
  4594. height:18px;
  4595. display:flex;
  4596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4597. font-weight:400;
  4598. font-style:normal;
  4599. }
  4600. #u59884 .text {
  4601. position:absolute;
  4602. align-self:center;
  4603. padding:0px 2px 0px 2px;
  4604. box-sizing:border-box;
  4605. }
  4606. #u59884_img.selected {
  4607. }
  4608. #u59884.selected {
  4609. }
  4610. #u59884_img.disabled {
  4611. }
  4612. #u59884.disabled {
  4613. }
  4614. #u59884_img.selectedDisabled {
  4615. }
  4616. #u59884.selectedDisabled {
  4617. }
  4618. #u59884_text {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:14px;
  4622. top:0px;
  4623. width:84px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. }
  4627. #u59884_input {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:0px;
  4633. height:0px;
  4634. opacity:0;
  4635. }
  4636. #u59885 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:0px;
  4642. height:0px;
  4643. }
  4644. #u59886_div {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:347px;
  4650. height:60px;
  4651. background:inherit;
  4652. background-color:rgba(255, 255, 255, 1);
  4653. box-sizing:border-box;
  4654. border-width:1px;
  4655. border-style:solid;
  4656. border-color:rgba(41, 143, 255, 1);
  4657. border-radius:4px;
  4658. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4659. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4660. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4661. font-family:'Microsoft YaHei', sans-serif;
  4662. font-weight:400;
  4663. font-style:normal;
  4664. font-size:14px;
  4665. color:#CCCCCC;
  4666. text-align:left;
  4667. }
  4668. #u59886 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:540px;
  4672. top:676px;
  4673. width:347px;
  4674. height:60px;
  4675. display:flex;
  4676. font-family:'Microsoft YaHei', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:14px;
  4680. color:#CCCCCC;
  4681. text-align:left;
  4682. }
  4683. #u59886 .text {
  4684. position:absolute;
  4685. align-self:center;
  4686. padding:2px 8px 2px 8px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u59886_text {
  4691. border-width:0px;
  4692. word-wrap:break-word;
  4693. text-transform:none;
  4694. visibility:hidden;
  4695. }
  4696. #u59887_input {
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:330px;
  4701. height:38px;
  4702. padding:2px 2px 2px 2px;
  4703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:14px;
  4707. letter-spacing:normal;
  4708. color:#000000;
  4709. vertical-align:none;
  4710. text-align:left;
  4711. text-transform:none;
  4712. background-color:transparent;
  4713. border-color:transparent;
  4714. }
  4715. #u59887_input.disabled {
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:330px;
  4720. height:38px;
  4721. padding:2px 2px 2px 2px;
  4722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:14px;
  4726. letter-spacing:normal;
  4727. color:#000000;
  4728. vertical-align:none;
  4729. text-align:left;
  4730. text-transform:none;
  4731. background-color:transparent;
  4732. border-color:transparent;
  4733. }
  4734. #u59887_div {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:330px;
  4740. height:38px;
  4741. background:inherit;
  4742. background-color:rgba(255, 255, 255, 1);
  4743. border:none;
  4744. border-radius:0px;
  4745. -moz-box-shadow:none;
  4746. -webkit-box-shadow:none;
  4747. box-shadow:none;
  4748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:14px;
  4752. }
  4753. #u59887 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:549px;
  4757. top:677px;
  4758. width:330px;
  4759. height:38px;
  4760. display:flex;
  4761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4762. font-weight:400;
  4763. font-style:normal;
  4764. font-size:14px;
  4765. }
  4766. #u59887 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 2px 2px 2px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u59887_div.disabled {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:330px;
  4779. height:38px;
  4780. background:inherit;
  4781. background-color:rgba(240, 240, 240, 1);
  4782. border:none;
  4783. border-radius:0px;
  4784. -moz-box-shadow:none;
  4785. -webkit-box-shadow:none;
  4786. box-shadow:none;
  4787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4788. font-weight:400;
  4789. font-style:normal;
  4790. font-size:14px;
  4791. }
  4792. #u59887.disabled {
  4793. }
  4794. #u59888 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:0px;
  4800. height:0px;
  4801. }
  4802. #u59889_div {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:80px;
  4808. height:30px;
  4809. background:inherit;
  4810. background-color:rgba(24, 144, 255, 1);
  4811. border:none;
  4812. border-radius:4px;
  4813. -moz-box-shadow:none;
  4814. -webkit-box-shadow:none;
  4815. box-shadow:none;
  4816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4817. font-weight:400;
  4818. font-style:normal;
  4819. font-size:14px;
  4820. color:#FFFFFF;
  4821. }
  4822. #u59889 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:807px;
  4826. top:766px;
  4827. width:80px;
  4828. height:30px;
  4829. display:flex;
  4830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:14px;
  4834. color:#FFFFFF;
  4835. }
  4836. #u59889 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:2px 2px 2px 2px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u59889_text {
  4844. border-width:0px;
  4845. word-wrap:break-word;
  4846. text-transform:none;
  4847. }
  4848. #u59890_div {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:80px;
  4854. height:30px;
  4855. background:inherit;
  4856. background-color:rgba(255, 255, 255, 1);
  4857. box-sizing:border-box;
  4858. border-width:1px;
  4859. border-style:solid;
  4860. border-color:rgba(170, 170, 170, 1);
  4861. border-radius:4px;
  4862. -moz-box-shadow:none;
  4863. -webkit-box-shadow:none;
  4864. box-shadow:none;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:14px;
  4869. }
  4870. #u59890 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:708px;
  4874. top:766px;
  4875. width:80px;
  4876. height:30px;
  4877. display:flex;
  4878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. font-size:14px;
  4882. }
  4883. #u59890 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 2px 2px 2px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u59890_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. }
  4895. #u59891 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:0px;
  4901. height:0px;
  4902. }
  4903. #u59892_div {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:140px;
  4909. height:30px;
  4910. background:inherit;
  4911. background-color:rgba(255, 255, 255, 1);
  4912. box-sizing:border-box;
  4913. border-width:1px;
  4914. border-style:solid;
  4915. border-color:rgba(215, 215, 215, 1);
  4916. border-radius:4px;
  4917. -moz-box-shadow:none;
  4918. -webkit-box-shadow:none;
  4919. box-shadow:none;
  4920. font-size:14px;
  4921. }
  4922. #u59892 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:357px;
  4926. top:101px;
  4927. width:140px;
  4928. height:30px;
  4929. display:flex;
  4930. font-size:14px;
  4931. }
  4932. #u59892 .text {
  4933. position:absolute;
  4934. align-self:center;
  4935. padding:2px 2px 2px 2px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u59892_text {
  4940. border-width:0px;
  4941. word-wrap:break-word;
  4942. text-transform:none;
  4943. visibility:hidden;
  4944. }
  4945. #u59893_input {
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:134px;
  4950. height:23px;
  4951. padding:2px 2px 2px 2px;
  4952. font-family:'ArialMT', 'Arial', sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:14px;
  4956. letter-spacing:normal;
  4957. color:#AAAAAA;
  4958. vertical-align:none;
  4959. text-align:left;
  4960. text-transform:none;
  4961. background-color:transparent;
  4962. border-color:transparent;
  4963. }
  4964. #u59893_input.disabled {
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:134px;
  4969. height:23px;
  4970. padding:2px 2px 2px 2px;
  4971. font-family:'ArialMT', 'Arial', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:14px;
  4975. letter-spacing:normal;
  4976. color:#AAAAAA;
  4977. vertical-align:none;
  4978. text-align:left;
  4979. text-transform:none;
  4980. background-color:transparent;
  4981. border-color:transparent;
  4982. }
  4983. #u59893_div {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:134px;
  4989. height:23px;
  4990. background:inherit;
  4991. background-color:rgba(255, 255, 255, 1);
  4992. border:none;
  4993. border-radius:0px;
  4994. -moz-box-shadow:none;
  4995. -webkit-box-shadow:none;
  4996. box-shadow:none;
  4997. font-size:14px;
  4998. color:#AAAAAA;
  4999. }
  5000. #u59893 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:361px;
  5004. top:103px;
  5005. width:134px;
  5006. height:23px;
  5007. display:flex;
  5008. font-size:14px;
  5009. color:#AAAAAA;
  5010. }
  5011. #u59893 .text {
  5012. position:absolute;
  5013. align-self:flex-start;
  5014. padding:2px 2px 2px 2px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u59893_div.disabled {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:134px;
  5024. height:23px;
  5025. background:inherit;
  5026. background-color:rgba(240, 240, 240, 1);
  5027. border:none;
  5028. border-radius:0px;
  5029. -moz-box-shadow:none;
  5030. -webkit-box-shadow:none;
  5031. box-shadow:none;
  5032. font-size:14px;
  5033. color:#AAAAAA;
  5034. }
  5035. #u59893.disabled {
  5036. }
  5037. .u59893_input_option {
  5038. font-size:14px;
  5039. }
  5040. #u59894 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:0px;
  5046. height:0px;
  5047. }
  5048. #u59895_div {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:200px;
  5054. height:1180px;
  5055. background:inherit;
  5056. background-color:rgba(255, 255, 255, 1);
  5057. border:none;
  5058. border-radius:0px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. }
  5063. #u59895 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:120px;
  5067. top:50px;
  5068. width:200px;
  5069. height:1180px;
  5070. display:flex;
  5071. }
  5072. #u59895 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 2px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u59895_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u59896_div {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:200px;
  5091. height:60px;
  5092. background:inherit;
  5093. background-color:rgba(224, 231, 247, 1);
  5094. border:none;
  5095. border-radius:0px;
  5096. -moz-box-shadow:none;
  5097. -webkit-box-shadow:none;
  5098. box-shadow:none;
  5099. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5100. font-weight:500;
  5101. font-style:normal;
  5102. font-size:18px;
  5103. }
  5104. #u59896 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:120px;
  5108. top:50px;
  5109. width:200px;
  5110. height:60px;
  5111. display:flex;
  5112. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5113. font-weight:500;
  5114. font-style:normal;
  5115. font-size:18px;
  5116. }
  5117. #u59896 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:0px 0px 0px 20px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u59896_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. }
  5129. #u59897_div {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:65px;
  5135. height:22px;
  5136. background:inherit;
  5137. background-color:rgba(255, 255, 255, 0);
  5138. border:none;
  5139. border-radius:0px;
  5140. -moz-box-shadow:none;
  5141. -webkit-box-shadow:none;
  5142. box-shadow:none;
  5143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5144. font-weight:400;
  5145. font-style:normal;
  5146. font-size:16px;
  5147. }
  5148. #u59897 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:147px;
  5152. top:160px;
  5153. width:65px;
  5154. height:22px;
  5155. display:flex;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:16px;
  5160. }
  5161. #u59897 .text {
  5162. position:absolute;
  5163. align-self:flex-start;
  5164. padding:0px 0px 0px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u59897_text {
  5169. border-width:0px;
  5170. white-space:nowrap;
  5171. text-transform:none;
  5172. }
  5173. #u59898_img {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:201px;
  5179. height:2px;
  5180. }
  5181. #u59898 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:120px;
  5185. top:279px;
  5186. width:200px;
  5187. height:1px;
  5188. display:flex;
  5189. }
  5190. #u59898 .text {
  5191. position:absolute;
  5192. align-self:center;
  5193. padding:2px 2px 2px 2px;
  5194. box-sizing:border-box;
  5195. width:100%;
  5196. }
  5197. #u59898_text {
  5198. border-width:0px;
  5199. word-wrap:break-word;
  5200. text-transform:none;
  5201. visibility:hidden;
  5202. }
  5203. #u59899_div {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:0px;
  5207. top:0px;
  5208. width:65px;
  5209. height:22px;
  5210. background:inherit;
  5211. background-color:rgba(255, 255, 255, 0);
  5212. border:none;
  5213. border-radius:0px;
  5214. -moz-box-shadow:none;
  5215. -webkit-box-shadow:none;
  5216. box-shadow:none;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:16px;
  5221. }
  5222. #u59899 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:147px;
  5226. top:336px;
  5227. width:65px;
  5228. height:22px;
  5229. display:flex;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:16px;
  5234. }
  5235. #u59899 .text {
  5236. position:absolute;
  5237. align-self:flex-start;
  5238. padding:0px 0px 0px 0px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u59899_text {
  5243. border-width:0px;
  5244. white-space:nowrap;
  5245. text-transform:none;
  5246. }
  5247. #u59900_div {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:49px;
  5253. height:17px;
  5254. background:inherit;
  5255. background-color:rgba(255, 255, 255, 0);
  5256. border:none;
  5257. border-radius:0px;
  5258. -moz-box-shadow:none;
  5259. -webkit-box-shadow:none;
  5260. box-shadow:none;
  5261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5262. font-weight:400;
  5263. font-style:normal;
  5264. font-size:12px;
  5265. color:#AAAAAA;
  5266. }
  5267. #u59900 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:147px;
  5271. top:300px;
  5272. width:49px;
  5273. height:17px;
  5274. display:flex;
  5275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:12px;
  5279. color:#AAAAAA;
  5280. }
  5281. #u59900 .text {
  5282. position:absolute;
  5283. align-self:flex-start;
  5284. padding:0px 0px 0px 0px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u59900_text {
  5289. border-width:0px;
  5290. white-space:nowrap;
  5291. text-transform:none;
  5292. }
  5293. #u59901_div {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:65px;
  5299. height:22px;
  5300. background:inherit;
  5301. background-color:rgba(255, 255, 255, 0);
  5302. border:none;
  5303. border-radius:0px;
  5304. -moz-box-shadow:none;
  5305. -webkit-box-shadow:none;
  5306. box-shadow:none;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:16px;
  5311. }
  5312. #u59901 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:147px;
  5316. top:202px;
  5317. width:65px;
  5318. height:22px;
  5319. display:flex;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:16px;
  5324. }
  5325. #u59901 .text {
  5326. position:absolute;
  5327. align-self:flex-start;
  5328. padding:0px 0px 0px 0px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u59901_text {
  5333. border-width:0px;
  5334. white-space:nowrap;
  5335. text-transform:none;
  5336. }
  5337. #u59902_div {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:65px;
  5343. height:22px;
  5344. background:inherit;
  5345. background-color:rgba(255, 255, 255, 0);
  5346. border:none;
  5347. border-radius:0px;
  5348. -moz-box-shadow:none;
  5349. -webkit-box-shadow:none;
  5350. box-shadow:none;
  5351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:16px;
  5355. }
  5356. #u59902 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:147px;
  5360. top:244px;
  5361. width:65px;
  5362. height:22px;
  5363. display:flex;
  5364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:16px;
  5368. }
  5369. #u59902 .text {
  5370. position:absolute;
  5371. align-self:flex-start;
  5372. padding:0px 0px 0px 0px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u59902_text {
  5377. border-width:0px;
  5378. white-space:nowrap;
  5379. text-transform:none;
  5380. }
  5381. #u59903_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:201px;
  5387. height:2px;
  5388. }
  5389. #u59903 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:120px;
  5393. top:422px;
  5394. width:200px;
  5395. height:1px;
  5396. display:flex;
  5397. }
  5398. #u59903 .text {
  5399. position:absolute;
  5400. align-self:center;
  5401. padding:2px 2px 2px 2px;
  5402. box-sizing:border-box;
  5403. width:100%;
  5404. }
  5405. #u59903_text {
  5406. border-width:0px;
  5407. word-wrap:break-word;
  5408. text-transform:none;
  5409. visibility:hidden;
  5410. }
  5411. #u59904_div {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:0px;
  5415. top:0px;
  5416. width:65px;
  5417. height:22px;
  5418. background:inherit;
  5419. background-color:rgba(255, 255, 255, 0);
  5420. border:none;
  5421. border-radius:0px;
  5422. -moz-box-shadow:none;
  5423. -webkit-box-shadow:none;
  5424. box-shadow:none;
  5425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5426. font-weight:400;
  5427. font-style:normal;
  5428. font-size:16px;
  5429. }
  5430. #u59904 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:147px;
  5434. top:479px;
  5435. width:65px;
  5436. height:22px;
  5437. display:flex;
  5438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5439. font-weight:400;
  5440. font-style:normal;
  5441. font-size:16px;
  5442. }
  5443. #u59904 .text {
  5444. position:absolute;
  5445. align-self:flex-start;
  5446. padding:0px 0px 0px 0px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u59904_text {
  5451. border-width:0px;
  5452. white-space:nowrap;
  5453. text-transform:none;
  5454. }
  5455. #u59905_div {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:49px;
  5461. height:17px;
  5462. background:inherit;
  5463. background-color:rgba(255, 255, 255, 0);
  5464. border:none;
  5465. border-radius:0px;
  5466. -moz-box-shadow:none;
  5467. -webkit-box-shadow:none;
  5468. box-shadow:none;
  5469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5470. font-weight:400;
  5471. font-style:normal;
  5472. font-size:12px;
  5473. color:#AAAAAA;
  5474. }
  5475. #u59905 {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:147px;
  5479. top:443px;
  5480. width:49px;
  5481. height:17px;
  5482. display:flex;
  5483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:12px;
  5487. color:#AAAAAA;
  5488. }
  5489. #u59905 .text {
  5490. position:absolute;
  5491. align-self:flex-start;
  5492. padding:0px 0px 0px 0px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u59905_text {
  5497. border-width:0px;
  5498. white-space:nowrap;
  5499. text-transform:none;
  5500. }
  5501. #u59906_div {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:65px;
  5507. height:22px;
  5508. background:inherit;
  5509. background-color:rgba(255, 255, 255, 0);
  5510. border:none;
  5511. border-radius:0px;
  5512. -moz-box-shadow:none;
  5513. -webkit-box-shadow:none;
  5514. box-shadow:none;
  5515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5516. font-weight:400;
  5517. font-style:normal;
  5518. font-size:16px;
  5519. }
  5520. #u59906 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:147px;
  5524. top:561px;
  5525. width:65px;
  5526. height:22px;
  5527. display:flex;
  5528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:16px;
  5532. }
  5533. #u59906 .text {
  5534. position:absolute;
  5535. align-self:flex-start;
  5536. padding:0px 0px 0px 0px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u59906_text {
  5541. border-width:0px;
  5542. white-space:nowrap;
  5543. text-transform:none;
  5544. }
  5545. #u59907_div {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:65px;
  5551. height:22px;
  5552. background:inherit;
  5553. background-color:rgba(255, 255, 255, 0);
  5554. border:none;
  5555. border-radius:0px;
  5556. -moz-box-shadow:none;
  5557. -webkit-box-shadow:none;
  5558. box-shadow:none;
  5559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5560. font-weight:400;
  5561. font-style:normal;
  5562. font-size:16px;
  5563. }
  5564. #u59907 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:147px;
  5568. top:603px;
  5569. width:65px;
  5570. height:22px;
  5571. display:flex;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:16px;
  5576. }
  5577. #u59907 .text {
  5578. position:absolute;
  5579. align-self:flex-start;
  5580. padding:0px 0px 0px 0px;
  5581. box-sizing:border-box;
  5582. width:100%;
  5583. }
  5584. #u59907_text {
  5585. border-width:0px;
  5586. white-space:nowrap;
  5587. text-transform:none;
  5588. }
  5589. #u59908_div {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:0px;
  5593. top:0px;
  5594. width:65px;
  5595. height:22px;
  5596. background:inherit;
  5597. background-color:rgba(255, 255, 255, 0);
  5598. border:none;
  5599. border-radius:0px;
  5600. -moz-box-shadow:none;
  5601. -webkit-box-shadow:none;
  5602. box-shadow:none;
  5603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5604. font-weight:400;
  5605. font-style:normal;
  5606. font-size:16px;
  5607. }
  5608. #u59908 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:147px;
  5612. top:378px;
  5613. width:65px;
  5614. height:22px;
  5615. display:flex;
  5616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:16px;
  5620. }
  5621. #u59908 .text {
  5622. position:absolute;
  5623. align-self:flex-start;
  5624. padding:0px 0px 0px 0px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u59908_text {
  5629. border-width:0px;
  5630. white-space:nowrap;
  5631. text-transform:none;
  5632. }
  5633. #u59909_div {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:49px;
  5639. height:17px;
  5640. background:inherit;
  5641. background-color:rgba(255, 255, 255, 0);
  5642. border:none;
  5643. border-radius:0px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:12px;
  5651. color:#AAAAAA;
  5652. }
  5653. #u59909 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:147px;
  5657. top:123px;
  5658. width:49px;
  5659. height:17px;
  5660. display:flex;
  5661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5662. font-weight:400;
  5663. font-style:normal;
  5664. font-size:12px;
  5665. color:#AAAAAA;
  5666. }
  5667. #u59909 .text {
  5668. position:absolute;
  5669. align-self:flex-start;
  5670. padding:0px 0px 0px 0px;
  5671. box-sizing:border-box;
  5672. width:100%;
  5673. }
  5674. #u59909_text {
  5675. border-width:0px;
  5676. white-space:nowrap;
  5677. text-transform:none;
  5678. }
  5679. #u59910_div {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:65px;
  5685. height:22px;
  5686. background:inherit;
  5687. background-color:rgba(255, 255, 255, 0);
  5688. border:none;
  5689. border-radius:0px;
  5690. -moz-box-shadow:none;
  5691. -webkit-box-shadow:none;
  5692. box-shadow:none;
  5693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. font-size:16px;
  5697. }
  5698. #u59910 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:147px;
  5702. top:521px;
  5703. width:65px;
  5704. height:22px;
  5705. display:flex;
  5706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5707. font-weight:400;
  5708. font-style:normal;
  5709. font-size:16px;
  5710. }
  5711. #u59910 .text {
  5712. position:absolute;
  5713. align-self:flex-start;
  5714. padding:0px 0px 0px 0px;
  5715. box-sizing:border-box;
  5716. width:100%;
  5717. }
  5718. #u59910_text {
  5719. border-width:0px;
  5720. white-space:nowrap;
  5721. text-transform:none;
  5722. }
  5723. #u59911 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:0px;
  5729. height:0px;
  5730. }
  5731. #u59912_div {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:140px;
  5737. height:30px;
  5738. background:inherit;
  5739. background-color:rgba(255, 255, 255, 1);
  5740. box-sizing:border-box;
  5741. border-width:1px;
  5742. border-style:solid;
  5743. border-color:rgba(215, 215, 215, 1);
  5744. border-radius:4px;
  5745. -moz-box-shadow:none;
  5746. -webkit-box-shadow:none;
  5747. box-shadow:none;
  5748. font-size:14px;
  5749. }
  5750. #u59912 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:657px;
  5754. top:101px;
  5755. width:140px;
  5756. height:30px;
  5757. display:flex;
  5758. font-size:14px;
  5759. }
  5760. #u59912 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 2px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u59912_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u59913_input {
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:134px;
  5778. height:23px;
  5779. padding:2px 2px 2px 2px;
  5780. font-family:'ArialMT', 'Arial', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. letter-spacing:normal;
  5785. color:#AAAAAA;
  5786. vertical-align:none;
  5787. text-align:left;
  5788. text-transform:none;
  5789. background-color:transparent;
  5790. border-color:transparent;
  5791. }
  5792. #u59913_input.disabled {
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:134px;
  5797. height:23px;
  5798. padding:2px 2px 2px 2px;
  5799. font-family:'ArialMT', 'Arial', sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:14px;
  5803. letter-spacing:normal;
  5804. color:#AAAAAA;
  5805. vertical-align:none;
  5806. text-align:left;
  5807. text-transform:none;
  5808. background-color:transparent;
  5809. border-color:transparent;
  5810. }
  5811. #u59913_div {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:134px;
  5817. height:23px;
  5818. background:inherit;
  5819. background-color:rgba(255, 255, 255, 1);
  5820. border:none;
  5821. border-radius:0px;
  5822. -moz-box-shadow:none;
  5823. -webkit-box-shadow:none;
  5824. box-shadow:none;
  5825. font-size:14px;
  5826. color:#AAAAAA;
  5827. }
  5828. #u59913 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:661px;
  5832. top:103px;
  5833. width:134px;
  5834. height:23px;
  5835. display:flex;
  5836. font-size:14px;
  5837. color:#AAAAAA;
  5838. }
  5839. #u59913 .text {
  5840. position:absolute;
  5841. align-self:flex-start;
  5842. padding:2px 2px 2px 2px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u59913_div.disabled {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:134px;
  5852. height:23px;
  5853. background:inherit;
  5854. background-color:rgba(240, 240, 240, 1);
  5855. border:none;
  5856. border-radius:0px;
  5857. -moz-box-shadow:none;
  5858. -webkit-box-shadow:none;
  5859. box-shadow:none;
  5860. font-size:14px;
  5861. color:#AAAAAA;
  5862. }
  5863. #u59913.disabled {
  5864. }
  5865. .u59913_input_option {
  5866. font-size:14px;
  5867. }
  5868. #u59914 {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:0px;
  5874. height:0px;
  5875. }
  5876. #u59915_div {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:140px;
  5882. height:30px;
  5883. background:inherit;
  5884. background-color:rgba(255, 255, 255, 1);
  5885. box-sizing:border-box;
  5886. border-width:1px;
  5887. border-style:solid;
  5888. border-color:rgba(215, 215, 215, 1);
  5889. border-radius:4px;
  5890. -moz-box-shadow:none;
  5891. -webkit-box-shadow:none;
  5892. box-shadow:none;
  5893. font-size:14px;
  5894. }
  5895. #u59915 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:807px;
  5899. top:101px;
  5900. width:140px;
  5901. height:30px;
  5902. display:flex;
  5903. font-size:14px;
  5904. }
  5905. #u59915 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 2px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u59915_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u59916_input {
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:134px;
  5923. height:23px;
  5924. padding:2px 2px 2px 2px;
  5925. font-family:'ArialMT', 'Arial', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:14px;
  5929. letter-spacing:normal;
  5930. color:#AAAAAA;
  5931. vertical-align:none;
  5932. text-align:left;
  5933. text-transform:none;
  5934. background-color:transparent;
  5935. border-color:transparent;
  5936. }
  5937. #u59916_input.disabled {
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:134px;
  5942. height:23px;
  5943. padding:2px 2px 2px 2px;
  5944. font-family:'ArialMT', 'Arial', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:14px;
  5948. letter-spacing:normal;
  5949. color:#AAAAAA;
  5950. vertical-align:none;
  5951. text-align:left;
  5952. text-transform:none;
  5953. background-color:transparent;
  5954. border-color:transparent;
  5955. }
  5956. #u59916_div {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:134px;
  5962. height:23px;
  5963. background:inherit;
  5964. background-color:rgba(255, 255, 255, 1);
  5965. border:none;
  5966. border-radius:0px;
  5967. -moz-box-shadow:none;
  5968. -webkit-box-shadow:none;
  5969. box-shadow:none;
  5970. font-size:14px;
  5971. color:#AAAAAA;
  5972. }
  5973. #u59916 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:811px;
  5977. top:103px;
  5978. width:134px;
  5979. height:23px;
  5980. display:flex;
  5981. font-size:14px;
  5982. color:#AAAAAA;
  5983. }
  5984. #u59916 .text {
  5985. position:absolute;
  5986. align-self:flex-start;
  5987. padding:2px 2px 2px 2px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u59916_div.disabled {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:134px;
  5997. height:23px;
  5998. background:inherit;
  5999. background-color:rgba(240, 240, 240, 1);
  6000. border:none;
  6001. border-radius:0px;
  6002. -moz-box-shadow:none;
  6003. -webkit-box-shadow:none;
  6004. box-shadow:none;
  6005. font-size:14px;
  6006. color:#AAAAAA;
  6007. }
  6008. #u59916.disabled {
  6009. }
  6010. .u59916_input_option {
  6011. font-size:14px;
  6012. }
  6013. #u59917 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:0px;
  6019. height:0px;
  6020. }
  6021. #u59918_div {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:1000px;
  6027. height:1241px;
  6028. background:inherit;
  6029. background-color:rgba(242, 242, 242, 1);
  6030. box-sizing:border-box;
  6031. border-width:1px;
  6032. border-style:solid;
  6033. border-color:rgba(215, 215, 215, 1);
  6034. border-radius:0px;
  6035. -moz-box-shadow:none;
  6036. -webkit-box-shadow:none;
  6037. box-shadow:none;
  6038. }
  6039. #u59918 {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:1650px;
  6043. top:46px;
  6044. width:1000px;
  6045. height:1241px;
  6046. display:flex;
  6047. }
  6048. #u59918 .text {
  6049. position:absolute;
  6050. align-self:center;
  6051. padding:2px 2px 2px 2px;
  6052. box-sizing:border-box;
  6053. width:100%;
  6054. }
  6055. #u59918_text {
  6056. border-width:0px;
  6057. word-wrap:break-word;
  6058. text-transform:none;
  6059. visibility:hidden;
  6060. }
  6061. #u59919_div {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:0px;
  6065. top:0px;
  6066. width:1000px;
  6067. height:991px;
  6068. background:inherit;
  6069. background-color:rgba(255, 255, 255, 1);
  6070. box-sizing:border-box;
  6071. border-width:1px;
  6072. border-style:solid;
  6073. border-color:rgba(242, 242, 242, 1);
  6074. border-radius:0px;
  6075. -moz-box-shadow:none;
  6076. -webkit-box-shadow:none;
  6077. box-shadow:none;
  6078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:14px;
  6082. color:#AAAAAA;
  6083. text-align:center;
  6084. line-height:30px;
  6085. }
  6086. #u59919 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:1650px;
  6090. top:256px;
  6091. width:1000px;
  6092. height:991px;
  6093. display:flex;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:14px;
  6098. color:#AAAAAA;
  6099. text-align:center;
  6100. line-height:30px;
  6101. }
  6102. #u59919 .text {
  6103. position:absolute;
  6104. align-self:center;
  6105. padding:5px 10px 5px 10px;
  6106. box-sizing:border-box;
  6107. width:100%;
  6108. }
  6109. #u59919_text {
  6110. border-width:0px;
  6111. word-wrap:break-word;
  6112. text-transform:none;
  6113. visibility:hidden;
  6114. }
  6115. #u59920_div {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:1000px;
  6121. height:200px;
  6122. background:inherit;
  6123. background-color:rgba(255, 255, 255, 1);
  6124. box-sizing:border-box;
  6125. border-width:1px;
  6126. border-style:solid;
  6127. border-color:rgba(215, 215, 215, 1);
  6128. border-radius:0px;
  6129. -moz-box-shadow:none;
  6130. -webkit-box-shadow:none;
  6131. box-shadow:none;
  6132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. font-size:14px;
  6136. color:#AAAAAA;
  6137. text-align:center;
  6138. line-height:30px;
  6139. }
  6140. #u59920 {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:1650px;
  6144. top:46px;
  6145. width:1000px;
  6146. height:200px;
  6147. display:flex;
  6148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6149. font-weight:400;
  6150. font-style:normal;
  6151. font-size:14px;
  6152. color:#AAAAAA;
  6153. text-align:center;
  6154. line-height:30px;
  6155. }
  6156. #u59920 .text {
  6157. position:absolute;
  6158. align-self:center;
  6159. padding:5px 10px 5px 10px;
  6160. box-sizing:border-box;
  6161. width:100%;
  6162. }
  6163. #u59920_text {
  6164. border-width:0px;
  6165. word-wrap:break-word;
  6166. text-transform:none;
  6167. visibility:hidden;
  6168. }
  6169. #u59921_div {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:0px;
  6173. top:0px;
  6174. width:83px;
  6175. height:35px;
  6176. background:inherit;
  6177. background-color:rgba(255, 255, 255, 0);
  6178. border:none;
  6179. border-top:0px;
  6180. border-right:0px;
  6181. border-bottom:0px;
  6182. border-radius:0px;
  6183. border-top-left-radius:0px;
  6184. border-bottom-left-radius:0px;
  6185. -moz-box-shadow:none;
  6186. -webkit-box-shadow:none;
  6187. box-shadow:none;
  6188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6189. font-weight:500;
  6190. font-style:normal;
  6191. font-size:18px;
  6192. }
  6193. #u59921 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:1670px;
  6197. top:64px;
  6198. width:83px;
  6199. height:35px;
  6200. display:flex;
  6201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6202. font-weight:500;
  6203. font-style:normal;
  6204. font-size:18px;
  6205. }
  6206. #u59921 .text {
  6207. position:absolute;
  6208. align-self:center;
  6209. padding:5px 10px 5px 0px;
  6210. box-sizing:border-box;
  6211. width:100%;
  6212. }
  6213. #u59921_text {
  6214. border-width:0px;
  6215. white-space:nowrap;
  6216. text-transform:none;
  6217. }
  6218. #u59922 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:0px;
  6224. height:0px;
  6225. }
  6226. #u59923_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:40px;
  6232. height:40px;
  6233. background:inherit;
  6234. background-color:rgba(255, 255, 255, 0);
  6235. border:none;
  6236. border-top:0px;
  6237. border-right:0px;
  6238. border-bottom:0px;
  6239. border-radius:0px;
  6240. border-top-left-radius:0px;
  6241. border-bottom-left-radius:0px;
  6242. -moz-box-shadow:none;
  6243. -webkit-box-shadow:none;
  6244. box-shadow:none;
  6245. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6246. font-weight:500;
  6247. font-style:normal;
  6248. font-size:14px;
  6249. text-align:center;
  6250. }
  6251. #u59923 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:2610px;
  6255. top:46px;
  6256. width:40px;
  6257. height:40px;
  6258. display:flex;
  6259. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6260. font-weight:500;
  6261. font-style:normal;
  6262. font-size:14px;
  6263. text-align:center;
  6264. }
  6265. #u59923 .text {
  6266. position:absolute;
  6267. align-self:center;
  6268. padding:5px 10px 5px 0px;
  6269. box-sizing:border-box;
  6270. width:100%;
  6271. }
  6272. #u59923_text {
  6273. border-width:0px;
  6274. word-wrap:break-word;
  6275. text-transform:none;
  6276. }
  6277. #u59924_img {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:0px;
  6281. top:0px;
  6282. width:13px;
  6283. height:13px;
  6284. }
  6285. #u59924 {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:2598px;
  6289. top:62px;
  6290. width:13px;
  6291. height:13px;
  6292. display:flex;
  6293. font-size:14px;
  6294. }
  6295. #u59924 .text {
  6296. position:absolute;
  6297. align-self:center;
  6298. padding:2px 2px 2px 2px;
  6299. box-sizing:border-box;
  6300. width:100%;
  6301. }
  6302. #u59924_text {
  6303. border-width:0px;
  6304. word-wrap:break-word;
  6305. text-transform:none;
  6306. visibility:hidden;
  6307. }
  6308. #u59925_div {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:0px;
  6312. top:0px;
  6313. width:147px;
  6314. height:43px;
  6315. background:inherit;
  6316. background-color:rgba(255, 255, 255, 0);
  6317. border:none;
  6318. border-top:0px;
  6319. border-right:0px;
  6320. border-bottom:0px;
  6321. border-radius:0px;
  6322. border-top-left-radius:0px;
  6323. border-bottom-left-radius:0px;
  6324. -moz-box-shadow:none;
  6325. -webkit-box-shadow:none;
  6326. box-shadow:none;
  6327. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6328. font-weight:500;
  6329. font-style:normal;
  6330. font-size:24px;
  6331. }
  6332. #u59925 {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:1680px;
  6336. top:115px;
  6337. width:147px;
  6338. height:43px;
  6339. display:flex;
  6340. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6341. font-weight:500;
  6342. font-style:normal;
  6343. font-size:24px;
  6344. }
  6345. #u59925 .text {
  6346. position:absolute;
  6347. align-self:center;
  6348. padding:5px 10px 5px 0px;
  6349. box-sizing:border-box;
  6350. width:100%;
  6351. }
  6352. #u59925_text {
  6353. border-width:0px;
  6354. white-space:nowrap;
  6355. text-transform:none;
  6356. }
  6357. #u59926_img {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:0px;
  6361. top:0px;
  6362. width:108px;
  6363. height:108px;
  6364. }
  6365. #u59926 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:2500px;
  6369. top:116px;
  6370. width:108px;
  6371. height:108px;
  6372. display:flex;
  6373. -webkit-transform:rotate(315deg);
  6374. -moz-transform:rotate(315deg);
  6375. -ms-transform:rotate(315deg);
  6376. transform:rotate(315deg);
  6377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. font-size:28px;
  6381. color:#F59A23;
  6382. }
  6383. #u59926 .text {
  6384. position:absolute;
  6385. align-self:center;
  6386. padding:2px 2px 2px 2px;
  6387. box-sizing:border-box;
  6388. width:100%;
  6389. }
  6390. #u59926_text {
  6391. border-width:0px;
  6392. word-wrap:break-word;
  6393. text-transform:none;
  6394. }
  6395. #u59927_div {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:325px;
  6401. height:60px;
  6402. background:inherit;
  6403. background-color:rgba(255, 255, 255, 0);
  6404. border:none;
  6405. border-left:0px;
  6406. border-top:0px;
  6407. border-right:0px;
  6408. border-radius:0px;
  6409. border-bottom-right-radius:0px;
  6410. border-bottom-left-radius:0px;
  6411. -moz-box-shadow:none;
  6412. -webkit-box-shadow:none;
  6413. box-shadow:none;
  6414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. font-size:14px;
  6418. line-height:30px;
  6419. }
  6420. #u59927 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:1680px;
  6424. top:170px;
  6425. width:325px;
  6426. height:60px;
  6427. display:flex;
  6428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:14px;
  6432. line-height:30px;
  6433. }
  6434. #u59927 .text {
  6435. position:absolute;
  6436. align-self:flex-start;
  6437. padding:0px 0px 0px 0px;
  6438. box-sizing:border-box;
  6439. width:100%;
  6440. }
  6441. #u59927_text {
  6442. border-width:0px;
  6443. word-wrap:break-word;
  6444. text-transform:none;
  6445. }
  6446. #u59928 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:0px;
  6452. height:0px;
  6453. }
  6454. #u59929_div {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:40px;
  6460. height:40px;
  6461. background:inherit;
  6462. background-color:rgba(255, 255, 255, 0);
  6463. border:none;
  6464. border-top:0px;
  6465. border-right:0px;
  6466. border-bottom:0px;
  6467. border-radius:0px;
  6468. border-top-left-radius:0px;
  6469. border-bottom-left-radius:0px;
  6470. -moz-box-shadow:none;
  6471. -webkit-box-shadow:none;
  6472. box-shadow:none;
  6473. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6474. font-weight:500;
  6475. font-style:normal;
  6476. font-size:18px;
  6477. text-align:center;
  6478. }
  6479. #u59929 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:2610px;
  6483. top:49px;
  6484. width:40px;
  6485. height:40px;
  6486. display:flex;
  6487. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6488. font-weight:500;
  6489. font-style:normal;
  6490. font-size:18px;
  6491. text-align:center;
  6492. }
  6493. #u59929 .text {
  6494. position:absolute;
  6495. align-self:center;
  6496. padding:5px 10px 5px 0px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u59929_text {
  6501. border-width:0px;
  6502. word-wrap:break-word;
  6503. text-transform:none;
  6504. }
  6505. #u59930_img {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:13px;
  6511. height:17px;
  6512. }
  6513. #u59930 {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:2597px;
  6517. top:61px;
  6518. width:13px;
  6519. height:17px;
  6520. display:flex;
  6521. }
  6522. #u59930 .text {
  6523. position:absolute;
  6524. align-self:center;
  6525. padding:2px 2px 2px 2px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u59930_text {
  6530. border-width:0px;
  6531. word-wrap:break-word;
  6532. text-transform:none;
  6533. visibility:hidden;
  6534. }
  6535. #u59931 {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:0px;
  6541. height:0px;
  6542. }
  6543. #u59932_div {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:1000px;
  6549. height:60px;
  6550. background:inherit;
  6551. background-color:rgba(255, 255, 255, 1);
  6552. box-sizing:border-box;
  6553. border-width:1px;
  6554. border-style:solid;
  6555. border-color:rgba(215, 215, 215, 1);
  6556. border-radius:0px;
  6557. -moz-box-shadow:none;
  6558. -webkit-box-shadow:none;
  6559. box-shadow:none;
  6560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:14px;
  6564. color:#AAAAAA;
  6565. text-align:center;
  6566. line-height:30px;
  6567. }
  6568. #u59932 {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:1650px;
  6572. top:1227px;
  6573. width:1000px;
  6574. height:60px;
  6575. display:flex;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:14px;
  6580. color:#AAAAAA;
  6581. text-align:center;
  6582. line-height:30px;
  6583. }
  6584. #u59932 .text {
  6585. position:absolute;
  6586. align-self:center;
  6587. padding:5px 10px 5px 10px;
  6588. box-sizing:border-box;
  6589. width:100%;
  6590. }
  6591. #u59932_text {
  6592. border-width:0px;
  6593. word-wrap:break-word;
  6594. text-transform:none;
  6595. visibility:hidden;
  6596. }
  6597. #u59933_div {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:80px;
  6603. height:30px;
  6604. background:inherit;
  6605. background-color:rgba(255, 255, 255, 1);
  6606. box-sizing:border-box;
  6607. border-width:1px;
  6608. border-style:solid;
  6609. border-color:rgba(170, 170, 170, 1);
  6610. border-radius:4px;
  6611. -moz-box-shadow:none;
  6612. -webkit-box-shadow:none;
  6613. box-shadow:none;
  6614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:14px;
  6618. }
  6619. #u59933 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:2540px;
  6623. top:1242px;
  6624. width:80px;
  6625. height:30px;
  6626. display:flex;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:14px;
  6631. }
  6632. #u59933 .text {
  6633. position:absolute;
  6634. align-self:center;
  6635. padding:2px 2px 2px 2px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u59933_text {
  6640. border-width:0px;
  6641. word-wrap:break-word;
  6642. text-transform:none;
  6643. }
  6644. #u59934_div {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:81px;
  6650. height:30px;
  6651. background:inherit;
  6652. background-color:rgba(255, 255, 255, 0);
  6653. border:none;
  6654. border-top:0px;
  6655. border-right:0px;
  6656. border-bottom:0px;
  6657. border-radius:0px;
  6658. border-top-left-radius:0px;
  6659. border-bottom-left-radius:0px;
  6660. -moz-box-shadow:none;
  6661. -webkit-box-shadow:none;
  6662. box-shadow:none;
  6663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6664. font-weight:400;
  6665. font-style:normal;
  6666. font-size:14px;
  6667. color:#7F7F7F;
  6668. }
  6669. #u59934 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:2010px;
  6673. top:289px;
  6674. width:81px;
  6675. height:30px;
  6676. display:flex;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:14px;
  6681. color:#7F7F7F;
  6682. }
  6683. #u59934 .text {
  6684. position:absolute;
  6685. align-self:center;
  6686. padding:5px 10px 5px 0px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u59934_text {
  6691. border-width:0px;
  6692. white-space:nowrap;
  6693. text-transform:none;
  6694. }
  6695. #u59935_div {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:90px;
  6701. height:30px;
  6702. background:inherit;
  6703. background-color:rgba(255, 255, 255, 0);
  6704. border:none;
  6705. border-top:0px;
  6706. border-right:0px;
  6707. border-bottom:0px;
  6708. border-radius:0px;
  6709. border-top-left-radius:0px;
  6710. border-bottom-left-radius:0px;
  6711. -moz-box-shadow:none;
  6712. -webkit-box-shadow:none;
  6713. box-shadow:none;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:14px;
  6718. }
  6719. #u59935 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:2091px;
  6723. top:289px;
  6724. width:90px;
  6725. height:30px;
  6726. display:flex;
  6727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6728. font-weight:400;
  6729. font-style:normal;
  6730. font-size:14px;
  6731. }
  6732. #u59935 .text {
  6733. position:absolute;
  6734. align-self:center;
  6735. padding:5px 10px 5px 0px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u59935_text {
  6740. border-width:0px;
  6741. white-space:nowrap;
  6742. text-transform:none;
  6743. }
  6744. #u59936_div {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:81px;
  6750. height:30px;
  6751. background:inherit;
  6752. background-color:rgba(255, 255, 255, 0);
  6753. border:none;
  6754. border-top:0px;
  6755. border-right:0px;
  6756. border-bottom:0px;
  6757. border-radius:0px;
  6758. border-top-left-radius:0px;
  6759. border-bottom-left-radius:0px;
  6760. -moz-box-shadow:none;
  6761. -webkit-box-shadow:none;
  6762. box-shadow:none;
  6763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:14px;
  6767. color:#7F7F7F;
  6768. }
  6769. #u59936 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:2307px;
  6773. top:289px;
  6774. width:81px;
  6775. height:30px;
  6776. display:flex;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:14px;
  6781. color:#7F7F7F;
  6782. }
  6783. #u59936 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:5px 10px 5px 0px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u59936_text {
  6791. border-width:0px;
  6792. white-space:nowrap;
  6793. text-transform:none;
  6794. }
  6795. #u59937_div {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:67px;
  6801. height:30px;
  6802. background:inherit;
  6803. background-color:rgba(255, 255, 255, 0);
  6804. border:none;
  6805. border-top:0px;
  6806. border-right:0px;
  6807. border-bottom:0px;
  6808. border-radius:0px;
  6809. border-top-left-radius:0px;
  6810. border-bottom-left-radius:0px;
  6811. -moz-box-shadow:none;
  6812. -webkit-box-shadow:none;
  6813. box-shadow:none;
  6814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. font-size:14px;
  6818. }
  6819. #u59937 {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:2388px;
  6823. top:289px;
  6824. width:67px;
  6825. height:30px;
  6826. display:flex;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:14px;
  6831. }
  6832. #u59937 .text {
  6833. position:absolute;
  6834. align-self:center;
  6835. padding:5px 10px 5px 0px;
  6836. box-sizing:border-box;
  6837. width:100%;
  6838. }
  6839. #u59937_text {
  6840. border-width:0px;
  6841. white-space:nowrap;
  6842. text-transform:none;
  6843. }
  6844. #u59938_div {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:81px;
  6850. height:30px;
  6851. background:inherit;
  6852. background-color:rgba(255, 255, 255, 0);
  6853. border:none;
  6854. border-top:0px;
  6855. border-right:0px;
  6856. border-bottom:0px;
  6857. border-radius:0px;
  6858. border-top-left-radius:0px;
  6859. border-bottom-left-radius:0px;
  6860. -moz-box-shadow:none;
  6861. -webkit-box-shadow:none;
  6862. box-shadow:none;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:14px;
  6867. color:#7F7F7F;
  6868. }
  6869. #u59938 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:1690px;
  6873. top:329px;
  6874. width:81px;
  6875. height:30px;
  6876. display:flex;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:14px;
  6881. color:#7F7F7F;
  6882. }
  6883. #u59938 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:5px 10px 5px 0px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u59938_text {
  6891. border-width:0px;
  6892. white-space:nowrap;
  6893. text-transform:none;
  6894. }
  6895. #u59939_div {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:89px;
  6901. height:30px;
  6902. background:inherit;
  6903. background-color:rgba(255, 255, 255, 0);
  6904. border:none;
  6905. border-top:0px;
  6906. border-right:0px;
  6907. border-bottom:0px;
  6908. border-radius:0px;
  6909. border-top-left-radius:0px;
  6910. border-bottom-left-radius:0px;
  6911. -moz-box-shadow:none;
  6912. -webkit-box-shadow:none;
  6913. box-shadow:none;
  6914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:14px;
  6918. }
  6919. #u59939 {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:1771px;
  6923. top:329px;
  6924. width:89px;
  6925. height:30px;
  6926. display:flex;
  6927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. font-size:14px;
  6931. }
  6932. #u59939 .text {
  6933. position:absolute;
  6934. align-self:center;
  6935. padding:5px 10px 5px 0px;
  6936. box-sizing:border-box;
  6937. width:100%;
  6938. }
  6939. #u59939_text {
  6940. border-width:0px;
  6941. white-space:nowrap;
  6942. text-transform:none;
  6943. }
  6944. #u59940_div {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:81px;
  6950. height:30px;
  6951. background:inherit;
  6952. background-color:rgba(255, 255, 255, 0);
  6953. border:none;
  6954. border-top:0px;
  6955. border-right:0px;
  6956. border-bottom:0px;
  6957. border-radius:0px;
  6958. border-top-left-radius:0px;
  6959. border-bottom-left-radius:0px;
  6960. -moz-box-shadow:none;
  6961. -webkit-box-shadow:none;
  6962. box-shadow:none;
  6963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:14px;
  6967. color:#7F7F7F;
  6968. }
  6969. #u59940 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:2307px;
  6973. top:329px;
  6974. width:81px;
  6975. height:30px;
  6976. display:flex;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:14px;
  6981. color:#7F7F7F;
  6982. }
  6983. #u59940 .text {
  6984. position:absolute;
  6985. align-self:center;
  6986. padding:5px 10px 5px 0px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u59940_text {
  6991. border-width:0px;
  6992. white-space:nowrap;
  6993. text-transform:none;
  6994. }
  6995. #u59941_div {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:120px;
  7001. height:30px;
  7002. background:inherit;
  7003. background-color:rgba(255, 255, 255, 0);
  7004. border:none;
  7005. border-top:0px;
  7006. border-right:0px;
  7007. border-bottom:0px;
  7008. border-radius:0px;
  7009. border-top-left-radius:0px;
  7010. border-bottom-left-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:14px;
  7018. }
  7019. #u59941 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:2388px;
  7023. top:329px;
  7024. width:120px;
  7025. height:30px;
  7026. display:flex;
  7027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:14px;
  7031. }
  7032. #u59941 .text {
  7033. position:absolute;
  7034. align-self:center;
  7035. padding:5px 10px 5px 0px;
  7036. box-sizing:border-box;
  7037. width:100%;
  7038. }
  7039. #u59941_text {
  7040. border-width:0px;
  7041. white-space:nowrap;
  7042. text-transform:none;
  7043. }
  7044. #u59942_div {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:81px;
  7050. height:30px;
  7051. background:inherit;
  7052. background-color:rgba(255, 255, 255, 0);
  7053. border:none;
  7054. border-top:0px;
  7055. border-right:0px;
  7056. border-bottom:0px;
  7057. border-radius:0px;
  7058. border-top-left-radius:0px;
  7059. border-bottom-left-radius:0px;
  7060. -moz-box-shadow:none;
  7061. -webkit-box-shadow:none;
  7062. box-shadow:none;
  7063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7064. font-weight:400;
  7065. font-style:normal;
  7066. font-size:14px;
  7067. color:#7F7F7F;
  7068. }
  7069. #u59942 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:2010px;
  7073. top:329px;
  7074. width:81px;
  7075. height:30px;
  7076. display:flex;
  7077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:14px;
  7081. color:#7F7F7F;
  7082. }
  7083. #u59942 .text {
  7084. position:absolute;
  7085. align-self:center;
  7086. padding:5px 10px 5px 0px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u59942_text {
  7091. border-width:0px;
  7092. white-space:nowrap;
  7093. text-transform:none;
  7094. }
  7095. #u59943_div {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:0px;
  7099. top:0px;
  7100. width:50px;
  7101. height:30px;
  7102. background:inherit;
  7103. background-color:rgba(255, 255, 255, 0);
  7104. border:none;
  7105. border-top:0px;
  7106. border-right:0px;
  7107. border-bottom:0px;
  7108. border-radius:0px;
  7109. border-top-left-radius:0px;
  7110. border-bottom-left-radius:0px;
  7111. -moz-box-shadow:none;
  7112. -webkit-box-shadow:none;
  7113. box-shadow:none;
  7114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7115. font-weight:400;
  7116. font-style:normal;
  7117. font-size:14px;
  7118. }
  7119. #u59943 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:2091px;
  7123. top:329px;
  7124. width:50px;
  7125. height:30px;
  7126. display:flex;
  7127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7128. font-weight:400;
  7129. font-style:normal;
  7130. font-size:14px;
  7131. }
  7132. #u59943 .text {
  7133. position:absolute;
  7134. align-self:center;
  7135. padding:5px 10px 5px 0px;
  7136. box-sizing:border-box;
  7137. width:100%;
  7138. }
  7139. #u59943_text {
  7140. border-width:0px;
  7141. white-space:nowrap;
  7142. text-transform:none;
  7143. }
  7144. #u59944_div {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:0px;
  7148. top:0px;
  7149. width:81px;
  7150. height:30px;
  7151. background:inherit;
  7152. background-color:rgba(255, 255, 255, 0);
  7153. border:none;
  7154. border-top:0px;
  7155. border-right:0px;
  7156. border-bottom:0px;
  7157. border-radius:0px;
  7158. border-top-left-radius:0px;
  7159. border-bottom-left-radius:0px;
  7160. -moz-box-shadow:none;
  7161. -webkit-box-shadow:none;
  7162. box-shadow:none;
  7163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7164. font-weight:400;
  7165. font-style:normal;
  7166. font-size:14px;
  7167. color:#7F7F7F;
  7168. }
  7169. #u59944 {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:1690px;
  7173. top:369px;
  7174. width:81px;
  7175. height:30px;
  7176. display:flex;
  7177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7178. font-weight:400;
  7179. font-style:normal;
  7180. font-size:14px;
  7181. color:#7F7F7F;
  7182. }
  7183. #u59944 .text {
  7184. position:absolute;
  7185. align-self:center;
  7186. padding:5px 10px 5px 0px;
  7187. box-sizing:border-box;
  7188. width:100%;
  7189. }
  7190. #u59944_text {
  7191. border-width:0px;
  7192. white-space:nowrap;
  7193. text-transform:none;
  7194. }
  7195. #u59945_div {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:53px;
  7201. height:30px;
  7202. background:inherit;
  7203. background-color:rgba(255, 255, 255, 0);
  7204. border:none;
  7205. border-top:0px;
  7206. border-right:0px;
  7207. border-bottom:0px;
  7208. border-radius:0px;
  7209. border-top-left-radius:0px;
  7210. border-bottom-left-radius:0px;
  7211. -moz-box-shadow:none;
  7212. -webkit-box-shadow:none;
  7213. box-shadow:none;
  7214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:14px;
  7218. }
  7219. #u59945 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:1771px;
  7223. top:369px;
  7224. width:53px;
  7225. height:30px;
  7226. display:flex;
  7227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7228. font-weight:400;
  7229. font-style:normal;
  7230. font-size:14px;
  7231. }
  7232. #u59945 .text {
  7233. position:absolute;
  7234. align-self:center;
  7235. padding:5px 10px 5px 0px;
  7236. box-sizing:border-box;
  7237. width:100%;
  7238. }
  7239. #u59945_text {
  7240. border-width:0px;
  7241. white-space:nowrap;
  7242. text-transform:none;
  7243. }
  7244. #u59946_div {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:0px;
  7248. top:0px;
  7249. width:67px;
  7250. height:30px;
  7251. background:inherit;
  7252. background-color:rgba(255, 255, 255, 0);
  7253. border:none;
  7254. border-top:0px;
  7255. border-right:0px;
  7256. border-bottom:0px;
  7257. border-radius:0px;
  7258. border-top-left-radius:0px;
  7259. border-bottom-left-radius:0px;
  7260. -moz-box-shadow:none;
  7261. -webkit-box-shadow:none;
  7262. box-shadow:none;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:14px;
  7267. color:#7F7F7F;
  7268. }
  7269. #u59946 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:2010px;
  7273. top:369px;
  7274. width:67px;
  7275. height:30px;
  7276. display:flex;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:14px;
  7281. color:#7F7F7F;
  7282. }
  7283. #u59946 .text {
  7284. position:absolute;
  7285. align-self:center;
  7286. padding:5px 10px 5px 0px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u59946_text {
  7291. border-width:0px;
  7292. white-space:nowrap;
  7293. text-transform:none;
  7294. }
  7295. #u59947_div {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:33px;
  7301. height:30px;
  7302. background:inherit;
  7303. background-color:rgba(255, 255, 255, 0);
  7304. border:none;
  7305. border-top:0px;
  7306. border-right:0px;
  7307. border-bottom:0px;
  7308. border-radius:0px;
  7309. border-top-left-radius:0px;
  7310. border-bottom-left-radius:0px;
  7311. -moz-box-shadow:none;
  7312. -webkit-box-shadow:none;
  7313. box-shadow:none;
  7314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7315. font-weight:400;
  7316. font-style:normal;
  7317. font-size:14px;
  7318. }
  7319. #u59947 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:2091px;
  7323. top:369px;
  7324. width:33px;
  7325. height:30px;
  7326. display:flex;
  7327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:14px;
  7331. }
  7332. #u59947 .text {
  7333. position:absolute;
  7334. align-self:center;
  7335. padding:5px 10px 5px 0px;
  7336. box-sizing:border-box;
  7337. width:100%;
  7338. }
  7339. #u59947_text {
  7340. border-width:0px;
  7341. white-space:nowrap;
  7342. text-transform:none;
  7343. }
  7344. #u59948_div {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:0px;
  7348. top:0px;
  7349. width:81px;
  7350. height:30px;
  7351. background:inherit;
  7352. background-color:rgba(255, 255, 255, 0);
  7353. border:none;
  7354. border-top:0px;
  7355. border-right:0px;
  7356. border-bottom:0px;
  7357. border-radius:0px;
  7358. border-top-left-radius:0px;
  7359. border-bottom-left-radius:0px;
  7360. -moz-box-shadow:none;
  7361. -webkit-box-shadow:none;
  7362. box-shadow:none;
  7363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:14px;
  7367. color:#7F7F7F;
  7368. }
  7369. #u59948 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:1690px;
  7373. top:289px;
  7374. width:81px;
  7375. height:30px;
  7376. display:flex;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:14px;
  7381. color:#7F7F7F;
  7382. }
  7383. #u59948 .text {
  7384. position:absolute;
  7385. align-self:center;
  7386. padding:5px 10px 5px 0px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u59948_text {
  7391. border-width:0px;
  7392. white-space:nowrap;
  7393. text-transform:none;
  7394. }
  7395. #u59949_div {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:0px;
  7399. top:0px;
  7400. width:95px;
  7401. height:30px;
  7402. background:inherit;
  7403. background-color:rgba(255, 255, 255, 0);
  7404. border:none;
  7405. border-top:0px;
  7406. border-right:0px;
  7407. border-bottom:0px;
  7408. border-radius:0px;
  7409. border-top-left-radius:0px;
  7410. border-bottom-left-radius:0px;
  7411. -moz-box-shadow:none;
  7412. -webkit-box-shadow:none;
  7413. box-shadow:none;
  7414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:14px;
  7418. }
  7419. #u59949 {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:1771px;
  7423. top:289px;
  7424. width:95px;
  7425. height:30px;
  7426. display:flex;
  7427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:14px;
  7431. }
  7432. #u59949 .text {
  7433. position:absolute;
  7434. align-self:center;
  7435. padding:5px 10px 5px 0px;
  7436. box-sizing:border-box;
  7437. width:100%;
  7438. }
  7439. #u59949_text {
  7440. border-width:0px;
  7441. white-space:nowrap;
  7442. text-transform:none;
  7443. }
  7444. #u59950 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:1690px;
  7448. top:466px;
  7449. width:921px;
  7450. height:120px;
  7451. }
  7452. #u59951_img {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:0px;
  7456. top:0px;
  7457. width:343px;
  7458. height:30px;
  7459. }
  7460. #u59951 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:343px;
  7466. height:30px;
  7467. display:flex;
  7468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. color:#FFFFFF;
  7472. }
  7473. #u59951 .text {
  7474. position:absolute;
  7475. align-self:center;
  7476. padding:2px 2px 2px 2px;
  7477. box-sizing:border-box;
  7478. width:100%;
  7479. }
  7480. #u59951_text {
  7481. border-width:0px;
  7482. word-wrap:break-word;
  7483. text-transform:none;
  7484. }
  7485. #u59952_img {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:297px;
  7491. height:30px;
  7492. }
  7493. #u59952 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:343px;
  7497. top:0px;
  7498. width:297px;
  7499. height:30px;
  7500. display:flex;
  7501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7502. font-weight:400;
  7503. font-style:normal;
  7504. color:#FFFFFF;
  7505. }
  7506. #u59952 .text {
  7507. position:absolute;
  7508. align-self:center;
  7509. padding:2px 2px 2px 2px;
  7510. box-sizing:border-box;
  7511. width:100%;
  7512. }
  7513. #u59952_text {
  7514. border-width:0px;
  7515. word-wrap:break-word;
  7516. text-transform:none;
  7517. }
  7518. #u59953_img {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:0px;
  7522. top:0px;
  7523. width:281px;
  7524. height:30px;
  7525. }
  7526. #u59953 {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:640px;
  7530. top:0px;
  7531. width:281px;
  7532. height:30px;
  7533. display:flex;
  7534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7535. font-weight:400;
  7536. font-style:normal;
  7537. color:#FFFFFF;
  7538. }
  7539. #u59953 .text {
  7540. position:absolute;
  7541. align-self:center;
  7542. padding:2px 2px 2px 2px;
  7543. box-sizing:border-box;
  7544. width:100%;
  7545. }
  7546. #u59953_text {
  7547. border-width:0px;
  7548. word-wrap:break-word;
  7549. text-transform:none;
  7550. }
  7551. #u59954_img {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:0px;
  7555. top:0px;
  7556. width:343px;
  7557. height:30px;
  7558. }
  7559. #u59954 {
  7560. border-width:0px;
  7561. position:absolute;
  7562. left:0px;
  7563. top:30px;
  7564. width:343px;
  7565. height:30px;
  7566. display:flex;
  7567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7568. font-weight:400;
  7569. font-style:normal;
  7570. }
  7571. #u59954 .text {
  7572. position:absolute;
  7573. align-self:center;
  7574. padding:2px 2px 2px 2px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u59954_text {
  7579. border-width:0px;
  7580. word-wrap:break-word;
  7581. text-transform:none;
  7582. }
  7583. #u59955_img {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:0px;
  7587. top:0px;
  7588. width:297px;
  7589. height:30px;
  7590. }
  7591. #u59955 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:343px;
  7595. top:30px;
  7596. width:297px;
  7597. height:30px;
  7598. display:flex;
  7599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7600. font-weight:400;
  7601. font-style:normal;
  7602. }
  7603. #u59955 .text {
  7604. position:absolute;
  7605. align-self:center;
  7606. padding:2px 2px 2px 2px;
  7607. box-sizing:border-box;
  7608. width:100%;
  7609. }
  7610. #u59955_text {
  7611. border-width:0px;
  7612. word-wrap:break-word;
  7613. text-transform:none;
  7614. }
  7615. #u59956_img {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:0px;
  7620. width:281px;
  7621. height:30px;
  7622. }
  7623. #u59956 {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:640px;
  7627. top:30px;
  7628. width:281px;
  7629. height:30px;
  7630. display:flex;
  7631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. }
  7635. #u59956 .text {
  7636. position:absolute;
  7637. align-self:center;
  7638. padding:2px 2px 2px 2px;
  7639. box-sizing:border-box;
  7640. width:100%;
  7641. }
  7642. #u59956_text {
  7643. border-width:0px;
  7644. word-wrap:break-word;
  7645. text-transform:none;
  7646. }
  7647. #u59957_img {
  7648. border-width:0px;
  7649. position:absolute;
  7650. left:0px;
  7651. top:0px;
  7652. width:343px;
  7653. height:30px;
  7654. }
  7655. #u59957 {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:0px;
  7659. top:60px;
  7660. width:343px;
  7661. height:30px;
  7662. display:flex;
  7663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7664. font-weight:400;
  7665. font-style:normal;
  7666. }
  7667. #u59957 .text {
  7668. position:absolute;
  7669. align-self:center;
  7670. padding:2px 2px 2px 2px;
  7671. box-sizing:border-box;
  7672. width:100%;
  7673. }
  7674. #u59957_text {
  7675. border-width:0px;
  7676. word-wrap:break-word;
  7677. text-transform:none;
  7678. visibility:hidden;
  7679. }
  7680. #u59958_img {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:0px;
  7684. top:0px;
  7685. width:297px;
  7686. height:30px;
  7687. }
  7688. #u59958 {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:343px;
  7692. top:60px;
  7693. width:297px;
  7694. height:30px;
  7695. display:flex;
  7696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7697. font-weight:400;
  7698. font-style:normal;
  7699. }
  7700. #u59958 .text {
  7701. position:absolute;
  7702. align-self:center;
  7703. padding:2px 2px 2px 2px;
  7704. box-sizing:border-box;
  7705. width:100%;
  7706. }
  7707. #u59958_text {
  7708. border-width:0px;
  7709. word-wrap:break-word;
  7710. text-transform:none;
  7711. visibility:hidden;
  7712. }
  7713. #u59959_img {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:0px;
  7717. top:0px;
  7718. width:281px;
  7719. height:30px;
  7720. }
  7721. #u59959 {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:640px;
  7725. top:60px;
  7726. width:281px;
  7727. height:30px;
  7728. display:flex;
  7729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. }
  7733. #u59959 .text {
  7734. position:absolute;
  7735. align-self:center;
  7736. padding:2px 2px 2px 2px;
  7737. box-sizing:border-box;
  7738. width:100%;
  7739. }
  7740. #u59959_text {
  7741. border-width:0px;
  7742. word-wrap:break-word;
  7743. text-transform:none;
  7744. visibility:hidden;
  7745. }
  7746. #u59960_img {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:343px;
  7752. height:30px;
  7753. }
  7754. #u59960 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:90px;
  7759. width:343px;
  7760. height:30px;
  7761. display:flex;
  7762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. }
  7766. #u59960 .text {
  7767. position:absolute;
  7768. align-self:center;
  7769. padding:2px 2px 2px 2px;
  7770. box-sizing:border-box;
  7771. width:100%;
  7772. }
  7773. #u59960_text {
  7774. border-width:0px;
  7775. word-wrap:break-word;
  7776. text-transform:none;
  7777. visibility:hidden;
  7778. }
  7779. #u59961_img {
  7780. border-width:0px;
  7781. position:absolute;
  7782. left:0px;
  7783. top:0px;
  7784. width:297px;
  7785. height:30px;
  7786. }
  7787. #u59961 {
  7788. border-width:0px;
  7789. position:absolute;
  7790. left:343px;
  7791. top:90px;
  7792. width:297px;
  7793. height:30px;
  7794. display:flex;
  7795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7796. font-weight:400;
  7797. font-style:normal;
  7798. }
  7799. #u59961 .text {
  7800. position:absolute;
  7801. align-self:center;
  7802. padding:2px 2px 2px 2px;
  7803. box-sizing:border-box;
  7804. width:100%;
  7805. }
  7806. #u59961_text {
  7807. border-width:0px;
  7808. word-wrap:break-word;
  7809. text-transform:none;
  7810. visibility:hidden;
  7811. }
  7812. #u59962_img {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:281px;
  7818. height:30px;
  7819. }
  7820. #u59962 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:640px;
  7824. top:90px;
  7825. width:281px;
  7826. height:30px;
  7827. display:flex;
  7828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. }
  7832. #u59962 .text {
  7833. position:absolute;
  7834. align-self:center;
  7835. padding:2px 2px 2px 2px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u59962_text {
  7840. border-width:0px;
  7841. word-wrap:break-word;
  7842. text-transform:none;
  7843. visibility:hidden;
  7844. }
  7845. #u59963_div {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:101px;
  7851. height:35px;
  7852. background:inherit;
  7853. background-color:rgba(255, 255, 255, 0);
  7854. border:none;
  7855. border-top:0px;
  7856. border-right:0px;
  7857. border-bottom:0px;
  7858. border-radius:0px;
  7859. border-top-left-radius:0px;
  7860. border-bottom-left-radius:0px;
  7861. -moz-box-shadow:none;
  7862. -webkit-box-shadow:none;
  7863. box-shadow:none;
  7864. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7865. font-weight:500;
  7866. font-style:normal;
  7867. font-size:18px;
  7868. }
  7869. #u59963 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:1690px;
  7873. top:421px;
  7874. width:101px;
  7875. height:35px;
  7876. display:flex;
  7877. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7878. font-weight:500;
  7879. font-style:normal;
  7880. font-size:18px;
  7881. }
  7882. #u59963 .text {
  7883. position:absolute;
  7884. align-self:center;
  7885. padding:5px 10px 5px 0px;
  7886. box-sizing:border-box;
  7887. width:100%;
  7888. }
  7889. #u59963_text {
  7890. border-width:0px;
  7891. white-space:nowrap;
  7892. text-transform:none;
  7893. }