styles.css 198 KB

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