styles.css 168 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1721px;
  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. #u68240_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. #u68240 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u68240 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u68240_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u68241_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. #u68241 {
  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. #u68241 .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. #u68241_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u68242_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. #u68242 {
  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. #u68242 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u68242_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u68243 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u68244_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u68244 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u68244 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u68244_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u68245_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. #u68245 {
  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. #u68245 .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. #u68245_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u68246_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. #u68246 {
  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. #u68246 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u68246_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u68247 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u68248_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. #u68248_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. #u68248_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. #u68248 {
  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. #u68248 .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. #u68248_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. #u68248.disabled {
  356. }
  357. .u68248_input_option {
  358. font-size:14px;
  359. }
  360. #u68249_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u68249 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u68249 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u68249_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u68250_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. #u68250 {
  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. #u68250 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u68250_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u68251_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. #u68251 {
  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. #u68251 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u68251_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u68252 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u68253_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. #u68253 {
  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. #u68253 .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. #u68253_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u68254_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u68254 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u68254 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u68254_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u68255 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u68256_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. #u68256 {
  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. #u68256 .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. #u68256_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u68257_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u68257 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u68257 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u68257_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u68258 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u68259_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. #u68259 {
  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. #u68259 .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. #u68259_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u68260_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u68260 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u68260 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u68260_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u68261 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u68262_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. #u68262 {
  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. #u68262 .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. #u68262_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u68263_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u68263 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u68263 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u68263_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u68264 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u68265_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. #u68265 {
  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. #u68265 .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. #u68265_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u68266_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u68266 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u68266 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u68266_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u68267 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u68268_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. #u68268 {
  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. #u68268 .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. #u68268_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u68269_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u68269 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u68269 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u68269_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u68270 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u68271_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. #u68271 {
  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. #u68271 .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. #u68271_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u68272_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u68272 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u68272 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u68272_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u68273 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u68274_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. #u68274 {
  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. #u68274 .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. #u68274_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u68275_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u68275 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u68275 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u68275_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u68276 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u68277_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. #u68277 {
  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. #u68277 .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. #u68277_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u68278_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u68278 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u68278 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u68278_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u68279 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u68280_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. #u68280 {
  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. #u68280 .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. #u68280_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u68281_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u68281 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u68281 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u68281_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u68282_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. #u68282 {
  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. #u68282 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u68282_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u68283_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u68283 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u68283 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u68283_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u68284_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. #u68284 {
  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. #u68284 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u68284_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u68285_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u68285 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u68285 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u68285_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u68286 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u68287_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. #u68287 {
  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. #u68287 .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. #u68287_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u68288_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u68288 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u68288 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u68288_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u68289 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u68290_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. #u68290 {
  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. #u68290 .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. #u68290_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u68291_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u68291 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u68291 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u68291_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u68292_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1262px;
  1644. height:1080px;
  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. #u68292 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:332px;
  1660. top:150px;
  1661. width:1262px;
  1662. height:1080px;
  1663. display:flex;
  1664. }
  1665. #u68292 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u68292_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u68293 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:0px;
  1684. height:0px;
  1685. }
  1686. #u68294_div {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:160px;
  1692. height:30px;
  1693. background:inherit;
  1694. background-color:rgba(255, 255, 255, 1);
  1695. box-sizing:border-box;
  1696. border-width:1px;
  1697. border-style:solid;
  1698. border-color:rgba(215, 215, 215, 1);
  1699. border-radius:4px;
  1700. -moz-box-shadow:none;
  1701. -webkit-box-shadow:none;
  1702. box-shadow:none;
  1703. font-size:14px;
  1704. }
  1705. #u68294 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:356px;
  1709. top:170px;
  1710. width:160px;
  1711. height:30px;
  1712. display:flex;
  1713. font-size:14px;
  1714. }
  1715. #u68294 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:2px 2px 2px 2px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u68294_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. visibility:hidden;
  1727. }
  1728. #u68295_input {
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:153px;
  1733. height:23px;
  1734. padding:2px 2px 2px 2px;
  1735. font-family:'ArialMT', 'Arial', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:14px;
  1739. letter-spacing:normal;
  1740. color:#AAAAAA;
  1741. vertical-align:none;
  1742. text-align:left;
  1743. text-transform:none;
  1744. background-color:transparent;
  1745. border-color:transparent;
  1746. }
  1747. #u68295_input.disabled {
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:153px;
  1752. height:23px;
  1753. padding:2px 2px 2px 2px;
  1754. font-family:'ArialMT', 'Arial', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. letter-spacing:normal;
  1759. color:#AAAAAA;
  1760. vertical-align:none;
  1761. text-align:left;
  1762. text-transform:none;
  1763. background-color:transparent;
  1764. border-color:transparent;
  1765. }
  1766. #u68295_div {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:153px;
  1772. height:23px;
  1773. background:inherit;
  1774. background-color:rgba(255, 255, 255, 1);
  1775. border:none;
  1776. border-radius:0px;
  1777. -moz-box-shadow:none;
  1778. -webkit-box-shadow:none;
  1779. box-shadow:none;
  1780. font-size:14px;
  1781. color:#AAAAAA;
  1782. }
  1783. #u68295 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:361px;
  1787. top:172px;
  1788. width:153px;
  1789. height:23px;
  1790. display:flex;
  1791. font-size:14px;
  1792. color:#AAAAAA;
  1793. }
  1794. #u68295 .text {
  1795. position:absolute;
  1796. align-self:flex-start;
  1797. padding:2px 2px 2px 2px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u68295_div.disabled {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:153px;
  1807. height:23px;
  1808. background:inherit;
  1809. background-color:rgba(240, 240, 240, 1);
  1810. border:none;
  1811. border-radius:0px;
  1812. -moz-box-shadow:none;
  1813. -webkit-box-shadow:none;
  1814. box-shadow:none;
  1815. font-size:14px;
  1816. color:#AAAAAA;
  1817. }
  1818. #u68295.disabled {
  1819. }
  1820. .u68295_input_option {
  1821. font-size:14px;
  1822. }
  1823. #u68296 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:356px;
  1827. top:260px;
  1828. width:1365px;
  1829. height:208px;
  1830. }
  1831. #u68297_img {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:39px;
  1837. height:44px;
  1838. }
  1839. #u68297 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:39px;
  1845. height:44px;
  1846. display:flex;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:14px;
  1851. color:#FFFFFF;
  1852. }
  1853. #u68297 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 2px 2px 2px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u68297_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. }
  1865. #u68298_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:68px;
  1871. height:44px;
  1872. }
  1873. #u68298 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:39px;
  1877. top:0px;
  1878. width:68px;
  1879. height:44px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:14px;
  1885. color:#FFFFFF;
  1886. }
  1887. #u68298 .text {
  1888. position:absolute;
  1889. align-self:center;
  1890. padding:2px 2px 2px 2px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u68298_text {
  1895. border-width:0px;
  1896. word-wrap:break-word;
  1897. text-transform:none;
  1898. }
  1899. #u68299_img {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:68px;
  1905. height:44px;
  1906. }
  1907. #u68299 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:107px;
  1911. top:0px;
  1912. width:68px;
  1913. height:44px;
  1914. display:flex;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:14px;
  1919. color:#FFFFFF;
  1920. }
  1921. #u68299 .text {
  1922. position:absolute;
  1923. align-self:center;
  1924. padding:2px 2px 2px 2px;
  1925. box-sizing:border-box;
  1926. width:100%;
  1927. }
  1928. #u68299_text {
  1929. border-width:0px;
  1930. word-wrap:break-word;
  1931. text-transform:none;
  1932. }
  1933. #u68300_img {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:68px;
  1939. height:44px;
  1940. }
  1941. #u68300 {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:175px;
  1945. top:0px;
  1946. width:68px;
  1947. height:44px;
  1948. display:flex;
  1949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1950. font-weight:400;
  1951. font-style:normal;
  1952. font-size:14px;
  1953. color:#FFFFFF;
  1954. }
  1955. #u68300 .text {
  1956. position:absolute;
  1957. align-self:center;
  1958. padding:2px 2px 2px 2px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u68300_text {
  1963. border-width:0px;
  1964. word-wrap:break-word;
  1965. text-transform:none;
  1966. }
  1967. #u68301_img {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:68px;
  1973. height:44px;
  1974. }
  1975. #u68301 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:243px;
  1979. top:0px;
  1980. width:68px;
  1981. height:44px;
  1982. display:flex;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:14px;
  1987. color:#FFFFFF;
  1988. }
  1989. #u68301 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 2px 2px 2px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u68301_text {
  1997. border-width:0px;
  1998. word-wrap:break-word;
  1999. text-transform:none;
  2000. }
  2001. #u68302_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:68px;
  2007. height:44px;
  2008. }
  2009. #u68302 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:311px;
  2013. top:0px;
  2014. width:68px;
  2015. height:44px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:14px;
  2021. color:#FFFFFF;
  2022. }
  2023. #u68302 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 2px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u68302_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. }
  2035. #u68303_img {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:68px;
  2041. height:44px;
  2042. }
  2043. #u68303 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:379px;
  2047. top:0px;
  2048. width:68px;
  2049. height:44px;
  2050. display:flex;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:14px;
  2055. color:#FFFFFF;
  2056. }
  2057. #u68303 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u68303_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. }
  2069. #u68304_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:68px;
  2075. height:44px;
  2076. }
  2077. #u68304 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:447px;
  2081. top:0px;
  2082. width:68px;
  2083. height:44px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:14px;
  2089. color:#FFFFFF;
  2090. }
  2091. #u68304 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 2px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u68304_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. }
  2103. #u68305_img {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:0px;
  2108. width:68px;
  2109. height:44px;
  2110. }
  2111. #u68305 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:515px;
  2115. top:0px;
  2116. width:68px;
  2117. height:44px;
  2118. display:flex;
  2119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2120. font-weight:400;
  2121. font-style:normal;
  2122. font-size:14px;
  2123. color:#FFFFFF;
  2124. }
  2125. #u68305 .text {
  2126. position:absolute;
  2127. align-self:center;
  2128. padding:2px 2px 2px 2px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u68305_text {
  2133. border-width:0px;
  2134. word-wrap:break-word;
  2135. text-transform:none;
  2136. }
  2137. #u68306_img {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:68px;
  2143. height:44px;
  2144. }
  2145. #u68306 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:583px;
  2149. top:0px;
  2150. width:68px;
  2151. height:44px;
  2152. display:flex;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:14px;
  2157. color:#FFFFFF;
  2158. }
  2159. #u68306 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 2px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u68306_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. }
  2171. #u68307_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:68px;
  2177. height:44px;
  2178. }
  2179. #u68307 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:651px;
  2183. top:0px;
  2184. width:68px;
  2185. height:44px;
  2186. display:flex;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:14px;
  2191. color:#FFFFFF;
  2192. }
  2193. #u68307 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:2px 2px 2px 2px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u68307_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. }
  2205. #u68308_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:68px;
  2211. height:44px;
  2212. }
  2213. #u68308 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:719px;
  2217. top:0px;
  2218. width:68px;
  2219. height:44px;
  2220. display:flex;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:14px;
  2225. color:#FFFFFF;
  2226. }
  2227. #u68308 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 2px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u68308_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. }
  2239. #u68309_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:68px;
  2245. height:44px;
  2246. }
  2247. #u68309 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:787px;
  2251. top:0px;
  2252. width:68px;
  2253. height:44px;
  2254. display:flex;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:14px;
  2259. color:#FFFFFF;
  2260. }
  2261. #u68309 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 2px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u68309_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u68310_img {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:80px;
  2279. height:44px;
  2280. }
  2281. #u68310 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:855px;
  2285. top:0px;
  2286. width:80px;
  2287. height:44px;
  2288. display:flex;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:14px;
  2293. color:#FFFFFF;
  2294. }
  2295. #u68310 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u68310_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. }
  2307. #u68311_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:80px;
  2313. height:44px;
  2314. }
  2315. #u68311 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:935px;
  2319. top:0px;
  2320. width:80px;
  2321. height:44px;
  2322. display:flex;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:14px;
  2327. color:#FFFFFF;
  2328. }
  2329. #u68311 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 2px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u68311_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. }
  2341. #u68312_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:71px;
  2347. height:44px;
  2348. }
  2349. #u68312 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:1015px;
  2353. top:0px;
  2354. width:71px;
  2355. height:44px;
  2356. display:flex;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:14px;
  2361. color:#FFFFFF;
  2362. }
  2363. #u68312 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 2px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u68312_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. }
  2375. #u68313_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:69px;
  2381. height:44px;
  2382. }
  2383. #u68313 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:1086px;
  2387. top:0px;
  2388. width:69px;
  2389. height:44px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:14px;
  2395. color:#FFFFFF;
  2396. }
  2397. #u68313 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u68313_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. }
  2409. #u68314_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:69px;
  2415. height:44px;
  2416. }
  2417. #u68314 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:1155px;
  2421. top:0px;
  2422. width:69px;
  2423. height:44px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:14px;
  2429. color:#FFFFFF;
  2430. }
  2431. #u68314 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 2px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u68314_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. }
  2443. #u68315_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:68px;
  2449. height:44px;
  2450. }
  2451. #u68315 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:1224px;
  2455. top:0px;
  2456. width:68px;
  2457. height:44px;
  2458. display:flex;
  2459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:14px;
  2463. color:#FFFFFF;
  2464. }
  2465. #u68315 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 2px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u68315_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. }
  2477. #u68316_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:73px;
  2483. height:44px;
  2484. }
  2485. #u68316 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:1292px;
  2489. top:0px;
  2490. width:73px;
  2491. height:44px;
  2492. display:flex;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:14px;
  2497. color:#FFFFFF;
  2498. }
  2499. #u68316 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u68316_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. }
  2511. #u68317_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:39px;
  2517. height:44px;
  2518. }
  2519. #u68317 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:44px;
  2524. width:39px;
  2525. height:44px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:14px;
  2531. }
  2532. #u68317 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 2px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u68317_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. }
  2544. #u68318_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:68px;
  2550. height:44px;
  2551. }
  2552. #u68318 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:39px;
  2556. top:44px;
  2557. width:68px;
  2558. height:44px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:14px;
  2564. }
  2565. #u68318 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 2px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u68318_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. }
  2577. #u68319_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:68px;
  2583. height:44px;
  2584. }
  2585. #u68319 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:107px;
  2589. top:44px;
  2590. width:68px;
  2591. height:44px;
  2592. display:flex;
  2593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:14px;
  2597. }
  2598. #u68319 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 2px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u68319_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. }
  2610. #u68320_img {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:68px;
  2616. height:44px;
  2617. }
  2618. #u68320 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:175px;
  2622. top:44px;
  2623. width:68px;
  2624. height:44px;
  2625. display:flex;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:14px;
  2630. }
  2631. #u68320 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 2px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u68320_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. }
  2643. #u68321_img {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:68px;
  2649. height:44px;
  2650. }
  2651. #u68321 {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:243px;
  2655. top:44px;
  2656. width:68px;
  2657. height:44px;
  2658. display:flex;
  2659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:14px;
  2663. }
  2664. #u68321 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 2px 2px 2px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u68321_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. }
  2676. #u68322_img {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:68px;
  2682. height:44px;
  2683. }
  2684. #u68322 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:311px;
  2688. top:44px;
  2689. width:68px;
  2690. height:44px;
  2691. display:flex;
  2692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2693. font-weight:400;
  2694. font-style:normal;
  2695. font-size:14px;
  2696. }
  2697. #u68322 .text {
  2698. position:absolute;
  2699. align-self:center;
  2700. padding:2px 2px 2px 2px;
  2701. box-sizing:border-box;
  2702. width:100%;
  2703. }
  2704. #u68322_text {
  2705. border-width:0px;
  2706. word-wrap:break-word;
  2707. text-transform:none;
  2708. }
  2709. #u68323_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:68px;
  2715. height:44px;
  2716. }
  2717. #u68323 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:379px;
  2721. top:44px;
  2722. width:68px;
  2723. height:44px;
  2724. display:flex;
  2725. font-size:14px;
  2726. }
  2727. #u68323 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:2px 2px 2px 2px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u68323_text {
  2735. border-width:0px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. }
  2739. #u68324_img {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:68px;
  2745. height:44px;
  2746. }
  2747. #u68324 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:447px;
  2751. top:44px;
  2752. width:68px;
  2753. height:44px;
  2754. display:flex;
  2755. font-size:14px;
  2756. }
  2757. #u68324 .text {
  2758. position:absolute;
  2759. align-self:center;
  2760. padding:2px 2px 2px 2px;
  2761. box-sizing:border-box;
  2762. width:100%;
  2763. }
  2764. #u68324_text {
  2765. border-width:0px;
  2766. word-wrap:break-word;
  2767. text-transform:none;
  2768. }
  2769. #u68325_img {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:0px;
  2773. top:0px;
  2774. width:68px;
  2775. height:44px;
  2776. }
  2777. #u68325 {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:515px;
  2781. top:44px;
  2782. width:68px;
  2783. height:44px;
  2784. display:flex;
  2785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2786. font-weight:400;
  2787. font-style:normal;
  2788. font-size:14px;
  2789. }
  2790. #u68325 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:2px 2px 2px 2px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u68325_text {
  2798. border-width:0px;
  2799. word-wrap:break-word;
  2800. text-transform:none;
  2801. }
  2802. #u68326_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:68px;
  2808. height:44px;
  2809. }
  2810. #u68326 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:583px;
  2814. top:44px;
  2815. width:68px;
  2816. height:44px;
  2817. display:flex;
  2818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2819. font-weight:400;
  2820. font-style:normal;
  2821. font-size:14px;
  2822. }
  2823. #u68326 .text {
  2824. position:absolute;
  2825. align-self:center;
  2826. padding:2px 2px 2px 2px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u68326_text {
  2831. border-width:0px;
  2832. word-wrap:break-word;
  2833. text-transform:none;
  2834. visibility:hidden;
  2835. }
  2836. #u68327_img {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:68px;
  2842. height:44px;
  2843. }
  2844. #u68327 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:651px;
  2848. top:44px;
  2849. width:68px;
  2850. height:44px;
  2851. display:flex;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:14px;
  2856. }
  2857. #u68327 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 2px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u68327_text {
  2865. border-width:0px;
  2866. word-wrap:break-word;
  2867. text-transform:none;
  2868. }
  2869. #u68328_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:68px;
  2875. height:44px;
  2876. }
  2877. #u68328 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:719px;
  2881. top:44px;
  2882. width:68px;
  2883. height:44px;
  2884. display:flex;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:14px;
  2889. }
  2890. #u68328 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 2px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u68328_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. }
  2902. #u68329_img {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:68px;
  2908. height:44px;
  2909. }
  2910. #u68329 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:787px;
  2914. top:44px;
  2915. width:68px;
  2916. height:44px;
  2917. display:flex;
  2918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:14px;
  2922. }
  2923. #u68329 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:2px 2px 2px 2px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u68329_text {
  2931. border-width:0px;
  2932. word-wrap:break-word;
  2933. text-transform:none;
  2934. }
  2935. #u68330_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:80px;
  2941. height:44px;
  2942. }
  2943. #u68330 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:855px;
  2947. top:44px;
  2948. width:80px;
  2949. height:44px;
  2950. display:flex;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. }
  2956. #u68330 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u68330_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u68331_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:80px;
  2975. height:44px;
  2976. }
  2977. #u68331 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:935px;
  2981. top:44px;
  2982. width:80px;
  2983. height:44px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. }
  2990. #u68331 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 2px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u68331_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u68332_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:71px;
  3009. height:44px;
  3010. }
  3011. #u68332 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:1015px;
  3015. top:44px;
  3016. width:71px;
  3017. height:44px;
  3018. display:flex;
  3019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:14px;
  3023. }
  3024. #u68332 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 2px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u68332_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. visibility:hidden;
  3036. }
  3037. #u68333_img {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:69px;
  3043. height:44px;
  3044. }
  3045. #u68333 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:1086px;
  3049. top:44px;
  3050. width:69px;
  3051. height:44px;
  3052. display:flex;
  3053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3054. font-weight:400;
  3055. font-style:normal;
  3056. font-size:14px;
  3057. }
  3058. #u68333 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 2px 2px 2px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u68333_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. visibility:hidden;
  3070. }
  3071. #u68334_img {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:69px;
  3077. height:44px;
  3078. }
  3079. #u68334 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:1155px;
  3083. top:44px;
  3084. width:69px;
  3085. height:44px;
  3086. display:flex;
  3087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:14px;
  3091. }
  3092. #u68334 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 2px 2px 2px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u68334_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u68335_img {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:68px;
  3111. height:44px;
  3112. }
  3113. #u68335 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:1224px;
  3117. top:44px;
  3118. width:68px;
  3119. height:44px;
  3120. display:flex;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:14px;
  3125. }
  3126. #u68335 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 2px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u68335_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. visibility:hidden;
  3138. }
  3139. #u68336_img {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:73px;
  3145. height:44px;
  3146. }
  3147. #u68336 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:1292px;
  3151. top:44px;
  3152. width:73px;
  3153. height:44px;
  3154. display:flex;
  3155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3156. font-weight:400;
  3157. font-style:normal;
  3158. font-size:14px;
  3159. color:#1890FF;
  3160. }
  3161. #u68336 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 2px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u68336_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. }
  3173. #u68337_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:39px;
  3179. height:30px;
  3180. }
  3181. #u68337 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:88px;
  3186. width:39px;
  3187. height:30px;
  3188. display:flex;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:14px;
  3193. }
  3194. #u68337 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 2px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u68337_text {
  3202. border-width:0px;
  3203. word-wrap:break-word;
  3204. text-transform:none;
  3205. visibility:hidden;
  3206. }
  3207. #u68338_img {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:0px;
  3211. top:0px;
  3212. width:68px;
  3213. height:30px;
  3214. }
  3215. #u68338 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:39px;
  3219. top:88px;
  3220. width:68px;
  3221. height:30px;
  3222. display:flex;
  3223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:14px;
  3227. }
  3228. #u68338 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 2px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u68338_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u68339_img {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:68px;
  3247. height:30px;
  3248. }
  3249. #u68339 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:107px;
  3253. top:88px;
  3254. width:68px;
  3255. height:30px;
  3256. display:flex;
  3257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. font-size:14px;
  3261. }
  3262. #u68339 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 2px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u68339_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u68340_img {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:68px;
  3281. height:30px;
  3282. }
  3283. #u68340 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:175px;
  3287. top:88px;
  3288. width:68px;
  3289. height:30px;
  3290. display:flex;
  3291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3292. font-weight:400;
  3293. font-style:normal;
  3294. font-size:14px;
  3295. }
  3296. #u68340 .text {
  3297. position:absolute;
  3298. align-self:center;
  3299. padding:2px 2px 2px 2px;
  3300. box-sizing:border-box;
  3301. width:100%;
  3302. }
  3303. #u68340_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u68341_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:68px;
  3315. height:30px;
  3316. }
  3317. #u68341 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:243px;
  3321. top:88px;
  3322. width:68px;
  3323. height:30px;
  3324. display:flex;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. font-size:14px;
  3329. }
  3330. #u68341 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 2px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u68341_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. visibility:hidden;
  3342. }
  3343. #u68342_img {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:68px;
  3349. height:30px;
  3350. }
  3351. #u68342 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:311px;
  3355. top:88px;
  3356. width:68px;
  3357. height:30px;
  3358. display:flex;
  3359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3360. font-weight:400;
  3361. font-style:normal;
  3362. font-size:14px;
  3363. }
  3364. #u68342 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 2px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u68342_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u68343_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:68px;
  3383. height:30px;
  3384. }
  3385. #u68343 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:379px;
  3389. top:88px;
  3390. width:68px;
  3391. height:30px;
  3392. display:flex;
  3393. font-size:14px;
  3394. }
  3395. #u68343 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 2px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u68343_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. visibility:hidden;
  3407. }
  3408. #u68344_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:68px;
  3414. height:30px;
  3415. }
  3416. #u68344 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:447px;
  3420. top:88px;
  3421. width:68px;
  3422. height:30px;
  3423. display:flex;
  3424. font-size:14px;
  3425. }
  3426. #u68344 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:2px 2px 2px 2px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u68344_text {
  3434. border-width:0px;
  3435. word-wrap:break-word;
  3436. text-transform:none;
  3437. visibility:hidden;
  3438. }
  3439. #u68345_img {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:68px;
  3445. height:30px;
  3446. }
  3447. #u68345 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:515px;
  3451. top:88px;
  3452. width:68px;
  3453. height:30px;
  3454. display:flex;
  3455. font-size:14px;
  3456. }
  3457. #u68345 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:2px 2px 2px 2px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u68345_text {
  3465. border-width:0px;
  3466. word-wrap:break-word;
  3467. text-transform:none;
  3468. visibility:hidden;
  3469. }
  3470. #u68346_img {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:68px;
  3476. height:30px;
  3477. }
  3478. #u68346 {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:583px;
  3482. top:88px;
  3483. width:68px;
  3484. height:30px;
  3485. display:flex;
  3486. font-size:14px;
  3487. }
  3488. #u68346 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 2px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u68346_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. visibility:hidden;
  3500. }
  3501. #u68347_img {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:68px;
  3507. height:30px;
  3508. }
  3509. #u68347 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:651px;
  3513. top:88px;
  3514. width:68px;
  3515. height:30px;
  3516. display:flex;
  3517. font-size:14px;
  3518. }
  3519. #u68347 .text {
  3520. position:absolute;
  3521. align-self:center;
  3522. padding:2px 2px 2px 2px;
  3523. box-sizing:border-box;
  3524. width:100%;
  3525. }
  3526. #u68347_text {
  3527. border-width:0px;
  3528. word-wrap:break-word;
  3529. text-transform:none;
  3530. visibility:hidden;
  3531. }
  3532. #u68348_img {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:0px;
  3536. top:0px;
  3537. width:68px;
  3538. height:30px;
  3539. }
  3540. #u68348 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:719px;
  3544. top:88px;
  3545. width:68px;
  3546. height:30px;
  3547. display:flex;
  3548. font-size:14px;
  3549. }
  3550. #u68348 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 2px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u68348_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. visibility:hidden;
  3562. }
  3563. #u68349_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:68px;
  3569. height:30px;
  3570. }
  3571. #u68349 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:787px;
  3575. top:88px;
  3576. width:68px;
  3577. height:30px;
  3578. display:flex;
  3579. font-size:14px;
  3580. }
  3581. #u68349 .text {
  3582. position:absolute;
  3583. align-self:center;
  3584. padding:2px 2px 2px 2px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u68349_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u68350_img {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:80px;
  3600. height:30px;
  3601. }
  3602. #u68350 {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:855px;
  3606. top:88px;
  3607. width:80px;
  3608. height:30px;
  3609. display:flex;
  3610. font-size:14px;
  3611. }
  3612. #u68350 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 2px 2px 2px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u68350_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. visibility:hidden;
  3624. }
  3625. #u68351_img {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:80px;
  3631. height:30px;
  3632. }
  3633. #u68351 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:935px;
  3637. top:88px;
  3638. width:80px;
  3639. height:30px;
  3640. display:flex;
  3641. font-size:14px;
  3642. }
  3643. #u68351 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 2px 2px 2px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u68351_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. visibility:hidden;
  3655. }
  3656. #u68352_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:71px;
  3662. height:30px;
  3663. }
  3664. #u68352 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:1015px;
  3668. top:88px;
  3669. width:71px;
  3670. height:30px;
  3671. display:flex;
  3672. font-size:14px;
  3673. }
  3674. #u68352 .text {
  3675. position:absolute;
  3676. align-self:center;
  3677. padding:2px 2px 2px 2px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u68352_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. visibility:hidden;
  3686. }
  3687. #u68353_img {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:69px;
  3693. height:30px;
  3694. }
  3695. #u68353 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:1086px;
  3699. top:88px;
  3700. width:69px;
  3701. height:30px;
  3702. display:flex;
  3703. font-size:14px;
  3704. }
  3705. #u68353 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 2px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u68353_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. visibility:hidden;
  3717. }
  3718. #u68354_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:69px;
  3724. height:30px;
  3725. }
  3726. #u68354 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:1155px;
  3730. top:88px;
  3731. width:69px;
  3732. height:30px;
  3733. display:flex;
  3734. font-size:14px;
  3735. }
  3736. #u68354 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 2px 2px 2px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u68354_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u68355_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:68px;
  3755. height:30px;
  3756. }
  3757. #u68355 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:1224px;
  3761. top:88px;
  3762. width:68px;
  3763. height:30px;
  3764. display:flex;
  3765. font-size:14px;
  3766. }
  3767. #u68355 .text {
  3768. position:absolute;
  3769. align-self:center;
  3770. padding:2px 2px 2px 2px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u68355_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u68356_img {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:73px;
  3786. height:30px;
  3787. }
  3788. #u68356 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:1292px;
  3792. top:88px;
  3793. width:73px;
  3794. height:30px;
  3795. display:flex;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:14px;
  3800. color:#1890FF;
  3801. }
  3802. #u68356 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 2px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u68356_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. }
  3814. #u68357_img {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:39px;
  3820. height:30px;
  3821. }
  3822. #u68357 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:0px;
  3826. top:118px;
  3827. width:39px;
  3828. height:30px;
  3829. display:flex;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:14px;
  3834. }
  3835. #u68357 .text {
  3836. position:absolute;
  3837. align-self:center;
  3838. padding:2px 2px 2px 2px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u68357_text {
  3843. border-width:0px;
  3844. word-wrap:break-word;
  3845. text-transform:none;
  3846. visibility:hidden;
  3847. }
  3848. #u68358_img {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:68px;
  3854. height:30px;
  3855. }
  3856. #u68358 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:39px;
  3860. top:118px;
  3861. width:68px;
  3862. height:30px;
  3863. display:flex;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:14px;
  3868. }
  3869. #u68358 .text {
  3870. position:absolute;
  3871. align-self:center;
  3872. padding:2px 2px 2px 2px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u68358_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. visibility:hidden;
  3881. }
  3882. #u68359_img {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:68px;
  3888. height:30px;
  3889. }
  3890. #u68359 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:107px;
  3894. top:118px;
  3895. width:68px;
  3896. height:30px;
  3897. display:flex;
  3898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:14px;
  3902. }
  3903. #u68359 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 2px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u68359_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u68360_img {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:68px;
  3922. height:30px;
  3923. }
  3924. #u68360 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:175px;
  3928. top:118px;
  3929. width:68px;
  3930. height:30px;
  3931. display:flex;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:14px;
  3936. }
  3937. #u68360 .text {
  3938. position:absolute;
  3939. align-self:center;
  3940. padding:2px 2px 2px 2px;
  3941. box-sizing:border-box;
  3942. width:100%;
  3943. }
  3944. #u68360_text {
  3945. border-width:0px;
  3946. word-wrap:break-word;
  3947. text-transform:none;
  3948. visibility:hidden;
  3949. }
  3950. #u68361_img {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:68px;
  3956. height:30px;
  3957. }
  3958. #u68361 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:243px;
  3962. top:118px;
  3963. width:68px;
  3964. height:30px;
  3965. display:flex;
  3966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3967. font-weight:400;
  3968. font-style:normal;
  3969. font-size:14px;
  3970. }
  3971. #u68361 .text {
  3972. position:absolute;
  3973. align-self:center;
  3974. padding:2px 2px 2px 2px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u68361_text {
  3979. border-width:0px;
  3980. word-wrap:break-word;
  3981. text-transform:none;
  3982. visibility:hidden;
  3983. }
  3984. #u68362_img {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:68px;
  3990. height:30px;
  3991. }
  3992. #u68362 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:311px;
  3996. top:118px;
  3997. width:68px;
  3998. height:30px;
  3999. display:flex;
  4000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. font-size:14px;
  4004. }
  4005. #u68362 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 2px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u68362_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u68363_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:68px;
  4024. height:30px;
  4025. }
  4026. #u68363 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:379px;
  4030. top:118px;
  4031. width:68px;
  4032. height:30px;
  4033. display:flex;
  4034. font-size:14px;
  4035. }
  4036. #u68363 .text {
  4037. position:absolute;
  4038. align-self:center;
  4039. padding:2px 2px 2px 2px;
  4040. box-sizing:border-box;
  4041. width:100%;
  4042. }
  4043. #u68363_text {
  4044. border-width:0px;
  4045. word-wrap:break-word;
  4046. text-transform:none;
  4047. visibility:hidden;
  4048. }
  4049. #u68364_img {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:68px;
  4055. height:30px;
  4056. }
  4057. #u68364 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:447px;
  4061. top:118px;
  4062. width:68px;
  4063. height:30px;
  4064. display:flex;
  4065. font-size:14px;
  4066. }
  4067. #u68364 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 2px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u68364_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u68365_img {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:68px;
  4086. height:30px;
  4087. }
  4088. #u68365 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:515px;
  4092. top:118px;
  4093. width:68px;
  4094. height:30px;
  4095. display:flex;
  4096. font-size:14px;
  4097. }
  4098. #u68365 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 2px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u68365_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u68366_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:68px;
  4117. height:30px;
  4118. }
  4119. #u68366 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:583px;
  4123. top:118px;
  4124. width:68px;
  4125. height:30px;
  4126. display:flex;
  4127. font-size:14px;
  4128. }
  4129. #u68366 .text {
  4130. position:absolute;
  4131. align-self:center;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u68366_text {
  4137. border-width:0px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. visibility:hidden;
  4141. }
  4142. #u68367_img {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:68px;
  4148. height:30px;
  4149. }
  4150. #u68367 {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:651px;
  4154. top:118px;
  4155. width:68px;
  4156. height:30px;
  4157. display:flex;
  4158. font-size:14px;
  4159. }
  4160. #u68367 .text {
  4161. position:absolute;
  4162. align-self:center;
  4163. padding:2px 2px 2px 2px;
  4164. box-sizing:border-box;
  4165. width:100%;
  4166. }
  4167. #u68367_text {
  4168. border-width:0px;
  4169. word-wrap:break-word;
  4170. text-transform:none;
  4171. visibility:hidden;
  4172. }
  4173. #u68368_img {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:68px;
  4179. height:30px;
  4180. }
  4181. #u68368 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:719px;
  4185. top:118px;
  4186. width:68px;
  4187. height:30px;
  4188. display:flex;
  4189. font-size:14px;
  4190. }
  4191. #u68368 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 2px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u68368_text {
  4199. border-width:0px;
  4200. word-wrap:break-word;
  4201. text-transform:none;
  4202. visibility:hidden;
  4203. }
  4204. #u68369_img {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:68px;
  4210. height:30px;
  4211. }
  4212. #u68369 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:787px;
  4216. top:118px;
  4217. width:68px;
  4218. height:30px;
  4219. display:flex;
  4220. font-size:14px;
  4221. }
  4222. #u68369 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 2px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u68369_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u68370_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:80px;
  4241. height:30px;
  4242. }
  4243. #u68370 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:855px;
  4247. top:118px;
  4248. width:80px;
  4249. height:30px;
  4250. display:flex;
  4251. font-size:14px;
  4252. }
  4253. #u68370 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:2px 2px 2px 2px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u68370_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. visibility:hidden;
  4265. }
  4266. #u68371_img {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:80px;
  4272. height:30px;
  4273. }
  4274. #u68371 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:935px;
  4278. top:118px;
  4279. width:80px;
  4280. height:30px;
  4281. display:flex;
  4282. font-size:14px;
  4283. }
  4284. #u68371 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 2px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u68371_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u68372_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:71px;
  4303. height:30px;
  4304. }
  4305. #u68372 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:1015px;
  4309. top:118px;
  4310. width:71px;
  4311. height:30px;
  4312. display:flex;
  4313. font-size:14px;
  4314. }
  4315. #u68372 .text {
  4316. position:absolute;
  4317. align-self:center;
  4318. padding:2px 2px 2px 2px;
  4319. box-sizing:border-box;
  4320. width:100%;
  4321. }
  4322. #u68372_text {
  4323. border-width:0px;
  4324. word-wrap:break-word;
  4325. text-transform:none;
  4326. visibility:hidden;
  4327. }
  4328. #u68373_img {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:0px;
  4332. top:0px;
  4333. width:69px;
  4334. height:30px;
  4335. }
  4336. #u68373 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:1086px;
  4340. top:118px;
  4341. width:69px;
  4342. height:30px;
  4343. display:flex;
  4344. font-size:14px;
  4345. }
  4346. #u68373 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 2px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u68373_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u68374_img {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:69px;
  4365. height:30px;
  4366. }
  4367. #u68374 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:1155px;
  4371. top:118px;
  4372. width:69px;
  4373. height:30px;
  4374. display:flex;
  4375. font-size:14px;
  4376. }
  4377. #u68374 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:2px 2px 2px 2px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u68374_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. visibility:hidden;
  4389. }
  4390. #u68375_img {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:68px;
  4396. height:30px;
  4397. }
  4398. #u68375 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:1224px;
  4402. top:118px;
  4403. width:68px;
  4404. height:30px;
  4405. display:flex;
  4406. font-size:14px;
  4407. }
  4408. #u68375 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 2px 2px 2px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u68375_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. visibility:hidden;
  4420. }
  4421. #u68376_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:73px;
  4427. height:30px;
  4428. }
  4429. #u68376 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:1292px;
  4433. top:118px;
  4434. width:73px;
  4435. height:30px;
  4436. display:flex;
  4437. font-size:14px;
  4438. }
  4439. #u68376 .text {
  4440. position:absolute;
  4441. align-self:center;
  4442. padding:2px 2px 2px 2px;
  4443. box-sizing:border-box;
  4444. width:100%;
  4445. }
  4446. #u68376_text {
  4447. border-width:0px;
  4448. word-wrap:break-word;
  4449. text-transform:none;
  4450. visibility:hidden;
  4451. }
  4452. #u68377_img {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:39px;
  4458. height:30px;
  4459. }
  4460. #u68377 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:148px;
  4465. width:39px;
  4466. height:30px;
  4467. display:flex;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:14px;
  4472. }
  4473. #u68377 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u68377_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u68378_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:68px;
  4492. height:30px;
  4493. }
  4494. #u68378 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:39px;
  4498. top:148px;
  4499. width:68px;
  4500. height:30px;
  4501. display:flex;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:14px;
  4506. }
  4507. #u68378 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:2px 2px 2px 2px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u68378_text {
  4515. border-width:0px;
  4516. word-wrap:break-word;
  4517. text-transform:none;
  4518. visibility:hidden;
  4519. }
  4520. #u68379_img {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:68px;
  4526. height:30px;
  4527. }
  4528. #u68379 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:107px;
  4532. top:148px;
  4533. width:68px;
  4534. height:30px;
  4535. display:flex;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:14px;
  4540. }
  4541. #u68379 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:2px 2px 2px 2px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u68379_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. visibility:hidden;
  4553. }
  4554. #u68380_img {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:68px;
  4560. height:30px;
  4561. }
  4562. #u68380 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:175px;
  4566. top:148px;
  4567. width:68px;
  4568. height:30px;
  4569. display:flex;
  4570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:14px;
  4574. }
  4575. #u68380 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 2px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u68380_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u68381_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:68px;
  4594. height:30px;
  4595. }
  4596. #u68381 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:243px;
  4600. top:148px;
  4601. width:68px;
  4602. height:30px;
  4603. display:flex;
  4604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:14px;
  4608. }
  4609. #u68381 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 2px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u68381_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u68382_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:68px;
  4628. height:30px;
  4629. }
  4630. #u68382 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:311px;
  4634. top:148px;
  4635. width:68px;
  4636. height:30px;
  4637. display:flex;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:14px;
  4642. }
  4643. #u68382 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:2px 2px 2px 2px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u68382_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u68383_img {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:68px;
  4662. height:30px;
  4663. }
  4664. #u68383 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:379px;
  4668. top:148px;
  4669. width:68px;
  4670. height:30px;
  4671. display:flex;
  4672. font-size:14px;
  4673. }
  4674. #u68383 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 2px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u68383_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u68384_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:68px;
  4693. height:30px;
  4694. }
  4695. #u68384 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:447px;
  4699. top:148px;
  4700. width:68px;
  4701. height:30px;
  4702. display:flex;
  4703. font-size:14px;
  4704. }
  4705. #u68384 .text {
  4706. position:absolute;
  4707. align-self:center;
  4708. padding:2px 2px 2px 2px;
  4709. box-sizing:border-box;
  4710. width:100%;
  4711. }
  4712. #u68384_text {
  4713. border-width:0px;
  4714. word-wrap:break-word;
  4715. text-transform:none;
  4716. visibility:hidden;
  4717. }
  4718. #u68385_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:68px;
  4724. height:30px;
  4725. }
  4726. #u68385 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:515px;
  4730. top:148px;
  4731. width:68px;
  4732. height:30px;
  4733. display:flex;
  4734. font-size:14px;
  4735. }
  4736. #u68385 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:2px 2px 2px 2px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u68385_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. visibility:hidden;
  4748. }
  4749. #u68386_img {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:68px;
  4755. height:30px;
  4756. }
  4757. #u68386 {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:583px;
  4761. top:148px;
  4762. width:68px;
  4763. height:30px;
  4764. display:flex;
  4765. font-size:14px;
  4766. }
  4767. #u68386 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 2px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u68386_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u68387_img {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:68px;
  4786. height:30px;
  4787. }
  4788. #u68387 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:651px;
  4792. top:148px;
  4793. width:68px;
  4794. height:30px;
  4795. display:flex;
  4796. font-size:14px;
  4797. }
  4798. #u68387 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:2px 2px 2px 2px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u68387_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. visibility:hidden;
  4810. }
  4811. #u68388_img {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:68px;
  4817. height:30px;
  4818. }
  4819. #u68388 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:719px;
  4823. top:148px;
  4824. width:68px;
  4825. height:30px;
  4826. display:flex;
  4827. font-size:14px;
  4828. }
  4829. #u68388 .text {
  4830. position:absolute;
  4831. align-self:center;
  4832. padding:2px 2px 2px 2px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u68388_text {
  4837. border-width:0px;
  4838. word-wrap:break-word;
  4839. text-transform:none;
  4840. visibility:hidden;
  4841. }
  4842. #u68389_img {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:68px;
  4848. height:30px;
  4849. }
  4850. #u68389 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:787px;
  4854. top:148px;
  4855. width:68px;
  4856. height:30px;
  4857. display:flex;
  4858. font-size:14px;
  4859. }
  4860. #u68389 .text {
  4861. position:absolute;
  4862. align-self:center;
  4863. padding:2px 2px 2px 2px;
  4864. box-sizing:border-box;
  4865. width:100%;
  4866. }
  4867. #u68389_text {
  4868. border-width:0px;
  4869. word-wrap:break-word;
  4870. text-transform:none;
  4871. visibility:hidden;
  4872. }
  4873. #u68390_img {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:80px;
  4879. height:30px;
  4880. }
  4881. #u68390 {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:855px;
  4885. top:148px;
  4886. width:80px;
  4887. height:30px;
  4888. display:flex;
  4889. font-size:14px;
  4890. }
  4891. #u68390 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:2px 2px 2px 2px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u68390_text {
  4899. border-width:0px;
  4900. word-wrap:break-word;
  4901. text-transform:none;
  4902. visibility:hidden;
  4903. }
  4904. #u68391_img {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:80px;
  4910. height:30px;
  4911. }
  4912. #u68391 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:935px;
  4916. top:148px;
  4917. width:80px;
  4918. height:30px;
  4919. display:flex;
  4920. font-size:14px;
  4921. }
  4922. #u68391 .text {
  4923. position:absolute;
  4924. align-self:center;
  4925. padding:2px 2px 2px 2px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u68391_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. visibility:hidden;
  4934. }
  4935. #u68392_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:71px;
  4941. height:30px;
  4942. }
  4943. #u68392 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:1015px;
  4947. top:148px;
  4948. width:71px;
  4949. height:30px;
  4950. display:flex;
  4951. font-size:14px;
  4952. }
  4953. #u68392 .text {
  4954. position:absolute;
  4955. align-self:center;
  4956. padding:2px 2px 2px 2px;
  4957. box-sizing:border-box;
  4958. width:100%;
  4959. }
  4960. #u68392_text {
  4961. border-width:0px;
  4962. word-wrap:break-word;
  4963. text-transform:none;
  4964. visibility:hidden;
  4965. }
  4966. #u68393_img {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:69px;
  4972. height:30px;
  4973. }
  4974. #u68393 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:1086px;
  4978. top:148px;
  4979. width:69px;
  4980. height:30px;
  4981. display:flex;
  4982. font-size:14px;
  4983. }
  4984. #u68393 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 2px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u68393_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u68394_img {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:69px;
  5003. height:30px;
  5004. }
  5005. #u68394 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:1155px;
  5009. top:148px;
  5010. width:69px;
  5011. height:30px;
  5012. display:flex;
  5013. font-size:14px;
  5014. }
  5015. #u68394 .text {
  5016. position:absolute;
  5017. align-self:center;
  5018. padding:2px 2px 2px 2px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u68394_text {
  5023. border-width:0px;
  5024. word-wrap:break-word;
  5025. text-transform:none;
  5026. visibility:hidden;
  5027. }
  5028. #u68395_img {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:68px;
  5034. height:30px;
  5035. }
  5036. #u68395 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:1224px;
  5040. top:148px;
  5041. width:68px;
  5042. height:30px;
  5043. display:flex;
  5044. font-size:14px;
  5045. }
  5046. #u68395 .text {
  5047. position:absolute;
  5048. align-self:center;
  5049. padding:2px 2px 2px 2px;
  5050. box-sizing:border-box;
  5051. width:100%;
  5052. }
  5053. #u68395_text {
  5054. border-width:0px;
  5055. word-wrap:break-word;
  5056. text-transform:none;
  5057. visibility:hidden;
  5058. }
  5059. #u68396_img {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:73px;
  5065. height:30px;
  5066. }
  5067. #u68396 {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:1292px;
  5071. top:148px;
  5072. width:73px;
  5073. height:30px;
  5074. display:flex;
  5075. font-size:14px;
  5076. }
  5077. #u68396 .text {
  5078. position:absolute;
  5079. align-self:center;
  5080. padding:2px 2px 2px 2px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u68396_text {
  5085. border-width:0px;
  5086. word-wrap:break-word;
  5087. text-transform:none;
  5088. visibility:hidden;
  5089. }
  5090. #u68397_img {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:0px;
  5094. top:0px;
  5095. width:39px;
  5096. height:30px;
  5097. }
  5098. #u68397 {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:178px;
  5103. width:39px;
  5104. height:30px;
  5105. display:flex;
  5106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:14px;
  5110. }
  5111. #u68397 .text {
  5112. position:absolute;
  5113. align-self:center;
  5114. padding:2px 2px 2px 2px;
  5115. box-sizing:border-box;
  5116. width:100%;
  5117. }
  5118. #u68397_text {
  5119. border-width:0px;
  5120. word-wrap:break-word;
  5121. text-transform:none;
  5122. visibility:hidden;
  5123. }
  5124. #u68398_img {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:68px;
  5130. height:30px;
  5131. }
  5132. #u68398 {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:39px;
  5136. top:178px;
  5137. width:68px;
  5138. height:30px;
  5139. display:flex;
  5140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:14px;
  5144. }
  5145. #u68398 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:2px 2px 2px 2px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u68398_text {
  5153. border-width:0px;
  5154. word-wrap:break-word;
  5155. text-transform:none;
  5156. visibility:hidden;
  5157. }
  5158. #u68399_img {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:68px;
  5164. height:30px;
  5165. }
  5166. #u68399 {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:107px;
  5170. top:178px;
  5171. width:68px;
  5172. height:30px;
  5173. display:flex;
  5174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5175. font-weight:400;
  5176. font-style:normal;
  5177. font-size:14px;
  5178. }
  5179. #u68399 .text {
  5180. position:absolute;
  5181. align-self:center;
  5182. padding:2px 2px 2px 2px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u68399_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. visibility:hidden;
  5191. }
  5192. #u68400_img {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:68px;
  5198. height:30px;
  5199. }
  5200. #u68400 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:175px;
  5204. top:178px;
  5205. width:68px;
  5206. height:30px;
  5207. display:flex;
  5208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5209. font-weight:400;
  5210. font-style:normal;
  5211. font-size:14px;
  5212. }
  5213. #u68400 .text {
  5214. position:absolute;
  5215. align-self:center;
  5216. padding:2px 2px 2px 2px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u68400_text {
  5221. border-width:0px;
  5222. word-wrap:break-word;
  5223. text-transform:none;
  5224. visibility:hidden;
  5225. }
  5226. #u68401_img {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:68px;
  5232. height:30px;
  5233. }
  5234. #u68401 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:243px;
  5238. top:178px;
  5239. width:68px;
  5240. height:30px;
  5241. display:flex;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. font-size:14px;
  5246. }
  5247. #u68401 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:2px 2px 2px 2px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u68401_text {
  5255. border-width:0px;
  5256. word-wrap:break-word;
  5257. text-transform:none;
  5258. visibility:hidden;
  5259. }
  5260. #u68402_img {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:68px;
  5266. height:30px;
  5267. }
  5268. #u68402 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:311px;
  5272. top:178px;
  5273. width:68px;
  5274. height:30px;
  5275. display:flex;
  5276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:14px;
  5280. }
  5281. #u68402 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:2px 2px 2px 2px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u68402_text {
  5289. border-width:0px;
  5290. word-wrap:break-word;
  5291. text-transform:none;
  5292. visibility:hidden;
  5293. }
  5294. #u68403_img {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:68px;
  5300. height:30px;
  5301. }
  5302. #u68403 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:379px;
  5306. top:178px;
  5307. width:68px;
  5308. height:30px;
  5309. display:flex;
  5310. font-size:14px;
  5311. }
  5312. #u68403 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:2px 2px 2px 2px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u68403_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. visibility:hidden;
  5324. }
  5325. #u68404_img {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:68px;
  5331. height:30px;
  5332. }
  5333. #u68404 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:447px;
  5337. top:178px;
  5338. width:68px;
  5339. height:30px;
  5340. display:flex;
  5341. font-size:14px;
  5342. }
  5343. #u68404 .text {
  5344. position:absolute;
  5345. align-self:center;
  5346. padding:2px 2px 2px 2px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u68404_text {
  5351. border-width:0px;
  5352. word-wrap:break-word;
  5353. text-transform:none;
  5354. visibility:hidden;
  5355. }
  5356. #u68405_img {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:68px;
  5362. height:30px;
  5363. }
  5364. #u68405 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:515px;
  5368. top:178px;
  5369. width:68px;
  5370. height:30px;
  5371. display:flex;
  5372. font-size:14px;
  5373. }
  5374. #u68405 .text {
  5375. position:absolute;
  5376. align-self:center;
  5377. padding:2px 2px 2px 2px;
  5378. box-sizing:border-box;
  5379. width:100%;
  5380. }
  5381. #u68405_text {
  5382. border-width:0px;
  5383. word-wrap:break-word;
  5384. text-transform:none;
  5385. visibility:hidden;
  5386. }
  5387. #u68406_img {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:68px;
  5393. height:30px;
  5394. }
  5395. #u68406 {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:583px;
  5399. top:178px;
  5400. width:68px;
  5401. height:30px;
  5402. display:flex;
  5403. font-size:14px;
  5404. }
  5405. #u68406 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 2px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u68406_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. visibility:hidden;
  5417. }
  5418. #u68407_img {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:68px;
  5424. height:30px;
  5425. }
  5426. #u68407 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:651px;
  5430. top:178px;
  5431. width:68px;
  5432. height:30px;
  5433. display:flex;
  5434. font-size:14px;
  5435. }
  5436. #u68407 .text {
  5437. position:absolute;
  5438. align-self:center;
  5439. padding:2px 2px 2px 2px;
  5440. box-sizing:border-box;
  5441. width:100%;
  5442. }
  5443. #u68407_text {
  5444. border-width:0px;
  5445. word-wrap:break-word;
  5446. text-transform:none;
  5447. visibility:hidden;
  5448. }
  5449. #u68408_img {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:68px;
  5455. height:30px;
  5456. }
  5457. #u68408 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:719px;
  5461. top:178px;
  5462. width:68px;
  5463. height:30px;
  5464. display:flex;
  5465. font-size:14px;
  5466. }
  5467. #u68408 .text {
  5468. position:absolute;
  5469. align-self:center;
  5470. padding:2px 2px 2px 2px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u68408_text {
  5475. border-width:0px;
  5476. word-wrap:break-word;
  5477. text-transform:none;
  5478. visibility:hidden;
  5479. }
  5480. #u68409_img {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:68px;
  5486. height:30px;
  5487. }
  5488. #u68409 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:787px;
  5492. top:178px;
  5493. width:68px;
  5494. height:30px;
  5495. display:flex;
  5496. font-size:14px;
  5497. }
  5498. #u68409 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 2px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u68409_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. visibility:hidden;
  5510. }
  5511. #u68410_img {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:80px;
  5517. height:30px;
  5518. }
  5519. #u68410 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:855px;
  5523. top:178px;
  5524. width:80px;
  5525. height:30px;
  5526. display:flex;
  5527. font-size:14px;
  5528. }
  5529. #u68410 .text {
  5530. position:absolute;
  5531. align-self:center;
  5532. padding:2px 2px 2px 2px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u68410_text {
  5537. border-width:0px;
  5538. word-wrap:break-word;
  5539. text-transform:none;
  5540. visibility:hidden;
  5541. }
  5542. #u68411_img {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:80px;
  5548. height:30px;
  5549. }
  5550. #u68411 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:935px;
  5554. top:178px;
  5555. width:80px;
  5556. height:30px;
  5557. display:flex;
  5558. font-size:14px;
  5559. }
  5560. #u68411 .text {
  5561. position:absolute;
  5562. align-self:center;
  5563. padding:2px 2px 2px 2px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u68411_text {
  5568. border-width:0px;
  5569. word-wrap:break-word;
  5570. text-transform:none;
  5571. visibility:hidden;
  5572. }
  5573. #u68412_img {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:71px;
  5579. height:30px;
  5580. }
  5581. #u68412 {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:1015px;
  5585. top:178px;
  5586. width:71px;
  5587. height:30px;
  5588. display:flex;
  5589. font-size:14px;
  5590. }
  5591. #u68412 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:2px 2px 2px 2px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u68412_text {
  5599. border-width:0px;
  5600. word-wrap:break-word;
  5601. text-transform:none;
  5602. visibility:hidden;
  5603. }
  5604. #u68413_img {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:69px;
  5610. height:30px;
  5611. }
  5612. #u68413 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:1086px;
  5616. top:178px;
  5617. width:69px;
  5618. height:30px;
  5619. display:flex;
  5620. font-size:14px;
  5621. }
  5622. #u68413 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:2px 2px 2px 2px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u68413_text {
  5630. border-width:0px;
  5631. word-wrap:break-word;
  5632. text-transform:none;
  5633. visibility:hidden;
  5634. }
  5635. #u68414_img {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:0px;
  5640. width:69px;
  5641. height:30px;
  5642. }
  5643. #u68414 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:1155px;
  5647. top:178px;
  5648. width:69px;
  5649. height:30px;
  5650. display:flex;
  5651. font-size:14px;
  5652. }
  5653. #u68414 .text {
  5654. position:absolute;
  5655. align-self:center;
  5656. padding:2px 2px 2px 2px;
  5657. box-sizing:border-box;
  5658. width:100%;
  5659. }
  5660. #u68414_text {
  5661. border-width:0px;
  5662. word-wrap:break-word;
  5663. text-transform:none;
  5664. visibility:hidden;
  5665. }
  5666. #u68415_img {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:0px;
  5670. top:0px;
  5671. width:68px;
  5672. height:30px;
  5673. }
  5674. #u68415 {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:1224px;
  5678. top:178px;
  5679. width:68px;
  5680. height:30px;
  5681. display:flex;
  5682. font-size:14px;
  5683. }
  5684. #u68415 .text {
  5685. position:absolute;
  5686. align-self:center;
  5687. padding:2px 2px 2px 2px;
  5688. box-sizing:border-box;
  5689. width:100%;
  5690. }
  5691. #u68415_text {
  5692. border-width:0px;
  5693. word-wrap:break-word;
  5694. text-transform:none;
  5695. visibility:hidden;
  5696. }
  5697. #u68416_img {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:73px;
  5703. height:30px;
  5704. }
  5705. #u68416 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:1292px;
  5709. top:178px;
  5710. width:73px;
  5711. height:30px;
  5712. display:flex;
  5713. font-size:14px;
  5714. }
  5715. #u68416 .text {
  5716. position:absolute;
  5717. align-self:center;
  5718. padding:2px 2px 2px 2px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u68416_text {
  5723. border-width:0px;
  5724. word-wrap:break-word;
  5725. text-transform:none;
  5726. visibility:hidden;
  5727. }
  5728. #u68417 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:0px;
  5734. height:0px;
  5735. }
  5736. #u68418_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:160px;
  5742. height:30px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 1);
  5745. box-sizing:border-box;
  5746. border-width:1px;
  5747. border-style:solid;
  5748. border-color:rgba(201, 201, 201, 1);
  5749. border-radius:4px;
  5750. -moz-box-shadow:none;
  5751. -webkit-box-shadow:none;
  5752. box-shadow:none;
  5753. font-family:'Microsoft YaHei', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:14px;
  5757. color:#CCCCCC;
  5758. text-align:left;
  5759. }
  5760. #u68418 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:696px;
  5764. top:169px;
  5765. width:160px;
  5766. height:30px;
  5767. display:flex;
  5768. font-family:'Microsoft YaHei', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. color:#CCCCCC;
  5773. text-align:left;
  5774. }
  5775. #u68418 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:2px 8px 2px 8px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u68418_text {
  5783. border-width:0px;
  5784. word-wrap:break-word;
  5785. text-transform:none;
  5786. visibility:hidden;
  5787. }
  5788. #u68419_input {
  5789. position:absolute;
  5790. left:0px;
  5791. top:0px;
  5792. width:150px;
  5793. height:28px;
  5794. padding:2px 2px 2px 2px;
  5795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5796. font-weight:400;
  5797. font-style:normal;
  5798. font-size:14px;
  5799. letter-spacing:normal;
  5800. color:#000000;
  5801. vertical-align:none;
  5802. text-align:left;
  5803. text-transform:none;
  5804. background-color:transparent;
  5805. border-color:transparent;
  5806. }
  5807. #u68419_input.disabled {
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:150px;
  5812. height:28px;
  5813. padding:2px 2px 2px 2px;
  5814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:14px;
  5818. letter-spacing:normal;
  5819. color:#000000;
  5820. vertical-align:none;
  5821. text-align:left;
  5822. text-transform:none;
  5823. background-color:transparent;
  5824. border-color:transparent;
  5825. }
  5826. #u68419_div {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:150px;
  5832. height:28px;
  5833. background:inherit;
  5834. background-color:rgba(255, 255, 255, 1);
  5835. border:none;
  5836. border-radius:0px;
  5837. -moz-box-shadow:none;
  5838. -webkit-box-shadow:none;
  5839. box-shadow:none;
  5840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. font-size:14px;
  5844. }
  5845. #u68419 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:702px;
  5849. top:170px;
  5850. width:150px;
  5851. height:28px;
  5852. display:flex;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:14px;
  5857. }
  5858. #u68419 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:2px 2px 2px 2px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u68419_div.disabled {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:150px;
  5871. height:28px;
  5872. background:inherit;
  5873. background-color:rgba(240, 240, 240, 1);
  5874. border:none;
  5875. border-radius:0px;
  5876. -moz-box-shadow:none;
  5877. -webkit-box-shadow:none;
  5878. box-shadow:none;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:14px;
  5883. }
  5884. #u68419.disabled {
  5885. }
  5886. #u68420 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:0px;
  5892. height:0px;
  5893. }
  5894. #u68421_div {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:160px;
  5900. height:30px;
  5901. background:inherit;
  5902. background-color:rgba(255, 255, 255, 1);
  5903. box-sizing:border-box;
  5904. border-width:1px;
  5905. border-style:solid;
  5906. border-color:rgba(201, 201, 201, 1);
  5907. border-radius:4px;
  5908. -moz-box-shadow:none;
  5909. -webkit-box-shadow:none;
  5910. box-shadow:none;
  5911. font-family:'Microsoft YaHei', sans-serif;
  5912. font-weight:400;
  5913. font-style:normal;
  5914. font-size:14px;
  5915. color:#CCCCCC;
  5916. text-align:left;
  5917. }
  5918. #u68421 {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:526px;
  5922. top:169px;
  5923. width:160px;
  5924. height:30px;
  5925. display:flex;
  5926. font-family:'Microsoft YaHei', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:14px;
  5930. color:#CCCCCC;
  5931. text-align:left;
  5932. }
  5933. #u68421 .text {
  5934. position:absolute;
  5935. align-self:center;
  5936. padding:2px 8px 2px 8px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u68421_text {
  5941. border-width:0px;
  5942. word-wrap:break-word;
  5943. text-transform:none;
  5944. visibility:hidden;
  5945. }
  5946. #u68422_input {
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:150px;
  5951. height:28px;
  5952. padding:2px 2px 2px 2px;
  5953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:14px;
  5957. letter-spacing:normal;
  5958. color:#000000;
  5959. vertical-align:none;
  5960. text-align:left;
  5961. text-transform:none;
  5962. background-color:transparent;
  5963. border-color:transparent;
  5964. }
  5965. #u68422_input.disabled {
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:150px;
  5970. height:28px;
  5971. padding:2px 2px 2px 2px;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:14px;
  5976. letter-spacing:normal;
  5977. color:#000000;
  5978. vertical-align:none;
  5979. text-align:left;
  5980. text-transform:none;
  5981. background-color:transparent;
  5982. border-color:transparent;
  5983. }
  5984. #u68422_div {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:150px;
  5990. height:28px;
  5991. background:inherit;
  5992. background-color:rgba(255, 255, 255, 1);
  5993. border:none;
  5994. border-radius:0px;
  5995. -moz-box-shadow:none;
  5996. -webkit-box-shadow:none;
  5997. box-shadow:none;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:14px;
  6002. }
  6003. #u68422 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:532px;
  6007. top:170px;
  6008. width:150px;
  6009. height:28px;
  6010. display:flex;
  6011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6012. font-weight:400;
  6013. font-style:normal;
  6014. font-size:14px;
  6015. }
  6016. #u68422 .text {
  6017. position:absolute;
  6018. align-self:center;
  6019. padding:2px 2px 2px 2px;
  6020. box-sizing:border-box;
  6021. width:100%;
  6022. }
  6023. #u68422_div.disabled {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:150px;
  6029. height:28px;
  6030. background:inherit;
  6031. background-color:rgba(240, 240, 240, 1);
  6032. border:none;
  6033. border-radius:0px;
  6034. -moz-box-shadow:none;
  6035. -webkit-box-shadow:none;
  6036. box-shadow:none;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:14px;
  6041. }
  6042. #u68422.disabled {
  6043. }
  6044. #u68423 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:0px;
  6050. height:0px;
  6051. }
  6052. #u68424_div {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:60px;
  6058. height:30px;
  6059. background:inherit;
  6060. background-color:rgba(24, 144, 255, 1);
  6061. border:none;
  6062. border-radius:4px;
  6063. -moz-box-shadow:none;
  6064. -webkit-box-shadow:none;
  6065. box-shadow:none;
  6066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6067. font-weight:400;
  6068. font-style:normal;
  6069. font-size:14px;
  6070. color:#FFFFFF;
  6071. }
  6072. #u68424 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:1556px;
  6076. top:169px;
  6077. width:60px;
  6078. height:30px;
  6079. display:flex;
  6080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:14px;
  6084. color:#FFFFFF;
  6085. }
  6086. #u68424 .text {
  6087. position:absolute;
  6088. align-self:center;
  6089. padding:2px 2px 2px 2px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u68424_text {
  6094. border-width:0px;
  6095. word-wrap:break-word;
  6096. text-transform:none;
  6097. }
  6098. #u68425_div {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:60px;
  6104. height:30px;
  6105. background:inherit;
  6106. background-color:rgba(255, 255, 255, 1);
  6107. box-sizing:border-box;
  6108. border-width:1px;
  6109. border-style:solid;
  6110. border-color:rgba(170, 170, 170, 1);
  6111. border-radius:4px;
  6112. -moz-box-shadow:none;
  6113. -webkit-box-shadow:none;
  6114. box-shadow:none;
  6115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6116. font-weight:400;
  6117. font-style:normal;
  6118. font-size:14px;
  6119. }
  6120. #u68425 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:1626px;
  6124. top:169px;
  6125. width:60px;
  6126. height:30px;
  6127. display:flex;
  6128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6129. font-weight:400;
  6130. font-style:normal;
  6131. font-size:14px;
  6132. }
  6133. #u68425 .text {
  6134. position:absolute;
  6135. align-self:center;
  6136. padding:2px 2px 2px 2px;
  6137. box-sizing:border-box;
  6138. width:100%;
  6139. }
  6140. #u68425_text {
  6141. border-width:0px;
  6142. word-wrap:break-word;
  6143. text-transform:none;
  6144. }
  6145. #u68426 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:0px;
  6151. height:0px;
  6152. }
  6153. #u68427_div {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:160px;
  6159. height:30px;
  6160. background:inherit;
  6161. background-color:rgba(255, 255, 255, 1);
  6162. box-sizing:border-box;
  6163. border-width:1px;
  6164. border-style:solid;
  6165. border-color:rgba(215, 215, 215, 1);
  6166. border-radius:4px;
  6167. -moz-box-shadow:none;
  6168. -webkit-box-shadow:none;
  6169. box-shadow:none;
  6170. font-size:14px;
  6171. }
  6172. #u68427 {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:1036px;
  6176. top:169px;
  6177. width:160px;
  6178. height:30px;
  6179. display:flex;
  6180. font-size:14px;
  6181. }
  6182. #u68427 .text {
  6183. position:absolute;
  6184. align-self:center;
  6185. padding:2px 2px 2px 2px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u68427_text {
  6190. border-width:0px;
  6191. word-wrap:break-word;
  6192. text-transform:none;
  6193. visibility:hidden;
  6194. }
  6195. #u68428_input {
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:153px;
  6200. height:23px;
  6201. padding:2px 2px 2px 2px;
  6202. font-family:'ArialMT', 'Arial', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:14px;
  6206. letter-spacing:normal;
  6207. color:#AAAAAA;
  6208. vertical-align:none;
  6209. text-align:left;
  6210. text-transform:none;
  6211. background-color:transparent;
  6212. border-color:transparent;
  6213. }
  6214. #u68428_input.disabled {
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:153px;
  6219. height:23px;
  6220. padding:2px 2px 2px 2px;
  6221. font-family:'ArialMT', 'Arial', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:14px;
  6225. letter-spacing:normal;
  6226. color:#AAAAAA;
  6227. vertical-align:none;
  6228. text-align:left;
  6229. text-transform:none;
  6230. background-color:transparent;
  6231. border-color:transparent;
  6232. }
  6233. #u68428_div {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:153px;
  6239. height:23px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 1);
  6242. border:none;
  6243. border-radius:0px;
  6244. -moz-box-shadow:none;
  6245. -webkit-box-shadow:none;
  6246. box-shadow:none;
  6247. font-size:14px;
  6248. color:#AAAAAA;
  6249. }
  6250. #u68428 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:1041px;
  6254. top:171px;
  6255. width:153px;
  6256. height:23px;
  6257. display:flex;
  6258. font-size:14px;
  6259. color:#AAAAAA;
  6260. }
  6261. #u68428 .text {
  6262. position:absolute;
  6263. align-self:flex-start;
  6264. padding:2px 2px 2px 2px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u68428_div.disabled {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:153px;
  6274. height:23px;
  6275. background:inherit;
  6276. background-color:rgba(240, 240, 240, 1);
  6277. border:none;
  6278. border-radius:0px;
  6279. -moz-box-shadow:none;
  6280. -webkit-box-shadow:none;
  6281. box-shadow:none;
  6282. font-size:14px;
  6283. color:#AAAAAA;
  6284. }
  6285. #u68428.disabled {
  6286. }
  6287. .u68428_input_option {
  6288. font-size:14px;
  6289. }
  6290. #u68429 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:0px;
  6296. height:0px;
  6297. }
  6298. #u68430_div {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:160px;
  6304. height:30px;
  6305. background:inherit;
  6306. background-color:rgba(255, 255, 255, 1);
  6307. box-sizing:border-box;
  6308. border-width:1px;
  6309. border-style:solid;
  6310. border-color:rgba(215, 215, 215, 1);
  6311. border-radius:4px;
  6312. -moz-box-shadow:none;
  6313. -webkit-box-shadow:none;
  6314. box-shadow:none;
  6315. font-size:14px;
  6316. }
  6317. #u68430 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:1376px;
  6321. top:169px;
  6322. width:160px;
  6323. height:30px;
  6324. display:flex;
  6325. font-size:14px;
  6326. }
  6327. #u68430 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:2px 2px 2px 2px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u68430_text {
  6335. border-width:0px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. visibility:hidden;
  6339. }
  6340. #u68431_input {
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:153px;
  6345. height:23px;
  6346. padding:2px 2px 2px 2px;
  6347. font-family:'ArialMT', 'Arial', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:14px;
  6351. letter-spacing:normal;
  6352. color:#AAAAAA;
  6353. vertical-align:none;
  6354. text-align:left;
  6355. text-transform:none;
  6356. background-color:transparent;
  6357. border-color:transparent;
  6358. }
  6359. #u68431_input.disabled {
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:153px;
  6364. height:23px;
  6365. padding:2px 2px 2px 2px;
  6366. font-family:'ArialMT', 'Arial', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. font-size:14px;
  6370. letter-spacing:normal;
  6371. color:#AAAAAA;
  6372. vertical-align:none;
  6373. text-align:left;
  6374. text-transform:none;
  6375. background-color:transparent;
  6376. border-color:transparent;
  6377. }
  6378. #u68431_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:153px;
  6384. height:23px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 1);
  6387. border:none;
  6388. border-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-size:14px;
  6393. color:#AAAAAA;
  6394. }
  6395. #u68431 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:1381px;
  6399. top:171px;
  6400. width:153px;
  6401. height:23px;
  6402. display:flex;
  6403. font-size:14px;
  6404. color:#AAAAAA;
  6405. }
  6406. #u68431 .text {
  6407. position:absolute;
  6408. align-self:flex-start;
  6409. padding:2px 2px 2px 2px;
  6410. box-sizing:border-box;
  6411. width:100%;
  6412. }
  6413. #u68431_div.disabled {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:153px;
  6419. height:23px;
  6420. background:inherit;
  6421. background-color:rgba(240, 240, 240, 1);
  6422. border:none;
  6423. border-radius:0px;
  6424. -moz-box-shadow:none;
  6425. -webkit-box-shadow:none;
  6426. box-shadow:none;
  6427. font-size:14px;
  6428. color:#AAAAAA;
  6429. }
  6430. #u68431.disabled {
  6431. }
  6432. .u68431_input_option {
  6433. font-size:14px;
  6434. }
  6435. #u68432 {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:0px;
  6441. height:0px;
  6442. }
  6443. #u68433_div {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:160px;
  6449. height:30px;
  6450. background:inherit;
  6451. background-color:rgba(255, 255, 255, 1);
  6452. box-sizing:border-box;
  6453. border-width:1px;
  6454. border-style:solid;
  6455. border-color:rgba(201, 201, 201, 1);
  6456. border-radius:4px;
  6457. -moz-box-shadow:none;
  6458. -webkit-box-shadow:none;
  6459. box-shadow:none;
  6460. font-family:'Microsoft YaHei', sans-serif;
  6461. font-weight:400;
  6462. font-style:normal;
  6463. font-size:14px;
  6464. color:#CCCCCC;
  6465. text-align:left;
  6466. }
  6467. #u68433 {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:866px;
  6471. top:169px;
  6472. width:160px;
  6473. height:30px;
  6474. display:flex;
  6475. font-family:'Microsoft YaHei', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:14px;
  6479. color:#CCCCCC;
  6480. text-align:left;
  6481. }
  6482. #u68433 .text {
  6483. position:absolute;
  6484. align-self:center;
  6485. padding:2px 8px 2px 8px;
  6486. box-sizing:border-box;
  6487. width:100%;
  6488. }
  6489. #u68433_text {
  6490. border-width:0px;
  6491. word-wrap:break-word;
  6492. text-transform:none;
  6493. visibility:hidden;
  6494. }
  6495. #u68434_input {
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:150px;
  6500. height:28px;
  6501. padding:2px 2px 2px 2px;
  6502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. font-size:14px;
  6506. letter-spacing:normal;
  6507. color:#000000;
  6508. vertical-align:none;
  6509. text-align:left;
  6510. text-transform:none;
  6511. background-color:transparent;
  6512. border-color:transparent;
  6513. }
  6514. #u68434_input.disabled {
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:150px;
  6519. height:28px;
  6520. padding:2px 2px 2px 2px;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:14px;
  6525. letter-spacing:normal;
  6526. color:#000000;
  6527. vertical-align:none;
  6528. text-align:left;
  6529. text-transform:none;
  6530. background-color:transparent;
  6531. border-color:transparent;
  6532. }
  6533. #u68434_div {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:0px;
  6537. top:0px;
  6538. width:150px;
  6539. height:28px;
  6540. background:inherit;
  6541. background-color:rgba(255, 255, 255, 1);
  6542. border:none;
  6543. border-radius:0px;
  6544. -moz-box-shadow:none;
  6545. -webkit-box-shadow:none;
  6546. box-shadow:none;
  6547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:14px;
  6551. }
  6552. #u68434 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:872px;
  6556. top:170px;
  6557. width:150px;
  6558. height:28px;
  6559. display:flex;
  6560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:14px;
  6564. }
  6565. #u68434 .text {
  6566. position:absolute;
  6567. align-self:center;
  6568. padding:2px 2px 2px 2px;
  6569. box-sizing:border-box;
  6570. width:100%;
  6571. }
  6572. #u68434_div.disabled {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:150px;
  6578. height:28px;
  6579. background:inherit;
  6580. background-color:rgba(240, 240, 240, 1);
  6581. border:none;
  6582. border-radius:0px;
  6583. -moz-box-shadow:none;
  6584. -webkit-box-shadow:none;
  6585. box-shadow:none;
  6586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:14px;
  6590. }
  6591. #u68434.disabled {
  6592. }
  6593. #u68435_div {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:1262px;
  6599. height:90px;
  6600. background:inherit;
  6601. background-color:rgba(255, 255, 255, 1);
  6602. box-sizing:border-box;
  6603. border-width:1px;
  6604. border-style:solid;
  6605. border-color:rgba(242, 242, 242, 1);
  6606. border-radius:0px;
  6607. -moz-box-shadow:none;
  6608. -webkit-box-shadow:none;
  6609. box-shadow:none;
  6610. }
  6611. #u68435 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:332px;
  6615. top:50px;
  6616. width:1262px;
  6617. height:90px;
  6618. display:flex;
  6619. }
  6620. #u68435 .text {
  6621. position:absolute;
  6622. align-self:center;
  6623. padding:2px 2px 2px 2px;
  6624. box-sizing:border-box;
  6625. width:100%;
  6626. }
  6627. #u68435_text {
  6628. border-width:0px;
  6629. word-wrap:break-word;
  6630. text-transform:none;
  6631. visibility:hidden;
  6632. }
  6633. #u68436_div {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:109px;
  6639. height:50px;
  6640. background:inherit;
  6641. background-color:rgba(255, 255, 255, 0);
  6642. border:none;
  6643. border-left:0px;
  6644. border-top:0px;
  6645. border-right:0px;
  6646. border-radius:0px;
  6647. border-bottom-right-radius:0px;
  6648. border-bottom-left-radius:0px;
  6649. -moz-box-shadow:none;
  6650. -webkit-box-shadow:none;
  6651. box-shadow:none;
  6652. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6653. font-weight:500;
  6654. font-style:normal;
  6655. font-size:18px;
  6656. line-height:40px;
  6657. }
  6658. #u68436 {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:352px;
  6662. top:50px;
  6663. width:109px;
  6664. height:50px;
  6665. display:flex;
  6666. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6667. font-weight:500;
  6668. font-style:normal;
  6669. font-size:18px;
  6670. line-height:40px;
  6671. }
  6672. #u68436 .text {
  6673. position:absolute;
  6674. align-self:center;
  6675. padding:0px 0px 0px 0px;
  6676. box-sizing:border-box;
  6677. width:100%;
  6678. }
  6679. #u68436_text {
  6680. border-width:0px;
  6681. white-space:nowrap;
  6682. text-transform:none;
  6683. }
  6684. #u68437_img {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:0px;
  6688. top:0px;
  6689. width:13px;
  6690. height:13px;
  6691. }
  6692. #u68437 {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:466px;
  6696. top:69px;
  6697. width:13px;
  6698. height:13px;
  6699. display:flex;
  6700. }
  6701. #u68437 .text {
  6702. position:absolute;
  6703. align-self:center;
  6704. padding:2px 2px 2px 2px;
  6705. box-sizing:border-box;
  6706. width:100%;
  6707. }
  6708. #u68437_text {
  6709. border-width:0px;
  6710. word-wrap:break-word;
  6711. text-transform:none;
  6712. visibility:hidden;
  6713. }
  6714. #u68438_div {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:0px;
  6718. top:0px;
  6719. width:61px;
  6720. height:50px;
  6721. background:inherit;
  6722. background-color:rgba(0, 191, 191, 0);
  6723. box-sizing:border-box;
  6724. border-width:2px;
  6725. border-style:solid;
  6726. border-color:rgba(41, 143, 255, 1);
  6727. border-left:0px;
  6728. border-top:0px;
  6729. border-right:0px;
  6730. border-radius:0px;
  6731. border-bottom-right-radius:0px;
  6732. border-bottom-left-radius:0px;
  6733. -moz-box-shadow:none;
  6734. -webkit-box-shadow:none;
  6735. box-shadow:none;
  6736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:14px;
  6740. color:#1890FF;
  6741. line-height:40px;
  6742. }
  6743. #u68438 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:352px;
  6747. top:90px;
  6748. width:61px;
  6749. height:50px;
  6750. display:flex;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:14px;
  6755. color:#1890FF;
  6756. line-height:40px;
  6757. }
  6758. #u68438 .text {
  6759. position:absolute;
  6760. align-self:center;
  6761. padding:0px 0px 0px 0px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u68438_text {
  6766. border-width:0px;
  6767. white-space:nowrap;
  6768. text-transform:none;
  6769. }
  6770. #u68439_div {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:69px;
  6776. height:50px;
  6777. background:inherit;
  6778. background-color:rgba(0, 191, 191, 0);
  6779. border:none;
  6780. border-left:0px;
  6781. border-top:0px;
  6782. border-right:0px;
  6783. border-radius:0px;
  6784. border-bottom-right-radius:0px;
  6785. border-bottom-left-radius:0px;
  6786. -moz-box-shadow:none;
  6787. -webkit-box-shadow:none;
  6788. box-shadow:none;
  6789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:14px;
  6793. line-height:40px;
  6794. }
  6795. #u68439 {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:444px;
  6799. top:90px;
  6800. width:69px;
  6801. height:50px;
  6802. display:flex;
  6803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:14px;
  6807. line-height:40px;
  6808. }
  6809. #u68439 .text {
  6810. position:absolute;
  6811. align-self:center;
  6812. padding:0px 0px 0px 0px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u68439_text {
  6817. border-width:0px;
  6818. white-space:nowrap;
  6819. text-transform:none;
  6820. }
  6821. #u68440_div {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:0px;
  6825. top:0px;
  6826. width:69px;
  6827. height:50px;
  6828. background:inherit;
  6829. background-color:rgba(255, 255, 255, 0);
  6830. border:none;
  6831. border-left:0px;
  6832. border-top:0px;
  6833. border-right:0px;
  6834. border-radius:0px;
  6835. border-bottom-right-radius:0px;
  6836. border-bottom-left-radius:0px;
  6837. -moz-box-shadow:none;
  6838. -webkit-box-shadow:none;
  6839. box-shadow:none;
  6840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6841. font-weight:400;
  6842. font-style:normal;
  6843. font-size:14px;
  6844. line-height:40px;
  6845. }
  6846. #u68440 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:545px;
  6850. top:90px;
  6851. width:69px;
  6852. height:50px;
  6853. display:flex;
  6854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:14px;
  6858. line-height:40px;
  6859. }
  6860. #u68440 .text {
  6861. position:absolute;
  6862. align-self:center;
  6863. padding:0px 0px 0px 0px;
  6864. box-sizing:border-box;
  6865. width:100%;
  6866. }
  6867. #u68440_text {
  6868. border-width:0px;
  6869. white-space:nowrap;
  6870. text-transform:none;
  6871. }
  6872. #u68441_div {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:0px;
  6876. top:0px;
  6877. width:69px;
  6878. height:50px;
  6879. background:inherit;
  6880. background-color:rgba(255, 255, 255, 0);
  6881. border:none;
  6882. border-left:0px;
  6883. border-top:0px;
  6884. border-right:0px;
  6885. border-radius:0px;
  6886. border-bottom-right-radius:0px;
  6887. border-bottom-left-radius:0px;
  6888. -moz-box-shadow:none;
  6889. -webkit-box-shadow:none;
  6890. box-shadow:none;
  6891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6892. font-weight:400;
  6893. font-style:normal;
  6894. font-size:14px;
  6895. line-height:40px;
  6896. }
  6897. #u68441 {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:645px;
  6901. top:90px;
  6902. width:69px;
  6903. height:50px;
  6904. display:flex;
  6905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. font-size:14px;
  6909. line-height:40px;
  6910. }
  6911. #u68441 .text {
  6912. position:absolute;
  6913. align-self:center;
  6914. padding:0px 0px 0px 0px;
  6915. box-sizing:border-box;
  6916. width:100%;
  6917. }
  6918. #u68441_text {
  6919. border-width:0px;
  6920. white-space:nowrap;
  6921. text-transform:none;
  6922. }
  6923. #u68442_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:69px;
  6929. height:50px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 0);
  6932. border:none;
  6933. border-left:0px;
  6934. border-top:0px;
  6935. border-right:0px;
  6936. border-radius:0px;
  6937. border-bottom-right-radius:0px;
  6938. border-bottom-left-radius:0px;
  6939. -moz-box-shadow:none;
  6940. -webkit-box-shadow:none;
  6941. box-shadow:none;
  6942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:14px;
  6946. line-height:40px;
  6947. }
  6948. #u68442 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:744px;
  6952. top:90px;
  6953. width:69px;
  6954. height:50px;
  6955. display:flex;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:14px;
  6960. line-height:40px;
  6961. }
  6962. #u68442 .text {
  6963. position:absolute;
  6964. align-self:center;
  6965. padding:0px 0px 0px 0px;
  6966. box-sizing:border-box;
  6967. width:100%;
  6968. }
  6969. #u68442_text {
  6970. border-width:0px;
  6971. white-space:nowrap;
  6972. text-transform:none;
  6973. }
  6974. #u68443_div {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:69px;
  6980. height:50px;
  6981. background:inherit;
  6982. background-color:rgba(255, 255, 255, 0);
  6983. border:none;
  6984. border-left:0px;
  6985. border-top:0px;
  6986. border-right:0px;
  6987. border-radius:0px;
  6988. border-bottom-right-radius:0px;
  6989. border-bottom-left-radius:0px;
  6990. -moz-box-shadow:none;
  6991. -webkit-box-shadow:none;
  6992. box-shadow:none;
  6993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6994. font-weight:400;
  6995. font-style:normal;
  6996. font-size:14px;
  6997. line-height:40px;
  6998. }
  6999. #u68443 {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:844px;
  7003. top:90px;
  7004. width:69px;
  7005. height:50px;
  7006. display:flex;
  7007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7008. font-weight:400;
  7009. font-style:normal;
  7010. font-size:14px;
  7011. line-height:40px;
  7012. }
  7013. #u68443 .text {
  7014. position:absolute;
  7015. align-self:center;
  7016. padding:0px 0px 0px 0px;
  7017. box-sizing:border-box;
  7018. width:100%;
  7019. }
  7020. #u68443_text {
  7021. border-width:0px;
  7022. white-space:nowrap;
  7023. text-transform:none;
  7024. }
  7025. #u68444_div {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:80px;
  7031. height:30px;
  7032. background:inherit;
  7033. background-color:rgba(24, 144, 255, 1);
  7034. border:none;
  7035. border-radius:4px;
  7036. -moz-box-shadow:none;
  7037. -webkit-box-shadow:none;
  7038. box-shadow:none;
  7039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:14px;
  7043. color:#FFFFFF;
  7044. }
  7045. #u68444 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:356px;
  7049. top:220px;
  7050. width:80px;
  7051. height:30px;
  7052. display:flex;
  7053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7054. font-weight:400;
  7055. font-style:normal;
  7056. font-size:14px;
  7057. color:#FFFFFF;
  7058. }
  7059. #u68444 .text {
  7060. position:absolute;
  7061. align-self:center;
  7062. padding:2px 2px 2px 2px;
  7063. box-sizing:border-box;
  7064. width:100%;
  7065. }
  7066. #u68444_text {
  7067. border-width:0px;
  7068. word-wrap:break-word;
  7069. text-transform:none;
  7070. }
  7071. #u68445_div {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:60px;
  7077. height:30px;
  7078. background:inherit;
  7079. background-color:rgba(255, 255, 255, 1);
  7080. box-sizing:border-box;
  7081. border-width:1px;
  7082. border-style:solid;
  7083. border-color:rgba(170, 170, 170, 1);
  7084. border-radius:4px;
  7085. -moz-box-shadow:none;
  7086. -webkit-box-shadow:none;
  7087. box-shadow:none;
  7088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:14px;
  7092. }
  7093. #u68445 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:446px;
  7097. top:220px;
  7098. width:60px;
  7099. height:30px;
  7100. display:flex;
  7101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7102. font-weight:400;
  7103. font-style:normal;
  7104. font-size:14px;
  7105. }
  7106. #u68445 .text {
  7107. position:absolute;
  7108. align-self:center;
  7109. padding:2px 2px 2px 2px;
  7110. box-sizing:border-box;
  7111. width:100%;
  7112. }
  7113. #u68445_text {
  7114. border-width:0px;
  7115. word-wrap:break-word;
  7116. text-transform:none;
  7117. }
  7118. #u68446 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:0px;
  7122. top:0px;
  7123. width:0px;
  7124. height:0px;
  7125. }
  7126. #u68447 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:0px;
  7130. top:0px;
  7131. width:0px;
  7132. height:0px;
  7133. }
  7134. #u68448_div {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:380px;
  7140. height:180px;
  7141. background:inherit;
  7142. background-color:rgba(255, 255, 255, 1);
  7143. border:none;
  7144. border-radius:4px;
  7145. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7146. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7147. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7148. font-family:'Microsoft YaHei', sans-serif;
  7149. font-weight:400;
  7150. font-style:normal;
  7151. }
  7152. #u68448 {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:377px;
  7156. top:768px;
  7157. width:380px;
  7158. height:180px;
  7159. display:flex;
  7160. font-family:'Microsoft YaHei', sans-serif;
  7161. font-weight:400;
  7162. font-style:normal;
  7163. }
  7164. #u68448 .text {
  7165. position:absolute;
  7166. align-self:center;
  7167. padding:2px 2px 2px 2px;
  7168. box-sizing:border-box;
  7169. width:100%;
  7170. }
  7171. #u68448_text {
  7172. border-width:0px;
  7173. word-wrap:break-word;
  7174. text-transform:none;
  7175. visibility:hidden;
  7176. }
  7177. #u68449_div {
  7178. border-width:0px;
  7179. position:absolute;
  7180. left:0px;
  7181. top:0px;
  7182. width:299px;
  7183. height:66px;
  7184. background:inherit;
  7185. background-color:rgba(255, 255, 255, 0);
  7186. border:none;
  7187. border-radius:0px;
  7188. -moz-box-shadow:none;
  7189. -webkit-box-shadow:none;
  7190. box-shadow:none;
  7191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:14px;
  7195. color:#666666;
  7196. line-height:22px;
  7197. }
  7198. #u68449 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:437px;
  7202. top:823px;
  7203. width:299px;
  7204. height:66px;
  7205. display:flex;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:14px;
  7210. color:#666666;
  7211. line-height:22px;
  7212. }
  7213. #u68449 .text {
  7214. position:absolute;
  7215. align-self:flex-start;
  7216. padding:0px 0px 0px 0px;
  7217. box-sizing:border-box;
  7218. width:100%;
  7219. }
  7220. #u68449_text {
  7221. border-width:0px;
  7222. word-wrap:break-word;
  7223. text-transform:none;
  7224. }
  7225. #u68450_div {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:163px;
  7231. height:21px;
  7232. background:inherit;
  7233. background-color:rgba(255, 255, 255, 0);
  7234. border:none;
  7235. border-radius:0px;
  7236. -moz-box-shadow:none;
  7237. -webkit-box-shadow:none;
  7238. box-shadow:none;
  7239. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7240. font-weight:650;
  7241. font-style:normal;
  7242. font-size:18px;
  7243. color:#000000;
  7244. line-height:22px;
  7245. }
  7246. #u68450 {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:437px;
  7250. top:793px;
  7251. width:163px;
  7252. height:21px;
  7253. display:flex;
  7254. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7255. font-weight:650;
  7256. font-style:normal;
  7257. font-size:18px;
  7258. color:#000000;
  7259. line-height:22px;
  7260. }
  7261. #u68450 .text {
  7262. position:absolute;
  7263. align-self:flex-start;
  7264. padding:0px 0px 0px 0px;
  7265. box-sizing:border-box;
  7266. width:100%;
  7267. }
  7268. #u68450_text {
  7269. border-width:0px;
  7270. white-space:nowrap;
  7271. text-transform:none;
  7272. }
  7273. #u68451_div {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:61px;
  7279. height:32px;
  7280. background:inherit;
  7281. background-color:rgba(24, 144, 255, 1);
  7282. border:none;
  7283. border-radius:4px;
  7284. -moz-box-shadow:none;
  7285. -webkit-box-shadow:none;
  7286. box-shadow:none;
  7287. font-family:'Microsoft YaHei', sans-serif;
  7288. font-weight:400;
  7289. font-style:normal;
  7290. font-size:14px;
  7291. color:#FFFFFF;
  7292. }
  7293. #u68451 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:679px;
  7297. top:904px;
  7298. width:61px;
  7299. height:32px;
  7300. display:flex;
  7301. font-family:'Microsoft YaHei', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:14px;
  7305. color:#FFFFFF;
  7306. }
  7307. #u68451 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 16px 2px 16px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u68451_text {
  7315. border-width:0px;
  7316. white-space:nowrap;
  7317. text-transform:none;
  7318. }
  7319. #u68452_div {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:66px;
  7325. height:32px;
  7326. background:inherit;
  7327. background-color:rgba(255, 255, 255, 1);
  7328. box-sizing:border-box;
  7329. border-width:1px;
  7330. border-style:solid;
  7331. border-color:rgba(217, 217, 217, 1);
  7332. border-radius:4px;
  7333. -moz-box-shadow:none;
  7334. -webkit-box-shadow:none;
  7335. box-shadow:none;
  7336. font-family:'Microsoft YaHei', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:14px;
  7340. color:rgba(0, 0, 0, 0.647058823529412);
  7341. line-height:21px;
  7342. }
  7343. #u68452 {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:597px;
  7347. top:904px;
  7348. width:66px;
  7349. height:32px;
  7350. display:flex;
  7351. font-family:'Microsoft YaHei', sans-serif;
  7352. font-weight:400;
  7353. font-style:normal;
  7354. font-size:14px;
  7355. color:rgba(0, 0, 0, 0.647058823529412);
  7356. line-height:21px;
  7357. }
  7358. #u68452 .text {
  7359. position:absolute;
  7360. align-self:center;
  7361. padding:2px 16px 2px 16px;
  7362. box-sizing:border-box;
  7363. width:100%;
  7364. }
  7365. #u68452_text {
  7366. border-width:0px;
  7367. white-space:nowrap;
  7368. text-transform:none;
  7369. }
  7370. #u68453_img {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:20px;
  7376. height:20px;
  7377. }
  7378. #u68453 {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:406px;
  7382. top:793px;
  7383. width:20px;
  7384. height:20px;
  7385. display:flex;
  7386. }
  7387. #u68453 .text {
  7388. position:absolute;
  7389. align-self:center;
  7390. padding:2px 2px 2px 2px;
  7391. box-sizing:border-box;
  7392. width:100%;
  7393. }
  7394. #u68453_text {
  7395. border-width:0px;
  7396. word-wrap:break-word;
  7397. text-transform:none;
  7398. visibility:hidden;
  7399. }
  7400. #u68454 {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:0px;
  7406. height:0px;
  7407. }
  7408. #u68455 {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:0px;
  7414. height:0px;
  7415. }
  7416. #u68456_div {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:380px;
  7422. height:170px;
  7423. background:inherit;
  7424. background-color:rgba(255, 255, 255, 1);
  7425. border:none;
  7426. border-radius:4px;
  7427. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7428. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7429. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7430. font-family:'Microsoft YaHei', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. }
  7434. #u68456 {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:1084px;
  7438. top:722px;
  7439. width:380px;
  7440. height:170px;
  7441. display:flex;
  7442. font-family:'Microsoft YaHei', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. }
  7446. #u68456 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:2px 2px 2px 2px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u68456_text {
  7454. border-width:0px;
  7455. word-wrap:break-word;
  7456. text-transform:none;
  7457. visibility:hidden;
  7458. }
  7459. #u68457_div {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:0px;
  7463. top:0px;
  7464. width:299px;
  7465. height:44px;
  7466. background:inherit;
  7467. background-color:rgba(255, 255, 255, 0);
  7468. border:none;
  7469. border-radius:0px;
  7470. -moz-box-shadow:none;
  7471. -webkit-box-shadow:none;
  7472. box-shadow:none;
  7473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7474. font-weight:400;
  7475. font-style:normal;
  7476. font-size:14px;
  7477. color:#666666;
  7478. line-height:22px;
  7479. }
  7480. #u68457 {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:1144px;
  7484. top:777px;
  7485. width:299px;
  7486. height:44px;
  7487. display:flex;
  7488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7489. font-weight:400;
  7490. font-style:normal;
  7491. font-size:14px;
  7492. color:#666666;
  7493. line-height:22px;
  7494. }
  7495. #u68457 .text {
  7496. position:absolute;
  7497. align-self:flex-start;
  7498. padding:0px 0px 0px 0px;
  7499. box-sizing:border-box;
  7500. width:100%;
  7501. }
  7502. #u68457_text {
  7503. border-width:0px;
  7504. word-wrap:break-word;
  7505. text-transform:none;
  7506. }
  7507. #u68458_div {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:0px;
  7511. top:0px;
  7512. width:163px;
  7513. height:21px;
  7514. background:inherit;
  7515. background-color:rgba(255, 255, 255, 0);
  7516. border:none;
  7517. border-radius:0px;
  7518. -moz-box-shadow:none;
  7519. -webkit-box-shadow:none;
  7520. box-shadow:none;
  7521. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7522. font-weight:650;
  7523. font-style:normal;
  7524. font-size:18px;
  7525. color:#000000;
  7526. line-height:22px;
  7527. }
  7528. #u68458 {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:1144px;
  7532. top:747px;
  7533. width:163px;
  7534. height:21px;
  7535. display:flex;
  7536. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7537. font-weight:650;
  7538. font-style:normal;
  7539. font-size:18px;
  7540. color:#000000;
  7541. line-height:22px;
  7542. }
  7543. #u68458 .text {
  7544. position:absolute;
  7545. align-self:flex-start;
  7546. padding:0px 0px 0px 0px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u68458_text {
  7551. border-width:0px;
  7552. white-space:nowrap;
  7553. text-transform:none;
  7554. }
  7555. #u68459_div {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:0px;
  7559. top:0px;
  7560. width:61px;
  7561. height:32px;
  7562. background:inherit;
  7563. background-color:rgba(24, 144, 255, 1);
  7564. border:none;
  7565. border-radius:4px;
  7566. -moz-box-shadow:none;
  7567. -webkit-box-shadow:none;
  7568. box-shadow:none;
  7569. font-family:'Microsoft YaHei', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:14px;
  7573. color:#FFFFFF;
  7574. }
  7575. #u68459 {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:1386px;
  7579. top:848px;
  7580. width:61px;
  7581. height:32px;
  7582. display:flex;
  7583. font-family:'Microsoft YaHei', sans-serif;
  7584. font-weight:400;
  7585. font-style:normal;
  7586. font-size:14px;
  7587. color:#FFFFFF;
  7588. }
  7589. #u68459 .text {
  7590. position:absolute;
  7591. align-self:center;
  7592. padding:2px 16px 2px 16px;
  7593. box-sizing:border-box;
  7594. width:100%;
  7595. }
  7596. #u68459_text {
  7597. border-width:0px;
  7598. white-space:nowrap;
  7599. text-transform:none;
  7600. }
  7601. #u68460_div {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:66px;
  7607. height:32px;
  7608. background:inherit;
  7609. background-color:rgba(255, 255, 255, 1);
  7610. box-sizing:border-box;
  7611. border-width:1px;
  7612. border-style:solid;
  7613. border-color:rgba(217, 217, 217, 1);
  7614. border-radius:4px;
  7615. -moz-box-shadow:none;
  7616. -webkit-box-shadow:none;
  7617. box-shadow:none;
  7618. font-family:'Microsoft YaHei', sans-serif;
  7619. font-weight:400;
  7620. font-style:normal;
  7621. font-size:14px;
  7622. color:rgba(0, 0, 0, 0.647058823529412);
  7623. line-height:21px;
  7624. }
  7625. #u68460 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:1304px;
  7629. top:848px;
  7630. width:66px;
  7631. height:32px;
  7632. display:flex;
  7633. font-family:'Microsoft YaHei', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:14px;
  7637. color:rgba(0, 0, 0, 0.647058823529412);
  7638. line-height:21px;
  7639. }
  7640. #u68460 .text {
  7641. position:absolute;
  7642. align-self:center;
  7643. padding:2px 16px 2px 16px;
  7644. box-sizing:border-box;
  7645. width:100%;
  7646. }
  7647. #u68460_text {
  7648. border-width:0px;
  7649. white-space:nowrap;
  7650. text-transform:none;
  7651. }
  7652. #u68461_img {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:20px;
  7658. height:20px;
  7659. }
  7660. #u68461 {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:1113px;
  7664. top:747px;
  7665. width:20px;
  7666. height:20px;
  7667. display:flex;
  7668. }
  7669. #u68461 .text {
  7670. position:absolute;
  7671. align-self:center;
  7672. padding:2px 2px 2px 2px;
  7673. box-sizing:border-box;
  7674. width:100%;
  7675. }
  7676. #u68461_text {
  7677. border-width:0px;
  7678. word-wrap:break-word;
  7679. text-transform:none;
  7680. visibility:hidden;
  7681. }
  7682. #u68462 {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:0px;
  7686. top:0px;
  7687. width:0px;
  7688. height:0px;
  7689. }
  7690. #u68463_div {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:0px;
  7694. top:0px;
  7695. width:489px;
  7696. height:38px;
  7697. background:inherit;
  7698. background-color:rgba(254, 249, 237, 1);
  7699. box-sizing:border-box;
  7700. border-width:1px;
  7701. border-style:solid;
  7702. border-color:rgba(250, 196, 80, 1);
  7703. border-radius:6px;
  7704. -moz-box-shadow:none;
  7705. -webkit-box-shadow:none;
  7706. box-shadow:none;
  7707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7708. font-weight:400;
  7709. font-style:normal;
  7710. font-size:12px;
  7711. color:#F59A23;
  7712. line-height:22px;
  7713. }
  7714. #u68463 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:377px;
  7718. top:976px;
  7719. width:489px;
  7720. height:38px;
  7721. display:flex;
  7722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:12px;
  7726. color:#F59A23;
  7727. line-height:22px;
  7728. }
  7729. #u68463 .text {
  7730. position:absolute;
  7731. align-self:center;
  7732. padding:8px 16px 8px 40px;
  7733. box-sizing:border-box;
  7734. width:100%;
  7735. }
  7736. #u68463_text {
  7737. border-width:0px;
  7738. white-space:nowrap;
  7739. text-transform:none;
  7740. }
  7741. #u68464_img {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:9px;
  7747. height:9px;
  7748. }
  7749. #u68464 {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:851px;
  7753. top:990px;
  7754. width:9px;
  7755. height:9px;
  7756. display:flex;
  7757. font-family:'Microsoft YaHei', sans-serif;
  7758. font-weight:400;
  7759. font-style:normal;
  7760. }
  7761. #u68464 .text {
  7762. position:absolute;
  7763. align-self:center;
  7764. padding:2px 2px 2px 2px;
  7765. box-sizing:border-box;
  7766. width:100%;
  7767. }
  7768. #u68464_text {
  7769. border-width:0px;
  7770. word-wrap:break-word;
  7771. text-transform:none;
  7772. visibility:hidden;
  7773. }
  7774. #u68465_img {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:0px;
  7778. top:0px;
  7779. width:14px;
  7780. height:14px;
  7781. }
  7782. #u68465 {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:392px;
  7786. top:988px;
  7787. width:14px;
  7788. height:14px;
  7789. display:flex;
  7790. }
  7791. #u68465 .text {
  7792. position:absolute;
  7793. align-self:center;
  7794. padding:2px 2px 2px 2px;
  7795. box-sizing:border-box;
  7796. width:100%;
  7797. }
  7798. #u68465_text {
  7799. border-width:0px;
  7800. word-wrap:break-word;
  7801. text-transform:none;
  7802. visibility:hidden;
  7803. }
  7804. #u68466_div {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:0px;
  7808. top:0px;
  7809. width:61px;
  7810. height:80px;
  7811. background:inherit;
  7812. background-color:rgba(255, 255, 255, 0);
  7813. border:none;
  7814. border-left:0px;
  7815. border-right:0px;
  7816. border-radius:0px;
  7817. border-top-left-radius:0px;
  7818. border-top-right-radius:0px;
  7819. border-bottom-right-radius:0px;
  7820. border-bottom-left-radius:0px;
  7821. -moz-box-shadow:none;
  7822. -webkit-box-shadow:none;
  7823. box-shadow:none;
  7824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:12px;
  7828. line-height:40px;
  7829. }
  7830. #u68466 {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:377px;
  7834. top:510px;
  7835. width:61px;
  7836. height:80px;
  7837. display:flex;
  7838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7839. font-weight:400;
  7840. font-style:normal;
  7841. font-size:12px;
  7842. line-height:40px;
  7843. }
  7844. #u68466 .text {
  7845. position:absolute;
  7846. align-self:flex-start;
  7847. padding:0px 0px 0px 0px;
  7848. box-sizing:border-box;
  7849. width:100%;
  7850. }
  7851. #u68466_text {
  7852. border-width:0px;
  7853. white-space:nowrap;
  7854. text-transform:none;
  7855. }
  7856. #u68467_div {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:0px;
  7860. top:0px;
  7861. width:61px;
  7862. height:80px;
  7863. background:inherit;
  7864. background-color:rgba(255, 255, 255, 0);
  7865. border:none;
  7866. border-left:0px;
  7867. border-right:0px;
  7868. border-radius:0px;
  7869. border-top-left-radius:0px;
  7870. border-top-right-radius:0px;
  7871. border-bottom-right-radius:0px;
  7872. border-bottom-left-radius:0px;
  7873. -moz-box-shadow:none;
  7874. -webkit-box-shadow:none;
  7875. box-shadow:none;
  7876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7877. font-weight:400;
  7878. font-style:normal;
  7879. font-size:12px;
  7880. line-height:40px;
  7881. }
  7882. #u68467 {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:512px;
  7886. top:510px;
  7887. width:61px;
  7888. height:80px;
  7889. display:flex;
  7890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7891. font-weight:400;
  7892. font-style:normal;
  7893. font-size:12px;
  7894. line-height:40px;
  7895. }
  7896. #u68467 .text {
  7897. position:absolute;
  7898. align-self:flex-start;
  7899. padding:0px 0px 0px 0px;
  7900. box-sizing:border-box;
  7901. width:100%;
  7902. }
  7903. #u68467_text {
  7904. border-width:0px;
  7905. white-space:nowrap;
  7906. text-transform:none;
  7907. }
  7908. #u68468_div {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:0px;
  7912. top:0px;
  7913. width:61px;
  7914. height:80px;
  7915. background:inherit;
  7916. background-color:rgba(255, 255, 255, 0);
  7917. border:none;
  7918. border-left:0px;
  7919. border-right:0px;
  7920. border-radius:0px;
  7921. border-top-left-radius:0px;
  7922. border-top-right-radius:0px;
  7923. border-bottom-right-radius:0px;
  7924. border-bottom-left-radius:0px;
  7925. -moz-box-shadow:none;
  7926. -webkit-box-shadow:none;
  7927. box-shadow:none;
  7928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7929. font-weight:400;
  7930. font-style:normal;
  7931. font-size:12px;
  7932. line-height:40px;
  7933. }
  7934. #u68468 {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:649px;
  7938. top:510px;
  7939. width:61px;
  7940. height:80px;
  7941. display:flex;
  7942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7943. font-weight:400;
  7944. font-style:normal;
  7945. font-size:12px;
  7946. line-height:40px;
  7947. }
  7948. #u68468 .text {
  7949. position:absolute;
  7950. align-self:flex-start;
  7951. padding:0px 0px 0px 0px;
  7952. box-sizing:border-box;
  7953. width:100%;
  7954. }
  7955. #u68468_text {
  7956. border-width:0px;
  7957. white-space:nowrap;
  7958. text-transform:none;
  7959. }
  7960. #u68469_div {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:61px;
  7966. height:80px;
  7967. background:inherit;
  7968. background-color:rgba(255, 255, 255, 0);
  7969. border:none;
  7970. border-left:0px;
  7971. border-right:0px;
  7972. border-radius:0px;
  7973. border-top-left-radius:0px;
  7974. border-top-right-radius:0px;
  7975. border-bottom-right-radius:0px;
  7976. border-bottom-left-radius:0px;
  7977. -moz-box-shadow:none;
  7978. -webkit-box-shadow:none;
  7979. box-shadow:none;
  7980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7981. font-weight:400;
  7982. font-style:normal;
  7983. font-size:12px;
  7984. line-height:40px;
  7985. }
  7986. #u68469 {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:849px;
  7990. top:510px;
  7991. width:61px;
  7992. height:80px;
  7993. display:flex;
  7994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7995. font-weight:400;
  7996. font-style:normal;
  7997. font-size:12px;
  7998. line-height:40px;
  7999. }
  8000. #u68469 .text {
  8001. position:absolute;
  8002. align-self:flex-start;
  8003. padding:0px 0px 0px 0px;
  8004. box-sizing:border-box;
  8005. width:100%;
  8006. }
  8007. #u68469_text {
  8008. border-width:0px;
  8009. white-space:nowrap;
  8010. text-transform:none;
  8011. }
  8012. #u68470 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:0px;
  8016. top:0px;
  8017. width:0px;
  8018. height:0px;
  8019. }
  8020. #u68471_div {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:100px;
  8026. height:100px;
  8027. background:inherit;
  8028. background-color:rgba(255, 255, 255, 1);
  8029. box-sizing:border-box;
  8030. border-width:1px;
  8031. border-style:solid;
  8032. border-color:rgba(242, 242, 242, 1);
  8033. border-radius:4px;
  8034. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8035. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8036. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8038. font-weight:400;
  8039. font-style:normal;
  8040. font-size:14px;
  8041. text-align:left;
  8042. }
  8043. #u68471 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:849px;
  8047. top:590px;
  8048. width:100px;
  8049. height:100px;
  8050. display:flex;
  8051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8052. font-weight:400;
  8053. font-style:normal;
  8054. font-size:14px;
  8055. text-align:left;
  8056. }
  8057. #u68471 .text {
  8058. position:absolute;
  8059. align-self:center;
  8060. padding:2px 2px 2px 2px;
  8061. box-sizing:border-box;
  8062. width:100%;
  8063. }
  8064. #u68471_text {
  8065. border-width:0px;
  8066. word-wrap:break-word;
  8067. text-transform:none;
  8068. visibility:hidden;
  8069. }
  8070. #u68472_div {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:0px;
  8074. top:0px;
  8075. width:85px;
  8076. height:40px;
  8077. background:inherit;
  8078. background-color:rgba(255, 255, 255, 1);
  8079. box-sizing:border-box;
  8080. border-width:1px;
  8081. border-style:solid;
  8082. border-color:rgba(215, 215, 215, 1);
  8083. border-left:0px;
  8084. border-top:0px;
  8085. border-right:0px;
  8086. border-radius:0px;
  8087. border-bottom-right-radius:0px;
  8088. border-bottom-left-radius:0px;
  8089. -moz-box-shadow:none;
  8090. -webkit-box-shadow:none;
  8091. box-shadow:none;
  8092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8093. font-weight:400;
  8094. font-style:normal;
  8095. font-size:14px;
  8096. }
  8097. #u68472 {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:857px;
  8101. top:600px;
  8102. width:85px;
  8103. height:40px;
  8104. display:flex;
  8105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8106. font-weight:400;
  8107. font-style:normal;
  8108. font-size:14px;
  8109. }
  8110. #u68472 .text {
  8111. position:absolute;
  8112. align-self:center;
  8113. padding:2px 2px 2px 2px;
  8114. box-sizing:border-box;
  8115. width:100%;
  8116. }
  8117. #u68472_text {
  8118. border-width:0px;
  8119. word-wrap:break-word;
  8120. text-transform:none;
  8121. }
  8122. #u68473_div {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:0px;
  8126. top:0px;
  8127. width:85px;
  8128. height:40px;
  8129. background:inherit;
  8130. background-color:rgba(255, 255, 255, 1);
  8131. border:none;
  8132. border-left:0px;
  8133. border-top:0px;
  8134. border-right:0px;
  8135. border-radius:0px;
  8136. border-bottom-right-radius:0px;
  8137. border-bottom-left-radius:0px;
  8138. -moz-box-shadow:none;
  8139. -webkit-box-shadow:none;
  8140. box-shadow:none;
  8141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8142. font-weight:400;
  8143. font-style:normal;
  8144. font-size:14px;
  8145. }
  8146. #u68473 {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:857px;
  8150. top:640px;
  8151. width:85px;
  8152. height:40px;
  8153. display:flex;
  8154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8155. font-weight:400;
  8156. font-style:normal;
  8157. font-size:14px;
  8158. }
  8159. #u68473 .text {
  8160. position:absolute;
  8161. align-self:center;
  8162. padding:2px 2px 2px 2px;
  8163. box-sizing:border-box;
  8164. width:100%;
  8165. }
  8166. #u68473_text {
  8167. border-width:0px;
  8168. word-wrap:break-word;
  8169. text-transform:none;
  8170. }
  8171. #u68474 {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:0px;
  8177. height:0px;
  8178. }
  8179. #u68475_div {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:0px;
  8183. top:0px;
  8184. width:100px;
  8185. height:100px;
  8186. background:inherit;
  8187. background-color:rgba(255, 255, 255, 1);
  8188. box-sizing:border-box;
  8189. border-width:1px;
  8190. border-style:solid;
  8191. border-color:rgba(242, 242, 242, 1);
  8192. border-radius:4px;
  8193. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8194. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8195. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8197. font-weight:400;
  8198. font-style:normal;
  8199. font-size:14px;
  8200. text-align:left;
  8201. }
  8202. #u68475 {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:377px;
  8206. top:590px;
  8207. width:100px;
  8208. height:100px;
  8209. display:flex;
  8210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8211. font-weight:400;
  8212. font-style:normal;
  8213. font-size:14px;
  8214. text-align:left;
  8215. }
  8216. #u68475 .text {
  8217. position:absolute;
  8218. align-self:center;
  8219. padding:2px 2px 2px 2px;
  8220. box-sizing:border-box;
  8221. width:100%;
  8222. }
  8223. #u68475_text {
  8224. border-width:0px;
  8225. word-wrap:break-word;
  8226. text-transform:none;
  8227. visibility:hidden;
  8228. }
  8229. #u68476_div {
  8230. border-width:0px;
  8231. position:absolute;
  8232. left:0px;
  8233. top:0px;
  8234. width:85px;
  8235. height:40px;
  8236. background:inherit;
  8237. background-color:rgba(255, 255, 255, 1);
  8238. box-sizing:border-box;
  8239. border-width:1px;
  8240. border-style:solid;
  8241. border-color:rgba(215, 215, 215, 1);
  8242. border-left:0px;
  8243. border-top:0px;
  8244. border-right:0px;
  8245. border-radius:0px;
  8246. border-bottom-right-radius:0px;
  8247. border-bottom-left-radius:0px;
  8248. -moz-box-shadow:none;
  8249. -webkit-box-shadow:none;
  8250. box-shadow:none;
  8251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8252. font-weight:400;
  8253. font-style:normal;
  8254. font-size:14px;
  8255. }
  8256. #u68476 {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:385px;
  8260. top:600px;
  8261. width:85px;
  8262. height:40px;
  8263. display:flex;
  8264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8265. font-weight:400;
  8266. font-style:normal;
  8267. font-size:14px;
  8268. }
  8269. #u68476 .text {
  8270. position:absolute;
  8271. align-self:center;
  8272. padding:2px 2px 2px 2px;
  8273. box-sizing:border-box;
  8274. width:100%;
  8275. }
  8276. #u68476_text {
  8277. border-width:0px;
  8278. word-wrap:break-word;
  8279. text-transform:none;
  8280. }
  8281. #u68477_div {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:85px;
  8287. height:40px;
  8288. background:inherit;
  8289. background-color:rgba(255, 255, 255, 1);
  8290. border:none;
  8291. border-left:0px;
  8292. border-top:0px;
  8293. border-right:0px;
  8294. border-radius:0px;
  8295. border-bottom-right-radius:0px;
  8296. border-bottom-left-radius:0px;
  8297. -moz-box-shadow:none;
  8298. -webkit-box-shadow:none;
  8299. box-shadow:none;
  8300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8301. font-weight:400;
  8302. font-style:normal;
  8303. font-size:14px;
  8304. }
  8305. #u68477 {
  8306. border-width:0px;
  8307. position:absolute;
  8308. left:385px;
  8309. top:640px;
  8310. width:85px;
  8311. height:40px;
  8312. display:flex;
  8313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8314. font-weight:400;
  8315. font-style:normal;
  8316. font-size:14px;
  8317. }
  8318. #u68477 .text {
  8319. position:absolute;
  8320. align-self:center;
  8321. padding:2px 2px 2px 2px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u68477_text {
  8326. border-width:0px;
  8327. word-wrap:break-word;
  8328. text-transform:none;
  8329. }
  8330. #u68478 {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:0px;
  8336. height:0px;
  8337. }
  8338. #u68479_div {
  8339. border-width:0px;
  8340. position:absolute;
  8341. left:0px;
  8342. top:0px;
  8343. width:100px;
  8344. height:100px;
  8345. background:inherit;
  8346. background-color:rgba(255, 255, 255, 1);
  8347. box-sizing:border-box;
  8348. border-width:1px;
  8349. border-style:solid;
  8350. border-color:rgba(242, 242, 242, 1);
  8351. border-radius:4px;
  8352. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8353. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8354. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8356. font-weight:400;
  8357. font-style:normal;
  8358. font-size:14px;
  8359. text-align:left;
  8360. }
  8361. #u68479 {
  8362. border-width:0px;
  8363. position:absolute;
  8364. left:512px;
  8365. top:590px;
  8366. width:100px;
  8367. height:100px;
  8368. display:flex;
  8369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8370. font-weight:400;
  8371. font-style:normal;
  8372. font-size:14px;
  8373. text-align:left;
  8374. }
  8375. #u68479 .text {
  8376. position:absolute;
  8377. align-self:center;
  8378. padding:2px 2px 2px 2px;
  8379. box-sizing:border-box;
  8380. width:100%;
  8381. }
  8382. #u68479_text {
  8383. border-width:0px;
  8384. word-wrap:break-word;
  8385. text-transform:none;
  8386. visibility:hidden;
  8387. }
  8388. #u68480_div {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:0px;
  8392. top:0px;
  8393. width:85px;
  8394. height:40px;
  8395. background:inherit;
  8396. background-color:rgba(255, 255, 255, 1);
  8397. box-sizing:border-box;
  8398. border-width:1px;
  8399. border-style:solid;
  8400. border-color:rgba(215, 215, 215, 1);
  8401. border-left:0px;
  8402. border-top:0px;
  8403. border-right:0px;
  8404. border-radius:0px;
  8405. border-bottom-right-radius:0px;
  8406. border-bottom-left-radius:0px;
  8407. -moz-box-shadow:none;
  8408. -webkit-box-shadow:none;
  8409. box-shadow:none;
  8410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8411. font-weight:400;
  8412. font-style:normal;
  8413. font-size:14px;
  8414. }
  8415. #u68480 {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:520px;
  8419. top:600px;
  8420. width:85px;
  8421. height:40px;
  8422. display:flex;
  8423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8424. font-weight:400;
  8425. font-style:normal;
  8426. font-size:14px;
  8427. }
  8428. #u68480 .text {
  8429. position:absolute;
  8430. align-self:center;
  8431. padding:2px 2px 2px 2px;
  8432. box-sizing:border-box;
  8433. width:100%;
  8434. }
  8435. #u68480_text {
  8436. border-width:0px;
  8437. word-wrap:break-word;
  8438. text-transform:none;
  8439. }
  8440. #u68481_div {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:85px;
  8446. height:40px;
  8447. background:inherit;
  8448. background-color:rgba(255, 255, 255, 1);
  8449. border:none;
  8450. border-left:0px;
  8451. border-top:0px;
  8452. border-right:0px;
  8453. border-radius:0px;
  8454. border-bottom-right-radius:0px;
  8455. border-bottom-left-radius:0px;
  8456. -moz-box-shadow:none;
  8457. -webkit-box-shadow:none;
  8458. box-shadow:none;
  8459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8460. font-weight:400;
  8461. font-style:normal;
  8462. font-size:14px;
  8463. }
  8464. #u68481 {
  8465. border-width:0px;
  8466. position:absolute;
  8467. left:520px;
  8468. top:640px;
  8469. width:85px;
  8470. height:40px;
  8471. display:flex;
  8472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8473. font-weight:400;
  8474. font-style:normal;
  8475. font-size:14px;
  8476. }
  8477. #u68481 .text {
  8478. position:absolute;
  8479. align-self:center;
  8480. padding:2px 2px 2px 2px;
  8481. box-sizing:border-box;
  8482. width:100%;
  8483. }
  8484. #u68481_text {
  8485. border-width:0px;
  8486. word-wrap:break-word;
  8487. text-transform:none;
  8488. }
  8489. #u68482_div {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:0px;
  8493. top:0px;
  8494. width:61px;
  8495. height:80px;
  8496. background:inherit;
  8497. background-color:rgba(255, 255, 255, 0);
  8498. border:none;
  8499. border-left:0px;
  8500. border-right:0px;
  8501. border-radius:0px;
  8502. border-top-left-radius:0px;
  8503. border-top-right-radius:0px;
  8504. border-bottom-right-radius:0px;
  8505. border-bottom-left-radius:0px;
  8506. -moz-box-shadow:none;
  8507. -webkit-box-shadow:none;
  8508. box-shadow:none;
  8509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8510. font-weight:400;
  8511. font-style:normal;
  8512. font-size:12px;
  8513. line-height:40px;
  8514. }
  8515. #u68482 {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:1084px;
  8519. top:510px;
  8520. width:61px;
  8521. height:80px;
  8522. display:flex;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:12px;
  8527. line-height:40px;
  8528. }
  8529. #u68482 .text {
  8530. position:absolute;
  8531. align-self:flex-start;
  8532. padding:0px 0px 0px 0px;
  8533. box-sizing:border-box;
  8534. width:100%;
  8535. }
  8536. #u68482_text {
  8537. border-width:0px;
  8538. white-space:nowrap;
  8539. text-transform:none;
  8540. }
  8541. #u68483 {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:0px;
  8547. height:0px;
  8548. }
  8549. #u68484_div {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:0px;
  8553. top:0px;
  8554. width:100px;
  8555. height:100px;
  8556. background:inherit;
  8557. background-color:rgba(255, 255, 255, 1);
  8558. box-sizing:border-box;
  8559. border-width:1px;
  8560. border-style:solid;
  8561. border-color:rgba(242, 242, 242, 1);
  8562. border-radius:4px;
  8563. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8564. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8565. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8567. font-weight:400;
  8568. font-style:normal;
  8569. font-size:14px;
  8570. text-align:left;
  8571. }
  8572. #u68484 {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:1084px;
  8576. top:590px;
  8577. width:100px;
  8578. height:100px;
  8579. display:flex;
  8580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8581. font-weight:400;
  8582. font-style:normal;
  8583. font-size:14px;
  8584. text-align:left;
  8585. }
  8586. #u68484 .text {
  8587. position:absolute;
  8588. align-self:center;
  8589. padding:2px 2px 2px 2px;
  8590. box-sizing:border-box;
  8591. width:100%;
  8592. }
  8593. #u68484_text {
  8594. border-width:0px;
  8595. word-wrap:break-word;
  8596. text-transform:none;
  8597. visibility:hidden;
  8598. }
  8599. #u68485_div {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:0px;
  8603. top:0px;
  8604. width:85px;
  8605. height:40px;
  8606. background:inherit;
  8607. background-color:rgba(255, 255, 255, 1);
  8608. box-sizing:border-box;
  8609. border-width:1px;
  8610. border-style:solid;
  8611. border-color:rgba(215, 215, 215, 1);
  8612. border-left:0px;
  8613. border-top:0px;
  8614. border-right:0px;
  8615. border-radius:0px;
  8616. border-bottom-right-radius:0px;
  8617. border-bottom-left-radius:0px;
  8618. -moz-box-shadow:none;
  8619. -webkit-box-shadow:none;
  8620. box-shadow:none;
  8621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8622. font-weight:400;
  8623. font-style:normal;
  8624. font-size:14px;
  8625. }
  8626. #u68485 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:1092px;
  8630. top:600px;
  8631. width:85px;
  8632. height:40px;
  8633. display:flex;
  8634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:14px;
  8638. }
  8639. #u68485 .text {
  8640. position:absolute;
  8641. align-self:center;
  8642. padding:2px 2px 2px 2px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u68485_text {
  8647. border-width:0px;
  8648. word-wrap:break-word;
  8649. text-transform:none;
  8650. }
  8651. #u68486_div {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:85px;
  8657. height:40px;
  8658. background:inherit;
  8659. background-color:rgba(255, 255, 255, 1);
  8660. border:none;
  8661. border-left:0px;
  8662. border-top:0px;
  8663. border-right:0px;
  8664. border-radius:0px;
  8665. border-bottom-right-radius:0px;
  8666. border-bottom-left-radius:0px;
  8667. -moz-box-shadow:none;
  8668. -webkit-box-shadow:none;
  8669. box-shadow:none;
  8670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8671. font-weight:400;
  8672. font-style:normal;
  8673. font-size:14px;
  8674. }
  8675. #u68486 {
  8676. border-width:0px;
  8677. position:absolute;
  8678. left:1092px;
  8679. top:640px;
  8680. width:85px;
  8681. height:40px;
  8682. display:flex;
  8683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:14px;
  8687. }
  8688. #u68486 .text {
  8689. position:absolute;
  8690. align-self:center;
  8691. padding:2px 2px 2px 2px;
  8692. box-sizing:border-box;
  8693. width:100%;
  8694. }
  8695. #u68486_text {
  8696. border-width:0px;
  8697. word-wrap:break-word;
  8698. text-transform:none;
  8699. }
  8700. #u68487_div {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:0px;
  8704. top:0px;
  8705. width:61px;
  8706. height:80px;
  8707. background:inherit;
  8708. background-color:rgba(255, 255, 255, 0);
  8709. border:none;
  8710. border-left:0px;
  8711. border-right:0px;
  8712. border-radius:0px;
  8713. border-top-left-radius:0px;
  8714. border-top-right-radius:0px;
  8715. border-bottom-right-radius:0px;
  8716. border-bottom-left-radius:0px;
  8717. -moz-box-shadow:none;
  8718. -webkit-box-shadow:none;
  8719. box-shadow:none;
  8720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8721. font-weight:400;
  8722. font-style:normal;
  8723. font-size:12px;
  8724. line-height:40px;
  8725. }
  8726. #u68487 {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:758px;
  8730. top:510px;
  8731. width:61px;
  8732. height:80px;
  8733. display:flex;
  8734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:12px;
  8738. line-height:40px;
  8739. }
  8740. #u68487 .text {
  8741. position:absolute;
  8742. align-self:flex-start;
  8743. padding:0px 0px 0px 0px;
  8744. box-sizing:border-box;
  8745. width:100%;
  8746. }
  8747. #u68487_text {
  8748. border-width:0px;
  8749. white-space:nowrap;
  8750. text-transform:none;
  8751. }
  8752. #u68488 {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:0px;
  8756. top:0px;
  8757. width:0px;
  8758. height:0px;
  8759. }
  8760. #u68489_div {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:100px;
  8766. height:60px;
  8767. background:inherit;
  8768. background-color:rgba(255, 255, 255, 1);
  8769. box-sizing:border-box;
  8770. border-width:1px;
  8771. border-style:solid;
  8772. border-color:rgba(242, 242, 242, 1);
  8773. border-radius:4px;
  8774. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8775. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8776. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:14px;
  8781. text-align:left;
  8782. }
  8783. #u68489 {
  8784. border-width:0px;
  8785. position:absolute;
  8786. left:649px;
  8787. top:587px;
  8788. width:100px;
  8789. height:60px;
  8790. display:flex;
  8791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8792. font-weight:400;
  8793. font-style:normal;
  8794. font-size:14px;
  8795. text-align:left;
  8796. }
  8797. #u68489 .text {
  8798. position:absolute;
  8799. align-self:center;
  8800. padding:2px 2px 2px 2px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u68489_text {
  8805. border-width:0px;
  8806. word-wrap:break-word;
  8807. text-transform:none;
  8808. visibility:hidden;
  8809. }
  8810. #u68490_div {
  8811. border-width:0px;
  8812. position:absolute;
  8813. left:0px;
  8814. top:0px;
  8815. width:85px;
  8816. height:40px;
  8817. background:inherit;
  8818. background-color:rgba(255, 255, 255, 1);
  8819. border:none;
  8820. border-left:0px;
  8821. border-top:0px;
  8822. border-right:0px;
  8823. border-radius:0px;
  8824. border-bottom-right-radius:0px;
  8825. border-bottom-left-radius:0px;
  8826. -moz-box-shadow:none;
  8827. -webkit-box-shadow:none;
  8828. box-shadow:none;
  8829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8830. font-weight:400;
  8831. font-style:normal;
  8832. font-size:14px;
  8833. }
  8834. #u68490 {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:657px;
  8838. top:597px;
  8839. width:85px;
  8840. height:40px;
  8841. display:flex;
  8842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8843. font-weight:400;
  8844. font-style:normal;
  8845. font-size:14px;
  8846. }
  8847. #u68490 .text {
  8848. position:absolute;
  8849. align-self:center;
  8850. padding:2px 2px 2px 2px;
  8851. box-sizing:border-box;
  8852. width:100%;
  8853. }
  8854. #u68490_text {
  8855. border-width:0px;
  8856. word-wrap:break-word;
  8857. text-transform:none;
  8858. }
  8859. #u68491 {
  8860. border-width:0px;
  8861. position:absolute;
  8862. left:0px;
  8863. top:0px;
  8864. width:0px;
  8865. height:0px;
  8866. }
  8867. #u68492_div {
  8868. border-width:0px;
  8869. position:absolute;
  8870. left:0px;
  8871. top:0px;
  8872. width:200px;
  8873. height:1180px;
  8874. background:inherit;
  8875. background-color:rgba(255, 255, 255, 1);
  8876. border:none;
  8877. border-radius:0px;
  8878. -moz-box-shadow:none;
  8879. -webkit-box-shadow:none;
  8880. box-shadow:none;
  8881. }
  8882. #u68492 {
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:122px;
  8886. top:50px;
  8887. width:200px;
  8888. height:1180px;
  8889. display:flex;
  8890. }
  8891. #u68492 .text {
  8892. position:absolute;
  8893. align-self:center;
  8894. padding:2px 2px 2px 2px;
  8895. box-sizing:border-box;
  8896. width:100%;
  8897. }
  8898. #u68492_text {
  8899. border-width:0px;
  8900. word-wrap:break-word;
  8901. text-transform:none;
  8902. visibility:hidden;
  8903. }
  8904. #u68493_div {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:200px;
  8910. height:60px;
  8911. background:inherit;
  8912. background-color:rgba(224, 231, 247, 1);
  8913. border:none;
  8914. border-radius:0px;
  8915. -moz-box-shadow:none;
  8916. -webkit-box-shadow:none;
  8917. box-shadow:none;
  8918. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8919. font-weight:500;
  8920. font-style:normal;
  8921. font-size:18px;
  8922. }
  8923. #u68493 {
  8924. border-width:0px;
  8925. position:absolute;
  8926. left:122px;
  8927. top:50px;
  8928. width:200px;
  8929. height:60px;
  8930. display:flex;
  8931. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8932. font-weight:500;
  8933. font-style:normal;
  8934. font-size:18px;
  8935. }
  8936. #u68493 .text {
  8937. position:absolute;
  8938. align-self:center;
  8939. padding:0px 0px 0px 20px;
  8940. box-sizing:border-box;
  8941. width:100%;
  8942. }
  8943. #u68493_text {
  8944. border-width:0px;
  8945. word-wrap:break-word;
  8946. text-transform:none;
  8947. }
  8948. #u68494_div {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:65px;
  8954. height:22px;
  8955. background:inherit;
  8956. background-color:rgba(255, 255, 255, 0);
  8957. border:none;
  8958. border-radius:0px;
  8959. -moz-box-shadow:none;
  8960. -webkit-box-shadow:none;
  8961. box-shadow:none;
  8962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8963. font-weight:400;
  8964. font-style:normal;
  8965. font-size:16px;
  8966. }
  8967. #u68494 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:149px;
  8971. top:161px;
  8972. width:65px;
  8973. height:22px;
  8974. display:flex;
  8975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8976. font-weight:400;
  8977. font-style:normal;
  8978. font-size:16px;
  8979. }
  8980. #u68494 .text {
  8981. position:absolute;
  8982. align-self:flex-start;
  8983. padding:0px 0px 0px 0px;
  8984. box-sizing:border-box;
  8985. width:100%;
  8986. }
  8987. #u68494_text {
  8988. border-width:0px;
  8989. white-space:nowrap;
  8990. text-transform:none;
  8991. }
  8992. #u68495_div {
  8993. border-width:0px;
  8994. position:absolute;
  8995. left:0px;
  8996. top:0px;
  8997. width:65px;
  8998. height:22px;
  8999. background:inherit;
  9000. background-color:rgba(255, 255, 255, 0);
  9001. border:none;
  9002. border-radius:0px;
  9003. -moz-box-shadow:none;
  9004. -webkit-box-shadow:none;
  9005. box-shadow:none;
  9006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9007. font-weight:400;
  9008. font-style:normal;
  9009. font-size:16px;
  9010. color:#1890FF;
  9011. }
  9012. #u68495 {
  9013. border-width:0px;
  9014. position:absolute;
  9015. left:149px;
  9016. top:203px;
  9017. width:65px;
  9018. height:22px;
  9019. display:flex;
  9020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9021. font-weight:400;
  9022. font-style:normal;
  9023. font-size:16px;
  9024. color:#1890FF;
  9025. }
  9026. #u68495 .text {
  9027. position:absolute;
  9028. align-self:flex-start;
  9029. padding:0px 0px 0px 0px;
  9030. box-sizing:border-box;
  9031. width:100%;
  9032. }
  9033. #u68495_text {
  9034. border-width:0px;
  9035. white-space:nowrap;
  9036. text-transform:none;
  9037. }
  9038. #u68496_div {
  9039. border-width:0px;
  9040. position:absolute;
  9041. left:0px;
  9042. top:0px;
  9043. width:65px;
  9044. height:22px;
  9045. background:inherit;
  9046. background-color:rgba(255, 255, 255, 0);
  9047. border:none;
  9048. border-radius:0px;
  9049. -moz-box-shadow:none;
  9050. -webkit-box-shadow:none;
  9051. box-shadow:none;
  9052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9053. font-weight:400;
  9054. font-style:normal;
  9055. font-size:16px;
  9056. }
  9057. #u68496 {
  9058. border-width:0px;
  9059. position:absolute;
  9060. left:149px;
  9061. top:245px;
  9062. width:65px;
  9063. height:22px;
  9064. display:flex;
  9065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:16px;
  9069. }
  9070. #u68496 .text {
  9071. position:absolute;
  9072. align-self:flex-start;
  9073. padding:0px 0px 0px 0px;
  9074. box-sizing:border-box;
  9075. width:100%;
  9076. }
  9077. #u68496_text {
  9078. border-width:0px;
  9079. white-space:nowrap;
  9080. text-transform:none;
  9081. }
  9082. #u68497_div {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:65px;
  9088. height:22px;
  9089. background:inherit;
  9090. background-color:rgba(255, 255, 255, 0);
  9091. border:none;
  9092. border-radius:0px;
  9093. -moz-box-shadow:none;
  9094. -webkit-box-shadow:none;
  9095. box-shadow:none;
  9096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9097. font-weight:400;
  9098. font-style:normal;
  9099. font-size:16px;
  9100. }
  9101. #u68497 {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:149px;
  9105. top:287px;
  9106. width:65px;
  9107. height:22px;
  9108. display:flex;
  9109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9110. font-weight:400;
  9111. font-style:normal;
  9112. font-size:16px;
  9113. }
  9114. #u68497 .text {
  9115. position:absolute;
  9116. align-self:flex-start;
  9117. padding:0px 0px 0px 0px;
  9118. box-sizing:border-box;
  9119. width:100%;
  9120. }
  9121. #u68497_text {
  9122. border-width:0px;
  9123. white-space:nowrap;
  9124. text-transform:none;
  9125. }
  9126. #u68498_div {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:0px;
  9130. top:0px;
  9131. width:49px;
  9132. height:17px;
  9133. background:inherit;
  9134. background-color:rgba(255, 255, 255, 0);
  9135. border:none;
  9136. border-radius:0px;
  9137. -moz-box-shadow:none;
  9138. -webkit-box-shadow:none;
  9139. box-shadow:none;
  9140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9141. font-weight:400;
  9142. font-style:normal;
  9143. font-size:12px;
  9144. color:#AAAAAA;
  9145. }
  9146. #u68498 {
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:149px;
  9150. top:125px;
  9151. width:49px;
  9152. height:17px;
  9153. display:flex;
  9154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9155. font-weight:400;
  9156. font-style:normal;
  9157. font-size:12px;
  9158. color:#AAAAAA;
  9159. }
  9160. #u68498 .text {
  9161. position:absolute;
  9162. align-self:flex-start;
  9163. padding:0px 0px 0px 0px;
  9164. box-sizing:border-box;
  9165. width:100%;
  9166. }
  9167. #u68498_text {
  9168. border-width:0px;
  9169. white-space:nowrap;
  9170. text-transform:none;
  9171. }
  9172. #u68499_div {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:0px;
  9176. top:0px;
  9177. width:65px;
  9178. height:22px;
  9179. background:inherit;
  9180. background-color:rgba(255, 255, 255, 0);
  9181. border:none;
  9182. border-radius:0px;
  9183. -moz-box-shadow:none;
  9184. -webkit-box-shadow:none;
  9185. box-shadow:none;
  9186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9187. font-weight:400;
  9188. font-style:normal;
  9189. font-size:16px;
  9190. }
  9191. #u68499 {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:149px;
  9195. top:387px;
  9196. width:65px;
  9197. height:22px;
  9198. display:flex;
  9199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9200. font-weight:400;
  9201. font-style:normal;
  9202. font-size:16px;
  9203. }
  9204. #u68499 .text {
  9205. position:absolute;
  9206. align-self:flex-start;
  9207. padding:0px 0px 0px 0px;
  9208. box-sizing:border-box;
  9209. width:100%;
  9210. }
  9211. #u68499_text {
  9212. border-width:0px;
  9213. white-space:nowrap;
  9214. text-transform:none;
  9215. }
  9216. #u68500_div {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:0px;
  9220. top:0px;
  9221. width:49px;
  9222. height:17px;
  9223. background:inherit;
  9224. background-color:rgba(255, 255, 255, 0);
  9225. border:none;
  9226. border-radius:0px;
  9227. -moz-box-shadow:none;
  9228. -webkit-box-shadow:none;
  9229. box-shadow:none;
  9230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9231. font-weight:400;
  9232. font-style:normal;
  9233. font-size:12px;
  9234. color:#AAAAAA;
  9235. }
  9236. #u68500 {
  9237. border-width:0px;
  9238. position:absolute;
  9239. left:149px;
  9240. top:351px;
  9241. width:49px;
  9242. height:17px;
  9243. display:flex;
  9244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9245. font-weight:400;
  9246. font-style:normal;
  9247. font-size:12px;
  9248. color:#AAAAAA;
  9249. }
  9250. #u68500 .text {
  9251. position:absolute;
  9252. align-self:flex-start;
  9253. padding:0px 0px 0px 0px;
  9254. box-sizing:border-box;
  9255. width:100%;
  9256. }
  9257. #u68500_text {
  9258. border-width:0px;
  9259. white-space:nowrap;
  9260. text-transform:none;
  9261. }
  9262. #u68501_img {
  9263. border-width:0px;
  9264. position:absolute;
  9265. left:0px;
  9266. top:0px;
  9267. width:201px;
  9268. height:2px;
  9269. }
  9270. #u68501 {
  9271. border-width:0px;
  9272. position:absolute;
  9273. left:122px;
  9274. top:329px;
  9275. width:200px;
  9276. height:1px;
  9277. display:flex;
  9278. }
  9279. #u68501 .text {
  9280. position:absolute;
  9281. align-self:center;
  9282. padding:2px 2px 2px 2px;
  9283. box-sizing:border-box;
  9284. width:100%;
  9285. }
  9286. #u68501_text {
  9287. border-width:0px;
  9288. word-wrap:break-word;
  9289. text-transform:none;
  9290. visibility:hidden;
  9291. }
  9292. #u68502_div {
  9293. border-width:0px;
  9294. position:absolute;
  9295. left:0px;
  9296. top:0px;
  9297. width:65px;
  9298. height:22px;
  9299. background:inherit;
  9300. background-color:rgba(255, 255, 255, 0);
  9301. border:none;
  9302. border-radius:0px;
  9303. -moz-box-shadow:none;
  9304. -webkit-box-shadow:none;
  9305. box-shadow:none;
  9306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9307. font-weight:400;
  9308. font-style:normal;
  9309. font-size:16px;
  9310. }
  9311. #u68502 {
  9312. border-width:0px;
  9313. position:absolute;
  9314. left:149px;
  9315. top:484px;
  9316. width:65px;
  9317. height:22px;
  9318. display:flex;
  9319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9320. font-weight:400;
  9321. font-style:normal;
  9322. font-size:16px;
  9323. }
  9324. #u68502 .text {
  9325. position:absolute;
  9326. align-self:flex-start;
  9327. padding:0px 0px 0px 0px;
  9328. box-sizing:border-box;
  9329. width:100%;
  9330. }
  9331. #u68502_text {
  9332. border-width:0px;
  9333. white-space:nowrap;
  9334. text-transform:none;
  9335. }
  9336. #u68503_div {
  9337. border-width:0px;
  9338. position:absolute;
  9339. left:0px;
  9340. top:0px;
  9341. width:49px;
  9342. height:17px;
  9343. background:inherit;
  9344. background-color:rgba(255, 255, 255, 0);
  9345. border:none;
  9346. border-radius:0px;
  9347. -moz-box-shadow:none;
  9348. -webkit-box-shadow:none;
  9349. box-shadow:none;
  9350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9351. font-weight:400;
  9352. font-style:normal;
  9353. font-size:12px;
  9354. color:#AAAAAA;
  9355. }
  9356. #u68503 {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:149px;
  9360. top:448px;
  9361. width:49px;
  9362. height:17px;
  9363. display:flex;
  9364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9365. font-weight:400;
  9366. font-style:normal;
  9367. font-size:12px;
  9368. color:#AAAAAA;
  9369. }
  9370. #u68503 .text {
  9371. position:absolute;
  9372. align-self:flex-start;
  9373. padding:0px 0px 0px 0px;
  9374. box-sizing:border-box;
  9375. width:100%;
  9376. }
  9377. #u68503_text {
  9378. border-width:0px;
  9379. white-space:nowrap;
  9380. text-transform:none;
  9381. }
  9382. #u68504_img {
  9383. border-width:0px;
  9384. position:absolute;
  9385. left:0px;
  9386. top:0px;
  9387. width:201px;
  9388. height:2px;
  9389. }
  9390. #u68504 {
  9391. border-width:0px;
  9392. position:absolute;
  9393. left:122px;
  9394. top:426px;
  9395. width:200px;
  9396. height:1px;
  9397. display:flex;
  9398. }
  9399. #u68504 .text {
  9400. position:absolute;
  9401. align-self:center;
  9402. padding:2px 2px 2px 2px;
  9403. box-sizing:border-box;
  9404. width:100%;
  9405. }
  9406. #u68504_text {
  9407. border-width:0px;
  9408. word-wrap:break-word;
  9409. text-transform:none;
  9410. visibility:hidden;
  9411. }
  9412. #u68505_div {
  9413. border-width:0px;
  9414. position:absolute;
  9415. left:0px;
  9416. top:0px;
  9417. width:65px;
  9418. height:22px;
  9419. background:inherit;
  9420. background-color:rgba(255, 255, 255, 0);
  9421. border:none;
  9422. border-radius:0px;
  9423. -moz-box-shadow:none;
  9424. -webkit-box-shadow:none;
  9425. box-shadow:none;
  9426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9427. font-weight:400;
  9428. font-style:normal;
  9429. font-size:16px;
  9430. }
  9431. #u68505 {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:149px;
  9435. top:526px;
  9436. width:65px;
  9437. height:22px;
  9438. display:flex;
  9439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9440. font-weight:400;
  9441. font-style:normal;
  9442. font-size:16px;
  9443. }
  9444. #u68505 .text {
  9445. position:absolute;
  9446. align-self:flex-start;
  9447. padding:0px 0px 0px 0px;
  9448. box-sizing:border-box;
  9449. width:100%;
  9450. }
  9451. #u68505_text {
  9452. border-width:0px;
  9453. white-space:nowrap;
  9454. text-transform:none;
  9455. }
  9456. #u68506 {
  9457. border-width:0px;
  9458. position:absolute;
  9459. left:0px;
  9460. top:0px;
  9461. width:0px;
  9462. height:0px;
  9463. }
  9464. #u68507_div {
  9465. border-width:0px;
  9466. position:absolute;
  9467. left:0px;
  9468. top:0px;
  9469. width:160px;
  9470. height:30px;
  9471. background:inherit;
  9472. background-color:rgba(255, 255, 255, 1);
  9473. box-sizing:border-box;
  9474. border-width:1px;
  9475. border-style:solid;
  9476. border-color:rgba(215, 215, 215, 1);
  9477. border-radius:4px;
  9478. -moz-box-shadow:none;
  9479. -webkit-box-shadow:none;
  9480. box-shadow:none;
  9481. font-size:14px;
  9482. }
  9483. #u68507 {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:1206px;
  9487. top:166px;
  9488. width:160px;
  9489. height:30px;
  9490. display:flex;
  9491. font-size:14px;
  9492. }
  9493. #u68507 .text {
  9494. position:absolute;
  9495. align-self:center;
  9496. padding:2px 2px 2px 2px;
  9497. box-sizing:border-box;
  9498. width:100%;
  9499. }
  9500. #u68507_text {
  9501. border-width:0px;
  9502. word-wrap:break-word;
  9503. text-transform:none;
  9504. visibility:hidden;
  9505. }
  9506. #u68508_input {
  9507. position:absolute;
  9508. left:0px;
  9509. top:0px;
  9510. width:153px;
  9511. height:23px;
  9512. padding:2px 2px 2px 2px;
  9513. font-family:'ArialMT', 'Arial', sans-serif;
  9514. font-weight:400;
  9515. font-style:normal;
  9516. font-size:14px;
  9517. letter-spacing:normal;
  9518. color:#AAAAAA;
  9519. vertical-align:none;
  9520. text-align:left;
  9521. text-transform:none;
  9522. background-color:transparent;
  9523. border-color:transparent;
  9524. }
  9525. #u68508_input.disabled {
  9526. position:absolute;
  9527. left:0px;
  9528. top:0px;
  9529. width:153px;
  9530. height:23px;
  9531. padding:2px 2px 2px 2px;
  9532. font-family:'ArialMT', 'Arial', sans-serif;
  9533. font-weight:400;
  9534. font-style:normal;
  9535. font-size:14px;
  9536. letter-spacing:normal;
  9537. color:#AAAAAA;
  9538. vertical-align:none;
  9539. text-align:left;
  9540. text-transform:none;
  9541. background-color:transparent;
  9542. border-color:transparent;
  9543. }
  9544. #u68508_div {
  9545. border-width:0px;
  9546. position:absolute;
  9547. left:0px;
  9548. top:0px;
  9549. width:153px;
  9550. height:23px;
  9551. background:inherit;
  9552. background-color:rgba(255, 255, 255, 1);
  9553. border:none;
  9554. border-radius:0px;
  9555. -moz-box-shadow:none;
  9556. -webkit-box-shadow:none;
  9557. box-shadow:none;
  9558. font-size:14px;
  9559. color:#AAAAAA;
  9560. }
  9561. #u68508 {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:1211px;
  9565. top:168px;
  9566. width:153px;
  9567. height:23px;
  9568. display:flex;
  9569. font-size:14px;
  9570. color:#AAAAAA;
  9571. }
  9572. #u68508 .text {
  9573. position:absolute;
  9574. align-self:flex-start;
  9575. padding:2px 2px 2px 2px;
  9576. box-sizing:border-box;
  9577. width:100%;
  9578. }
  9579. #u68508_div.disabled {
  9580. border-width:0px;
  9581. position:absolute;
  9582. left:0px;
  9583. top:0px;
  9584. width:153px;
  9585. height:23px;
  9586. background:inherit;
  9587. background-color:rgba(240, 240, 240, 1);
  9588. border:none;
  9589. border-radius:0px;
  9590. -moz-box-shadow:none;
  9591. -webkit-box-shadow:none;
  9592. box-shadow:none;
  9593. font-size:14px;
  9594. color:#AAAAAA;
  9595. }
  9596. #u68508.disabled {
  9597. }
  9598. .u68508_input_option {
  9599. font-size:14px;
  9600. }