styles.css 240 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:342px;
  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. #u68030_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. #u68030 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u68030 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u68030_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u68031_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. #u68031 {
  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. #u68031 .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. #u68031_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u68032_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. #u68032 {
  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. #u68032 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u68032_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u68033 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u68034_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u68034 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u68034 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u68034_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u68035_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. #u68035 {
  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. #u68035 .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. #u68035_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u68036_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. #u68036 {
  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. #u68036 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u68036_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u68037 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u68038_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. #u68038 {
  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. #u68038 .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. #u68038_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u68039_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u68039 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u68039 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u68039_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u68040 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u68041_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. #u68041 {
  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. #u68041 .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. #u68041_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u68042_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u68042 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u68042 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u68042_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u68043 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u68044_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. #u68044 {
  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. #u68044 .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. #u68044_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u68045_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u68045 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u68045 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u68045_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u68046 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u68047_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. #u68047 {
  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. #u68047 .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. #u68047_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u68048_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u68048 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u68048 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u68048_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u68049 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u68050_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. #u68050 {
  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. #u68050 .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. #u68050_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u68051_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u68051 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u68051 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u68051_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u68052 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u68053_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. #u68053 {
  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. #u68053 .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. #u68053_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u68054_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u68054 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u68054 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u68054_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u68055 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u68056_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. #u68056 {
  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. #u68056 .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. #u68056_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u68057_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u68057 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u68057 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u68057_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u68058 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u68059_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. #u68059 {
  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. #u68059 .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. #u68059_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u68060_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u68060 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u68060 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u68060_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u68061 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u68062_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. #u68062 {
  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. #u68062 .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. #u68062_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u68063_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u68063 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u68063 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u68063_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u68064_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. #u68064 {
  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. #u68064 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u68064_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u68065_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u68065 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u68065 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u68065_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u68066_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. #u68066 {
  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. #u68066 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u68066_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u68067_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u68067 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u68067 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u68067_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u68068 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u68069_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. #u68069 {
  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. #u68069 .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. #u68069_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u68070_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u68070 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u68070 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u68070_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u68071 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u68072_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. #u68072 {
  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. #u68072 .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. #u68072_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u68073_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u68073 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u68073 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u68073_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u68074 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u68075_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. #u68075_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. #u68075_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. #u68075 {
  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. #u68075 .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. #u68075_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. #u68075.disabled {
  1428. }
  1429. .u68075_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u68076_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u68076 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u68076 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u68076_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u68077_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. #u68077 {
  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. #u68077 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u68077_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u68078_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u68078 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u68078 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u68078_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u68079 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:0px;
  1544. height:0px;
  1545. }
  1546. #u68080_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:1381px;
  1552. height:1153px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 1);
  1555. border:none;
  1556. border-radius:0px;
  1557. -moz-box-shadow:none;
  1558. -webkit-box-shadow:none;
  1559. box-shadow:none;
  1560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1561. font-weight:400;
  1562. font-style:normal;
  1563. font-size:12px;
  1564. color:#FFFFFF;
  1565. text-align:left;
  1566. }
  1567. #u68080 {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:-1944px;
  1571. top:449px;
  1572. width:1381px;
  1573. height:1153px;
  1574. display:flex;
  1575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1576. font-weight:400;
  1577. font-style:normal;
  1578. font-size:12px;
  1579. color:#FFFFFF;
  1580. text-align:left;
  1581. }
  1582. #u68080 .text {
  1583. position:absolute;
  1584. align-self:center;
  1585. padding:2px 2px 2px 50px;
  1586. box-sizing:border-box;
  1587. width:100%;
  1588. }
  1589. #u68080_text {
  1590. border-width:0px;
  1591. word-wrap:break-word;
  1592. text-transform:none;
  1593. visibility:hidden;
  1594. }
  1595. #u68081_div {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:55px;
  1601. height:50px;
  1602. background:inherit;
  1603. background-color:rgba(255, 255, 255, 0);
  1604. border:none;
  1605. border-left:0px;
  1606. border-top:0px;
  1607. border-right:0px;
  1608. border-radius:0px;
  1609. border-bottom-right-radius:0px;
  1610. border-bottom-left-radius:0px;
  1611. -moz-box-shadow:none;
  1612. -webkit-box-shadow:none;
  1613. box-shadow:none;
  1614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1615. font-weight:400;
  1616. font-style:normal;
  1617. font-size:18px;
  1618. }
  1619. #u68081 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:-1925px;
  1623. top:449px;
  1624. width:55px;
  1625. height:50px;
  1626. display:flex;
  1627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1628. font-weight:400;
  1629. font-style:normal;
  1630. font-size:18px;
  1631. }
  1632. #u68081 .text {
  1633. position:absolute;
  1634. align-self:center;
  1635. padding:0px 0px 0px 0px;
  1636. box-sizing:border-box;
  1637. width:100%;
  1638. }
  1639. #u68081_text {
  1640. border-width:0px;
  1641. white-space:nowrap;
  1642. text-transform:none;
  1643. }
  1644. #u68082 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:0px;
  1650. height:0px;
  1651. }
  1652. #u68083_div {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:0px;
  1656. top:0px;
  1657. width:1340px;
  1658. height:180px;
  1659. background:inherit;
  1660. background-color:rgba(255, 255, 255, 1);
  1661. box-sizing:border-box;
  1662. border-width:1px;
  1663. border-style:solid;
  1664. border-color:rgba(215, 215, 215, 1);
  1665. border-radius:0px;
  1666. -moz-box-shadow:none;
  1667. -webkit-box-shadow:none;
  1668. box-shadow:none;
  1669. }
  1670. #u68083 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:-1924px;
  1674. top:741px;
  1675. width:1340px;
  1676. height:180px;
  1677. display:flex;
  1678. }
  1679. #u68083 .text {
  1680. position:absolute;
  1681. align-self:center;
  1682. padding:2px 2px 2px 2px;
  1683. box-sizing:border-box;
  1684. width:100%;
  1685. }
  1686. #u68083_text {
  1687. border-width:0px;
  1688. word-wrap:break-word;
  1689. text-transform:none;
  1690. visibility:hidden;
  1691. }
  1692. #u68084_div {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:199px;
  1698. height:40px;
  1699. background:inherit;
  1700. background-color:rgba(255, 255, 255, 0);
  1701. border:none;
  1702. border-radius:0px;
  1703. -moz-box-shadow:none;
  1704. -webkit-box-shadow:none;
  1705. box-shadow:none;
  1706. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1707. font-weight:500;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. line-height:40px;
  1711. }
  1712. #u68084 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:-1711px;
  1716. top:763px;
  1717. width:199px;
  1718. height:40px;
  1719. display:flex;
  1720. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1721. font-weight:500;
  1722. font-style:normal;
  1723. font-size:18px;
  1724. line-height:40px;
  1725. }
  1726. #u68084 .text {
  1727. position:absolute;
  1728. align-self:flex-start;
  1729. padding:0px 0px 0px 0px;
  1730. box-sizing:border-box;
  1731. width:100%;
  1732. }
  1733. #u68084_text {
  1734. border-width:0px;
  1735. white-space:nowrap;
  1736. text-transform:none;
  1737. }
  1738. #u68085_div {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:60px;
  1744. height:30px;
  1745. background:inherit;
  1746. background-color:rgba(255, 255, 255, 0);
  1747. box-sizing:border-box;
  1748. border-width:1px;
  1749. border-style:solid;
  1750. border-color:rgba(41, 143, 255, 1);
  1751. border-radius:4px;
  1752. -moz-box-shadow:none;
  1753. -webkit-box-shadow:none;
  1754. box-shadow:none;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:12px;
  1759. color:#298FFF;
  1760. text-align:center;
  1761. }
  1762. #u68085 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:-659px;
  1766. top:758px;
  1767. width:60px;
  1768. height:30px;
  1769. display:flex;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:12px;
  1774. color:#298FFF;
  1775. text-align:center;
  1776. }
  1777. #u68085 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:5px 0px 5px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u68085_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. }
  1789. #u68086_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:160px;
  1795. height:145px;
  1796. }
  1797. #u68086 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:-1901px;
  1801. top:758px;
  1802. width:160px;
  1803. height:145px;
  1804. display:flex;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:24px;
  1809. color:rgba(170, 170, 170, 0.180392156862745);
  1810. }
  1811. #u68086 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 2px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u68086_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u68087_div {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:50px;
  1829. height:20px;
  1830. background:inherit;
  1831. background-color:rgba(170, 170, 170, 1);
  1832. border:none;
  1833. border-radius:29px;
  1834. -moz-box-shadow:none;
  1835. -webkit-box-shadow:none;
  1836. box-shadow:none;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:12px;
  1841. color:#FFFFFF;
  1842. text-align:center;
  1843. }
  1844. #u68087 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:-1504px;
  1848. top:773px;
  1849. width:50px;
  1850. height:20px;
  1851. display:flex;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:12px;
  1856. color:#FFFFFF;
  1857. text-align:center;
  1858. }
  1859. #u68087 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 0px 2px 0px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u68087_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. }
  1871. #u68088_div {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:60px;
  1877. height:30px;
  1878. background:inherit;
  1879. background-color:rgba(255, 255, 255, 0);
  1880. box-sizing:border-box;
  1881. border-width:1px;
  1882. border-style:solid;
  1883. border-color:rgba(24, 144, 255, 1);
  1884. border-radius:3px;
  1885. -moz-box-shadow:none;
  1886. -webkit-box-shadow:none;
  1887. box-shadow:none;
  1888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:12px;
  1892. color:#1890FF;
  1893. text-align:center;
  1894. }
  1895. #u68088 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:-729px;
  1899. top:758px;
  1900. width:60px;
  1901. height:30px;
  1902. display:flex;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:12px;
  1907. color:#1890FF;
  1908. text-align:center;
  1909. }
  1910. #u68088 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:5px 0px 5px 0px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u68088_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u68089_div {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:0px;
  1926. top:0px;
  1927. width:71px;
  1928. height:60px;
  1929. background:inherit;
  1930. background-color:rgba(255, 255, 255, 0);
  1931. border:none;
  1932. border-top:0px;
  1933. border-right:0px;
  1934. border-bottom:0px;
  1935. border-radius:0px;
  1936. border-top-left-radius:0px;
  1937. border-bottom-left-radius:0px;
  1938. -moz-box-shadow:none;
  1939. -webkit-box-shadow:none;
  1940. box-shadow:none;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:12px;
  1945. line-height:25px;
  1946. }
  1947. #u68089 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:-1711px;
  1951. top:813px;
  1952. width:71px;
  1953. height:60px;
  1954. display:flex;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:12px;
  1959. line-height:25px;
  1960. }
  1961. #u68089 .text {
  1962. position:absolute;
  1963. align-self:flex-start;
  1964. padding:5px 10px 5px 0px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u68089_text {
  1969. border-width:0px;
  1970. white-space:nowrap;
  1971. text-transform:none;
  1972. }
  1973. #u68090_div {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:203px;
  1979. height:60px;
  1980. background:inherit;
  1981. background-color:rgba(255, 255, 255, 0);
  1982. border:none;
  1983. border-top:0px;
  1984. border-right:0px;
  1985. border-bottom:0px;
  1986. border-radius:0px;
  1987. border-top-left-radius:0px;
  1988. border-bottom-left-radius:0px;
  1989. -moz-box-shadow:none;
  1990. -webkit-box-shadow:none;
  1991. box-shadow:none;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:12px;
  1996. line-height:25px;
  1997. }
  1998. #u68090 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:-1630px;
  2002. top:813px;
  2003. width:203px;
  2004. height:60px;
  2005. display:flex;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:12px;
  2010. line-height:25px;
  2011. }
  2012. #u68090 .text {
  2013. position:absolute;
  2014. align-self:flex-start;
  2015. padding:5px 10px 5px 0px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u68090_text {
  2020. border-width:0px;
  2021. white-space:nowrap;
  2022. text-transform:none;
  2023. }
  2024. #u68091_div {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:60px;
  2030. height:30px;
  2031. background:inherit;
  2032. background-color:rgba(255, 255, 255, 0);
  2033. box-sizing:border-box;
  2034. border-width:1px;
  2035. border-style:solid;
  2036. border-color:rgba(24, 144, 255, 1);
  2037. border-radius:3px;
  2038. -moz-box-shadow:none;
  2039. -webkit-box-shadow:none;
  2040. box-shadow:none;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:12px;
  2045. color:#1890FF;
  2046. text-align:center;
  2047. }
  2048. #u68091 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:-799px;
  2052. top:758px;
  2053. width:60px;
  2054. height:30px;
  2055. display:flex;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:12px;
  2060. color:#1890FF;
  2061. text-align:center;
  2062. }
  2063. #u68091 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:5px 0px 5px 0px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u68091_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. }
  2075. #u68092_div {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:61px;
  2081. height:30px;
  2082. background:inherit;
  2083. background-color:rgba(255, 255, 255, 0);
  2084. border:none;
  2085. border-top:0px;
  2086. border-right:0px;
  2087. border-bottom:0px;
  2088. border-radius:0px;
  2089. border-top-left-radius:0px;
  2090. border-bottom-left-radius:0px;
  2091. -moz-box-shadow:none;
  2092. -webkit-box-shadow:none;
  2093. box-shadow:none;
  2094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2095. font-weight:400;
  2096. font-style:normal;
  2097. font-size:14px;
  2098. }
  2099. #u68092 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:-917px;
  2103. top:824px;
  2104. width:61px;
  2105. height:30px;
  2106. display:flex;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:14px;
  2111. }
  2112. #u68092 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:5px 10px 5px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u68092_text {
  2120. border-width:0px;
  2121. white-space:nowrap;
  2122. text-transform:none;
  2123. }
  2124. #u68093_div {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:61px;
  2130. height:30px;
  2131. background:inherit;
  2132. background-color:rgba(255, 255, 255, 0);
  2133. border:none;
  2134. border-top:0px;
  2135. border-right:0px;
  2136. border-bottom:0px;
  2137. border-radius:0px;
  2138. border-top-left-radius:0px;
  2139. border-bottom-left-radius:0px;
  2140. -moz-box-shadow:none;
  2141. -webkit-box-shadow:none;
  2142. box-shadow:none;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. font-size:14px;
  2147. }
  2148. #u68093 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:-836px;
  2152. top:824px;
  2153. width:61px;
  2154. height:30px;
  2155. display:flex;
  2156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:14px;
  2160. }
  2161. #u68093 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:5px 10px 5px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u68093_text {
  2169. border-width:0px;
  2170. white-space:nowrap;
  2171. text-transform:none;
  2172. }
  2173. #u68094_div {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:61px;
  2179. height:30px;
  2180. background:inherit;
  2181. background-color:rgba(255, 255, 255, 0);
  2182. border:none;
  2183. border-top:0px;
  2184. border-right:0px;
  2185. border-bottom:0px;
  2186. border-radius:0px;
  2187. border-top-left-radius:0px;
  2188. border-bottom-left-radius:0px;
  2189. -moz-box-shadow:none;
  2190. -webkit-box-shadow:none;
  2191. box-shadow:none;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:14px;
  2196. }
  2197. #u68094 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:-755px;
  2201. top:824px;
  2202. width:61px;
  2203. height:30px;
  2204. display:flex;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:14px;
  2209. }
  2210. #u68094 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:5px 10px 5px 0px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u68094_text {
  2218. border-width:0px;
  2219. white-space:nowrap;
  2220. text-transform:none;
  2221. }
  2222. #u68095 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:0px;
  2228. height:0px;
  2229. }
  2230. #u68096_div {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:1340px;
  2236. height:180px;
  2237. background:inherit;
  2238. background-color:rgba(255, 255, 255, 1);
  2239. box-sizing:border-box;
  2240. border-width:1px;
  2241. border-style:solid;
  2242. border-color:rgba(215, 215, 215, 1);
  2243. border-radius:0px;
  2244. -moz-box-shadow:none;
  2245. -webkit-box-shadow:none;
  2246. box-shadow:none;
  2247. }
  2248. #u68096 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:-1924px;
  2252. top:551px;
  2253. width:1340px;
  2254. height:180px;
  2255. display:flex;
  2256. }
  2257. #u68096 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 2px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u68096_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. visibility:hidden;
  2269. }
  2270. #u68097_div {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:199px;
  2276. height:40px;
  2277. background:inherit;
  2278. background-color:rgba(255, 255, 255, 0);
  2279. border:none;
  2280. border-radius:0px;
  2281. -moz-box-shadow:none;
  2282. -webkit-box-shadow:none;
  2283. box-shadow:none;
  2284. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2285. font-weight:500;
  2286. font-style:normal;
  2287. font-size:18px;
  2288. line-height:40px;
  2289. }
  2290. #u68097 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:-1711px;
  2294. top:573px;
  2295. width:199px;
  2296. height:40px;
  2297. display:flex;
  2298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2299. font-weight:500;
  2300. font-style:normal;
  2301. font-size:18px;
  2302. line-height:40px;
  2303. }
  2304. #u68097 .text {
  2305. position:absolute;
  2306. align-self:flex-start;
  2307. padding:0px 0px 0px 0px;
  2308. box-sizing:border-box;
  2309. width:100%;
  2310. }
  2311. #u68097_text {
  2312. border-width:0px;
  2313. white-space:nowrap;
  2314. text-transform:none;
  2315. }
  2316. #u68098_div {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:71px;
  2322. height:60px;
  2323. background:inherit;
  2324. background-color:rgba(255, 255, 255, 0);
  2325. border:none;
  2326. border-top:0px;
  2327. border-right:0px;
  2328. border-bottom:0px;
  2329. border-radius:0px;
  2330. border-top-left-radius:0px;
  2331. border-bottom-left-radius:0px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:12px;
  2339. line-height:25px;
  2340. }
  2341. #u68098 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:-1711px;
  2345. top:633px;
  2346. width:71px;
  2347. height:60px;
  2348. display:flex;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:12px;
  2353. line-height:25px;
  2354. }
  2355. #u68098 .text {
  2356. position:absolute;
  2357. align-self:flex-start;
  2358. padding:5px 10px 5px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u68098_text {
  2363. border-width:0px;
  2364. white-space:nowrap;
  2365. text-transform:none;
  2366. }
  2367. #u68099_div {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:203px;
  2373. height:60px;
  2374. background:inherit;
  2375. background-color:rgba(255, 255, 255, 0);
  2376. border:none;
  2377. border-top:0px;
  2378. border-right:0px;
  2379. border-bottom:0px;
  2380. border-radius:0px;
  2381. border-top-left-radius:0px;
  2382. border-bottom-left-radius:0px;
  2383. -moz-box-shadow:none;
  2384. -webkit-box-shadow:none;
  2385. box-shadow:none;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:12px;
  2390. line-height:25px;
  2391. }
  2392. #u68099 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:-1630px;
  2396. top:633px;
  2397. width:203px;
  2398. height:60px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:12px;
  2404. line-height:25px;
  2405. }
  2406. #u68099 .text {
  2407. position:absolute;
  2408. align-self:flex-start;
  2409. padding:5px 10px 5px 0px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u68099_text {
  2414. border-width:0px;
  2415. white-space:nowrap;
  2416. text-transform:none;
  2417. }
  2418. #u68100_div {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:60px;
  2424. height:30px;
  2425. background:inherit;
  2426. background-color:rgba(255, 255, 255, 0);
  2427. box-sizing:border-box;
  2428. border-width:1px;
  2429. border-style:solid;
  2430. border-color:rgba(24, 144, 255, 1);
  2431. border-radius:3px;
  2432. -moz-box-shadow:none;
  2433. -webkit-box-shadow:none;
  2434. box-shadow:none;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:12px;
  2439. color:#1890FF;
  2440. text-align:center;
  2441. }
  2442. #u68100 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:-659px;
  2446. top:570px;
  2447. width:60px;
  2448. height:30px;
  2449. display:flex;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:12px;
  2454. color:#1890FF;
  2455. text-align:center;
  2456. }
  2457. #u68100 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:5px 0px 5px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u68100_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. }
  2469. #u68101_div {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:60px;
  2475. height:30px;
  2476. background:inherit;
  2477. background-color:rgba(255, 255, 255, 0);
  2478. box-sizing:border-box;
  2479. border-width:1px;
  2480. border-style:solid;
  2481. border-color:rgba(24, 144, 255, 1);
  2482. border-radius:3px;
  2483. -moz-box-shadow:none;
  2484. -webkit-box-shadow:none;
  2485. box-shadow:none;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:12px;
  2490. color:#1890FF;
  2491. text-align:center;
  2492. }
  2493. #u68101 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:-729px;
  2497. top:570px;
  2498. width:60px;
  2499. height:30px;
  2500. display:flex;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. color:#1890FF;
  2506. text-align:center;
  2507. }
  2508. #u68101 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:5px 0px 5px 0px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u68101_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. }
  2520. #u68102_img {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:160px;
  2526. height:145px;
  2527. }
  2528. #u68102 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:-1901px;
  2532. top:568px;
  2533. width:160px;
  2534. height:145px;
  2535. display:flex;
  2536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:24px;
  2540. color:rgba(170, 170, 170, 0.180392156862745);
  2541. }
  2542. #u68102 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 2px 2px 2px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u68102_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. }
  2554. #u68103_div {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:50px;
  2560. height:20px;
  2561. background:inherit;
  2562. background-color:rgba(41, 143, 255, 1);
  2563. border:none;
  2564. border-radius:29px;
  2565. -moz-box-shadow:none;
  2566. -webkit-box-shadow:none;
  2567. box-shadow:none;
  2568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:12px;
  2572. color:#FFFFFF;
  2573. text-align:center;
  2574. }
  2575. #u68103 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:-1498px;
  2579. top:583px;
  2580. width:50px;
  2581. height:20px;
  2582. display:flex;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:12px;
  2587. color:#FFFFFF;
  2588. text-align:center;
  2589. }
  2590. #u68103 .text {
  2591. position:absolute;
  2592. align-self:center;
  2593. padding:2px 0px 2px 0px;
  2594. box-sizing:border-box;
  2595. width:100%;
  2596. }
  2597. #u68103_text {
  2598. border-width:0px;
  2599. word-wrap:break-word;
  2600. text-transform:none;
  2601. }
  2602. #u68104_div {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:0px;
  2606. top:0px;
  2607. width:61px;
  2608. height:30px;
  2609. background:inherit;
  2610. background-color:rgba(255, 255, 255, 0);
  2611. border:none;
  2612. border-top:0px;
  2613. border-right:0px;
  2614. border-bottom:0px;
  2615. border-radius:0px;
  2616. border-top-left-radius:0px;
  2617. border-bottom-left-radius:0px;
  2618. -moz-box-shadow:none;
  2619. -webkit-box-shadow:none;
  2620. box-shadow:none;
  2621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. font-size:14px;
  2625. }
  2626. #u68104 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:-917px;
  2630. top:648px;
  2631. width:61px;
  2632. height:30px;
  2633. display:flex;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:14px;
  2638. }
  2639. #u68104 .text {
  2640. position:absolute;
  2641. align-self:center;
  2642. padding:5px 10px 5px 0px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u68104_text {
  2647. border-width:0px;
  2648. white-space:nowrap;
  2649. text-transform:none;
  2650. }
  2651. #u68105_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:61px;
  2657. height:30px;
  2658. background:inherit;
  2659. background-color:rgba(255, 255, 255, 0);
  2660. border:none;
  2661. border-top:0px;
  2662. border-right:0px;
  2663. border-bottom:0px;
  2664. border-radius:0px;
  2665. border-top-left-radius:0px;
  2666. border-bottom-left-radius:0px;
  2667. -moz-box-shadow:none;
  2668. -webkit-box-shadow:none;
  2669. box-shadow:none;
  2670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:14px;
  2674. }
  2675. #u68105 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:-836px;
  2679. top:648px;
  2680. width:61px;
  2681. height:30px;
  2682. display:flex;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:14px;
  2687. }
  2688. #u68105 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:5px 10px 5px 0px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u68105_text {
  2696. border-width:0px;
  2697. white-space:nowrap;
  2698. text-transform:none;
  2699. }
  2700. #u68106_div {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:61px;
  2706. height:30px;
  2707. background:inherit;
  2708. background-color:rgba(255, 255, 255, 0);
  2709. border:none;
  2710. border-top:0px;
  2711. border-right:0px;
  2712. border-bottom:0px;
  2713. border-radius:0px;
  2714. border-top-left-radius:0px;
  2715. border-bottom-left-radius:0px;
  2716. -moz-box-shadow:none;
  2717. -webkit-box-shadow:none;
  2718. box-shadow:none;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:14px;
  2723. }
  2724. #u68106 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:-755px;
  2728. top:648px;
  2729. width:61px;
  2730. height:30px;
  2731. display:flex;
  2732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:14px;
  2736. }
  2737. #u68106 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:5px 10px 5px 0px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u68106_text {
  2745. border-width:0px;
  2746. white-space:nowrap;
  2747. text-transform:none;
  2748. }
  2749. #u68107_div {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:60px;
  2755. height:30px;
  2756. background:inherit;
  2757. background-color:rgba(255, 255, 255, 0);
  2758. box-sizing:border-box;
  2759. border-width:1px;
  2760. border-style:solid;
  2761. border-color:rgba(24, 144, 255, 1);
  2762. border-radius:3px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:12px;
  2770. color:#1890FF;
  2771. text-align:center;
  2772. }
  2773. #u68107 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:-799px;
  2777. top:570px;
  2778. width:60px;
  2779. height:30px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. color:#1890FF;
  2786. text-align:center;
  2787. }
  2788. #u68107 .text {
  2789. position:absolute;
  2790. align-self:center;
  2791. padding:5px 0px 5px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u68107_text {
  2796. border-width:0px;
  2797. word-wrap:break-word;
  2798. text-transform:none;
  2799. }
  2800. #u68108_div {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:60px;
  2806. height:30px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 0);
  2809. box-sizing:border-box;
  2810. border-width:1px;
  2811. border-style:solid;
  2812. border-color:rgba(24, 144, 255, 1);
  2813. border-radius:3px;
  2814. -moz-box-shadow:none;
  2815. -webkit-box-shadow:none;
  2816. box-shadow:none;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:12px;
  2821. color:#1890FF;
  2822. text-align:center;
  2823. }
  2824. #u68108 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:-839px;
  2828. top:1024px;
  2829. width:60px;
  2830. height:30px;
  2831. display:flex;
  2832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2833. font-weight:400;
  2834. font-style:normal;
  2835. font-size:12px;
  2836. color:#1890FF;
  2837. text-align:center;
  2838. }
  2839. #u68108 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:5px 0px 5px 0px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u68108_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. }
  2851. #u68109_div {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:50px;
  2857. height:20px;
  2858. background:inherit;
  2859. background-color:rgba(41, 143, 255, 1);
  2860. border:none;
  2861. border-radius:29px;
  2862. -moz-box-shadow:none;
  2863. -webkit-box-shadow:none;
  2864. box-shadow:none;
  2865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2866. font-weight:400;
  2867. font-style:normal;
  2868. font-size:12px;
  2869. color:#FFFFFF;
  2870. text-align:center;
  2871. }
  2872. #u68109 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:-699px;
  2876. top:992px;
  2877. width:50px;
  2878. height:20px;
  2879. display:flex;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:12px;
  2884. color:#FFFFFF;
  2885. text-align:center;
  2886. }
  2887. #u68109 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 0px 2px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u68109_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. }
  2899. #u68110_div {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:50px;
  2905. height:20px;
  2906. background:inherit;
  2907. background-color:rgba(215, 215, 215, 1);
  2908. border:none;
  2909. border-radius:29px;
  2910. -moz-box-shadow:none;
  2911. -webkit-box-shadow:none;
  2912. box-shadow:none;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:12px;
  2917. color:#FFFFFF;
  2918. text-align:center;
  2919. }
  2920. #u68110 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:-859px;
  2924. top:992px;
  2925. width:50px;
  2926. height:20px;
  2927. display:flex;
  2928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2929. font-weight:400;
  2930. font-style:normal;
  2931. font-size:12px;
  2932. color:#FFFFFF;
  2933. text-align:center;
  2934. }
  2935. #u68110 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 0px 2px 0px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u68110_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. }
  2947. #u68111_div {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:60px;
  2953. height:30px;
  2954. background:inherit;
  2955. background-color:rgba(255, 255, 255, 0);
  2956. box-sizing:border-box;
  2957. border-width:1px;
  2958. border-style:solid;
  2959. border-color:rgba(24, 144, 255, 1);
  2960. border-radius:3px;
  2961. -moz-box-shadow:none;
  2962. -webkit-box-shadow:none;
  2963. box-shadow:none;
  2964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2965. font-weight:400;
  2966. font-style:normal;
  2967. font-size:12px;
  2968. color:#1890FF;
  2969. text-align:center;
  2970. }
  2971. #u68111 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:-694px;
  2975. top:1024px;
  2976. width:60px;
  2977. height:30px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:12px;
  2983. color:#1890FF;
  2984. text-align:center;
  2985. }
  2986. #u68111 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:5px 0px 5px 0px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u68111_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. }
  2998. #u68112 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:0px;
  3004. height:0px;
  3005. }
  3006. #u68113_div {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:120px;
  3012. height:260px;
  3013. background:inherit;
  3014. background-color:rgba(255, 255, 255, 1);
  3015. box-sizing:border-box;
  3016. border-width:1px;
  3017. border-style:solid;
  3018. border-color:rgba(242, 242, 242, 1);
  3019. border-radius:4px;
  3020. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3021. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3022. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. font-size:14px;
  3027. text-align:left;
  3028. }
  3029. #u68113 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:-896px;
  3033. top:1052px;
  3034. width:120px;
  3035. height:260px;
  3036. display:flex;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:14px;
  3041. text-align:left;
  3042. }
  3043. #u68113 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u68113_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. visibility:hidden;
  3055. }
  3056. #u68114_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:100px;
  3062. height:40px;
  3063. background:inherit;
  3064. background-color:rgba(255, 255, 255, 1);
  3065. box-sizing:border-box;
  3066. border-width:1px;
  3067. border-style:solid;
  3068. border-color:rgba(215, 215, 215, 1);
  3069. border-left:0px;
  3070. border-top:0px;
  3071. border-right:0px;
  3072. border-radius:0px;
  3073. border-bottom-right-radius:0px;
  3074. border-bottom-left-radius:0px;
  3075. -moz-box-shadow:none;
  3076. -webkit-box-shadow:none;
  3077. box-shadow:none;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:14px;
  3082. }
  3083. #u68114 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:-886px;
  3087. top:1062px;
  3088. width:100px;
  3089. height:40px;
  3090. display:flex;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:14px;
  3095. }
  3096. #u68114 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 2px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u68114_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. }
  3108. #u68115_div {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:100px;
  3114. height:40px;
  3115. background:inherit;
  3116. background-color:rgba(255, 255, 255, 1);
  3117. box-sizing:border-box;
  3118. border-width:1px;
  3119. border-style:solid;
  3120. border-color:rgba(215, 215, 215, 1);
  3121. border-left:0px;
  3122. border-top:0px;
  3123. border-right:0px;
  3124. border-radius:0px;
  3125. border-bottom-right-radius:0px;
  3126. border-bottom-left-radius:0px;
  3127. -moz-box-shadow:none;
  3128. -webkit-box-shadow:none;
  3129. box-shadow:none;
  3130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:14px;
  3134. }
  3135. #u68115 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:-886px;
  3139. top:1142px;
  3140. width:100px;
  3141. height:40px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:14px;
  3147. }
  3148. #u68115 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:2px 2px 2px 2px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u68115_text {
  3156. border-width:0px;
  3157. word-wrap:break-word;
  3158. text-transform:none;
  3159. }
  3160. #u68116_div {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:100px;
  3166. height:40px;
  3167. background:inherit;
  3168. background-color:rgba(255, 255, 255, 1);
  3169. box-sizing:border-box;
  3170. border-width:1px;
  3171. border-style:solid;
  3172. border-color:rgba(215, 215, 215, 1);
  3173. border-left:0px;
  3174. border-top:0px;
  3175. border-right:0px;
  3176. border-radius:0px;
  3177. border-bottom-right-radius:0px;
  3178. border-bottom-left-radius:0px;
  3179. -moz-box-shadow:none;
  3180. -webkit-box-shadow:none;
  3181. box-shadow:none;
  3182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3183. font-weight:400;
  3184. font-style:normal;
  3185. font-size:14px;
  3186. }
  3187. #u68116 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:-886px;
  3191. top:1102px;
  3192. width:100px;
  3193. height:40px;
  3194. display:flex;
  3195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:14px;
  3199. }
  3200. #u68116 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 2px 2px 2px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u68116_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. }
  3212. #u68117_div {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:100px;
  3218. height:40px;
  3219. background:inherit;
  3220. background-color:rgba(255, 255, 255, 1);
  3221. box-sizing:border-box;
  3222. border-width:1px;
  3223. border-style:solid;
  3224. border-color:rgba(215, 215, 215, 1);
  3225. border-left:0px;
  3226. border-top:0px;
  3227. border-right:0px;
  3228. border-radius:0px;
  3229. border-bottom-right-radius:0px;
  3230. border-bottom-left-radius:0px;
  3231. -moz-box-shadow:none;
  3232. -webkit-box-shadow:none;
  3233. box-shadow:none;
  3234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3235. font-weight:400;
  3236. font-style:normal;
  3237. font-size:14px;
  3238. }
  3239. #u68117 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:-886px;
  3243. top:1182px;
  3244. width:100px;
  3245. height:40px;
  3246. display:flex;
  3247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:14px;
  3251. }
  3252. #u68117 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:2px 2px 2px 2px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u68117_text {
  3260. border-width:0px;
  3261. word-wrap:break-word;
  3262. text-transform:none;
  3263. }
  3264. #u68118_div {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:100px;
  3270. height:40px;
  3271. background:inherit;
  3272. background-color:rgba(255, 255, 255, 1);
  3273. border:none;
  3274. border-left:0px;
  3275. border-top:0px;
  3276. border-right:0px;
  3277. border-radius:0px;
  3278. border-bottom-right-radius:0px;
  3279. border-bottom-left-radius:0px;
  3280. -moz-box-shadow:none;
  3281. -webkit-box-shadow:none;
  3282. box-shadow:none;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:14px;
  3287. color:#D9001B;
  3288. }
  3289. #u68118 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:-886px;
  3293. top:1262px;
  3294. width:100px;
  3295. height:40px;
  3296. display:flex;
  3297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:14px;
  3301. color:#D9001B;
  3302. }
  3303. #u68118 .text {
  3304. position:absolute;
  3305. align-self:center;
  3306. padding:2px 2px 2px 2px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u68118_text {
  3311. border-width:0px;
  3312. word-wrap:break-word;
  3313. text-transform:none;
  3314. }
  3315. #u68119_div {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:100px;
  3321. height:40px;
  3322. background:inherit;
  3323. background-color:rgba(255, 255, 255, 1);
  3324. box-sizing:border-box;
  3325. border-width:1px;
  3326. border-style:solid;
  3327. border-color:rgba(215, 215, 215, 1);
  3328. border-left:0px;
  3329. border-top:0px;
  3330. border-right:0px;
  3331. border-radius:0px;
  3332. border-bottom-right-radius:0px;
  3333. border-bottom-left-radius:0px;
  3334. -moz-box-shadow:none;
  3335. -webkit-box-shadow:none;
  3336. box-shadow:none;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:14px;
  3341. }
  3342. #u68119 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:-886px;
  3346. top:1222px;
  3347. width:100px;
  3348. height:40px;
  3349. display:flex;
  3350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3351. font-weight:400;
  3352. font-style:normal;
  3353. font-size:14px;
  3354. }
  3355. #u68119 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 2px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u68119_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. }
  3367. #u68120_div {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:59px;
  3373. height:30px;
  3374. background:inherit;
  3375. background-color:rgba(41, 143, 255, 1);
  3376. border:none;
  3377. border-radius:4px;
  3378. -moz-box-shadow:none;
  3379. -webkit-box-shadow:none;
  3380. box-shadow:none;
  3381. font-family:'Microsoft YaHei', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:14px;
  3385. color:#FFFFFF;
  3386. }
  3387. #u68120 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:-1314px;
  3391. top:499px;
  3392. width:59px;
  3393. height:30px;
  3394. display:flex;
  3395. font-family:'Microsoft YaHei', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:14px;
  3399. color:#FFFFFF;
  3400. }
  3401. #u68120 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:5px 15px 5px 15px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u68120_text {
  3409. border-width:0px;
  3410. white-space:nowrap;
  3411. text-transform:none;
  3412. }
  3413. #u68121_div {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:55px;
  3419. height:30px;
  3420. background:inherit;
  3421. background-color:rgba(255, 255, 255, 1);
  3422. box-sizing:border-box;
  3423. border-width:1px;
  3424. border-style:solid;
  3425. border-color:rgba(170, 170, 170, 1);
  3426. border-radius:4px;
  3427. -moz-box-shadow:none;
  3428. -webkit-box-shadow:none;
  3429. box-shadow:none;
  3430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. color:#555555;
  3435. }
  3436. #u68121 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:-1245px;
  3440. top:499px;
  3441. width:55px;
  3442. height:30px;
  3443. display:flex;
  3444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3445. font-weight:400;
  3446. font-style:normal;
  3447. font-size:12px;
  3448. color:#555555;
  3449. }
  3450. #u68121 .text {
  3451. position:absolute;
  3452. align-self:center;
  3453. padding:5px 15px 5px 15px;
  3454. box-sizing:border-box;
  3455. width:100%;
  3456. }
  3457. #u68121_text {
  3458. border-width:0px;
  3459. white-space:nowrap;
  3460. text-transform:none;
  3461. }
  3462. #u68122 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:0px;
  3468. height:0px;
  3469. }
  3470. #u68123_div {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:140px;
  3476. height:30px;
  3477. background:inherit;
  3478. background-color:rgba(255, 255, 255, 1);
  3479. box-sizing:border-box;
  3480. border-width:1px;
  3481. border-style:solid;
  3482. border-color:rgba(215, 215, 215, 1);
  3483. border-radius:4px;
  3484. -moz-box-shadow:none;
  3485. -webkit-box-shadow:none;
  3486. box-shadow:none;
  3487. font-size:11px;
  3488. }
  3489. #u68123 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:-1474px;
  3493. top:498px;
  3494. width:140px;
  3495. height:30px;
  3496. display:flex;
  3497. font-size:11px;
  3498. }
  3499. #u68123 .text {
  3500. position:absolute;
  3501. align-self:center;
  3502. padding:2px 2px 2px 2px;
  3503. box-sizing:border-box;
  3504. width:100%;
  3505. }
  3506. #u68123_text {
  3507. border-width:0px;
  3508. word-wrap:break-word;
  3509. text-transform:none;
  3510. visibility:hidden;
  3511. }
  3512. #u68124_input {
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:120px;
  3517. height:23px;
  3518. padding:2px 2px 2px 2px;
  3519. font-family:'ArialMT', 'Arial', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:11px;
  3523. letter-spacing:normal;
  3524. color:#AAAAAA;
  3525. vertical-align:none;
  3526. text-align:left;
  3527. text-transform:none;
  3528. background-color:transparent;
  3529. border-color:transparent;
  3530. }
  3531. #u68124_input.disabled {
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:120px;
  3536. height:23px;
  3537. padding:2px 2px 2px 2px;
  3538. font-family:'ArialMT', 'Arial', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:11px;
  3542. letter-spacing:normal;
  3543. color:#AAAAAA;
  3544. vertical-align:none;
  3545. text-align:left;
  3546. text-transform:none;
  3547. background-color:transparent;
  3548. border-color:transparent;
  3549. }
  3550. #u68124_div {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:120px;
  3556. height:23px;
  3557. background:inherit;
  3558. background-color:rgba(255, 255, 255, 1);
  3559. border:none;
  3560. border-radius:0px;
  3561. -moz-box-shadow:none;
  3562. -webkit-box-shadow:none;
  3563. box-shadow:none;
  3564. font-size:11px;
  3565. color:#AAAAAA;
  3566. }
  3567. #u68124 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:-1467px;
  3571. top:500px;
  3572. width:120px;
  3573. height:23px;
  3574. display:flex;
  3575. font-size:11px;
  3576. color:#AAAAAA;
  3577. }
  3578. #u68124 .text {
  3579. position:absolute;
  3580. align-self:flex-start;
  3581. padding:2px 2px 2px 2px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u68124_div.disabled {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:120px;
  3591. height:23px;
  3592. background:inherit;
  3593. background-color:rgba(240, 240, 240, 1);
  3594. border:none;
  3595. border-radius:0px;
  3596. -moz-box-shadow:none;
  3597. -webkit-box-shadow:none;
  3598. box-shadow:none;
  3599. font-size:11px;
  3600. color:#AAAAAA;
  3601. }
  3602. #u68124.disabled {
  3603. }
  3604. .u68124_input_option {
  3605. font-size:11px;
  3606. }
  3607. #u68125 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:0px;
  3613. height:0px;
  3614. }
  3615. #u68126_div {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:0px;
  3619. top:0px;
  3620. width:140px;
  3621. height:30px;
  3622. background:inherit;
  3623. background-color:rgba(255, 255, 255, 1);
  3624. box-sizing:border-box;
  3625. border-width:1px;
  3626. border-style:solid;
  3627. border-color:rgba(215, 215, 215, 1);
  3628. border-radius:4px;
  3629. -moz-box-shadow:none;
  3630. -webkit-box-shadow:none;
  3631. box-shadow:none;
  3632. font-size:11px;
  3633. }
  3634. #u68126 {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:-1624px;
  3638. top:498px;
  3639. width:140px;
  3640. height:30px;
  3641. display:flex;
  3642. font-size:11px;
  3643. }
  3644. #u68126 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 2px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u68126_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u68127_input {
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:120px;
  3662. height:23px;
  3663. padding:2px 2px 2px 2px;
  3664. font-family:'ArialMT', 'Arial', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:11px;
  3668. letter-spacing:normal;
  3669. color:#AAAAAA;
  3670. vertical-align:none;
  3671. text-align:left;
  3672. text-transform:none;
  3673. background-color:transparent;
  3674. border-color:transparent;
  3675. }
  3676. #u68127_input.disabled {
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:120px;
  3681. height:23px;
  3682. padding:2px 2px 2px 2px;
  3683. font-family:'ArialMT', 'Arial', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. font-size:11px;
  3687. letter-spacing:normal;
  3688. color:#AAAAAA;
  3689. vertical-align:none;
  3690. text-align:left;
  3691. text-transform:none;
  3692. background-color:transparent;
  3693. border-color:transparent;
  3694. }
  3695. #u68127_div {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:120px;
  3701. height:23px;
  3702. background:inherit;
  3703. background-color:rgba(255, 255, 255, 1);
  3704. border:none;
  3705. border-radius:0px;
  3706. -moz-box-shadow:none;
  3707. -webkit-box-shadow:none;
  3708. box-shadow:none;
  3709. font-size:11px;
  3710. color:#AAAAAA;
  3711. }
  3712. #u68127 {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:-1617px;
  3716. top:500px;
  3717. width:120px;
  3718. height:23px;
  3719. display:flex;
  3720. font-size:11px;
  3721. color:#AAAAAA;
  3722. }
  3723. #u68127 .text {
  3724. position:absolute;
  3725. align-self:flex-start;
  3726. padding:2px 2px 2px 2px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u68127_div.disabled {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:120px;
  3736. height:23px;
  3737. background:inherit;
  3738. background-color:rgba(240, 240, 240, 1);
  3739. border:none;
  3740. border-radius:0px;
  3741. -moz-box-shadow:none;
  3742. -webkit-box-shadow:none;
  3743. box-shadow:none;
  3744. font-size:11px;
  3745. color:#AAAAAA;
  3746. }
  3747. #u68127.disabled {
  3748. }
  3749. .u68127_input_option {
  3750. font-size:11px;
  3751. }
  3752. #u68128 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:0px;
  3758. height:0px;
  3759. }
  3760. #u68129_div {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:140px;
  3766. height:30px;
  3767. background:inherit;
  3768. background-color:rgba(255, 255, 255, 1);
  3769. box-sizing:border-box;
  3770. border-width:1px;
  3771. border-style:solid;
  3772. border-color:rgba(201, 201, 201, 1);
  3773. border-radius:4px;
  3774. -moz-box-shadow:none;
  3775. -webkit-box-shadow:none;
  3776. box-shadow:none;
  3777. font-family:'Microsoft YaHei', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:14px;
  3781. color:#CCCCCC;
  3782. text-align:left;
  3783. }
  3784. #u68129 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:-1774px;
  3788. top:498px;
  3789. width:140px;
  3790. height:30px;
  3791. display:flex;
  3792. font-family:'Microsoft YaHei', sans-serif;
  3793. font-weight:400;
  3794. font-style:normal;
  3795. font-size:14px;
  3796. color:#CCCCCC;
  3797. text-align:left;
  3798. }
  3799. #u68129 .text {
  3800. position:absolute;
  3801. align-self:center;
  3802. padding:2px 8px 2px 8px;
  3803. box-sizing:border-box;
  3804. width:100%;
  3805. }
  3806. #u68129_text {
  3807. border-width:0px;
  3808. word-wrap:break-word;
  3809. text-transform:none;
  3810. visibility:hidden;
  3811. }
  3812. #u68130_input {
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:127px;
  3817. height:25px;
  3818. padding:2px 2px 2px 2px;
  3819. font-family:'Microsoft YaHei', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:10px;
  3823. letter-spacing:normal;
  3824. color:#000000;
  3825. vertical-align:none;
  3826. text-align:left;
  3827. text-transform:none;
  3828. background-color:transparent;
  3829. border-color:transparent;
  3830. }
  3831. #u68130_input.disabled {
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:127px;
  3836. height:25px;
  3837. padding:2px 2px 2px 2px;
  3838. font-family:'Microsoft YaHei', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:10px;
  3842. letter-spacing:normal;
  3843. color:#000000;
  3844. vertical-align:none;
  3845. text-align:left;
  3846. text-transform:none;
  3847. background-color:transparent;
  3848. border-color:transparent;
  3849. }
  3850. #u68130_div {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:127px;
  3856. height:25px;
  3857. background:inherit;
  3858. background-color:rgba(255, 255, 255, 1);
  3859. border:none;
  3860. border-radius:0px;
  3861. -moz-box-shadow:none;
  3862. -webkit-box-shadow:none;
  3863. box-shadow:none;
  3864. font-family:'Microsoft YaHei', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:10px;
  3868. }
  3869. #u68130 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:-1766px;
  3873. top:499px;
  3874. width:127px;
  3875. height:25px;
  3876. display:flex;
  3877. font-family:'Microsoft YaHei', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:10px;
  3881. }
  3882. #u68130 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 2px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u68130_div.disabled {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:0px;
  3893. top:0px;
  3894. width:127px;
  3895. height:25px;
  3896. background:inherit;
  3897. background-color:rgba(240, 240, 240, 1);
  3898. border:none;
  3899. border-radius:0px;
  3900. -moz-box-shadow:none;
  3901. -webkit-box-shadow:none;
  3902. box-shadow:none;
  3903. font-family:'Microsoft YaHei', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:10px;
  3907. }
  3908. #u68130.disabled {
  3909. }
  3910. #u68131 {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:0px;
  3916. height:0px;
  3917. }
  3918. #u68132_div {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:0px;
  3922. top:0px;
  3923. width:140px;
  3924. height:30px;
  3925. background:inherit;
  3926. background-color:rgba(255, 255, 255, 1);
  3927. box-sizing:border-box;
  3928. border-width:1px;
  3929. border-style:solid;
  3930. border-color:rgba(201, 201, 201, 1);
  3931. border-radius:4px;
  3932. -moz-box-shadow:none;
  3933. -webkit-box-shadow:none;
  3934. box-shadow:none;
  3935. font-family:'Microsoft YaHei', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:14px;
  3939. color:#CCCCCC;
  3940. text-align:left;
  3941. }
  3942. #u68132 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:-1924px;
  3946. top:498px;
  3947. width:140px;
  3948. height:30px;
  3949. display:flex;
  3950. font-family:'Microsoft YaHei', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:14px;
  3954. color:#CCCCCC;
  3955. text-align:left;
  3956. }
  3957. #u68132 .text {
  3958. position:absolute;
  3959. align-self:center;
  3960. padding:2px 8px 2px 8px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u68132_text {
  3965. border-width:0px;
  3966. word-wrap:break-word;
  3967. text-transform:none;
  3968. visibility:hidden;
  3969. }
  3970. #u68133_input {
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:127px;
  3975. height:25px;
  3976. padding:2px 2px 2px 2px;
  3977. font-family:'Microsoft YaHei', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:10px;
  3981. letter-spacing:normal;
  3982. color:#000000;
  3983. vertical-align:none;
  3984. text-align:left;
  3985. text-transform:none;
  3986. background-color:transparent;
  3987. border-color:transparent;
  3988. }
  3989. #u68133_input.disabled {
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:127px;
  3994. height:25px;
  3995. padding:2px 2px 2px 2px;
  3996. font-family:'Microsoft YaHei', sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:10px;
  4000. letter-spacing:normal;
  4001. color:#000000;
  4002. vertical-align:none;
  4003. text-align:left;
  4004. text-transform:none;
  4005. background-color:transparent;
  4006. border-color:transparent;
  4007. }
  4008. #u68133_div {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:127px;
  4014. height:25px;
  4015. background:inherit;
  4016. background-color:rgba(255, 255, 255, 1);
  4017. border:none;
  4018. border-radius:0px;
  4019. -moz-box-shadow:none;
  4020. -webkit-box-shadow:none;
  4021. box-shadow:none;
  4022. font-family:'Microsoft YaHei', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:10px;
  4026. }
  4027. #u68133 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:-1916px;
  4031. top:499px;
  4032. width:127px;
  4033. height:25px;
  4034. display:flex;
  4035. font-family:'Microsoft YaHei', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. font-size:10px;
  4039. }
  4040. #u68133 .text {
  4041. position:absolute;
  4042. align-self:center;
  4043. padding:2px 2px 2px 2px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u68133_div.disabled {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:0px;
  4052. width:127px;
  4053. height:25px;
  4054. background:inherit;
  4055. background-color:rgba(240, 240, 240, 1);
  4056. border:none;
  4057. border-radius:0px;
  4058. -moz-box-shadow:none;
  4059. -webkit-box-shadow:none;
  4060. box-shadow:none;
  4061. font-family:'Microsoft YaHei', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:10px;
  4065. }
  4066. #u68133.disabled {
  4067. }
  4068. #u68134 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:0px;
  4074. height:0px;
  4075. }
  4076. #u68135_div {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:120px;
  4082. height:260px;
  4083. background:inherit;
  4084. background-color:rgba(255, 255, 255, 1);
  4085. box-sizing:border-box;
  4086. border-width:1px;
  4087. border-style:solid;
  4088. border-color:rgba(242, 242, 242, 1);
  4089. border-radius:4px;
  4090. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4091. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4092. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. font-size:14px;
  4097. text-align:left;
  4098. }
  4099. #u68135 {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:-754px;
  4103. top:1052px;
  4104. width:120px;
  4105. height:260px;
  4106. display:flex;
  4107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:14px;
  4111. text-align:left;
  4112. }
  4113. #u68135 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 2px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u68135_text {
  4121. border-width:0px;
  4122. word-wrap:break-word;
  4123. text-transform:none;
  4124. visibility:hidden;
  4125. }
  4126. #u68136_div {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:100px;
  4132. height:40px;
  4133. background:inherit;
  4134. background-color:rgba(255, 255, 255, 1);
  4135. box-sizing:border-box;
  4136. border-width:1px;
  4137. border-style:solid;
  4138. border-color:rgba(215, 215, 215, 1);
  4139. border-left:0px;
  4140. border-top:0px;
  4141. border-right:0px;
  4142. border-radius:0px;
  4143. border-bottom-right-radius:0px;
  4144. border-bottom-left-radius:0px;
  4145. -moz-box-shadow:none;
  4146. -webkit-box-shadow:none;
  4147. box-shadow:none;
  4148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:14px;
  4152. }
  4153. #u68136 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:-744px;
  4157. top:1062px;
  4158. width:100px;
  4159. height:40px;
  4160. display:flex;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:14px;
  4165. }
  4166. #u68136 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 2px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u68136_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. }
  4178. #u68137_div {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:100px;
  4184. height:40px;
  4185. background:inherit;
  4186. background-color:rgba(255, 255, 255, 1);
  4187. box-sizing:border-box;
  4188. border-width:1px;
  4189. border-style:solid;
  4190. border-color:rgba(215, 215, 215, 1);
  4191. border-left:0px;
  4192. border-top:0px;
  4193. border-right:0px;
  4194. border-radius:0px;
  4195. border-bottom-right-radius:0px;
  4196. border-bottom-left-radius:0px;
  4197. -moz-box-shadow:none;
  4198. -webkit-box-shadow:none;
  4199. box-shadow:none;
  4200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4201. font-weight:400;
  4202. font-style:normal;
  4203. font-size:14px;
  4204. }
  4205. #u68137 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:-744px;
  4209. top:1142px;
  4210. width:100px;
  4211. height:40px;
  4212. display:flex;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. }
  4218. #u68137 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 2px 2px 2px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u68137_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. }
  4230. #u68138_div {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:100px;
  4236. height:40px;
  4237. background:inherit;
  4238. background-color:rgba(255, 255, 255, 1);
  4239. box-sizing:border-box;
  4240. border-width:1px;
  4241. border-style:solid;
  4242. border-color:rgba(215, 215, 215, 1);
  4243. border-left:0px;
  4244. border-top:0px;
  4245. border-right:0px;
  4246. border-radius:0px;
  4247. border-bottom-right-radius:0px;
  4248. border-bottom-left-radius:0px;
  4249. -moz-box-shadow:none;
  4250. -webkit-box-shadow:none;
  4251. box-shadow:none;
  4252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:14px;
  4256. }
  4257. #u68138 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:-744px;
  4261. top:1102px;
  4262. width:100px;
  4263. height:40px;
  4264. display:flex;
  4265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:14px;
  4269. }
  4270. #u68138 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:2px 2px 2px 2px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u68138_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. }
  4282. #u68139_div {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:100px;
  4288. height:40px;
  4289. background:inherit;
  4290. background-color:rgba(255, 255, 255, 1);
  4291. box-sizing:border-box;
  4292. border-width:1px;
  4293. border-style:solid;
  4294. border-color:rgba(215, 215, 215, 1);
  4295. border-left:0px;
  4296. border-top:0px;
  4297. border-right:0px;
  4298. border-radius:0px;
  4299. border-bottom-right-radius:0px;
  4300. border-bottom-left-radius:0px;
  4301. -moz-box-shadow:none;
  4302. -webkit-box-shadow:none;
  4303. box-shadow:none;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:14px;
  4308. }
  4309. #u68139 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:-744px;
  4313. top:1182px;
  4314. width:100px;
  4315. height:40px;
  4316. display:flex;
  4317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4318. font-weight:400;
  4319. font-style:normal;
  4320. font-size:14px;
  4321. }
  4322. #u68139 .text {
  4323. position:absolute;
  4324. align-self:center;
  4325. padding:2px 2px 2px 2px;
  4326. box-sizing:border-box;
  4327. width:100%;
  4328. }
  4329. #u68139_text {
  4330. border-width:0px;
  4331. word-wrap:break-word;
  4332. text-transform:none;
  4333. }
  4334. #u68140_div {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:100px;
  4340. height:40px;
  4341. background:inherit;
  4342. background-color:rgba(255, 255, 255, 1);
  4343. border:none;
  4344. border-left:0px;
  4345. border-top:0px;
  4346. border-right:0px;
  4347. border-radius:0px;
  4348. border-bottom-right-radius:0px;
  4349. border-bottom-left-radius:0px;
  4350. -moz-box-shadow:none;
  4351. -webkit-box-shadow:none;
  4352. box-shadow:none;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:14px;
  4357. color:#D9001B;
  4358. }
  4359. #u68140 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:-744px;
  4363. top:1262px;
  4364. width:100px;
  4365. height:40px;
  4366. display:flex;
  4367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:14px;
  4371. color:#D9001B;
  4372. }
  4373. #u68140 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:2px 2px 2px 2px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u68140_text {
  4381. border-width:0px;
  4382. word-wrap:break-word;
  4383. text-transform:none;
  4384. }
  4385. #u68141_div {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:100px;
  4391. height:40px;
  4392. background:inherit;
  4393. background-color:rgba(255, 255, 255, 1);
  4394. box-sizing:border-box;
  4395. border-width:1px;
  4396. border-style:solid;
  4397. border-color:rgba(215, 215, 215, 1);
  4398. border-left:0px;
  4399. border-top:0px;
  4400. border-right:0px;
  4401. border-radius:0px;
  4402. border-bottom-right-radius:0px;
  4403. border-bottom-left-radius:0px;
  4404. -moz-box-shadow:none;
  4405. -webkit-box-shadow:none;
  4406. box-shadow:none;
  4407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4408. font-weight:400;
  4409. font-style:normal;
  4410. font-size:14px;
  4411. }
  4412. #u68141 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:-744px;
  4416. top:1222px;
  4417. width:100px;
  4418. height:40px;
  4419. display:flex;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:14px;
  4424. }
  4425. #u68141 .text {
  4426. position:absolute;
  4427. align-self:center;
  4428. padding:2px 2px 2px 2px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u68141_text {
  4433. border-width:0px;
  4434. word-wrap:break-word;
  4435. text-transform:none;
  4436. }
  4437. #u68142_div {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:102px;
  4443. height:50px;
  4444. background:inherit;
  4445. background-color:rgba(255, 255, 255, 0);
  4446. border:none;
  4447. border-left:0px;
  4448. border-top:0px;
  4449. border-right:0px;
  4450. border-radius:0px;
  4451. border-bottom-right-radius:0px;
  4452. border-bottom-left-radius:0px;
  4453. -moz-box-shadow:none;
  4454. -webkit-box-shadow:none;
  4455. box-shadow:none;
  4456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4457. font-weight:400;
  4458. font-style:normal;
  4459. font-size:18px;
  4460. color:#1890FF;
  4461. text-align:right;
  4462. }
  4463. #u68142 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:-701px;
  4467. top:449px;
  4468. width:102px;
  4469. height:50px;
  4470. display:flex;
  4471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:18px;
  4475. color:#1890FF;
  4476. text-align:right;
  4477. }
  4478. #u68142 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:0px 0px 0px 0px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u68142_text {
  4486. border-width:0px;
  4487. white-space:nowrap;
  4488. text-transform:none;
  4489. }
  4490. #u68143 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:0px;
  4496. height:0px;
  4497. }
  4498. #u68144_div {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:420px;
  4504. height:210px;
  4505. background:inherit;
  4506. background-color:rgba(255, 255, 255, 1);
  4507. box-sizing:border-box;
  4508. border-width:1px;
  4509. border-style:solid;
  4510. border-color:rgba(215, 215, 215, 1);
  4511. border-radius:0px;
  4512. -moz-box-shadow:none;
  4513. -webkit-box-shadow:none;
  4514. box-shadow:none;
  4515. font-family:'Microsoft YaHei', sans-serif;
  4516. font-weight:400;
  4517. font-style:normal;
  4518. }
  4519. #u68144 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:-1074px;
  4523. top:-84px;
  4524. width:420px;
  4525. height:210px;
  4526. display:flex;
  4527. font-family:'Microsoft YaHei', sans-serif;
  4528. font-weight:400;
  4529. font-style:normal;
  4530. }
  4531. #u68144 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 2px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u68144_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u68145_div {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:336px;
  4550. height:90px;
  4551. background:inherit;
  4552. background-color:rgba(255, 255, 255, 0);
  4553. border:none;
  4554. border-radius:0px;
  4555. -moz-box-shadow:none;
  4556. -webkit-box-shadow:none;
  4557. box-shadow:none;
  4558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:14px;
  4562. color:#666666;
  4563. line-height:30px;
  4564. }
  4565. #u68145 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:-1013px;
  4569. top:-24px;
  4570. width:336px;
  4571. height:90px;
  4572. display:flex;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:14px;
  4577. color:#666666;
  4578. line-height:30px;
  4579. }
  4580. #u68145 .text {
  4581. position:absolute;
  4582. align-self:flex-start;
  4583. padding:0px 0px 0px 0px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u68145_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. }
  4592. #u68146_div {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:0px;
  4596. top:0px;
  4597. width:80px;
  4598. height:32px;
  4599. background:inherit;
  4600. background-color:rgba(24, 144, 255, 1);
  4601. border:none;
  4602. border-radius:4px;
  4603. -moz-box-shadow:none;
  4604. -webkit-box-shadow:none;
  4605. box-shadow:none;
  4606. font-family:'Microsoft YaHei', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:14px;
  4610. color:#FFFFFF;
  4611. }
  4612. #u68146 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:-754px;
  4616. top:75px;
  4617. width:80px;
  4618. height:32px;
  4619. display:flex;
  4620. font-family:'Microsoft YaHei', sans-serif;
  4621. font-weight:400;
  4622. font-style:normal;
  4623. font-size:14px;
  4624. color:#FFFFFF;
  4625. }
  4626. #u68146 .text {
  4627. position:absolute;
  4628. align-self:center;
  4629. padding:2px 16px 2px 16px;
  4630. box-sizing:border-box;
  4631. width:100%;
  4632. }
  4633. #u68146_text {
  4634. border-width:0px;
  4635. word-wrap:break-word;
  4636. text-transform:none;
  4637. }
  4638. #u68147_div {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:80px;
  4644. height:32px;
  4645. background:inherit;
  4646. background-color:rgba(255, 255, 255, 1);
  4647. box-sizing:border-box;
  4648. border-width:1px;
  4649. border-style:solid;
  4650. border-color:rgba(215, 215, 215, 1);
  4651. border-radius:4px;
  4652. -moz-box-shadow:none;
  4653. -webkit-box-shadow:none;
  4654. box-shadow:none;
  4655. font-family:'Microsoft YaHei', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:14px;
  4659. color:rgba(0, 0, 0, 0.647058823529412);
  4660. line-height:21px;
  4661. }
  4662. #u68147 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:-844px;
  4666. top:75px;
  4667. width:80px;
  4668. height:32px;
  4669. display:flex;
  4670. font-family:'Microsoft YaHei', sans-serif;
  4671. font-weight:400;
  4672. font-style:normal;
  4673. font-size:14px;
  4674. color:rgba(0, 0, 0, 0.647058823529412);
  4675. line-height:21px;
  4676. }
  4677. #u68147 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 16px 2px 16px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u68147_text {
  4685. border-width:0px;
  4686. word-wrap:break-word;
  4687. text-transform:none;
  4688. }
  4689. #u68148_img {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:26px;
  4695. height:26px;
  4696. }
  4697. #u68148 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:-1049px;
  4701. top:-63px;
  4702. width:26px;
  4703. height:26px;
  4704. display:flex;
  4705. }
  4706. #u68148 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 2px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u68148_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. visibility:hidden;
  4718. }
  4719. #u68149_div {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:145px;
  4725. height:30px;
  4726. background:inherit;
  4727. background-color:rgba(255, 255, 255, 0);
  4728. border:none;
  4729. border-radius:0px;
  4730. -moz-box-shadow:none;
  4731. -webkit-box-shadow:none;
  4732. box-shadow:none;
  4733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:18px;
  4737. color:#000000;
  4738. line-height:30px;
  4739. }
  4740. #u68149 {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:-1013px;
  4744. top:-63px;
  4745. width:145px;
  4746. height:30px;
  4747. display:flex;
  4748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:18px;
  4752. color:#000000;
  4753. line-height:30px;
  4754. }
  4755. #u68149 .text {
  4756. position:absolute;
  4757. align-self:flex-start;
  4758. padding:0px 0px 0px 0px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u68149_text {
  4763. border-width:0px;
  4764. white-space:nowrap;
  4765. text-transform:none;
  4766. }
  4767. #u68150_img {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:10px;
  4773. height:10px;
  4774. }
  4775. #u68150 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:-674px;
  4779. top:-74px;
  4780. width:10px;
  4781. height:10px;
  4782. display:flex;
  4783. }
  4784. #u68150 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 2px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u68150_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. visibility:hidden;
  4796. }
  4797. #u68151 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:0px;
  4803. height:0px;
  4804. }
  4805. #u68152_div {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:420px;
  4811. height:220px;
  4812. background:inherit;
  4813. background-color:rgba(255, 255, 255, 1);
  4814. box-sizing:border-box;
  4815. border-width:1px;
  4816. border-style:solid;
  4817. border-color:rgba(215, 215, 215, 1);
  4818. border-radius:0px;
  4819. -moz-box-shadow:none;
  4820. -webkit-box-shadow:none;
  4821. box-shadow:none;
  4822. font-family:'Microsoft YaHei', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. }
  4826. #u68152 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:-1074px;
  4830. top:146px;
  4831. width:420px;
  4832. height:220px;
  4833. display:flex;
  4834. font-family:'Microsoft YaHei', sans-serif;
  4835. font-weight:400;
  4836. font-style:normal;
  4837. }
  4838. #u68152 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u68152_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u68153_div {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:339px;
  4857. height:90px;
  4858. background:inherit;
  4859. background-color:rgba(255, 255, 255, 0);
  4860. border:none;
  4861. border-radius:0px;
  4862. -moz-box-shadow:none;
  4863. -webkit-box-shadow:none;
  4864. box-shadow:none;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:14px;
  4869. color:#666666;
  4870. line-height:30px;
  4871. }
  4872. #u68153 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:-1013px;
  4876. top:206px;
  4877. width:339px;
  4878. height:90px;
  4879. display:flex;
  4880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4881. font-weight:400;
  4882. font-style:normal;
  4883. font-size:14px;
  4884. color:#666666;
  4885. line-height:30px;
  4886. }
  4887. #u68153 .text {
  4888. position:absolute;
  4889. align-self:flex-start;
  4890. padding:0px 0px 0px 0px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u68153_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. }
  4899. #u68154_div {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:0px;
  4903. top:0px;
  4904. width:80px;
  4905. height:32px;
  4906. background:inherit;
  4907. background-color:rgba(24, 144, 255, 1);
  4908. border:none;
  4909. border-radius:4px;
  4910. -moz-box-shadow:none;
  4911. -webkit-box-shadow:none;
  4912. box-shadow:none;
  4913. font-family:'Microsoft YaHei', sans-serif;
  4914. font-weight:400;
  4915. font-style:normal;
  4916. font-size:14px;
  4917. color:#FFFFFF;
  4918. }
  4919. #u68154 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:-754px;
  4923. top:315px;
  4924. width:80px;
  4925. height:32px;
  4926. display:flex;
  4927. font-family:'Microsoft YaHei', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:14px;
  4931. color:#FFFFFF;
  4932. }
  4933. #u68154 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:2px 16px 2px 16px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u68154_text {
  4941. border-width:0px;
  4942. word-wrap:break-word;
  4943. text-transform:none;
  4944. }
  4945. #u68155_div {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:80px;
  4951. height:32px;
  4952. background:inherit;
  4953. background-color:rgba(255, 255, 255, 1);
  4954. box-sizing:border-box;
  4955. border-width:1px;
  4956. border-style:solid;
  4957. border-color:rgba(215, 215, 215, 1);
  4958. border-radius:4px;
  4959. -moz-box-shadow:none;
  4960. -webkit-box-shadow:none;
  4961. box-shadow:none;
  4962. font-family:'Microsoft YaHei', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:14px;
  4966. color:rgba(0, 0, 0, 0.647058823529412);
  4967. line-height:21px;
  4968. }
  4969. #u68155 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:-844px;
  4973. top:315px;
  4974. width:80px;
  4975. height:32px;
  4976. display:flex;
  4977. font-family:'Microsoft YaHei', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:14px;
  4981. color:rgba(0, 0, 0, 0.647058823529412);
  4982. line-height:21px;
  4983. }
  4984. #u68155 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 16px 2px 16px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u68155_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. }
  4996. #u68156_img {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:26px;
  5002. height:26px;
  5003. }
  5004. #u68156 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:-1049px;
  5008. top:167px;
  5009. width:26px;
  5010. height:26px;
  5011. display:flex;
  5012. }
  5013. #u68156 .text {
  5014. position:absolute;
  5015. align-self:center;
  5016. padding:2px 2px 2px 2px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u68156_text {
  5021. border-width:0px;
  5022. word-wrap:break-word;
  5023. text-transform:none;
  5024. visibility:hidden;
  5025. }
  5026. #u68157_div {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:145px;
  5032. height:30px;
  5033. background:inherit;
  5034. background-color:rgba(255, 255, 255, 0);
  5035. border:none;
  5036. border-radius:0px;
  5037. -moz-box-shadow:none;
  5038. -webkit-box-shadow:none;
  5039. box-shadow:none;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:18px;
  5044. color:#000000;
  5045. line-height:30px;
  5046. }
  5047. #u68157 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:-1013px;
  5051. top:167px;
  5052. width:145px;
  5053. height:30px;
  5054. display:flex;
  5055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:18px;
  5059. color:#000000;
  5060. line-height:30px;
  5061. }
  5062. #u68157 .text {
  5063. position:absolute;
  5064. align-self:flex-start;
  5065. padding:0px 0px 0px 0px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u68157_text {
  5070. border-width:0px;
  5071. white-space:nowrap;
  5072. text-transform:none;
  5073. }
  5074. #u68158_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:10px;
  5080. height:10px;
  5081. }
  5082. #u68158 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:-674px;
  5086. top:156px;
  5087. width:10px;
  5088. height:10px;
  5089. display:flex;
  5090. }
  5091. #u68158 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 2px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u68158_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u68159_div {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:1260px;
  5110. height:1180px;
  5111. background:inherit;
  5112. background-color:rgba(255, 255, 255, 1);
  5113. border:none;
  5114. border-radius:0px;
  5115. -moz-box-shadow:none;
  5116. -webkit-box-shadow:none;
  5117. box-shadow:none;
  5118. }
  5119. #u68159 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:329px;
  5123. top:50px;
  5124. width:1260px;
  5125. height:1180px;
  5126. display:flex;
  5127. }
  5128. #u68159 .text {
  5129. position:absolute;
  5130. align-self:center;
  5131. padding:2px 2px 2px 2px;
  5132. box-sizing:border-box;
  5133. width:100%;
  5134. }
  5135. #u68159_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u68160_div {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:87px;
  5147. height:30px;
  5148. background:inherit;
  5149. background-color:rgba(41, 143, 255, 1);
  5150. border:none;
  5151. border-radius:4px;
  5152. -moz-box-shadow:none;
  5153. -webkit-box-shadow:none;
  5154. box-shadow:none;
  5155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:14px;
  5159. color:#FFFFFF;
  5160. }
  5161. #u68160 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:1402px;
  5165. top:66px;
  5166. width:87px;
  5167. height:30px;
  5168. display:flex;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:14px;
  5173. color:#FFFFFF;
  5174. }
  5175. #u68160 .text {
  5176. position:absolute;
  5177. align-self:center;
  5178. padding:5px 15px 5px 15px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u68160_text {
  5183. border-width:0px;
  5184. white-space:nowrap;
  5185. text-transform:none;
  5186. }
  5187. #u68161 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:0px;
  5193. height:0px;
  5194. }
  5195. #u68162_div {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:59px;
  5201. height:30px;
  5202. background:inherit;
  5203. background-color:rgba(24, 144, 255, 1);
  5204. box-sizing:border-box;
  5205. border-width:1px;
  5206. border-style:solid;
  5207. border-color:rgba(0, 153, 255, 1);
  5208. border-radius:4px;
  5209. -moz-box-shadow:none;
  5210. -webkit-box-shadow:none;
  5211. box-shadow:none;
  5212. font-family:'Microsoft YaHei', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:14px;
  5216. color:#FFFFFF;
  5217. }
  5218. #u68162 {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:656px;
  5222. top:109px;
  5223. width:59px;
  5224. height:30px;
  5225. display:flex;
  5226. font-family:'Microsoft YaHei', sans-serif;
  5227. font-weight:400;
  5228. font-style:normal;
  5229. font-size:14px;
  5230. color:#FFFFFF;
  5231. }
  5232. #u68162 .text {
  5233. position:absolute;
  5234. align-self:center;
  5235. padding:5px 15px 5px 15px;
  5236. box-sizing:border-box;
  5237. width:100%;
  5238. }
  5239. #u68162_text {
  5240. border-width:0px;
  5241. white-space:nowrap;
  5242. text-transform:none;
  5243. }
  5244. #u68163_div {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:55px;
  5250. height:30px;
  5251. background:inherit;
  5252. background-color:rgba(255, 255, 255, 1);
  5253. box-sizing:border-box;
  5254. border-width:1px;
  5255. border-style:solid;
  5256. border-color:rgba(170, 170, 170, 1);
  5257. border-radius:4px;
  5258. -moz-box-shadow:none;
  5259. -webkit-box-shadow:none;
  5260. box-shadow:none;
  5261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5262. font-weight:400;
  5263. font-style:normal;
  5264. font-size:12px;
  5265. color:#555555;
  5266. }
  5267. #u68163 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:725px;
  5271. top:109px;
  5272. width:55px;
  5273. height:30px;
  5274. display:flex;
  5275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:12px;
  5279. color:#555555;
  5280. }
  5281. #u68163 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:5px 15px 5px 15px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u68163_text {
  5289. border-width:0px;
  5290. white-space:nowrap;
  5291. text-transform:none;
  5292. }
  5293. #u68164 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:0px;
  5299. height:0px;
  5300. }
  5301. #u68165_div {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:140px;
  5307. height:30px;
  5308. background:inherit;
  5309. background-color:rgba(255, 255, 255, 1);
  5310. box-sizing:border-box;
  5311. border-width:1px;
  5312. border-style:solid;
  5313. border-color:rgba(201, 201, 201, 1);
  5314. border-radius:4px;
  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:14px;
  5322. color:#CCCCCC;
  5323. text-align:left;
  5324. }
  5325. #u68165 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:352px;
  5329. top:110px;
  5330. width:140px;
  5331. height:30px;
  5332. display:flex;
  5333. font-family:'Microsoft YaHei', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:14px;
  5337. color:#CCCCCC;
  5338. text-align:left;
  5339. }
  5340. #u68165 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:2px 8px 2px 8px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u68165_text {
  5348. border-width:0px;
  5349. word-wrap:break-word;
  5350. text-transform:none;
  5351. visibility:hidden;
  5352. }
  5353. #u68166_input {
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:127px;
  5358. height:25px;
  5359. padding:2px 2px 2px 2px;
  5360. font-family:'Microsoft YaHei', sans-serif;
  5361. font-weight:400;
  5362. font-style:normal;
  5363. font-size:10px;
  5364. letter-spacing:normal;
  5365. color:#000000;
  5366. vertical-align:none;
  5367. text-align:left;
  5368. text-transform:none;
  5369. background-color:transparent;
  5370. border-color:transparent;
  5371. }
  5372. #u68166_input.disabled {
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:127px;
  5377. height:25px;
  5378. padding:2px 2px 2px 2px;
  5379. font-family:'Microsoft YaHei', sans-serif;
  5380. font-weight:400;
  5381. font-style:normal;
  5382. font-size:10px;
  5383. letter-spacing:normal;
  5384. color:#000000;
  5385. vertical-align:none;
  5386. text-align:left;
  5387. text-transform:none;
  5388. background-color:transparent;
  5389. border-color:transparent;
  5390. }
  5391. #u68166_div {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:127px;
  5397. height:25px;
  5398. background:inherit;
  5399. background-color:rgba(255, 255, 255, 1);
  5400. border:none;
  5401. border-radius:0px;
  5402. -moz-box-shadow:none;
  5403. -webkit-box-shadow:none;
  5404. box-shadow:none;
  5405. font-family:'Microsoft YaHei', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:10px;
  5409. }
  5410. #u68166 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:360px;
  5414. top:111px;
  5415. width:127px;
  5416. height:25px;
  5417. display:flex;
  5418. font-family:'Microsoft YaHei', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:10px;
  5422. }
  5423. #u68166 .text {
  5424. position:absolute;
  5425. align-self:center;
  5426. padding:2px 2px 2px 2px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u68166_div.disabled {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:127px;
  5436. height:25px;
  5437. background:inherit;
  5438. background-color:rgba(240, 240, 240, 1);
  5439. border:none;
  5440. border-radius:0px;
  5441. -moz-box-shadow:none;
  5442. -webkit-box-shadow:none;
  5443. box-shadow:none;
  5444. font-family:'Microsoft YaHei', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:10px;
  5448. }
  5449. #u68166.disabled {
  5450. }
  5451. #u68167 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:352px;
  5455. top:161px;
  5456. width:1221px;
  5457. height:328px;
  5458. }
  5459. #u68168_img {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:98px;
  5465. height:44px;
  5466. }
  5467. #u68168 {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:98px;
  5473. height:44px;
  5474. display:flex;
  5475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:12px;
  5479. color:#FFFFFF;
  5480. }
  5481. #u68168 .text {
  5482. position:absolute;
  5483. align-self:center;
  5484. padding:2px 2px 2px 0px;
  5485. box-sizing:border-box;
  5486. width:100%;
  5487. }
  5488. #u68168_text {
  5489. border-width:0px;
  5490. word-wrap:break-word;
  5491. text-transform:none;
  5492. }
  5493. #u68169_img {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:110px;
  5499. height:44px;
  5500. }
  5501. #u68169 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:98px;
  5505. top:0px;
  5506. width:110px;
  5507. height:44px;
  5508. display:flex;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:12px;
  5513. color:#FFFFFF;
  5514. }
  5515. #u68169 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 0px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u68169_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. }
  5527. #u68170_img {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:63px;
  5533. height:44px;
  5534. }
  5535. #u68170 {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:208px;
  5539. top:0px;
  5540. width:63px;
  5541. height:44px;
  5542. display:flex;
  5543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:12px;
  5547. color:#FFFFFF;
  5548. }
  5549. #u68170 .text {
  5550. position:absolute;
  5551. align-self:center;
  5552. padding:2px 2px 2px 0px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u68170_text {
  5557. border-width:0px;
  5558. word-wrap:break-word;
  5559. text-transform:none;
  5560. }
  5561. #u68171_img {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:98px;
  5567. height:44px;
  5568. }
  5569. #u68171 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:271px;
  5573. top:0px;
  5574. width:98px;
  5575. height:44px;
  5576. display:flex;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:12px;
  5581. color:#FFFFFF;
  5582. }
  5583. #u68171 .text {
  5584. position:absolute;
  5585. align-self:center;
  5586. padding:2px 2px 2px 0px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u68171_text {
  5591. border-width:0px;
  5592. word-wrap:break-word;
  5593. text-transform:none;
  5594. }
  5595. #u68172_img {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:85px;
  5601. height:44px;
  5602. }
  5603. #u68172 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:369px;
  5607. top:0px;
  5608. width:85px;
  5609. height:44px;
  5610. display:flex;
  5611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. font-size:12px;
  5615. color:#FFFFFF;
  5616. }
  5617. #u68172 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 0px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u68172_text {
  5625. border-width:0px;
  5626. word-wrap:break-word;
  5627. text-transform:none;
  5628. }
  5629. #u68173_img {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:85px;
  5635. height:44px;
  5636. }
  5637. #u68173 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:454px;
  5641. top:0px;
  5642. width:85px;
  5643. height:44px;
  5644. display:flex;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:12px;
  5649. color:#FFFFFF;
  5650. }
  5651. #u68173 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 2px 2px 0px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u68173_text {
  5659. border-width:0px;
  5660. word-wrap:break-word;
  5661. text-transform:none;
  5662. }
  5663. #u68174_img {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:85px;
  5669. height:44px;
  5670. }
  5671. #u68174 {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:539px;
  5675. top:0px;
  5676. width:85px;
  5677. height:44px;
  5678. display:flex;
  5679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5680. font-weight:400;
  5681. font-style:normal;
  5682. font-size:12px;
  5683. color:#FFFFFF;
  5684. }
  5685. #u68174 .text {
  5686. position:absolute;
  5687. align-self:center;
  5688. padding:2px 2px 2px 0px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u68174_text {
  5693. border-width:0px;
  5694. word-wrap:break-word;
  5695. text-transform:none;
  5696. }
  5697. #u68175_img {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:95px;
  5703. height:44px;
  5704. }
  5705. #u68175 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:624px;
  5709. top:0px;
  5710. width:95px;
  5711. height:44px;
  5712. display:flex;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:12px;
  5717. color:#FFFFFF;
  5718. }
  5719. #u68175 .text {
  5720. position:absolute;
  5721. align-self:center;
  5722. padding:2px 2px 2px 0px;
  5723. box-sizing:border-box;
  5724. width:100%;
  5725. }
  5726. #u68175_text {
  5727. border-width:0px;
  5728. word-wrap:break-word;
  5729. text-transform:none;
  5730. }
  5731. #u68176_img {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:98px;
  5737. height:44px;
  5738. }
  5739. #u68176 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:719px;
  5743. top:0px;
  5744. width:98px;
  5745. height:44px;
  5746. display:flex;
  5747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:12px;
  5751. color:#FFFFFF;
  5752. }
  5753. #u68176 .text {
  5754. position:absolute;
  5755. align-self:center;
  5756. padding:2px 2px 2px 0px;
  5757. box-sizing:border-box;
  5758. width:100%;
  5759. }
  5760. #u68176_text {
  5761. border-width:0px;
  5762. word-wrap:break-word;
  5763. text-transform:none;
  5764. }
  5765. #u68177_img {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:0px;
  5769. top:0px;
  5770. width:106px;
  5771. height:44px;
  5772. }
  5773. #u68177 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:817px;
  5777. top:0px;
  5778. width:106px;
  5779. height:44px;
  5780. display:flex;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:12px;
  5785. color:#FFFFFF;
  5786. }
  5787. #u68177 .text {
  5788. position:absolute;
  5789. align-self:center;
  5790. padding:2px 2px 2px 0px;
  5791. box-sizing:border-box;
  5792. width:100%;
  5793. }
  5794. #u68177_text {
  5795. border-width:0px;
  5796. word-wrap:break-word;
  5797. text-transform:none;
  5798. }
  5799. #u68178_img {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:0px;
  5803. top:0px;
  5804. width:106px;
  5805. height:44px;
  5806. }
  5807. #u68178 {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:923px;
  5811. top:0px;
  5812. width:106px;
  5813. height:44px;
  5814. display:flex;
  5815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. font-size:12px;
  5819. color:#FFFFFF;
  5820. }
  5821. #u68178 .text {
  5822. position:absolute;
  5823. align-self:center;
  5824. padding:2px 2px 2px 0px;
  5825. box-sizing:border-box;
  5826. width:100%;
  5827. }
  5828. #u68178_text {
  5829. border-width:0px;
  5830. word-wrap:break-word;
  5831. text-transform:none;
  5832. }
  5833. #u68179_img {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:0px;
  5837. top:0px;
  5838. width:107px;
  5839. height:44px;
  5840. }
  5841. #u68179 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:1029px;
  5845. top:0px;
  5846. width:107px;
  5847. height:44px;
  5848. display:flex;
  5849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:12px;
  5853. color:#FFFFFF;
  5854. }
  5855. #u68179 .text {
  5856. position:absolute;
  5857. align-self:center;
  5858. padding:2px 2px 2px 0px;
  5859. box-sizing:border-box;
  5860. width:100%;
  5861. }
  5862. #u68179_text {
  5863. border-width:0px;
  5864. word-wrap:break-word;
  5865. text-transform:none;
  5866. }
  5867. #u68180_img {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:85px;
  5873. height:44px;
  5874. }
  5875. #u68180 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:1136px;
  5879. top:0px;
  5880. width:85px;
  5881. height:44px;
  5882. display:flex;
  5883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5884. font-weight:400;
  5885. font-style:normal;
  5886. font-size:12px;
  5887. color:#FFFFFF;
  5888. }
  5889. #u68180 .text {
  5890. position:absolute;
  5891. align-self:center;
  5892. padding:2px 2px 2px 0px;
  5893. box-sizing:border-box;
  5894. width:100%;
  5895. }
  5896. #u68180_text {
  5897. border-width:0px;
  5898. word-wrap:break-word;
  5899. text-transform:none;
  5900. }
  5901. #u68181_img {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:98px;
  5907. height:38px;
  5908. }
  5909. #u68181 {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:44px;
  5914. width:98px;
  5915. height:38px;
  5916. display:flex;
  5917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:12px;
  5921. color:#333333;
  5922. }
  5923. #u68181 .text {
  5924. position:absolute;
  5925. align-self:center;
  5926. padding:2px 2px 2px 0px;
  5927. box-sizing:border-box;
  5928. width:100%;
  5929. }
  5930. #u68181_text {
  5931. border-width:0px;
  5932. word-wrap:break-word;
  5933. text-transform:none;
  5934. visibility:hidden;
  5935. }
  5936. #u68182_img {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:110px;
  5942. height:38px;
  5943. }
  5944. #u68182 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:98px;
  5948. top:44px;
  5949. width:110px;
  5950. height:38px;
  5951. display:flex;
  5952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5953. font-weight:400;
  5954. font-style:normal;
  5955. font-size:12px;
  5956. color:#333333;
  5957. }
  5958. #u68182 .text {
  5959. position:absolute;
  5960. align-self:center;
  5961. padding:2px 2px 2px 0px;
  5962. box-sizing:border-box;
  5963. width:100%;
  5964. }
  5965. #u68182_text {
  5966. border-width:0px;
  5967. word-wrap:break-word;
  5968. text-transform:none;
  5969. visibility:hidden;
  5970. }
  5971. #u68183_img {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:63px;
  5977. height:38px;
  5978. }
  5979. #u68183 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:208px;
  5983. top:44px;
  5984. width:63px;
  5985. height:38px;
  5986. display:flex;
  5987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5988. font-weight:400;
  5989. font-style:normal;
  5990. font-size:12px;
  5991. color:#333333;
  5992. }
  5993. #u68183 .text {
  5994. position:absolute;
  5995. align-self:center;
  5996. padding:2px 2px 2px 0px;
  5997. box-sizing:border-box;
  5998. width:100%;
  5999. }
  6000. #u68183_text {
  6001. border-width:0px;
  6002. word-wrap:break-word;
  6003. text-transform:none;
  6004. visibility:hidden;
  6005. }
  6006. #u68184_img {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:98px;
  6012. height:38px;
  6013. }
  6014. #u68184 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:271px;
  6018. top:44px;
  6019. width:98px;
  6020. height:38px;
  6021. display:flex;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:12px;
  6026. color:#333333;
  6027. }
  6028. #u68184 .text {
  6029. position:absolute;
  6030. align-self:center;
  6031. padding:2px 2px 2px 0px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u68184_text {
  6036. border-width:0px;
  6037. word-wrap:break-word;
  6038. text-transform:none;
  6039. visibility:hidden;
  6040. }
  6041. #u68185_img {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:85px;
  6047. height:38px;
  6048. }
  6049. #u68185 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:369px;
  6053. top:44px;
  6054. width:85px;
  6055. height:38px;
  6056. display:flex;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:12px;
  6061. color:#333333;
  6062. }
  6063. #u68185 .text {
  6064. position:absolute;
  6065. align-self:center;
  6066. padding:2px 2px 2px 0px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u68185_text {
  6071. border-width:0px;
  6072. word-wrap:break-word;
  6073. text-transform:none;
  6074. visibility:hidden;
  6075. }
  6076. #u68186_img {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:0px;
  6080. top:0px;
  6081. width:85px;
  6082. height:38px;
  6083. }
  6084. #u68186 {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:454px;
  6088. top:44px;
  6089. width:85px;
  6090. height:38px;
  6091. display:flex;
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:12px;
  6096. color:#333333;
  6097. }
  6098. #u68186 .text {
  6099. position:absolute;
  6100. align-self:center;
  6101. padding:2px 2px 2px 0px;
  6102. box-sizing:border-box;
  6103. width:100%;
  6104. }
  6105. #u68186_text {
  6106. border-width:0px;
  6107. word-wrap:break-word;
  6108. text-transform:none;
  6109. visibility:hidden;
  6110. }
  6111. #u68187_img {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:85px;
  6117. height:38px;
  6118. }
  6119. #u68187 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:539px;
  6123. top:44px;
  6124. width:85px;
  6125. height:38px;
  6126. display:flex;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:12px;
  6131. color:#333333;
  6132. }
  6133. #u68187 .text {
  6134. position:absolute;
  6135. align-self:center;
  6136. padding:2px 2px 2px 0px;
  6137. box-sizing:border-box;
  6138. width:100%;
  6139. }
  6140. #u68187_text {
  6141. border-width:0px;
  6142. word-wrap:break-word;
  6143. text-transform:none;
  6144. visibility:hidden;
  6145. }
  6146. #u68188_img {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:95px;
  6152. height:38px;
  6153. }
  6154. #u68188 {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:624px;
  6158. top:44px;
  6159. width:95px;
  6160. height:38px;
  6161. display:flex;
  6162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6163. font-weight:400;
  6164. font-style:normal;
  6165. font-size:12px;
  6166. color:#333333;
  6167. }
  6168. #u68188 .text {
  6169. position:absolute;
  6170. align-self:center;
  6171. padding:2px 2px 2px 0px;
  6172. box-sizing:border-box;
  6173. width:100%;
  6174. }
  6175. #u68188_text {
  6176. border-width:0px;
  6177. word-wrap:break-word;
  6178. text-transform:none;
  6179. visibility:hidden;
  6180. }
  6181. #u68189_img {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:0px;
  6185. top:0px;
  6186. width:98px;
  6187. height:38px;
  6188. }
  6189. #u68189 {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:719px;
  6193. top:44px;
  6194. width:98px;
  6195. height:38px;
  6196. display:flex;
  6197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6198. font-weight:400;
  6199. font-style:normal;
  6200. font-size:12px;
  6201. color:#333333;
  6202. }
  6203. #u68189 .text {
  6204. position:absolute;
  6205. align-self:center;
  6206. padding:2px 2px 2px 0px;
  6207. box-sizing:border-box;
  6208. width:100%;
  6209. }
  6210. #u68189_text {
  6211. border-width:0px;
  6212. word-wrap:break-word;
  6213. text-transform:none;
  6214. }
  6215. #u68190_img {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:106px;
  6221. height:38px;
  6222. }
  6223. #u68190 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:817px;
  6227. top:44px;
  6228. width:106px;
  6229. height:38px;
  6230. display:flex;
  6231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6232. font-weight:400;
  6233. font-style:normal;
  6234. font-size:12px;
  6235. color:#333333;
  6236. }
  6237. #u68190 .text {
  6238. position:absolute;
  6239. align-self:center;
  6240. padding:2px 2px 2px 0px;
  6241. box-sizing:border-box;
  6242. width:100%;
  6243. }
  6244. #u68190_text {
  6245. border-width:0px;
  6246. word-wrap:break-word;
  6247. text-transform:none;
  6248. }
  6249. #u68191_img {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:106px;
  6255. height:38px;
  6256. }
  6257. #u68191 {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:923px;
  6261. top:44px;
  6262. width:106px;
  6263. height:38px;
  6264. display:flex;
  6265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:12px;
  6269. color:#333333;
  6270. }
  6271. #u68191 .text {
  6272. position:absolute;
  6273. align-self:center;
  6274. padding:2px 2px 2px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u68191_text {
  6279. border-width:0px;
  6280. word-wrap:break-word;
  6281. text-transform:none;
  6282. }
  6283. #u68192_img {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:107px;
  6289. height:38px;
  6290. }
  6291. #u68192 {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:1029px;
  6295. top:44px;
  6296. width:107px;
  6297. height:38px;
  6298. display:flex;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:12px;
  6303. color:#1890FF;
  6304. }
  6305. #u68192 .text {
  6306. position:absolute;
  6307. align-self:center;
  6308. padding:2px 2px 2px 0px;
  6309. box-sizing:border-box;
  6310. width:100%;
  6311. }
  6312. #u68192_text {
  6313. border-width:0px;
  6314. word-wrap:break-word;
  6315. text-transform:none;
  6316. }
  6317. #u68193_img {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:85px;
  6323. height:38px;
  6324. }
  6325. #u68193 {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:1136px;
  6329. top:44px;
  6330. width:85px;
  6331. height:38px;
  6332. display:flex;
  6333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6334. font-weight:400;
  6335. font-style:normal;
  6336. font-size:12px;
  6337. color:#0089FE;
  6338. }
  6339. #u68193 .text {
  6340. position:absolute;
  6341. align-self:center;
  6342. padding:2px 2px 2px 0px;
  6343. box-sizing:border-box;
  6344. width:100%;
  6345. }
  6346. #u68193_text {
  6347. border-width:0px;
  6348. word-wrap:break-word;
  6349. text-transform:none;
  6350. }
  6351. #u68194_img {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:98px;
  6357. height:38px;
  6358. }
  6359. #u68194 {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:82px;
  6364. width:98px;
  6365. height:38px;
  6366. display:flex;
  6367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. font-size:12px;
  6371. color:#333333;
  6372. }
  6373. #u68194 .text {
  6374. position:absolute;
  6375. align-self:center;
  6376. padding:2px 2px 2px 0px;
  6377. box-sizing:border-box;
  6378. width:100%;
  6379. }
  6380. #u68194_text {
  6381. border-width:0px;
  6382. word-wrap:break-word;
  6383. text-transform:none;
  6384. visibility:hidden;
  6385. }
  6386. #u68195_img {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:110px;
  6392. height:38px;
  6393. }
  6394. #u68195 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:98px;
  6398. top:82px;
  6399. width:110px;
  6400. height:38px;
  6401. display:flex;
  6402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6403. font-weight:400;
  6404. font-style:normal;
  6405. font-size:12px;
  6406. color:#333333;
  6407. }
  6408. #u68195 .text {
  6409. position:absolute;
  6410. align-self:center;
  6411. padding:2px 2px 2px 0px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u68195_text {
  6416. border-width:0px;
  6417. word-wrap:break-word;
  6418. text-transform:none;
  6419. visibility:hidden;
  6420. }
  6421. #u68196_img {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:0px;
  6425. top:0px;
  6426. width:63px;
  6427. height:38px;
  6428. }
  6429. #u68196 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:208px;
  6433. top:82px;
  6434. width:63px;
  6435. height:38px;
  6436. display:flex;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:12px;
  6441. color:#333333;
  6442. }
  6443. #u68196 .text {
  6444. position:absolute;
  6445. align-self:center;
  6446. padding:2px 2px 2px 0px;
  6447. box-sizing:border-box;
  6448. width:100%;
  6449. }
  6450. #u68196_text {
  6451. border-width:0px;
  6452. word-wrap:break-word;
  6453. text-transform:none;
  6454. visibility:hidden;
  6455. }
  6456. #u68197_img {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:98px;
  6462. height:38px;
  6463. }
  6464. #u68197 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:271px;
  6468. top:82px;
  6469. width:98px;
  6470. height:38px;
  6471. display:flex;
  6472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6473. font-weight:400;
  6474. font-style:normal;
  6475. font-size:12px;
  6476. color:#333333;
  6477. }
  6478. #u68197 .text {
  6479. position:absolute;
  6480. align-self:center;
  6481. padding:2px 2px 2px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u68197_text {
  6486. border-width:0px;
  6487. word-wrap:break-word;
  6488. text-transform:none;
  6489. visibility:hidden;
  6490. }
  6491. #u68198_img {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:85px;
  6497. height:38px;
  6498. }
  6499. #u68198 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:369px;
  6503. top:82px;
  6504. width:85px;
  6505. height:38px;
  6506. display:flex;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:12px;
  6511. color:#333333;
  6512. }
  6513. #u68198 .text {
  6514. position:absolute;
  6515. align-self:center;
  6516. padding:2px 2px 2px 0px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u68198_text {
  6521. border-width:0px;
  6522. word-wrap:break-word;
  6523. text-transform:none;
  6524. visibility:hidden;
  6525. }
  6526. #u68199_img {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:85px;
  6532. height:38px;
  6533. }
  6534. #u68199 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:454px;
  6538. top:82px;
  6539. width:85px;
  6540. height:38px;
  6541. display:flex;
  6542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:12px;
  6546. color:#333333;
  6547. }
  6548. #u68199 .text {
  6549. position:absolute;
  6550. align-self:center;
  6551. padding:2px 2px 2px 0px;
  6552. box-sizing:border-box;
  6553. width:100%;
  6554. }
  6555. #u68199_text {
  6556. border-width:0px;
  6557. word-wrap:break-word;
  6558. text-transform:none;
  6559. visibility:hidden;
  6560. }
  6561. #u68200_img {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:85px;
  6567. height:38px;
  6568. }
  6569. #u68200 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:539px;
  6573. top:82px;
  6574. width:85px;
  6575. height:38px;
  6576. display:flex;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:12px;
  6581. color:#333333;
  6582. }
  6583. #u68200 .text {
  6584. position:absolute;
  6585. align-self:center;
  6586. padding:2px 2px 2px 0px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u68200_text {
  6591. border-width:0px;
  6592. word-wrap:break-word;
  6593. text-transform:none;
  6594. visibility:hidden;
  6595. }
  6596. #u68201_img {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:95px;
  6602. height:38px;
  6603. }
  6604. #u68201 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:624px;
  6608. top:82px;
  6609. width:95px;
  6610. height:38px;
  6611. display:flex;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:12px;
  6616. color:#333333;
  6617. }
  6618. #u68201 .text {
  6619. position:absolute;
  6620. align-self:center;
  6621. padding:2px 2px 2px 0px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u68201_text {
  6626. border-width:0px;
  6627. word-wrap:break-word;
  6628. text-transform:none;
  6629. visibility:hidden;
  6630. }
  6631. #u68202_img {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:98px;
  6637. height:38px;
  6638. }
  6639. #u68202 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:719px;
  6643. top:82px;
  6644. width:98px;
  6645. height:38px;
  6646. display:flex;
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:12px;
  6651. color:#333333;
  6652. }
  6653. #u68202 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:2px 2px 2px 0px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u68202_text {
  6661. border-width:0px;
  6662. word-wrap:break-word;
  6663. text-transform:none;
  6664. visibility:hidden;
  6665. }
  6666. #u68203_img {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:106px;
  6672. height:38px;
  6673. }
  6674. #u68203 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:817px;
  6678. top:82px;
  6679. width:106px;
  6680. height:38px;
  6681. display:flex;
  6682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:12px;
  6686. color:#333333;
  6687. }
  6688. #u68203 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:2px 2px 2px 0px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u68203_text {
  6696. border-width:0px;
  6697. word-wrap:break-word;
  6698. text-transform:none;
  6699. visibility:hidden;
  6700. }
  6701. #u68204_img {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:106px;
  6707. height:38px;
  6708. }
  6709. #u68204 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:923px;
  6713. top:82px;
  6714. width:106px;
  6715. height:38px;
  6716. display:flex;
  6717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:12px;
  6721. color:#333333;
  6722. }
  6723. #u68204 .text {
  6724. position:absolute;
  6725. align-self:center;
  6726. padding:2px 2px 2px 0px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u68204_text {
  6731. border-width:0px;
  6732. word-wrap:break-word;
  6733. text-transform:none;
  6734. visibility:hidden;
  6735. }
  6736. #u68205_img {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:0px;
  6740. top:0px;
  6741. width:107px;
  6742. height:38px;
  6743. }
  6744. #u68205 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:1029px;
  6748. top:82px;
  6749. width:107px;
  6750. height:38px;
  6751. display:flex;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:12px;
  6756. color:#333333;
  6757. }
  6758. #u68205 .text {
  6759. position:absolute;
  6760. align-self:center;
  6761. padding:2px 2px 2px 0px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u68205_text {
  6766. border-width:0px;
  6767. word-wrap:break-word;
  6768. text-transform:none;
  6769. visibility:hidden;
  6770. }
  6771. #u68206_img {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:85px;
  6777. height:38px;
  6778. }
  6779. #u68206 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:1136px;
  6783. top:82px;
  6784. width:85px;
  6785. height:38px;
  6786. display:flex;
  6787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:12px;
  6791. color:#0089FE;
  6792. }
  6793. #u68206 .text {
  6794. position:absolute;
  6795. align-self:center;
  6796. padding:2px 2px 2px 0px;
  6797. box-sizing:border-box;
  6798. width:100%;
  6799. }
  6800. #u68206_text {
  6801. border-width:0px;
  6802. word-wrap:break-word;
  6803. text-transform:none;
  6804. }
  6805. #u68207_img {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:98px;
  6811. height:38px;
  6812. }
  6813. #u68207 {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:120px;
  6818. width:98px;
  6819. height:38px;
  6820. display:flex;
  6821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. font-size:12px;
  6825. color:#333333;
  6826. }
  6827. #u68207 .text {
  6828. position:absolute;
  6829. align-self:center;
  6830. padding:2px 2px 2px 0px;
  6831. box-sizing:border-box;
  6832. width:100%;
  6833. }
  6834. #u68207_text {
  6835. border-width:0px;
  6836. word-wrap:break-word;
  6837. text-transform:none;
  6838. visibility:hidden;
  6839. }
  6840. #u68208_img {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:0px;
  6844. top:0px;
  6845. width:110px;
  6846. height:38px;
  6847. }
  6848. #u68208 {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:98px;
  6852. top:120px;
  6853. width:110px;
  6854. height:38px;
  6855. display:flex;
  6856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6857. font-weight:400;
  6858. font-style:normal;
  6859. font-size:12px;
  6860. color:#333333;
  6861. }
  6862. #u68208 .text {
  6863. position:absolute;
  6864. align-self:center;
  6865. padding:2px 2px 2px 0px;
  6866. box-sizing:border-box;
  6867. width:100%;
  6868. }
  6869. #u68208_text {
  6870. border-width:0px;
  6871. word-wrap:break-word;
  6872. text-transform:none;
  6873. visibility:hidden;
  6874. }
  6875. #u68209_img {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:0px;
  6879. top:0px;
  6880. width:63px;
  6881. height:38px;
  6882. }
  6883. #u68209 {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:208px;
  6887. top:120px;
  6888. width:63px;
  6889. height:38px;
  6890. display:flex;
  6891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6892. font-weight:400;
  6893. font-style:normal;
  6894. font-size:12px;
  6895. color:#333333;
  6896. }
  6897. #u68209 .text {
  6898. position:absolute;
  6899. align-self:center;
  6900. padding:2px 2px 2px 0px;
  6901. box-sizing:border-box;
  6902. width:100%;
  6903. }
  6904. #u68209_text {
  6905. border-width:0px;
  6906. word-wrap:break-word;
  6907. text-transform:none;
  6908. visibility:hidden;
  6909. }
  6910. #u68210_img {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:0px;
  6914. top:0px;
  6915. width:98px;
  6916. height:38px;
  6917. }
  6918. #u68210 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:271px;
  6922. top:120px;
  6923. width:98px;
  6924. height:38px;
  6925. display:flex;
  6926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:12px;
  6930. color:#333333;
  6931. }
  6932. #u68210 .text {
  6933. position:absolute;
  6934. align-self:center;
  6935. padding:2px 2px 2px 0px;
  6936. box-sizing:border-box;
  6937. width:100%;
  6938. }
  6939. #u68210_text {
  6940. border-width:0px;
  6941. word-wrap:break-word;
  6942. text-transform:none;
  6943. visibility:hidden;
  6944. }
  6945. #u68211_img {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:85px;
  6951. height:38px;
  6952. }
  6953. #u68211 {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:369px;
  6957. top:120px;
  6958. width:85px;
  6959. height:38px;
  6960. display:flex;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:12px;
  6965. color:#333333;
  6966. }
  6967. #u68211 .text {
  6968. position:absolute;
  6969. align-self:center;
  6970. padding:2px 2px 2px 0px;
  6971. box-sizing:border-box;
  6972. width:100%;
  6973. }
  6974. #u68211_text {
  6975. border-width:0px;
  6976. word-wrap:break-word;
  6977. text-transform:none;
  6978. visibility:hidden;
  6979. }
  6980. #u68212_img {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:85px;
  6986. height:38px;
  6987. }
  6988. #u68212 {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:454px;
  6992. top:120px;
  6993. width:85px;
  6994. height:38px;
  6995. display:flex;
  6996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6997. font-weight:400;
  6998. font-style:normal;
  6999. font-size:12px;
  7000. color:#333333;
  7001. }
  7002. #u68212 .text {
  7003. position:absolute;
  7004. align-self:center;
  7005. padding:2px 2px 2px 0px;
  7006. box-sizing:border-box;
  7007. width:100%;
  7008. }
  7009. #u68212_text {
  7010. border-width:0px;
  7011. word-wrap:break-word;
  7012. text-transform:none;
  7013. visibility:hidden;
  7014. }
  7015. #u68213_img {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:85px;
  7021. height:38px;
  7022. }
  7023. #u68213 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:539px;
  7027. top:120px;
  7028. width:85px;
  7029. height:38px;
  7030. display:flex;
  7031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. font-size:12px;
  7035. color:#333333;
  7036. }
  7037. #u68213 .text {
  7038. position:absolute;
  7039. align-self:center;
  7040. padding:2px 2px 2px 0px;
  7041. box-sizing:border-box;
  7042. width:100%;
  7043. }
  7044. #u68213_text {
  7045. border-width:0px;
  7046. word-wrap:break-word;
  7047. text-transform:none;
  7048. visibility:hidden;
  7049. }
  7050. #u68214_img {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:0px;
  7054. top:0px;
  7055. width:95px;
  7056. height:38px;
  7057. }
  7058. #u68214 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:624px;
  7062. top:120px;
  7063. width:95px;
  7064. height:38px;
  7065. display:flex;
  7066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:12px;
  7070. color:#333333;
  7071. }
  7072. #u68214 .text {
  7073. position:absolute;
  7074. align-self:center;
  7075. padding:2px 2px 2px 0px;
  7076. box-sizing:border-box;
  7077. width:100%;
  7078. }
  7079. #u68214_text {
  7080. border-width:0px;
  7081. word-wrap:break-word;
  7082. text-transform:none;
  7083. visibility:hidden;
  7084. }
  7085. #u68215_img {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:98px;
  7091. height:38px;
  7092. }
  7093. #u68215 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:719px;
  7097. top:120px;
  7098. width:98px;
  7099. height:38px;
  7100. display:flex;
  7101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7102. font-weight:400;
  7103. font-style:normal;
  7104. font-size:12px;
  7105. color:#333333;
  7106. }
  7107. #u68215 .text {
  7108. position:absolute;
  7109. align-self:center;
  7110. padding:2px 2px 2px 0px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u68215_text {
  7115. border-width:0px;
  7116. word-wrap:break-word;
  7117. text-transform:none;
  7118. visibility:hidden;
  7119. }
  7120. #u68216_img {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:106px;
  7126. height:38px;
  7127. }
  7128. #u68216 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:817px;
  7132. top:120px;
  7133. width:106px;
  7134. height:38px;
  7135. display:flex;
  7136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7137. font-weight:400;
  7138. font-style:normal;
  7139. font-size:12px;
  7140. color:#333333;
  7141. }
  7142. #u68216 .text {
  7143. position:absolute;
  7144. align-self:center;
  7145. padding:2px 2px 2px 0px;
  7146. box-sizing:border-box;
  7147. width:100%;
  7148. }
  7149. #u68216_text {
  7150. border-width:0px;
  7151. word-wrap:break-word;
  7152. text-transform:none;
  7153. visibility:hidden;
  7154. }
  7155. #u68217_img {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:106px;
  7161. height:38px;
  7162. }
  7163. #u68217 {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:923px;
  7167. top:120px;
  7168. width:106px;
  7169. height:38px;
  7170. display:flex;
  7171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7172. font-weight:400;
  7173. font-style:normal;
  7174. font-size:12px;
  7175. color:#333333;
  7176. }
  7177. #u68217 .text {
  7178. position:absolute;
  7179. align-self:center;
  7180. padding:2px 2px 2px 0px;
  7181. box-sizing:border-box;
  7182. width:100%;
  7183. }
  7184. #u68217_text {
  7185. border-width:0px;
  7186. word-wrap:break-word;
  7187. text-transform:none;
  7188. visibility:hidden;
  7189. }
  7190. #u68218_img {
  7191. border-width:0px;
  7192. position:absolute;
  7193. left:0px;
  7194. top:0px;
  7195. width:107px;
  7196. height:38px;
  7197. }
  7198. #u68218 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:1029px;
  7202. top:120px;
  7203. width:107px;
  7204. height:38px;
  7205. display:flex;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:12px;
  7210. color:#333333;
  7211. }
  7212. #u68218 .text {
  7213. position:absolute;
  7214. align-self:center;
  7215. padding:2px 2px 2px 0px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u68218_text {
  7220. border-width:0px;
  7221. word-wrap:break-word;
  7222. text-transform:none;
  7223. visibility:hidden;
  7224. }
  7225. #u68219_img {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:85px;
  7231. height:38px;
  7232. }
  7233. #u68219 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:1136px;
  7237. top:120px;
  7238. width:85px;
  7239. height:38px;
  7240. display:flex;
  7241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7242. font-weight:400;
  7243. font-style:normal;
  7244. font-size:12px;
  7245. color:#0089FE;
  7246. }
  7247. #u68219 .text {
  7248. position:absolute;
  7249. align-self:center;
  7250. padding:2px 2px 2px 0px;
  7251. box-sizing:border-box;
  7252. width:100%;
  7253. }
  7254. #u68219_text {
  7255. border-width:0px;
  7256. word-wrap:break-word;
  7257. text-transform:none;
  7258. visibility:hidden;
  7259. }
  7260. #u68220_img {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:98px;
  7266. height:38px;
  7267. }
  7268. #u68220 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:0px;
  7272. top:158px;
  7273. width:98px;
  7274. height:38px;
  7275. display:flex;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:12px;
  7280. color:#333333;
  7281. }
  7282. #u68220 .text {
  7283. position:absolute;
  7284. align-self:center;
  7285. padding:2px 2px 2px 0px;
  7286. box-sizing:border-box;
  7287. width:100%;
  7288. }
  7289. #u68220_text {
  7290. border-width:0px;
  7291. word-wrap:break-word;
  7292. text-transform:none;
  7293. visibility:hidden;
  7294. }
  7295. #u68221_img {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:110px;
  7301. height:38px;
  7302. }
  7303. #u68221 {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:98px;
  7307. top:158px;
  7308. width:110px;
  7309. height:38px;
  7310. display:flex;
  7311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7312. font-weight:400;
  7313. font-style:normal;
  7314. font-size:12px;
  7315. color:#333333;
  7316. }
  7317. #u68221 .text {
  7318. position:absolute;
  7319. align-self:center;
  7320. padding:2px 2px 2px 0px;
  7321. box-sizing:border-box;
  7322. width:100%;
  7323. }
  7324. #u68221_text {
  7325. border-width:0px;
  7326. word-wrap:break-word;
  7327. text-transform:none;
  7328. visibility:hidden;
  7329. }
  7330. #u68222_img {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:0px;
  7334. top:0px;
  7335. width:63px;
  7336. height:38px;
  7337. }
  7338. #u68222 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:208px;
  7342. top:158px;
  7343. width:63px;
  7344. height:38px;
  7345. display:flex;
  7346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:12px;
  7350. color:#333333;
  7351. }
  7352. #u68222 .text {
  7353. position:absolute;
  7354. align-self:center;
  7355. padding:2px 2px 2px 0px;
  7356. box-sizing:border-box;
  7357. width:100%;
  7358. }
  7359. #u68222_text {
  7360. border-width:0px;
  7361. word-wrap:break-word;
  7362. text-transform:none;
  7363. visibility:hidden;
  7364. }
  7365. #u68223_img {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:0px;
  7369. top:0px;
  7370. width:98px;
  7371. height:38px;
  7372. }
  7373. #u68223 {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:271px;
  7377. top:158px;
  7378. width:98px;
  7379. height:38px;
  7380. display:flex;
  7381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7382. font-weight:400;
  7383. font-style:normal;
  7384. font-size:12px;
  7385. color:#333333;
  7386. }
  7387. #u68223 .text {
  7388. position:absolute;
  7389. align-self:center;
  7390. padding:2px 2px 2px 0px;
  7391. box-sizing:border-box;
  7392. width:100%;
  7393. }
  7394. #u68223_text {
  7395. border-width:0px;
  7396. word-wrap:break-word;
  7397. text-transform:none;
  7398. visibility:hidden;
  7399. }
  7400. #u68224_img {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:85px;
  7406. height:38px;
  7407. }
  7408. #u68224 {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:369px;
  7412. top:158px;
  7413. width:85px;
  7414. height:38px;
  7415. display:flex;
  7416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7417. font-weight:400;
  7418. font-style:normal;
  7419. font-size:12px;
  7420. color:#333333;
  7421. }
  7422. #u68224 .text {
  7423. position:absolute;
  7424. align-self:center;
  7425. padding:2px 2px 2px 0px;
  7426. box-sizing:border-box;
  7427. width:100%;
  7428. }
  7429. #u68224_text {
  7430. border-width:0px;
  7431. word-wrap:break-word;
  7432. text-transform:none;
  7433. visibility:hidden;
  7434. }
  7435. #u68225_img {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:0px;
  7439. top:0px;
  7440. width:85px;
  7441. height:38px;
  7442. }
  7443. #u68225 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:454px;
  7447. top:158px;
  7448. width:85px;
  7449. height:38px;
  7450. display:flex;
  7451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7452. font-weight:400;
  7453. font-style:normal;
  7454. font-size:12px;
  7455. color:#333333;
  7456. }
  7457. #u68225 .text {
  7458. position:absolute;
  7459. align-self:center;
  7460. padding:2px 2px 2px 0px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u68225_text {
  7465. border-width:0px;
  7466. word-wrap:break-word;
  7467. text-transform:none;
  7468. visibility:hidden;
  7469. }
  7470. #u68226_img {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:85px;
  7476. height:38px;
  7477. }
  7478. #u68226 {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:539px;
  7482. top:158px;
  7483. width:85px;
  7484. height:38px;
  7485. display:flex;
  7486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7487. font-weight:400;
  7488. font-style:normal;
  7489. font-size:12px;
  7490. color:#333333;
  7491. }
  7492. #u68226 .text {
  7493. position:absolute;
  7494. align-self:center;
  7495. padding:2px 2px 2px 0px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u68226_text {
  7500. border-width:0px;
  7501. word-wrap:break-word;
  7502. text-transform:none;
  7503. visibility:hidden;
  7504. }
  7505. #u68227_img {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:0px;
  7509. top:0px;
  7510. width:95px;
  7511. height:38px;
  7512. }
  7513. #u68227 {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:624px;
  7517. top:158px;
  7518. width:95px;
  7519. height:38px;
  7520. display:flex;
  7521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7522. font-weight:400;
  7523. font-style:normal;
  7524. font-size:12px;
  7525. color:#333333;
  7526. }
  7527. #u68227 .text {
  7528. position:absolute;
  7529. align-self:center;
  7530. padding:2px 2px 2px 0px;
  7531. box-sizing:border-box;
  7532. width:100%;
  7533. }
  7534. #u68227_text {
  7535. border-width:0px;
  7536. word-wrap:break-word;
  7537. text-transform:none;
  7538. visibility:hidden;
  7539. }
  7540. #u68228_img {
  7541. border-width:0px;
  7542. position:absolute;
  7543. left:0px;
  7544. top:0px;
  7545. width:98px;
  7546. height:38px;
  7547. }
  7548. #u68228 {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:719px;
  7552. top:158px;
  7553. width:98px;
  7554. height:38px;
  7555. display:flex;
  7556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7557. font-weight:400;
  7558. font-style:normal;
  7559. font-size:12px;
  7560. color:#333333;
  7561. }
  7562. #u68228 .text {
  7563. position:absolute;
  7564. align-self:center;
  7565. padding:2px 2px 2px 0px;
  7566. box-sizing:border-box;
  7567. width:100%;
  7568. }
  7569. #u68228_text {
  7570. border-width:0px;
  7571. word-wrap:break-word;
  7572. text-transform:none;
  7573. visibility:hidden;
  7574. }
  7575. #u68229_img {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:106px;
  7581. height:38px;
  7582. }
  7583. #u68229 {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:817px;
  7587. top:158px;
  7588. width:106px;
  7589. height:38px;
  7590. display:flex;
  7591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7592. font-weight:400;
  7593. font-style:normal;
  7594. font-size:12px;
  7595. color:#333333;
  7596. }
  7597. #u68229 .text {
  7598. position:absolute;
  7599. align-self:center;
  7600. padding:2px 2px 2px 0px;
  7601. box-sizing:border-box;
  7602. width:100%;
  7603. }
  7604. #u68229_text {
  7605. border-width:0px;
  7606. word-wrap:break-word;
  7607. text-transform:none;
  7608. visibility:hidden;
  7609. }
  7610. #u68230_img {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:0px;
  7614. top:0px;
  7615. width:106px;
  7616. height:38px;
  7617. }
  7618. #u68230 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:923px;
  7622. top:158px;
  7623. width:106px;
  7624. height:38px;
  7625. display:flex;
  7626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7627. font-weight:400;
  7628. font-style:normal;
  7629. font-size:12px;
  7630. color:#333333;
  7631. }
  7632. #u68230 .text {
  7633. position:absolute;
  7634. align-self:center;
  7635. padding:2px 2px 2px 0px;
  7636. box-sizing:border-box;
  7637. width:100%;
  7638. }
  7639. #u68230_text {
  7640. border-width:0px;
  7641. word-wrap:break-word;
  7642. text-transform:none;
  7643. visibility:hidden;
  7644. }
  7645. #u68231_img {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:107px;
  7651. height:38px;
  7652. }
  7653. #u68231 {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:1029px;
  7657. top:158px;
  7658. width:107px;
  7659. height:38px;
  7660. display:flex;
  7661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7662. font-weight:400;
  7663. font-style:normal;
  7664. font-size:12px;
  7665. color:#333333;
  7666. }
  7667. #u68231 .text {
  7668. position:absolute;
  7669. align-self:center;
  7670. padding:2px 2px 2px 0px;
  7671. box-sizing:border-box;
  7672. width:100%;
  7673. }
  7674. #u68231_text {
  7675. border-width:0px;
  7676. word-wrap:break-word;
  7677. text-transform:none;
  7678. visibility:hidden;
  7679. }
  7680. #u68232_img {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:0px;
  7684. top:0px;
  7685. width:85px;
  7686. height:38px;
  7687. }
  7688. #u68232 {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:1136px;
  7692. top:158px;
  7693. width:85px;
  7694. height:38px;
  7695. display:flex;
  7696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7697. font-weight:400;
  7698. font-style:normal;
  7699. font-size:12px;
  7700. color:#AAAAAA;
  7701. }
  7702. #u68232 .text {
  7703. position:absolute;
  7704. align-self:center;
  7705. padding:2px 2px 2px 0px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u68232_text {
  7710. border-width:0px;
  7711. word-wrap:break-word;
  7712. text-transform:none;
  7713. visibility:hidden;
  7714. }
  7715. #u68233_img {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:98px;
  7721. height:35px;
  7722. }
  7723. #u68233 {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:0px;
  7727. top:196px;
  7728. width:98px;
  7729. height:35px;
  7730. display:flex;
  7731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7732. font-weight:400;
  7733. font-style:normal;
  7734. font-size:12px;
  7735. color:#333333;
  7736. }
  7737. #u68233 .text {
  7738. position:absolute;
  7739. align-self:center;
  7740. padding:2px 2px 2px 0px;
  7741. box-sizing:border-box;
  7742. width:100%;
  7743. }
  7744. #u68233_text {
  7745. border-width:0px;
  7746. word-wrap:break-word;
  7747. text-transform:none;
  7748. visibility:hidden;
  7749. }
  7750. #u68234_img {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:0px;
  7754. top:0px;
  7755. width:110px;
  7756. height:35px;
  7757. }
  7758. #u68234 {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:98px;
  7762. top:196px;
  7763. width:110px;
  7764. height:35px;
  7765. display:flex;
  7766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7767. font-weight:400;
  7768. font-style:normal;
  7769. font-size:12px;
  7770. color:#333333;
  7771. }
  7772. #u68234 .text {
  7773. position:absolute;
  7774. align-self:center;
  7775. padding:2px 2px 2px 0px;
  7776. box-sizing:border-box;
  7777. width:100%;
  7778. }
  7779. #u68234_text {
  7780. border-width:0px;
  7781. word-wrap:break-word;
  7782. text-transform:none;
  7783. visibility:hidden;
  7784. }
  7785. #u68235_img {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:0px;
  7789. top:0px;
  7790. width:63px;
  7791. height:35px;
  7792. }
  7793. #u68235 {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:208px;
  7797. top:196px;
  7798. width:63px;
  7799. height:35px;
  7800. display:flex;
  7801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7802. font-weight:400;
  7803. font-style:normal;
  7804. font-size:12px;
  7805. color:#333333;
  7806. }
  7807. #u68235 .text {
  7808. position:absolute;
  7809. align-self:center;
  7810. padding:2px 2px 2px 0px;
  7811. box-sizing:border-box;
  7812. width:100%;
  7813. }
  7814. #u68235_text {
  7815. border-width:0px;
  7816. word-wrap:break-word;
  7817. text-transform:none;
  7818. visibility:hidden;
  7819. }
  7820. #u68236_img {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:0px;
  7824. top:0px;
  7825. width:98px;
  7826. height:35px;
  7827. }
  7828. #u68236 {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:271px;
  7832. top:196px;
  7833. width:98px;
  7834. height:35px;
  7835. display:flex;
  7836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7837. font-weight:400;
  7838. font-style:normal;
  7839. font-size:12px;
  7840. color:#333333;
  7841. }
  7842. #u68236 .text {
  7843. position:absolute;
  7844. align-self:center;
  7845. padding:2px 2px 2px 0px;
  7846. box-sizing:border-box;
  7847. width:100%;
  7848. }
  7849. #u68236_text {
  7850. border-width:0px;
  7851. word-wrap:break-word;
  7852. text-transform:none;
  7853. visibility:hidden;
  7854. }
  7855. #u68237_img {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:85px;
  7861. height:35px;
  7862. }
  7863. #u68237 {
  7864. border-width:0px;
  7865. position:absolute;
  7866. left:369px;
  7867. top:196px;
  7868. width:85px;
  7869. height:35px;
  7870. display:flex;
  7871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7872. font-weight:400;
  7873. font-style:normal;
  7874. font-size:12px;
  7875. color:#333333;
  7876. }
  7877. #u68237 .text {
  7878. position:absolute;
  7879. align-self:center;
  7880. padding:2px 2px 2px 0px;
  7881. box-sizing:border-box;
  7882. width:100%;
  7883. }
  7884. #u68237_text {
  7885. border-width:0px;
  7886. word-wrap:break-word;
  7887. text-transform:none;
  7888. visibility:hidden;
  7889. }
  7890. #u68238_img {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:0px;
  7894. top:0px;
  7895. width:85px;
  7896. height:35px;
  7897. }
  7898. #u68238 {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:454px;
  7902. top:196px;
  7903. width:85px;
  7904. height:35px;
  7905. display:flex;
  7906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7907. font-weight:400;
  7908. font-style:normal;
  7909. font-size:12px;
  7910. color:#333333;
  7911. }
  7912. #u68238 .text {
  7913. position:absolute;
  7914. align-self:center;
  7915. padding:2px 2px 2px 0px;
  7916. box-sizing:border-box;
  7917. width:100%;
  7918. }
  7919. #u68238_text {
  7920. border-width:0px;
  7921. word-wrap:break-word;
  7922. text-transform:none;
  7923. visibility:hidden;
  7924. }
  7925. #u68239_img {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:0px;
  7929. top:0px;
  7930. width:85px;
  7931. height:35px;
  7932. }
  7933. #u68239 {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:539px;
  7937. top:196px;
  7938. width:85px;
  7939. height:35px;
  7940. display:flex;
  7941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:12px;
  7945. color:#333333;
  7946. }
  7947. #u68239 .text {
  7948. position:absolute;
  7949. align-self:center;
  7950. padding:2px 2px 2px 0px;
  7951. box-sizing:border-box;
  7952. width:100%;
  7953. }
  7954. #u68239_text {
  7955. border-width:0px;
  7956. word-wrap:break-word;
  7957. text-transform:none;
  7958. visibility:hidden;
  7959. }
  7960. #u68240_img {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:95px;
  7966. height:35px;
  7967. }
  7968. #u68240 {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:624px;
  7972. top:196px;
  7973. width:95px;
  7974. height:35px;
  7975. display:flex;
  7976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7977. font-weight:400;
  7978. font-style:normal;
  7979. font-size:12px;
  7980. color:#333333;
  7981. }
  7982. #u68240 .text {
  7983. position:absolute;
  7984. align-self:center;
  7985. padding:2px 2px 2px 0px;
  7986. box-sizing:border-box;
  7987. width:100%;
  7988. }
  7989. #u68240_text {
  7990. border-width:0px;
  7991. word-wrap:break-word;
  7992. text-transform:none;
  7993. visibility:hidden;
  7994. }
  7995. #u68241_img {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:0px;
  7999. top:0px;
  8000. width:98px;
  8001. height:35px;
  8002. }
  8003. #u68241 {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:719px;
  8007. top:196px;
  8008. width:98px;
  8009. height:35px;
  8010. display:flex;
  8011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8012. font-weight:400;
  8013. font-style:normal;
  8014. font-size:12px;
  8015. color:#333333;
  8016. }
  8017. #u68241 .text {
  8018. position:absolute;
  8019. align-self:center;
  8020. padding:2px 2px 2px 0px;
  8021. box-sizing:border-box;
  8022. width:100%;
  8023. }
  8024. #u68241_text {
  8025. border-width:0px;
  8026. word-wrap:break-word;
  8027. text-transform:none;
  8028. visibility:hidden;
  8029. }
  8030. #u68242_img {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:0px;
  8034. top:0px;
  8035. width:106px;
  8036. height:35px;
  8037. }
  8038. #u68242 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:817px;
  8042. top:196px;
  8043. width:106px;
  8044. height:35px;
  8045. display:flex;
  8046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8047. font-weight:400;
  8048. font-style:normal;
  8049. font-size:12px;
  8050. color:#333333;
  8051. }
  8052. #u68242 .text {
  8053. position:absolute;
  8054. align-self:center;
  8055. padding:2px 2px 2px 0px;
  8056. box-sizing:border-box;
  8057. width:100%;
  8058. }
  8059. #u68242_text {
  8060. border-width:0px;
  8061. word-wrap:break-word;
  8062. text-transform:none;
  8063. visibility:hidden;
  8064. }
  8065. #u68243_img {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:0px;
  8069. top:0px;
  8070. width:106px;
  8071. height:35px;
  8072. }
  8073. #u68243 {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:923px;
  8077. top:196px;
  8078. width:106px;
  8079. height:35px;
  8080. display:flex;
  8081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8082. font-weight:400;
  8083. font-style:normal;
  8084. font-size:12px;
  8085. color:#333333;
  8086. }
  8087. #u68243 .text {
  8088. position:absolute;
  8089. align-self:center;
  8090. padding:2px 2px 2px 0px;
  8091. box-sizing:border-box;
  8092. width:100%;
  8093. }
  8094. #u68243_text {
  8095. border-width:0px;
  8096. word-wrap:break-word;
  8097. text-transform:none;
  8098. visibility:hidden;
  8099. }
  8100. #u68244_img {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:0px;
  8104. top:0px;
  8105. width:107px;
  8106. height:35px;
  8107. }
  8108. #u68244 {
  8109. border-width:0px;
  8110. position:absolute;
  8111. left:1029px;
  8112. top:196px;
  8113. width:107px;
  8114. height:35px;
  8115. display:flex;
  8116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8117. font-weight:400;
  8118. font-style:normal;
  8119. font-size:12px;
  8120. color:#333333;
  8121. }
  8122. #u68244 .text {
  8123. position:absolute;
  8124. align-self:center;
  8125. padding:2px 2px 2px 0px;
  8126. box-sizing:border-box;
  8127. width:100%;
  8128. }
  8129. #u68244_text {
  8130. border-width:0px;
  8131. word-wrap:break-word;
  8132. text-transform:none;
  8133. visibility:hidden;
  8134. }
  8135. #u68245_img {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:0px;
  8139. top:0px;
  8140. width:85px;
  8141. height:35px;
  8142. }
  8143. #u68245 {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:1136px;
  8147. top:196px;
  8148. width:85px;
  8149. height:35px;
  8150. display:flex;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:12px;
  8155. color:#AAAAAA;
  8156. }
  8157. #u68245 .text {
  8158. position:absolute;
  8159. align-self:center;
  8160. padding:2px 2px 2px 0px;
  8161. box-sizing:border-box;
  8162. width:100%;
  8163. }
  8164. #u68245_text {
  8165. border-width:0px;
  8166. word-wrap:break-word;
  8167. text-transform:none;
  8168. visibility:hidden;
  8169. }
  8170. #u68246_img {
  8171. border-width:0px;
  8172. position:absolute;
  8173. left:0px;
  8174. top:0px;
  8175. width:98px;
  8176. height:35px;
  8177. }
  8178. #u68246 {
  8179. border-width:0px;
  8180. position:absolute;
  8181. left:0px;
  8182. top:231px;
  8183. width:98px;
  8184. height:35px;
  8185. display:flex;
  8186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8187. font-weight:400;
  8188. font-style:normal;
  8189. font-size:12px;
  8190. color:#333333;
  8191. }
  8192. #u68246 .text {
  8193. position:absolute;
  8194. align-self:center;
  8195. padding:2px 2px 2px 0px;
  8196. box-sizing:border-box;
  8197. width:100%;
  8198. }
  8199. #u68246_text {
  8200. border-width:0px;
  8201. word-wrap:break-word;
  8202. text-transform:none;
  8203. visibility:hidden;
  8204. }
  8205. #u68247_img {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:0px;
  8209. top:0px;
  8210. width:110px;
  8211. height:35px;
  8212. }
  8213. #u68247 {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:98px;
  8217. top:231px;
  8218. width:110px;
  8219. height:35px;
  8220. display:flex;
  8221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8222. font-weight:400;
  8223. font-style:normal;
  8224. font-size:12px;
  8225. color:#333333;
  8226. }
  8227. #u68247 .text {
  8228. position:absolute;
  8229. align-self:center;
  8230. padding:2px 2px 2px 0px;
  8231. box-sizing:border-box;
  8232. width:100%;
  8233. }
  8234. #u68247_text {
  8235. border-width:0px;
  8236. word-wrap:break-word;
  8237. text-transform:none;
  8238. visibility:hidden;
  8239. }
  8240. #u68248_img {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:63px;
  8246. height:35px;
  8247. }
  8248. #u68248 {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:208px;
  8252. top:231px;
  8253. width:63px;
  8254. height:35px;
  8255. display:flex;
  8256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. font-size:12px;
  8260. color:#333333;
  8261. }
  8262. #u68248 .text {
  8263. position:absolute;
  8264. align-self:center;
  8265. padding:2px 2px 2px 0px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u68248_text {
  8270. border-width:0px;
  8271. word-wrap:break-word;
  8272. text-transform:none;
  8273. visibility:hidden;
  8274. }
  8275. #u68249_img {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:98px;
  8281. height:35px;
  8282. }
  8283. #u68249 {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:271px;
  8287. top:231px;
  8288. width:98px;
  8289. height:35px;
  8290. display:flex;
  8291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:12px;
  8295. color:#333333;
  8296. }
  8297. #u68249 .text {
  8298. position:absolute;
  8299. align-self:center;
  8300. padding:2px 2px 2px 0px;
  8301. box-sizing:border-box;
  8302. width:100%;
  8303. }
  8304. #u68249_text {
  8305. border-width:0px;
  8306. word-wrap:break-word;
  8307. text-transform:none;
  8308. visibility:hidden;
  8309. }
  8310. #u68250_img {
  8311. border-width:0px;
  8312. position:absolute;
  8313. left:0px;
  8314. top:0px;
  8315. width:85px;
  8316. height:35px;
  8317. }
  8318. #u68250 {
  8319. border-width:0px;
  8320. position:absolute;
  8321. left:369px;
  8322. top:231px;
  8323. width:85px;
  8324. height:35px;
  8325. display:flex;
  8326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8327. font-weight:400;
  8328. font-style:normal;
  8329. font-size:12px;
  8330. color:#333333;
  8331. }
  8332. #u68250 .text {
  8333. position:absolute;
  8334. align-self:center;
  8335. padding:2px 2px 2px 0px;
  8336. box-sizing:border-box;
  8337. width:100%;
  8338. }
  8339. #u68250_text {
  8340. border-width:0px;
  8341. word-wrap:break-word;
  8342. text-transform:none;
  8343. visibility:hidden;
  8344. }
  8345. #u68251_img {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:0px;
  8349. top:0px;
  8350. width:85px;
  8351. height:35px;
  8352. }
  8353. #u68251 {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:454px;
  8357. top:231px;
  8358. width:85px;
  8359. height:35px;
  8360. display:flex;
  8361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8362. font-weight:400;
  8363. font-style:normal;
  8364. font-size:12px;
  8365. color:#333333;
  8366. }
  8367. #u68251 .text {
  8368. position:absolute;
  8369. align-self:center;
  8370. padding:2px 2px 2px 0px;
  8371. box-sizing:border-box;
  8372. width:100%;
  8373. }
  8374. #u68251_text {
  8375. border-width:0px;
  8376. word-wrap:break-word;
  8377. text-transform:none;
  8378. visibility:hidden;
  8379. }
  8380. #u68252_img {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:0px;
  8384. top:0px;
  8385. width:85px;
  8386. height:35px;
  8387. }
  8388. #u68252 {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:539px;
  8392. top:231px;
  8393. width:85px;
  8394. height:35px;
  8395. display:flex;
  8396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8397. font-weight:400;
  8398. font-style:normal;
  8399. font-size:12px;
  8400. color:#333333;
  8401. }
  8402. #u68252 .text {
  8403. position:absolute;
  8404. align-self:center;
  8405. padding:2px 2px 2px 0px;
  8406. box-sizing:border-box;
  8407. width:100%;
  8408. }
  8409. #u68252_text {
  8410. border-width:0px;
  8411. word-wrap:break-word;
  8412. text-transform:none;
  8413. visibility:hidden;
  8414. }
  8415. #u68253_img {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:0px;
  8419. top:0px;
  8420. width:95px;
  8421. height:35px;
  8422. }
  8423. #u68253 {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:624px;
  8427. top:231px;
  8428. width:95px;
  8429. height:35px;
  8430. display:flex;
  8431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:12px;
  8435. color:#333333;
  8436. }
  8437. #u68253 .text {
  8438. position:absolute;
  8439. align-self:center;
  8440. padding:2px 2px 2px 0px;
  8441. box-sizing:border-box;
  8442. width:100%;
  8443. }
  8444. #u68253_text {
  8445. border-width:0px;
  8446. word-wrap:break-word;
  8447. text-transform:none;
  8448. visibility:hidden;
  8449. }
  8450. #u68254_img {
  8451. border-width:0px;
  8452. position:absolute;
  8453. left:0px;
  8454. top:0px;
  8455. width:98px;
  8456. height:35px;
  8457. }
  8458. #u68254 {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:719px;
  8462. top:231px;
  8463. width:98px;
  8464. height:35px;
  8465. display:flex;
  8466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8467. font-weight:400;
  8468. font-style:normal;
  8469. font-size:12px;
  8470. color:#333333;
  8471. }
  8472. #u68254 .text {
  8473. position:absolute;
  8474. align-self:center;
  8475. padding:2px 2px 2px 0px;
  8476. box-sizing:border-box;
  8477. width:100%;
  8478. }
  8479. #u68254_text {
  8480. border-width:0px;
  8481. word-wrap:break-word;
  8482. text-transform:none;
  8483. visibility:hidden;
  8484. }
  8485. #u68255_img {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:0px;
  8489. top:0px;
  8490. width:106px;
  8491. height:35px;
  8492. }
  8493. #u68255 {
  8494. border-width:0px;
  8495. position:absolute;
  8496. left:817px;
  8497. top:231px;
  8498. width:106px;
  8499. height:35px;
  8500. display:flex;
  8501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8502. font-weight:400;
  8503. font-style:normal;
  8504. font-size:12px;
  8505. color:#333333;
  8506. }
  8507. #u68255 .text {
  8508. position:absolute;
  8509. align-self:center;
  8510. padding:2px 2px 2px 0px;
  8511. box-sizing:border-box;
  8512. width:100%;
  8513. }
  8514. #u68255_text {
  8515. border-width:0px;
  8516. word-wrap:break-word;
  8517. text-transform:none;
  8518. visibility:hidden;
  8519. }
  8520. #u68256_img {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:106px;
  8526. height:35px;
  8527. }
  8528. #u68256 {
  8529. border-width:0px;
  8530. position:absolute;
  8531. left:923px;
  8532. top:231px;
  8533. width:106px;
  8534. height:35px;
  8535. display:flex;
  8536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8537. font-weight:400;
  8538. font-style:normal;
  8539. font-size:12px;
  8540. color:#333333;
  8541. }
  8542. #u68256 .text {
  8543. position:absolute;
  8544. align-self:center;
  8545. padding:2px 2px 2px 0px;
  8546. box-sizing:border-box;
  8547. width:100%;
  8548. }
  8549. #u68256_text {
  8550. border-width:0px;
  8551. word-wrap:break-word;
  8552. text-transform:none;
  8553. visibility:hidden;
  8554. }
  8555. #u68257_img {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:107px;
  8561. height:35px;
  8562. }
  8563. #u68257 {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:1029px;
  8567. top:231px;
  8568. width:107px;
  8569. height:35px;
  8570. display:flex;
  8571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8572. font-weight:400;
  8573. font-style:normal;
  8574. font-size:12px;
  8575. color:#333333;
  8576. }
  8577. #u68257 .text {
  8578. position:absolute;
  8579. align-self:center;
  8580. padding:2px 2px 2px 0px;
  8581. box-sizing:border-box;
  8582. width:100%;
  8583. }
  8584. #u68257_text {
  8585. border-width:0px;
  8586. word-wrap:break-word;
  8587. text-transform:none;
  8588. visibility:hidden;
  8589. }
  8590. #u68258_img {
  8591. border-width:0px;
  8592. position:absolute;
  8593. left:0px;
  8594. top:0px;
  8595. width:85px;
  8596. height:35px;
  8597. }
  8598. #u68258 {
  8599. border-width:0px;
  8600. position:absolute;
  8601. left:1136px;
  8602. top:231px;
  8603. width:85px;
  8604. height:35px;
  8605. display:flex;
  8606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8607. font-weight:400;
  8608. font-style:normal;
  8609. font-size:12px;
  8610. color:#333333;
  8611. }
  8612. #u68258 .text {
  8613. position:absolute;
  8614. align-self:center;
  8615. padding:2px 2px 2px 0px;
  8616. box-sizing:border-box;
  8617. width:100%;
  8618. }
  8619. #u68258_text {
  8620. border-width:0px;
  8621. word-wrap:break-word;
  8622. text-transform:none;
  8623. visibility:hidden;
  8624. }
  8625. #u68259_img {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:0px;
  8629. top:0px;
  8630. width:98px;
  8631. height:32px;
  8632. }
  8633. #u68259 {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:0px;
  8637. top:266px;
  8638. width:98px;
  8639. height:32px;
  8640. display:flex;
  8641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. font-size:12px;
  8645. color:#333333;
  8646. }
  8647. #u68259 .text {
  8648. position:absolute;
  8649. align-self:center;
  8650. padding:2px 2px 2px 0px;
  8651. box-sizing:border-box;
  8652. width:100%;
  8653. }
  8654. #u68259_text {
  8655. border-width:0px;
  8656. word-wrap:break-word;
  8657. text-transform:none;
  8658. visibility:hidden;
  8659. }
  8660. #u68260_img {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:0px;
  8664. top:0px;
  8665. width:110px;
  8666. height:32px;
  8667. }
  8668. #u68260 {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:98px;
  8672. top:266px;
  8673. width:110px;
  8674. height:32px;
  8675. display:flex;
  8676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8677. font-weight:400;
  8678. font-style:normal;
  8679. font-size:12px;
  8680. color:#333333;
  8681. }
  8682. #u68260 .text {
  8683. position:absolute;
  8684. align-self:center;
  8685. padding:2px 2px 2px 0px;
  8686. box-sizing:border-box;
  8687. width:100%;
  8688. }
  8689. #u68260_text {
  8690. border-width:0px;
  8691. word-wrap:break-word;
  8692. text-transform:none;
  8693. visibility:hidden;
  8694. }
  8695. #u68261_img {
  8696. border-width:0px;
  8697. position:absolute;
  8698. left:0px;
  8699. top:0px;
  8700. width:63px;
  8701. height:32px;
  8702. }
  8703. #u68261 {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:208px;
  8707. top:266px;
  8708. width:63px;
  8709. height:32px;
  8710. display:flex;
  8711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8712. font-weight:400;
  8713. font-style:normal;
  8714. font-size:12px;
  8715. color:#333333;
  8716. }
  8717. #u68261 .text {
  8718. position:absolute;
  8719. align-self:center;
  8720. padding:2px 2px 2px 0px;
  8721. box-sizing:border-box;
  8722. width:100%;
  8723. }
  8724. #u68261_text {
  8725. border-width:0px;
  8726. word-wrap:break-word;
  8727. text-transform:none;
  8728. visibility:hidden;
  8729. }
  8730. #u68262_img {
  8731. border-width:0px;
  8732. position:absolute;
  8733. left:0px;
  8734. top:0px;
  8735. width:98px;
  8736. height:32px;
  8737. }
  8738. #u68262 {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:271px;
  8742. top:266px;
  8743. width:98px;
  8744. height:32px;
  8745. display:flex;
  8746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8747. font-weight:400;
  8748. font-style:normal;
  8749. font-size:12px;
  8750. color:#333333;
  8751. }
  8752. #u68262 .text {
  8753. position:absolute;
  8754. align-self:center;
  8755. padding:2px 2px 2px 0px;
  8756. box-sizing:border-box;
  8757. width:100%;
  8758. }
  8759. #u68262_text {
  8760. border-width:0px;
  8761. word-wrap:break-word;
  8762. text-transform:none;
  8763. visibility:hidden;
  8764. }
  8765. #u68263_img {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:0px;
  8769. top:0px;
  8770. width:85px;
  8771. height:32px;
  8772. }
  8773. #u68263 {
  8774. border-width:0px;
  8775. position:absolute;
  8776. left:369px;
  8777. top:266px;
  8778. width:85px;
  8779. height:32px;
  8780. display:flex;
  8781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8782. font-weight:400;
  8783. font-style:normal;
  8784. font-size:12px;
  8785. color:#333333;
  8786. }
  8787. #u68263 .text {
  8788. position:absolute;
  8789. align-self:center;
  8790. padding:2px 2px 2px 0px;
  8791. box-sizing:border-box;
  8792. width:100%;
  8793. }
  8794. #u68263_text {
  8795. border-width:0px;
  8796. word-wrap:break-word;
  8797. text-transform:none;
  8798. visibility:hidden;
  8799. }
  8800. #u68264_img {
  8801. border-width:0px;
  8802. position:absolute;
  8803. left:0px;
  8804. top:0px;
  8805. width:85px;
  8806. height:32px;
  8807. }
  8808. #u68264 {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:454px;
  8812. top:266px;
  8813. width:85px;
  8814. height:32px;
  8815. display:flex;
  8816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8817. font-weight:400;
  8818. font-style:normal;
  8819. font-size:12px;
  8820. color:#333333;
  8821. }
  8822. #u68264 .text {
  8823. position:absolute;
  8824. align-self:center;
  8825. padding:2px 2px 2px 0px;
  8826. box-sizing:border-box;
  8827. width:100%;
  8828. }
  8829. #u68264_text {
  8830. border-width:0px;
  8831. word-wrap:break-word;
  8832. text-transform:none;
  8833. visibility:hidden;
  8834. }
  8835. #u68265_img {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:0px;
  8839. top:0px;
  8840. width:85px;
  8841. height:32px;
  8842. }
  8843. #u68265 {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:539px;
  8847. top:266px;
  8848. width:85px;
  8849. height:32px;
  8850. display:flex;
  8851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8852. font-weight:400;
  8853. font-style:normal;
  8854. font-size:12px;
  8855. color:#333333;
  8856. }
  8857. #u68265 .text {
  8858. position:absolute;
  8859. align-self:center;
  8860. padding:2px 2px 2px 0px;
  8861. box-sizing:border-box;
  8862. width:100%;
  8863. }
  8864. #u68265_text {
  8865. border-width:0px;
  8866. word-wrap:break-word;
  8867. text-transform:none;
  8868. visibility:hidden;
  8869. }
  8870. #u68266_img {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:0px;
  8874. top:0px;
  8875. width:95px;
  8876. height:32px;
  8877. }
  8878. #u68266 {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:624px;
  8882. top:266px;
  8883. width:95px;
  8884. height:32px;
  8885. display:flex;
  8886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8887. font-weight:400;
  8888. font-style:normal;
  8889. font-size:12px;
  8890. color:#333333;
  8891. }
  8892. #u68266 .text {
  8893. position:absolute;
  8894. align-self:center;
  8895. padding:2px 2px 2px 0px;
  8896. box-sizing:border-box;
  8897. width:100%;
  8898. }
  8899. #u68266_text {
  8900. border-width:0px;
  8901. word-wrap:break-word;
  8902. text-transform:none;
  8903. visibility:hidden;
  8904. }
  8905. #u68267_img {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:0px;
  8909. top:0px;
  8910. width:98px;
  8911. height:32px;
  8912. }
  8913. #u68267 {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:719px;
  8917. top:266px;
  8918. width:98px;
  8919. height:32px;
  8920. display:flex;
  8921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8922. font-weight:400;
  8923. font-style:normal;
  8924. font-size:12px;
  8925. color:#333333;
  8926. }
  8927. #u68267 .text {
  8928. position:absolute;
  8929. align-self:center;
  8930. padding:2px 2px 2px 0px;
  8931. box-sizing:border-box;
  8932. width:100%;
  8933. }
  8934. #u68267_text {
  8935. border-width:0px;
  8936. word-wrap:break-word;
  8937. text-transform:none;
  8938. visibility:hidden;
  8939. }
  8940. #u68268_img {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:0px;
  8944. top:0px;
  8945. width:106px;
  8946. height:32px;
  8947. }
  8948. #u68268 {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:817px;
  8952. top:266px;
  8953. width:106px;
  8954. height:32px;
  8955. display:flex;
  8956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8957. font-weight:400;
  8958. font-style:normal;
  8959. font-size:12px;
  8960. color:#333333;
  8961. }
  8962. #u68268 .text {
  8963. position:absolute;
  8964. align-self:center;
  8965. padding:2px 2px 2px 0px;
  8966. box-sizing:border-box;
  8967. width:100%;
  8968. }
  8969. #u68268_text {
  8970. border-width:0px;
  8971. word-wrap:break-word;
  8972. text-transform:none;
  8973. visibility:hidden;
  8974. }
  8975. #u68269_img {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:0px;
  8979. top:0px;
  8980. width:106px;
  8981. height:32px;
  8982. }
  8983. #u68269 {
  8984. border-width:0px;
  8985. position:absolute;
  8986. left:923px;
  8987. top:266px;
  8988. width:106px;
  8989. height:32px;
  8990. display:flex;
  8991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8992. font-weight:400;
  8993. font-style:normal;
  8994. font-size:12px;
  8995. color:#333333;
  8996. }
  8997. #u68269 .text {
  8998. position:absolute;
  8999. align-self:center;
  9000. padding:2px 2px 2px 0px;
  9001. box-sizing:border-box;
  9002. width:100%;
  9003. }
  9004. #u68269_text {
  9005. border-width:0px;
  9006. word-wrap:break-word;
  9007. text-transform:none;
  9008. visibility:hidden;
  9009. }
  9010. #u68270_img {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:0px;
  9014. top:0px;
  9015. width:107px;
  9016. height:32px;
  9017. }
  9018. #u68270 {
  9019. border-width:0px;
  9020. position:absolute;
  9021. left:1029px;
  9022. top:266px;
  9023. width:107px;
  9024. height:32px;
  9025. display:flex;
  9026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9027. font-weight:400;
  9028. font-style:normal;
  9029. font-size:12px;
  9030. color:#333333;
  9031. }
  9032. #u68270 .text {
  9033. position:absolute;
  9034. align-self:center;
  9035. padding:2px 2px 2px 0px;
  9036. box-sizing:border-box;
  9037. width:100%;
  9038. }
  9039. #u68270_text {
  9040. border-width:0px;
  9041. word-wrap:break-word;
  9042. text-transform:none;
  9043. visibility:hidden;
  9044. }
  9045. #u68271_img {
  9046. border-width:0px;
  9047. position:absolute;
  9048. left:0px;
  9049. top:0px;
  9050. width:85px;
  9051. height:32px;
  9052. }
  9053. #u68271 {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:1136px;
  9057. top:266px;
  9058. width:85px;
  9059. height:32px;
  9060. display:flex;
  9061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9062. font-weight:400;
  9063. font-style:normal;
  9064. font-size:12px;
  9065. color:#333333;
  9066. }
  9067. #u68271 .text {
  9068. position:absolute;
  9069. align-self:center;
  9070. padding:2px 2px 2px 0px;
  9071. box-sizing:border-box;
  9072. width:100%;
  9073. }
  9074. #u68271_text {
  9075. border-width:0px;
  9076. word-wrap:break-word;
  9077. text-transform:none;
  9078. visibility:hidden;
  9079. }
  9080. #u68272_img {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:0px;
  9084. top:0px;
  9085. width:98px;
  9086. height:30px;
  9087. }
  9088. #u68272 {
  9089. border-width:0px;
  9090. position:absolute;
  9091. left:0px;
  9092. top:298px;
  9093. width:98px;
  9094. height:30px;
  9095. display:flex;
  9096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9097. font-weight:400;
  9098. font-style:normal;
  9099. font-size:12px;
  9100. color:#333333;
  9101. }
  9102. #u68272 .text {
  9103. position:absolute;
  9104. align-self:center;
  9105. padding:2px 2px 2px 0px;
  9106. box-sizing:border-box;
  9107. width:100%;
  9108. }
  9109. #u68272_text {
  9110. border-width:0px;
  9111. word-wrap:break-word;
  9112. text-transform:none;
  9113. visibility:hidden;
  9114. }
  9115. #u68273_img {
  9116. border-width:0px;
  9117. position:absolute;
  9118. left:0px;
  9119. top:0px;
  9120. width:110px;
  9121. height:30px;
  9122. }
  9123. #u68273 {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:98px;
  9127. top:298px;
  9128. width:110px;
  9129. height:30px;
  9130. display:flex;
  9131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9132. font-weight:400;
  9133. font-style:normal;
  9134. font-size:12px;
  9135. color:#333333;
  9136. }
  9137. #u68273 .text {
  9138. position:absolute;
  9139. align-self:center;
  9140. padding:2px 2px 2px 0px;
  9141. box-sizing:border-box;
  9142. width:100%;
  9143. }
  9144. #u68273_text {
  9145. border-width:0px;
  9146. word-wrap:break-word;
  9147. text-transform:none;
  9148. visibility:hidden;
  9149. }
  9150. #u68274_img {
  9151. border-width:0px;
  9152. position:absolute;
  9153. left:0px;
  9154. top:0px;
  9155. width:63px;
  9156. height:30px;
  9157. }
  9158. #u68274 {
  9159. border-width:0px;
  9160. position:absolute;
  9161. left:208px;
  9162. top:298px;
  9163. width:63px;
  9164. height:30px;
  9165. display:flex;
  9166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9167. font-weight:400;
  9168. font-style:normal;
  9169. font-size:12px;
  9170. color:#333333;
  9171. }
  9172. #u68274 .text {
  9173. position:absolute;
  9174. align-self:center;
  9175. padding:2px 2px 2px 0px;
  9176. box-sizing:border-box;
  9177. width:100%;
  9178. }
  9179. #u68274_text {
  9180. border-width:0px;
  9181. word-wrap:break-word;
  9182. text-transform:none;
  9183. visibility:hidden;
  9184. }
  9185. #u68275_img {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:98px;
  9191. height:30px;
  9192. }
  9193. #u68275 {
  9194. border-width:0px;
  9195. position:absolute;
  9196. left:271px;
  9197. top:298px;
  9198. width:98px;
  9199. height:30px;
  9200. display:flex;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9202. font-weight:400;
  9203. font-style:normal;
  9204. font-size:12px;
  9205. color:#333333;
  9206. }
  9207. #u68275 .text {
  9208. position:absolute;
  9209. align-self:center;
  9210. padding:2px 2px 2px 0px;
  9211. box-sizing:border-box;
  9212. width:100%;
  9213. }
  9214. #u68275_text {
  9215. border-width:0px;
  9216. word-wrap:break-word;
  9217. text-transform:none;
  9218. visibility:hidden;
  9219. }
  9220. #u68276_img {
  9221. border-width:0px;
  9222. position:absolute;
  9223. left:0px;
  9224. top:0px;
  9225. width:85px;
  9226. height:30px;
  9227. }
  9228. #u68276 {
  9229. border-width:0px;
  9230. position:absolute;
  9231. left:369px;
  9232. top:298px;
  9233. width:85px;
  9234. height:30px;
  9235. display:flex;
  9236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9237. font-weight:400;
  9238. font-style:normal;
  9239. font-size:12px;
  9240. color:#333333;
  9241. }
  9242. #u68276 .text {
  9243. position:absolute;
  9244. align-self:center;
  9245. padding:2px 2px 2px 0px;
  9246. box-sizing:border-box;
  9247. width:100%;
  9248. }
  9249. #u68276_text {
  9250. border-width:0px;
  9251. word-wrap:break-word;
  9252. text-transform:none;
  9253. visibility:hidden;
  9254. }
  9255. #u68277_img {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:0px;
  9259. top:0px;
  9260. width:85px;
  9261. height:30px;
  9262. }
  9263. #u68277 {
  9264. border-width:0px;
  9265. position:absolute;
  9266. left:454px;
  9267. top:298px;
  9268. width:85px;
  9269. height:30px;
  9270. display:flex;
  9271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9272. font-weight:400;
  9273. font-style:normal;
  9274. font-size:12px;
  9275. color:#333333;
  9276. }
  9277. #u68277 .text {
  9278. position:absolute;
  9279. align-self:center;
  9280. padding:2px 2px 2px 0px;
  9281. box-sizing:border-box;
  9282. width:100%;
  9283. }
  9284. #u68277_text {
  9285. border-width:0px;
  9286. word-wrap:break-word;
  9287. text-transform:none;
  9288. visibility:hidden;
  9289. }
  9290. #u68278_img {
  9291. border-width:0px;
  9292. position:absolute;
  9293. left:0px;
  9294. top:0px;
  9295. width:85px;
  9296. height:30px;
  9297. }
  9298. #u68278 {
  9299. border-width:0px;
  9300. position:absolute;
  9301. left:539px;
  9302. top:298px;
  9303. width:85px;
  9304. height:30px;
  9305. display:flex;
  9306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9307. font-weight:400;
  9308. font-style:normal;
  9309. font-size:12px;
  9310. color:#333333;
  9311. }
  9312. #u68278 .text {
  9313. position:absolute;
  9314. align-self:center;
  9315. padding:2px 2px 2px 0px;
  9316. box-sizing:border-box;
  9317. width:100%;
  9318. }
  9319. #u68278_text {
  9320. border-width:0px;
  9321. word-wrap:break-word;
  9322. text-transform:none;
  9323. visibility:hidden;
  9324. }
  9325. #u68279_img {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:95px;
  9331. height:30px;
  9332. }
  9333. #u68279 {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:624px;
  9337. top:298px;
  9338. width:95px;
  9339. height:30px;
  9340. display:flex;
  9341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9342. font-weight:400;
  9343. font-style:normal;
  9344. font-size:12px;
  9345. color:#333333;
  9346. }
  9347. #u68279 .text {
  9348. position:absolute;
  9349. align-self:center;
  9350. padding:2px 2px 2px 0px;
  9351. box-sizing:border-box;
  9352. width:100%;
  9353. }
  9354. #u68279_text {
  9355. border-width:0px;
  9356. word-wrap:break-word;
  9357. text-transform:none;
  9358. visibility:hidden;
  9359. }
  9360. #u68280_img {
  9361. border-width:0px;
  9362. position:absolute;
  9363. left:0px;
  9364. top:0px;
  9365. width:98px;
  9366. height:30px;
  9367. }
  9368. #u68280 {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:719px;
  9372. top:298px;
  9373. width:98px;
  9374. height:30px;
  9375. display:flex;
  9376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9377. font-weight:400;
  9378. font-style:normal;
  9379. font-size:12px;
  9380. color:#333333;
  9381. }
  9382. #u68280 .text {
  9383. position:absolute;
  9384. align-self:center;
  9385. padding:2px 2px 2px 0px;
  9386. box-sizing:border-box;
  9387. width:100%;
  9388. }
  9389. #u68280_text {
  9390. border-width:0px;
  9391. word-wrap:break-word;
  9392. text-transform:none;
  9393. visibility:hidden;
  9394. }
  9395. #u68281_img {
  9396. border-width:0px;
  9397. position:absolute;
  9398. left:0px;
  9399. top:0px;
  9400. width:106px;
  9401. height:30px;
  9402. }
  9403. #u68281 {
  9404. border-width:0px;
  9405. position:absolute;
  9406. left:817px;
  9407. top:298px;
  9408. width:106px;
  9409. height:30px;
  9410. display:flex;
  9411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9412. font-weight:400;
  9413. font-style:normal;
  9414. font-size:12px;
  9415. color:#333333;
  9416. }
  9417. #u68281 .text {
  9418. position:absolute;
  9419. align-self:center;
  9420. padding:2px 2px 2px 0px;
  9421. box-sizing:border-box;
  9422. width:100%;
  9423. }
  9424. #u68281_text {
  9425. border-width:0px;
  9426. word-wrap:break-word;
  9427. text-transform:none;
  9428. visibility:hidden;
  9429. }
  9430. #u68282_img {
  9431. border-width:0px;
  9432. position:absolute;
  9433. left:0px;
  9434. top:0px;
  9435. width:106px;
  9436. height:30px;
  9437. }
  9438. #u68282 {
  9439. border-width:0px;
  9440. position:absolute;
  9441. left:923px;
  9442. top:298px;
  9443. width:106px;
  9444. height:30px;
  9445. display:flex;
  9446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9447. font-weight:400;
  9448. font-style:normal;
  9449. font-size:12px;
  9450. color:#333333;
  9451. }
  9452. #u68282 .text {
  9453. position:absolute;
  9454. align-self:center;
  9455. padding:2px 2px 2px 0px;
  9456. box-sizing:border-box;
  9457. width:100%;
  9458. }
  9459. #u68282_text {
  9460. border-width:0px;
  9461. word-wrap:break-word;
  9462. text-transform:none;
  9463. visibility:hidden;
  9464. }
  9465. #u68283_img {
  9466. border-width:0px;
  9467. position:absolute;
  9468. left:0px;
  9469. top:0px;
  9470. width:107px;
  9471. height:30px;
  9472. }
  9473. #u68283 {
  9474. border-width:0px;
  9475. position:absolute;
  9476. left:1029px;
  9477. top:298px;
  9478. width:107px;
  9479. height:30px;
  9480. display:flex;
  9481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9482. font-weight:400;
  9483. font-style:normal;
  9484. font-size:12px;
  9485. color:#333333;
  9486. }
  9487. #u68283 .text {
  9488. position:absolute;
  9489. align-self:center;
  9490. padding:2px 2px 2px 0px;
  9491. box-sizing:border-box;
  9492. width:100%;
  9493. }
  9494. #u68283_text {
  9495. border-width:0px;
  9496. word-wrap:break-word;
  9497. text-transform:none;
  9498. visibility:hidden;
  9499. }
  9500. #u68284_img {
  9501. border-width:0px;
  9502. position:absolute;
  9503. left:0px;
  9504. top:0px;
  9505. width:85px;
  9506. height:30px;
  9507. }
  9508. #u68284 {
  9509. border-width:0px;
  9510. position:absolute;
  9511. left:1136px;
  9512. top:298px;
  9513. width:85px;
  9514. height:30px;
  9515. display:flex;
  9516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9517. font-weight:400;
  9518. font-style:normal;
  9519. font-size:12px;
  9520. color:#333333;
  9521. }
  9522. #u68284 .text {
  9523. position:absolute;
  9524. align-self:center;
  9525. padding:2px 2px 2px 0px;
  9526. box-sizing:border-box;
  9527. width:100%;
  9528. }
  9529. #u68284_text {
  9530. border-width:0px;
  9531. word-wrap:break-word;
  9532. text-transform:none;
  9533. visibility:hidden;
  9534. }
  9535. #u68285_div {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:0px;
  9539. top:0px;
  9540. width:55px;
  9541. height:50px;
  9542. background:inherit;
  9543. background-color:rgba(255, 255, 255, 0);
  9544. border:none;
  9545. border-left:0px;
  9546. border-top:0px;
  9547. border-right:0px;
  9548. border-radius:0px;
  9549. border-bottom-right-radius:0px;
  9550. border-bottom-left-radius:0px;
  9551. -moz-box-shadow:none;
  9552. -webkit-box-shadow:none;
  9553. box-shadow:none;
  9554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9555. font-weight:400;
  9556. font-style:normal;
  9557. font-size:18px;
  9558. color:#000000;
  9559. line-height:40px;
  9560. }
  9561. #u68285 {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:352px;
  9565. top:50px;
  9566. width:55px;
  9567. height:50px;
  9568. display:flex;
  9569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9570. font-weight:400;
  9571. font-style:normal;
  9572. font-size:18px;
  9573. color:#000000;
  9574. line-height:40px;
  9575. }
  9576. #u68285 .text {
  9577. position:absolute;
  9578. align-self:center;
  9579. padding:0px 0px 0px 0px;
  9580. box-sizing:border-box;
  9581. width:100%;
  9582. }
  9583. #u68285_text {
  9584. border-width:0px;
  9585. white-space:nowrap;
  9586. text-transform:none;
  9587. }
  9588. #u68286 {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:0px;
  9592. top:0px;
  9593. width:0px;
  9594. height:0px;
  9595. }
  9596. #u68287_div {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:140px;
  9602. height:30px;
  9603. background:inherit;
  9604. background-color:rgba(255, 255, 255, 1);
  9605. box-sizing:border-box;
  9606. border-width:1px;
  9607. border-style:solid;
  9608. border-color:rgba(215, 215, 215, 1);
  9609. border-radius:4px;
  9610. -moz-box-shadow:none;
  9611. -webkit-box-shadow:none;
  9612. box-shadow:none;
  9613. font-size:11px;
  9614. }
  9615. #u68287 {
  9616. border-width:0px;
  9617. position:absolute;
  9618. left:502px;
  9619. top:110px;
  9620. width:140px;
  9621. height:30px;
  9622. display:flex;
  9623. font-size:11px;
  9624. }
  9625. #u68287 .text {
  9626. position:absolute;
  9627. align-self:center;
  9628. padding:2px 2px 2px 2px;
  9629. box-sizing:border-box;
  9630. width:100%;
  9631. }
  9632. #u68287_text {
  9633. border-width:0px;
  9634. word-wrap:break-word;
  9635. text-transform:none;
  9636. visibility:hidden;
  9637. }
  9638. #u68288_input {
  9639. position:absolute;
  9640. left:0px;
  9641. top:0px;
  9642. width:126px;
  9643. height:23px;
  9644. padding:2px 2px 2px 2px;
  9645. font-family:'ArialMT', 'Arial', sans-serif;
  9646. font-weight:400;
  9647. font-style:normal;
  9648. font-size:11px;
  9649. letter-spacing:normal;
  9650. color:#AAAAAA;
  9651. vertical-align:none;
  9652. text-align:left;
  9653. text-transform:none;
  9654. background-color:transparent;
  9655. border-color:transparent;
  9656. }
  9657. #u68288_input.disabled {
  9658. position:absolute;
  9659. left:0px;
  9660. top:0px;
  9661. width:126px;
  9662. height:23px;
  9663. padding:2px 2px 2px 2px;
  9664. font-family:'ArialMT', 'Arial', sans-serif;
  9665. font-weight:400;
  9666. font-style:normal;
  9667. font-size:11px;
  9668. letter-spacing:normal;
  9669. color:#AAAAAA;
  9670. vertical-align:none;
  9671. text-align:left;
  9672. text-transform:none;
  9673. background-color:transparent;
  9674. border-color:transparent;
  9675. }
  9676. #u68288_div {
  9677. border-width:0px;
  9678. position:absolute;
  9679. left:0px;
  9680. top:0px;
  9681. width:126px;
  9682. height:23px;
  9683. background:inherit;
  9684. background-color:rgba(255, 255, 255, 1);
  9685. border:none;
  9686. border-radius:0px;
  9687. -moz-box-shadow:none;
  9688. -webkit-box-shadow:none;
  9689. box-shadow:none;
  9690. font-size:11px;
  9691. color:#AAAAAA;
  9692. }
  9693. #u68288 {
  9694. border-width:0px;
  9695. position:absolute;
  9696. left:509px;
  9697. top:112px;
  9698. width:126px;
  9699. height:23px;
  9700. display:flex;
  9701. font-size:11px;
  9702. color:#AAAAAA;
  9703. }
  9704. #u68288 .text {
  9705. position:absolute;
  9706. align-self:flex-start;
  9707. padding:2px 2px 2px 2px;
  9708. box-sizing:border-box;
  9709. width:100%;
  9710. }
  9711. #u68288_div.disabled {
  9712. border-width:0px;
  9713. position:absolute;
  9714. left:0px;
  9715. top:0px;
  9716. width:126px;
  9717. height:23px;
  9718. background:inherit;
  9719. background-color:rgba(240, 240, 240, 1);
  9720. border:none;
  9721. border-radius:0px;
  9722. -moz-box-shadow:none;
  9723. -webkit-box-shadow:none;
  9724. box-shadow:none;
  9725. font-size:11px;
  9726. color:#AAAAAA;
  9727. }
  9728. #u68288.disabled {
  9729. }
  9730. .u68288_input_option {
  9731. font-size:11px;
  9732. }
  9733. #u68289_img {
  9734. border-width:0px;
  9735. position:absolute;
  9736. left:-5px;
  9737. top:-5px;
  9738. width:1161px;
  9739. height:427px;
  9740. }
  9741. #u68289 {
  9742. border-width:0px;
  9743. position:absolute;
  9744. left:401px;
  9745. top:685px;
  9746. width:1151px;
  9747. height:417px;
  9748. display:flex;
  9749. }
  9750. #u68289 .text {
  9751. position:absolute;
  9752. align-self:center;
  9753. padding:2px 2px 2px 2px;
  9754. box-sizing:border-box;
  9755. width:100%;
  9756. }
  9757. #u68289_text {
  9758. border-width:0px;
  9759. word-wrap:break-word;
  9760. text-transform:none;
  9761. visibility:hidden;
  9762. }
  9763. #u68291 {
  9764. border-width:0px;
  9765. position:absolute;
  9766. left:0px;
  9767. top:0px;
  9768. width:0px;
  9769. height:0px;
  9770. }
  9771. #u68292_img {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:0px;
  9775. top:0px;
  9776. width:200px;
  9777. height:1191px;
  9778. }
  9779. #u68292 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:120px;
  9783. top:50px;
  9784. width:200px;
  9785. height:1191px;
  9786. display:flex;
  9787. }
  9788. #u68292 .text {
  9789. position:absolute;
  9790. align-self:center;
  9791. padding:2px 2px 2px 2px;
  9792. box-sizing:border-box;
  9793. width:100%;
  9794. }
  9795. #u68292_text {
  9796. border-width:0px;
  9797. word-wrap:break-word;
  9798. text-transform:none;
  9799. visibility:hidden;
  9800. }
  9801. #u68293_div {
  9802. border-width:0px;
  9803. position:absolute;
  9804. left:0px;
  9805. top:0px;
  9806. width:200px;
  9807. height:60px;
  9808. background:inherit;
  9809. background-color:rgba(224, 231, 247, 1);
  9810. border:none;
  9811. border-radius:0px;
  9812. -moz-box-shadow:none;
  9813. -webkit-box-shadow:none;
  9814. box-shadow:none;
  9815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9816. font-weight:500;
  9817. font-style:normal;
  9818. font-size:18px;
  9819. }
  9820. #u68293 {
  9821. border-width:0px;
  9822. position:absolute;
  9823. left:120px;
  9824. top:50px;
  9825. width:200px;
  9826. height:60px;
  9827. display:flex;
  9828. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9829. font-weight:500;
  9830. font-style:normal;
  9831. font-size:18px;
  9832. }
  9833. #u68293 .text {
  9834. position:absolute;
  9835. align-self:center;
  9836. padding:0px 0px 0px 20px;
  9837. box-sizing:border-box;
  9838. width:100%;
  9839. }
  9840. #u68293_text {
  9841. border-width:0px;
  9842. word-wrap:break-word;
  9843. text-transform:none;
  9844. }
  9845. #u68294 {
  9846. border-width:0px;
  9847. position:absolute;
  9848. left:120px;
  9849. top:130px;
  9850. width:200px;
  9851. height:1078px;
  9852. }
  9853. #u68294_state0 {
  9854. border-width:0px;
  9855. position:absolute;
  9856. left:0px;
  9857. top:0px;
  9858. width:200px;
  9859. height:1078px;
  9860. overflow:auto;
  9861. -webkit-overflow-scrolling:touch;
  9862. -ms-overflow-x:hidden;
  9863. overflow-x:hidden;
  9864. background-image:none;
  9865. border:none;
  9866. border-radius:0px;
  9867. -moz-box-shadow:none;
  9868. -webkit-box-shadow:none;
  9869. box-shadow:none;
  9870. }
  9871. #u68294_state0_content {
  9872. border-width:0px;
  9873. position:absolute;
  9874. left:0px;
  9875. top:0px;
  9876. width:1px;
  9877. height:1px;
  9878. }
  9879. #u68295_div {
  9880. border-width:0px;
  9881. position:absolute;
  9882. left:0px;
  9883. top:0px;
  9884. width:97px;
  9885. height:22px;
  9886. background:inherit;
  9887. background-color:rgba(255, 255, 255, 0);
  9888. border:none;
  9889. border-radius:0px;
  9890. -moz-box-shadow:none;
  9891. -webkit-box-shadow:none;
  9892. box-shadow:none;
  9893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9894. font-weight:400;
  9895. font-style:normal;
  9896. font-size:16px;
  9897. }
  9898. #u68295 {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:30px;
  9902. top:0px;
  9903. width:97px;
  9904. height:22px;
  9905. display:flex;
  9906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9907. font-weight:400;
  9908. font-style:normal;
  9909. font-size:16px;
  9910. }
  9911. #u68295 .text {
  9912. position:absolute;
  9913. align-self:flex-start;
  9914. padding:0px 0px 0px 0px;
  9915. box-sizing:border-box;
  9916. width:100%;
  9917. }
  9918. #u68295_text {
  9919. border-width:0px;
  9920. word-wrap:break-word;
  9921. text-transform:none;
  9922. }
  9923. #u68296_div {
  9924. border-width:0px;
  9925. position:absolute;
  9926. left:0px;
  9927. top:0px;
  9928. width:65px;
  9929. height:22px;
  9930. background:inherit;
  9931. background-color:rgba(255, 255, 255, 0);
  9932. border:none;
  9933. border-radius:0px;
  9934. -moz-box-shadow:none;
  9935. -webkit-box-shadow:none;
  9936. box-shadow:none;
  9937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9938. font-weight:400;
  9939. font-style:normal;
  9940. font-size:16px;
  9941. }
  9942. #u68296 {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:30px;
  9946. top:42px;
  9947. width:65px;
  9948. height:22px;
  9949. display:flex;
  9950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9951. font-weight:400;
  9952. font-style:normal;
  9953. font-size:16px;
  9954. }
  9955. #u68296 .text {
  9956. position:absolute;
  9957. align-self:flex-start;
  9958. padding:0px 0px 0px 0px;
  9959. box-sizing:border-box;
  9960. width:100%;
  9961. }
  9962. #u68296_text {
  9963. border-width:0px;
  9964. white-space:nowrap;
  9965. text-transform:none;
  9966. }
  9967. #u68297_div {
  9968. border-width:0px;
  9969. position:absolute;
  9970. left:0px;
  9971. top:0px;
  9972. width:49px;
  9973. height:22px;
  9974. background:inherit;
  9975. background-color:rgba(255, 255, 255, 0);
  9976. border:none;
  9977. border-radius:0px;
  9978. -moz-box-shadow:none;
  9979. -webkit-box-shadow:none;
  9980. box-shadow:none;
  9981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9982. font-weight:400;
  9983. font-style:normal;
  9984. font-size:16px;
  9985. }
  9986. #u68297 {
  9987. border-width:0px;
  9988. position:absolute;
  9989. left:30px;
  9990. top:145px;
  9991. width:49px;
  9992. height:22px;
  9993. display:flex;
  9994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9995. font-weight:400;
  9996. font-style:normal;
  9997. font-size:16px;
  9998. }
  9999. #u68297 .text {
  10000. position:absolute;
  10001. align-self:flex-start;
  10002. padding:0px 0px 0px 0px;
  10003. box-sizing:border-box;
  10004. width:100%;
  10005. }
  10006. #u68297_text {
  10007. border-width:0px;
  10008. white-space:nowrap;
  10009. text-transform:none;
  10010. }
  10011. #u68298_div {
  10012. border-width:0px;
  10013. position:absolute;
  10014. left:0px;
  10015. top:0px;
  10016. width:97px;
  10017. height:22px;
  10018. background:inherit;
  10019. background-color:rgba(255, 255, 255, 0);
  10020. border:none;
  10021. border-radius:0px;
  10022. -moz-box-shadow:none;
  10023. -webkit-box-shadow:none;
  10024. box-shadow:none;
  10025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10026. font-weight:400;
  10027. font-style:normal;
  10028. font-size:16px;
  10029. }
  10030. #u68298 {
  10031. border-width:0px;
  10032. position:absolute;
  10033. left:30px;
  10034. top:187px;
  10035. width:97px;
  10036. height:22px;
  10037. display:flex;
  10038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10039. font-weight:400;
  10040. font-style:normal;
  10041. font-size:16px;
  10042. }
  10043. #u68298 .text {
  10044. position:absolute;
  10045. align-self:flex-start;
  10046. padding:0px 0px 0px 0px;
  10047. box-sizing:border-box;
  10048. width:100%;
  10049. }
  10050. #u68298_text {
  10051. border-width:0px;
  10052. word-wrap:break-word;
  10053. text-transform:none;
  10054. }
  10055. #u68299_img {
  10056. border-width:0px;
  10057. position:absolute;
  10058. left:0px;
  10059. top:0px;
  10060. width:201px;
  10061. height:2px;
  10062. }
  10063. #u68299 {
  10064. border-width:0px;
  10065. position:absolute;
  10066. left:0px;
  10067. top:84px;
  10068. width:200px;
  10069. height:1px;
  10070. display:flex;
  10071. }
  10072. #u68299 .text {
  10073. position:absolute;
  10074. align-self:center;
  10075. padding:2px 2px 2px 2px;
  10076. box-sizing:border-box;
  10077. width:100%;
  10078. }
  10079. #u68299_text {
  10080. border-width:0px;
  10081. word-wrap:break-word;
  10082. text-transform:none;
  10083. visibility:hidden;
  10084. }
  10085. #u68300_div {
  10086. border-width:0px;
  10087. position:absolute;
  10088. left:0px;
  10089. top:0px;
  10090. width:49px;
  10091. height:17px;
  10092. background:inherit;
  10093. background-color:rgba(255, 255, 255, 0);
  10094. border:none;
  10095. border-radius:0px;
  10096. -moz-box-shadow:none;
  10097. -webkit-box-shadow:none;
  10098. box-shadow:none;
  10099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10100. font-weight:400;
  10101. font-style:normal;
  10102. font-size:12px;
  10103. color:#AAAAAA;
  10104. }
  10105. #u68300 {
  10106. border-width:0px;
  10107. position:absolute;
  10108. left:30px;
  10109. top:105px;
  10110. width:49px;
  10111. height:17px;
  10112. display:flex;
  10113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10114. font-weight:400;
  10115. font-style:normal;
  10116. font-size:12px;
  10117. color:#AAAAAA;
  10118. }
  10119. #u68300 .text {
  10120. position:absolute;
  10121. align-self:flex-start;
  10122. padding:0px 0px 0px 0px;
  10123. box-sizing:border-box;
  10124. width:100%;
  10125. }
  10126. #u68300_text {
  10127. border-width:0px;
  10128. white-space:nowrap;
  10129. text-transform:none;
  10130. }
  10131. #u68301_div {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:0px;
  10135. top:0px;
  10136. width:97px;
  10137. height:22px;
  10138. background:inherit;
  10139. background-color:rgba(255, 255, 255, 0);
  10140. border:none;
  10141. border-radius:0px;
  10142. -moz-box-shadow:none;
  10143. -webkit-box-shadow:none;
  10144. box-shadow:none;
  10145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10146. font-weight:400;
  10147. font-style:normal;
  10148. font-size:16px;
  10149. }
  10150. #u68301 {
  10151. border-width:0px;
  10152. position:absolute;
  10153. left:30px;
  10154. top:229px;
  10155. width:97px;
  10156. height:22px;
  10157. display:flex;
  10158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10159. font-weight:400;
  10160. font-style:normal;
  10161. font-size:16px;
  10162. }
  10163. #u68301 .text {
  10164. position:absolute;
  10165. align-self:flex-start;
  10166. padding:0px 0px 0px 0px;
  10167. box-sizing:border-box;
  10168. width:100%;
  10169. }
  10170. #u68301_text {
  10171. border-width:0px;
  10172. word-wrap:break-word;
  10173. text-transform:none;
  10174. }
  10175. #u68302_div {
  10176. border-width:0px;
  10177. position:absolute;
  10178. left:0px;
  10179. top:0px;
  10180. width:65px;
  10181. height:22px;
  10182. background:inherit;
  10183. background-color:rgba(255, 255, 255, 0);
  10184. border:none;
  10185. border-radius:0px;
  10186. -moz-box-shadow:none;
  10187. -webkit-box-shadow:none;
  10188. box-shadow:none;
  10189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10190. font-weight:400;
  10191. font-style:normal;
  10192. font-size:16px;
  10193. }
  10194. #u68302 {
  10195. border-width:0px;
  10196. position:absolute;
  10197. left:30px;
  10198. top:271px;
  10199. width:65px;
  10200. height:22px;
  10201. display:flex;
  10202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10203. font-weight:400;
  10204. font-style:normal;
  10205. font-size:16px;
  10206. }
  10207. #u68302 .text {
  10208. position:absolute;
  10209. align-self:flex-start;
  10210. padding:0px 0px 0px 0px;
  10211. box-sizing:border-box;
  10212. width:100%;
  10213. }
  10214. #u68302_text {
  10215. border-width:0px;
  10216. white-space:nowrap;
  10217. text-transform:none;
  10218. }
  10219. #u68303_img {
  10220. border-width:0px;
  10221. position:absolute;
  10222. left:0px;
  10223. top:0px;
  10224. width:201px;
  10225. height:2px;
  10226. }
  10227. #u68303 {
  10228. border-width:0px;
  10229. position:absolute;
  10230. left:0px;
  10231. top:313px;
  10232. width:200px;
  10233. height:1px;
  10234. display:flex;
  10235. }
  10236. #u68303 .text {
  10237. position:absolute;
  10238. align-self:center;
  10239. padding:2px 2px 2px 2px;
  10240. box-sizing:border-box;
  10241. width:100%;
  10242. }
  10243. #u68303_text {
  10244. border-width:0px;
  10245. word-wrap:break-word;
  10246. text-transform:none;
  10247. visibility:hidden;
  10248. }
  10249. #u68304_div {
  10250. border-width:0px;
  10251. position:absolute;
  10252. left:0px;
  10253. top:0px;
  10254. width:65px;
  10255. height:22px;
  10256. background:inherit;
  10257. background-color:rgba(255, 255, 255, 0);
  10258. border:none;
  10259. border-radius:0px;
  10260. -moz-box-shadow:none;
  10261. -webkit-box-shadow:none;
  10262. box-shadow:none;
  10263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10264. font-weight:400;
  10265. font-style:normal;
  10266. font-size:16px;
  10267. }
  10268. #u68304 {
  10269. border-width:0px;
  10270. position:absolute;
  10271. left:30px;
  10272. top:370px;
  10273. width:65px;
  10274. height:22px;
  10275. display:flex;
  10276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10277. font-weight:400;
  10278. font-style:normal;
  10279. font-size:16px;
  10280. }
  10281. #u68304 .text {
  10282. position:absolute;
  10283. align-self:flex-start;
  10284. padding:0px 0px 0px 0px;
  10285. box-sizing:border-box;
  10286. width:100%;
  10287. }
  10288. #u68304_text {
  10289. border-width:0px;
  10290. white-space:nowrap;
  10291. text-transform:none;
  10292. }
  10293. #u68305_div {
  10294. border-width:0px;
  10295. position:absolute;
  10296. left:0px;
  10297. top:0px;
  10298. width:49px;
  10299. height:17px;
  10300. background:inherit;
  10301. background-color:rgba(255, 255, 255, 0);
  10302. border:none;
  10303. border-radius:0px;
  10304. -moz-box-shadow:none;
  10305. -webkit-box-shadow:none;
  10306. box-shadow:none;
  10307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10308. font-weight:400;
  10309. font-style:normal;
  10310. font-size:12px;
  10311. color:#AAAAAA;
  10312. }
  10313. #u68305 {
  10314. border-width:0px;
  10315. position:absolute;
  10316. left:30px;
  10317. top:334px;
  10318. width:49px;
  10319. height:17px;
  10320. display:flex;
  10321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10322. font-weight:400;
  10323. font-style:normal;
  10324. font-size:12px;
  10325. color:#AAAAAA;
  10326. }
  10327. #u68305 .text {
  10328. position:absolute;
  10329. align-self:flex-start;
  10330. padding:0px 0px 0px 0px;
  10331. box-sizing:border-box;
  10332. width:100%;
  10333. }
  10334. #u68305_text {
  10335. border-width:0px;
  10336. white-space:nowrap;
  10337. text-transform:none;
  10338. }
  10339. #u68306_div {
  10340. border-width:0px;
  10341. position:absolute;
  10342. left:0px;
  10343. top:0px;
  10344. width:65px;
  10345. height:22px;
  10346. background:inherit;
  10347. background-color:rgba(255, 255, 255, 0);
  10348. border:none;
  10349. border-radius:0px;
  10350. -moz-box-shadow:none;
  10351. -webkit-box-shadow:none;
  10352. box-shadow:none;
  10353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10354. font-weight:400;
  10355. font-style:normal;
  10356. font-size:16px;
  10357. }
  10358. #u68306 {
  10359. border-width:0px;
  10360. position:absolute;
  10361. left:30px;
  10362. top:412px;
  10363. width:65px;
  10364. height:22px;
  10365. display:flex;
  10366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10367. font-weight:400;
  10368. font-style:normal;
  10369. font-size:16px;
  10370. }
  10371. #u68306 .text {
  10372. position:absolute;
  10373. align-self:flex-start;
  10374. padding:0px 0px 0px 0px;
  10375. box-sizing:border-box;
  10376. width:100%;
  10377. }
  10378. #u68306_text {
  10379. border-width:0px;
  10380. white-space:nowrap;
  10381. text-transform:none;
  10382. }
  10383. #u68307_div {
  10384. border-width:0px;
  10385. position:absolute;
  10386. left:0px;
  10387. top:0px;
  10388. width:65px;
  10389. height:22px;
  10390. background:inherit;
  10391. background-color:rgba(255, 255, 255, 0);
  10392. border:none;
  10393. border-radius:0px;
  10394. -moz-box-shadow:none;
  10395. -webkit-box-shadow:none;
  10396. box-shadow:none;
  10397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10398. font-weight:400;
  10399. font-style:normal;
  10400. font-size:16px;
  10401. }
  10402. #u68307 {
  10403. border-width:0px;
  10404. position:absolute;
  10405. left:30px;
  10406. top:454px;
  10407. width:65px;
  10408. height:22px;
  10409. display:flex;
  10410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10411. font-weight:400;
  10412. font-style:normal;
  10413. font-size:16px;
  10414. }
  10415. #u68307 .text {
  10416. position:absolute;
  10417. align-self:flex-start;
  10418. padding:0px 0px 0px 0px;
  10419. box-sizing:border-box;
  10420. width:100%;
  10421. }
  10422. #u68307_text {
  10423. border-width:0px;
  10424. white-space:nowrap;
  10425. text-transform:none;
  10426. }
  10427. #u68308_div {
  10428. border-width:0px;
  10429. position:absolute;
  10430. left:0px;
  10431. top:0px;
  10432. width:65px;
  10433. height:22px;
  10434. background:inherit;
  10435. background-color:rgba(255, 255, 255, 0);
  10436. border:none;
  10437. border-radius:0px;
  10438. -moz-box-shadow:none;
  10439. -webkit-box-shadow:none;
  10440. box-shadow:none;
  10441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10442. font-weight:400;
  10443. font-style:normal;
  10444. font-size:16px;
  10445. }
  10446. #u68308 {
  10447. border-width:0px;
  10448. position:absolute;
  10449. left:30px;
  10450. top:496px;
  10451. width:65px;
  10452. height:22px;
  10453. display:flex;
  10454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10455. font-weight:400;
  10456. font-style:normal;
  10457. font-size:16px;
  10458. }
  10459. #u68308 .text {
  10460. position:absolute;
  10461. align-self:flex-start;
  10462. padding:0px 0px 0px 0px;
  10463. box-sizing:border-box;
  10464. width:100%;
  10465. }
  10466. #u68308_text {
  10467. border-width:0px;
  10468. white-space:nowrap;
  10469. text-transform:none;
  10470. }
  10471. #u68309_div {
  10472. border-width:0px;
  10473. position:absolute;
  10474. left:0px;
  10475. top:0px;
  10476. width:65px;
  10477. height:22px;
  10478. background:inherit;
  10479. background-color:rgba(255, 255, 255, 0);
  10480. border:none;
  10481. border-radius:0px;
  10482. -moz-box-shadow:none;
  10483. -webkit-box-shadow:none;
  10484. box-shadow:none;
  10485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10486. font-weight:400;
  10487. font-style:normal;
  10488. font-size:16px;
  10489. }
  10490. #u68309 {
  10491. border-width:0px;
  10492. position:absolute;
  10493. left:30px;
  10494. top:538px;
  10495. width:65px;
  10496. height:22px;
  10497. display:flex;
  10498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10499. font-weight:400;
  10500. font-style:normal;
  10501. font-size:16px;
  10502. }
  10503. #u68309 .text {
  10504. position:absolute;
  10505. align-self:flex-start;
  10506. padding:0px 0px 0px 0px;
  10507. box-sizing:border-box;
  10508. width:100%;
  10509. }
  10510. #u68309_text {
  10511. border-width:0px;
  10512. white-space:nowrap;
  10513. text-transform:none;
  10514. }
  10515. #u68310_div {
  10516. border-width:0px;
  10517. position:absolute;
  10518. left:0px;
  10519. top:0px;
  10520. width:65px;
  10521. height:22px;
  10522. background:inherit;
  10523. background-color:rgba(255, 255, 255, 0);
  10524. border:none;
  10525. border-radius:0px;
  10526. -moz-box-shadow:none;
  10527. -webkit-box-shadow:none;
  10528. box-shadow:none;
  10529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10530. font-weight:400;
  10531. font-style:normal;
  10532. font-size:16px;
  10533. }
  10534. #u68310 {
  10535. border-width:0px;
  10536. position:absolute;
  10537. left:30px;
  10538. top:580px;
  10539. width:65px;
  10540. height:22px;
  10541. display:flex;
  10542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10543. font-weight:400;
  10544. font-style:normal;
  10545. font-size:16px;
  10546. }
  10547. #u68310 .text {
  10548. position:absolute;
  10549. align-self:flex-start;
  10550. padding:0px 0px 0px 0px;
  10551. box-sizing:border-box;
  10552. width:100%;
  10553. }
  10554. #u68310_text {
  10555. border-width:0px;
  10556. white-space:nowrap;
  10557. text-transform:none;
  10558. }
  10559. #u68311_img {
  10560. border-width:0px;
  10561. position:absolute;
  10562. left:0px;
  10563. top:0px;
  10564. width:201px;
  10565. height:2px;
  10566. }
  10567. #u68311 {
  10568. border-width:0px;
  10569. position:absolute;
  10570. left:0px;
  10571. top:1289px;
  10572. width:200px;
  10573. height:1px;
  10574. display:flex;
  10575. }
  10576. #u68311 .text {
  10577. position:absolute;
  10578. align-self:center;
  10579. padding:2px 2px 2px 2px;
  10580. box-sizing:border-box;
  10581. width:100%;
  10582. }
  10583. #u68311_text {
  10584. border-width:0px;
  10585. word-wrap:break-word;
  10586. text-transform:none;
  10587. visibility:hidden;
  10588. }
  10589. #u68312_div {
  10590. border-width:0px;
  10591. position:absolute;
  10592. left:0px;
  10593. top:0px;
  10594. width:65px;
  10595. height:22px;
  10596. background:inherit;
  10597. background-color:rgba(255, 255, 255, 0);
  10598. border:none;
  10599. border-radius:0px;
  10600. -moz-box-shadow:none;
  10601. -webkit-box-shadow:none;
  10602. box-shadow:none;
  10603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10604. font-weight:400;
  10605. font-style:normal;
  10606. font-size:16px;
  10607. }
  10608. #u68312 {
  10609. border-width:0px;
  10610. position:absolute;
  10611. left:30px;
  10612. top:1346px;
  10613. width:65px;
  10614. height:22px;
  10615. display:flex;
  10616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10617. font-weight:400;
  10618. font-style:normal;
  10619. font-size:16px;
  10620. }
  10621. #u68312 .text {
  10622. position:absolute;
  10623. align-self:flex-start;
  10624. padding:0px 0px 0px 0px;
  10625. box-sizing:border-box;
  10626. width:100%;
  10627. }
  10628. #u68312_text {
  10629. border-width:0px;
  10630. white-space:nowrap;
  10631. text-transform:none;
  10632. }
  10633. #u68313_div {
  10634. border-width:0px;
  10635. position:absolute;
  10636. left:0px;
  10637. top:0px;
  10638. width:49px;
  10639. height:17px;
  10640. background:inherit;
  10641. background-color:rgba(255, 255, 255, 0);
  10642. border:none;
  10643. border-radius:0px;
  10644. -moz-box-shadow:none;
  10645. -webkit-box-shadow:none;
  10646. box-shadow:none;
  10647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10648. font-weight:400;
  10649. font-style:normal;
  10650. font-size:12px;
  10651. color:#AAAAAA;
  10652. }
  10653. #u68313 {
  10654. border-width:0px;
  10655. position:absolute;
  10656. left:30px;
  10657. top:1310px;
  10658. width:49px;
  10659. height:17px;
  10660. display:flex;
  10661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10662. font-weight:400;
  10663. font-style:normal;
  10664. font-size:12px;
  10665. color:#AAAAAA;
  10666. }
  10667. #u68313 .text {
  10668. position:absolute;
  10669. align-self:flex-start;
  10670. padding:0px 0px 0px 0px;
  10671. box-sizing:border-box;
  10672. width:100%;
  10673. }
  10674. #u68313_text {
  10675. border-width:0px;
  10676. white-space:nowrap;
  10677. text-transform:none;
  10678. }
  10679. #u68314_div {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:0px;
  10683. top:0px;
  10684. width:65px;
  10685. height:22px;
  10686. background:inherit;
  10687. background-color:rgba(255, 255, 255, 0);
  10688. border:none;
  10689. border-radius:0px;
  10690. -moz-box-shadow:none;
  10691. -webkit-box-shadow:none;
  10692. box-shadow:none;
  10693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10694. font-weight:400;
  10695. font-style:normal;
  10696. font-size:16px;
  10697. }
  10698. #u68314 {
  10699. border-width:0px;
  10700. position:absolute;
  10701. left:30px;
  10702. top:1388px;
  10703. width:65px;
  10704. height:22px;
  10705. display:flex;
  10706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10707. font-weight:400;
  10708. font-style:normal;
  10709. font-size:16px;
  10710. }
  10711. #u68314 .text {
  10712. position:absolute;
  10713. align-self:flex-start;
  10714. padding:0px 0px 0px 0px;
  10715. box-sizing:border-box;
  10716. width:100%;
  10717. }
  10718. #u68314_text {
  10719. border-width:0px;
  10720. white-space:nowrap;
  10721. text-transform:none;
  10722. }
  10723. #u68315_div {
  10724. border-width:0px;
  10725. position:absolute;
  10726. left:0px;
  10727. top:0px;
  10728. width:65px;
  10729. height:22px;
  10730. background:inherit;
  10731. background-color:rgba(255, 255, 255, 0);
  10732. border:none;
  10733. border-radius:0px;
  10734. -moz-box-shadow:none;
  10735. -webkit-box-shadow:none;
  10736. box-shadow:none;
  10737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10738. font-weight:400;
  10739. font-style:normal;
  10740. font-size:16px;
  10741. }
  10742. #u68315 {
  10743. border-width:0px;
  10744. position:absolute;
  10745. left:30px;
  10746. top:1472px;
  10747. width:65px;
  10748. height:22px;
  10749. display:flex;
  10750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10751. font-weight:400;
  10752. font-style:normal;
  10753. font-size:16px;
  10754. }
  10755. #u68315 .text {
  10756. position:absolute;
  10757. align-self:flex-start;
  10758. padding:0px 0px 0px 0px;
  10759. box-sizing:border-box;
  10760. width:100%;
  10761. }
  10762. #u68315_text {
  10763. border-width:0px;
  10764. white-space:nowrap;
  10765. text-transform:none;
  10766. }
  10767. #u68316_img {
  10768. border-width:0px;
  10769. position:absolute;
  10770. left:0px;
  10771. top:0px;
  10772. width:201px;
  10773. height:2px;
  10774. }
  10775. #u68316 {
  10776. border-width:0px;
  10777. position:absolute;
  10778. left:0px;
  10779. top:1514px;
  10780. width:200px;
  10781. height:1px;
  10782. display:flex;
  10783. }
  10784. #u68316 .text {
  10785. position:absolute;
  10786. align-self:center;
  10787. padding:2px 2px 2px 2px;
  10788. box-sizing:border-box;
  10789. width:100%;
  10790. }
  10791. #u68316_text {
  10792. border-width:0px;
  10793. word-wrap:break-word;
  10794. text-transform:none;
  10795. visibility:hidden;
  10796. }
  10797. #u68317_div {
  10798. border-width:0px;
  10799. position:absolute;
  10800. left:0px;
  10801. top:0px;
  10802. width:49px;
  10803. height:22px;
  10804. background:inherit;
  10805. background-color:rgba(255, 255, 255, 0);
  10806. border:none;
  10807. border-radius:0px;
  10808. -moz-box-shadow:none;
  10809. -webkit-box-shadow:none;
  10810. box-shadow:none;
  10811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10812. font-weight:400;
  10813. font-style:normal;
  10814. font-size:16px;
  10815. }
  10816. #u68317 {
  10817. border-width:0px;
  10818. position:absolute;
  10819. left:30px;
  10820. top:1571px;
  10821. width:49px;
  10822. height:22px;
  10823. display:flex;
  10824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10825. font-weight:400;
  10826. font-style:normal;
  10827. font-size:16px;
  10828. }
  10829. #u68317 .text {
  10830. position:absolute;
  10831. align-self:flex-start;
  10832. padding:0px 0px 0px 0px;
  10833. box-sizing:border-box;
  10834. width:100%;
  10835. }
  10836. #u68317_text {
  10837. border-width:0px;
  10838. white-space:nowrap;
  10839. text-transform:none;
  10840. }
  10841. #u68318_div {
  10842. border-width:0px;
  10843. position:absolute;
  10844. left:0px;
  10845. top:0px;
  10846. width:49px;
  10847. height:17px;
  10848. background:inherit;
  10849. background-color:rgba(255, 255, 255, 0);
  10850. border:none;
  10851. border-radius:0px;
  10852. -moz-box-shadow:none;
  10853. -webkit-box-shadow:none;
  10854. box-shadow:none;
  10855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10856. font-weight:400;
  10857. font-style:normal;
  10858. font-size:12px;
  10859. color:#AAAAAA;
  10860. }
  10861. #u68318 {
  10862. border-width:0px;
  10863. position:absolute;
  10864. left:30px;
  10865. top:1535px;
  10866. width:49px;
  10867. height:17px;
  10868. display:flex;
  10869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10870. font-weight:400;
  10871. font-style:normal;
  10872. font-size:12px;
  10873. color:#AAAAAA;
  10874. }
  10875. #u68318 .text {
  10876. position:absolute;
  10877. align-self:flex-start;
  10878. padding:0px 0px 0px 0px;
  10879. box-sizing:border-box;
  10880. width:100%;
  10881. }
  10882. #u68318_text {
  10883. border-width:0px;
  10884. white-space:nowrap;
  10885. text-transform:none;
  10886. }
  10887. #u68319_div {
  10888. border-width:0px;
  10889. position:absolute;
  10890. left:0px;
  10891. top:0px;
  10892. width:49px;
  10893. height:22px;
  10894. background:inherit;
  10895. background-color:rgba(255, 255, 255, 0);
  10896. border:none;
  10897. border-radius:0px;
  10898. -moz-box-shadow:none;
  10899. -webkit-box-shadow:none;
  10900. box-shadow:none;
  10901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10902. font-weight:400;
  10903. font-style:normal;
  10904. font-size:16px;
  10905. }
  10906. #u68319 {
  10907. border-width:0px;
  10908. position:absolute;
  10909. left:30px;
  10910. top:1613px;
  10911. width:49px;
  10912. height:22px;
  10913. display:flex;
  10914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10915. font-weight:400;
  10916. font-style:normal;
  10917. font-size:16px;
  10918. }
  10919. #u68319 .text {
  10920. position:absolute;
  10921. align-self:flex-start;
  10922. padding:0px 0px 0px 0px;
  10923. box-sizing:border-box;
  10924. width:100%;
  10925. }
  10926. #u68319_text {
  10927. border-width:0px;
  10928. white-space:nowrap;
  10929. text-transform:none;
  10930. }
  10931. #u68320_div {
  10932. border-width:0px;
  10933. position:absolute;
  10934. left:0px;
  10935. top:0px;
  10936. width:65px;
  10937. height:22px;
  10938. background:inherit;
  10939. background-color:rgba(255, 255, 255, 0);
  10940. border:none;
  10941. border-radius:0px;
  10942. -moz-box-shadow:none;
  10943. -webkit-box-shadow:none;
  10944. box-shadow:none;
  10945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10946. font-weight:400;
  10947. font-style:normal;
  10948. font-size:16px;
  10949. }
  10950. #u68320 {
  10951. border-width:0px;
  10952. position:absolute;
  10953. left:30px;
  10954. top:1655px;
  10955. width:65px;
  10956. height:22px;
  10957. display:flex;
  10958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10959. font-weight:400;
  10960. font-style:normal;
  10961. font-size:16px;
  10962. }
  10963. #u68320 .text {
  10964. position:absolute;
  10965. align-self:flex-start;
  10966. padding:0px 0px 0px 0px;
  10967. box-sizing:border-box;
  10968. width:100%;
  10969. }
  10970. #u68320_text {
  10971. border-width:0px;
  10972. white-space:nowrap;
  10973. text-transform:none;
  10974. }
  10975. #u68321_img {
  10976. border-width:0px;
  10977. position:absolute;
  10978. left:0px;
  10979. top:0px;
  10980. width:201px;
  10981. height:2px;
  10982. }
  10983. #u68321 {
  10984. border-width:0px;
  10985. position:absolute;
  10986. left:0px;
  10987. top:1697px;
  10988. width:200px;
  10989. height:1px;
  10990. display:flex;
  10991. }
  10992. #u68321 .text {
  10993. position:absolute;
  10994. align-self:center;
  10995. padding:2px 2px 2px 2px;
  10996. box-sizing:border-box;
  10997. width:100%;
  10998. }
  10999. #u68321_text {
  11000. border-width:0px;
  11001. word-wrap:break-word;
  11002. text-transform:none;
  11003. visibility:hidden;
  11004. }
  11005. #u68322_div {
  11006. border-width:0px;
  11007. position:absolute;
  11008. left:0px;
  11009. top:0px;
  11010. width:81px;
  11011. height:22px;
  11012. background:inherit;
  11013. background-color:rgba(255, 255, 255, 0);
  11014. border:none;
  11015. border-radius:0px;
  11016. -moz-box-shadow:none;
  11017. -webkit-box-shadow:none;
  11018. box-shadow:none;
  11019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11020. font-weight:400;
  11021. font-style:normal;
  11022. font-size:16px;
  11023. }
  11024. #u68322 {
  11025. border-width:0px;
  11026. position:absolute;
  11027. left:30px;
  11028. top:1754px;
  11029. width:81px;
  11030. height:22px;
  11031. display:flex;
  11032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11033. font-weight:400;
  11034. font-style:normal;
  11035. font-size:16px;
  11036. }
  11037. #u68322 .text {
  11038. position:absolute;
  11039. align-self:flex-start;
  11040. padding:0px 0px 0px 0px;
  11041. box-sizing:border-box;
  11042. width:100%;
  11043. }
  11044. #u68322_text {
  11045. border-width:0px;
  11046. white-space:nowrap;
  11047. text-transform:none;
  11048. }
  11049. #u68323_div {
  11050. border-width:0px;
  11051. position:absolute;
  11052. left:0px;
  11053. top:0px;
  11054. width:49px;
  11055. height:17px;
  11056. background:inherit;
  11057. background-color:rgba(255, 255, 255, 0);
  11058. border:none;
  11059. border-radius:0px;
  11060. -moz-box-shadow:none;
  11061. -webkit-box-shadow:none;
  11062. box-shadow:none;
  11063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11064. font-weight:400;
  11065. font-style:normal;
  11066. font-size:12px;
  11067. color:#AAAAAA;
  11068. }
  11069. #u68323 {
  11070. border-width:0px;
  11071. position:absolute;
  11072. left:30px;
  11073. top:1718px;
  11074. width:49px;
  11075. height:17px;
  11076. display:flex;
  11077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11078. font-weight:400;
  11079. font-style:normal;
  11080. font-size:12px;
  11081. color:#AAAAAA;
  11082. }
  11083. #u68323 .text {
  11084. position:absolute;
  11085. align-self:flex-start;
  11086. padding:0px 0px 0px 0px;
  11087. box-sizing:border-box;
  11088. width:100%;
  11089. }
  11090. #u68323_text {
  11091. border-width:0px;
  11092. white-space:nowrap;
  11093. text-transform:none;
  11094. }
  11095. #u68324_div {
  11096. border-width:0px;
  11097. position:absolute;
  11098. left:0px;
  11099. top:0px;
  11100. width:81px;
  11101. height:22px;
  11102. background:inherit;
  11103. background-color:rgba(255, 255, 255, 0);
  11104. border:none;
  11105. border-radius:0px;
  11106. -moz-box-shadow:none;
  11107. -webkit-box-shadow:none;
  11108. box-shadow:none;
  11109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11110. font-weight:400;
  11111. font-style:normal;
  11112. font-size:16px;
  11113. }
  11114. #u68324 {
  11115. border-width:0px;
  11116. position:absolute;
  11117. left:30px;
  11118. top:1796px;
  11119. width:81px;
  11120. height:22px;
  11121. display:flex;
  11122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11123. font-weight:400;
  11124. font-style:normal;
  11125. font-size:16px;
  11126. }
  11127. #u68324 .text {
  11128. position:absolute;
  11129. align-self:flex-start;
  11130. padding:0px 0px 0px 0px;
  11131. box-sizing:border-box;
  11132. width:100%;
  11133. }
  11134. #u68324_text {
  11135. border-width:0px;
  11136. white-space:nowrap;
  11137. text-transform:none;
  11138. }
  11139. #u68325_div {
  11140. border-width:0px;
  11141. position:absolute;
  11142. left:0px;
  11143. top:0px;
  11144. width:81px;
  11145. height:22px;
  11146. background:inherit;
  11147. background-color:rgba(255, 255, 255, 0);
  11148. border:none;
  11149. border-radius:0px;
  11150. -moz-box-shadow:none;
  11151. -webkit-box-shadow:none;
  11152. box-shadow:none;
  11153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11154. font-weight:400;
  11155. font-style:normal;
  11156. font-size:16px;
  11157. }
  11158. #u68325 {
  11159. border-width:0px;
  11160. position:absolute;
  11161. left:30px;
  11162. top:1838px;
  11163. width:81px;
  11164. height:22px;
  11165. display:flex;
  11166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11167. font-weight:400;
  11168. font-style:normal;
  11169. font-size:16px;
  11170. }
  11171. #u68325 .text {
  11172. position:absolute;
  11173. align-self:flex-start;
  11174. padding:0px 0px 0px 0px;
  11175. box-sizing:border-box;
  11176. width:100%;
  11177. }
  11178. #u68325_text {
  11179. border-width:0px;
  11180. white-space:nowrap;
  11181. text-transform:none;
  11182. }
  11183. #u68326_div {
  11184. border-width:0px;
  11185. position:absolute;
  11186. left:0px;
  11187. top:0px;
  11188. width:65px;
  11189. height:22px;
  11190. background:inherit;
  11191. background-color:rgba(255, 255, 255, 0);
  11192. border:none;
  11193. border-radius:0px;
  11194. -moz-box-shadow:none;
  11195. -webkit-box-shadow:none;
  11196. box-shadow:none;
  11197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11198. font-weight:400;
  11199. font-style:normal;
  11200. font-size:16px;
  11201. }
  11202. #u68326 {
  11203. border-width:0px;
  11204. position:absolute;
  11205. left:30px;
  11206. top:1430px;
  11207. width:65px;
  11208. height:22px;
  11209. display:flex;
  11210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11211. font-weight:400;
  11212. font-style:normal;
  11213. font-size:16px;
  11214. }
  11215. #u68326 .text {
  11216. position:absolute;
  11217. align-self:flex-start;
  11218. padding:0px 0px 0px 0px;
  11219. box-sizing:border-box;
  11220. width:100%;
  11221. }
  11222. #u68326_text {
  11223. border-width:0px;
  11224. white-space:nowrap;
  11225. text-transform:none;
  11226. }
  11227. #u68327_img {
  11228. border-width:0px;
  11229. position:absolute;
  11230. left:0px;
  11231. top:0px;
  11232. width:201px;
  11233. height:2px;
  11234. }
  11235. #u68327 {
  11236. border-width:0px;
  11237. position:absolute;
  11238. left:0px;
  11239. top:669px;
  11240. width:200px;
  11241. height:1px;
  11242. display:flex;
  11243. }
  11244. #u68327 .text {
  11245. position:absolute;
  11246. align-self:center;
  11247. padding:2px 2px 2px 2px;
  11248. box-sizing:border-box;
  11249. width:100%;
  11250. }
  11251. #u68327_text {
  11252. border-width:0px;
  11253. word-wrap:break-word;
  11254. text-transform:none;
  11255. visibility:hidden;
  11256. }
  11257. #u68328_div {
  11258. border-width:0px;
  11259. position:absolute;
  11260. left:0px;
  11261. top:0px;
  11262. width:65px;
  11263. height:22px;
  11264. background:inherit;
  11265. background-color:rgba(255, 255, 255, 0);
  11266. border:none;
  11267. border-radius:0px;
  11268. -moz-box-shadow:none;
  11269. -webkit-box-shadow:none;
  11270. box-shadow:none;
  11271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11272. font-weight:400;
  11273. font-style:normal;
  11274. font-size:16px;
  11275. }
  11276. #u68328 {
  11277. border-width:0px;
  11278. position:absolute;
  11279. left:30px;
  11280. top:726px;
  11281. width:65px;
  11282. height:22px;
  11283. display:flex;
  11284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11285. font-weight:400;
  11286. font-style:normal;
  11287. font-size:16px;
  11288. }
  11289. #u68328 .text {
  11290. position:absolute;
  11291. align-self:flex-start;
  11292. padding:0px 0px 0px 0px;
  11293. box-sizing:border-box;
  11294. width:100%;
  11295. }
  11296. #u68328_text {
  11297. border-width:0px;
  11298. white-space:nowrap;
  11299. text-transform:none;
  11300. }
  11301. #u68329_div {
  11302. border-width:0px;
  11303. position:absolute;
  11304. left:0px;
  11305. top:0px;
  11306. width:49px;
  11307. height:17px;
  11308. background:inherit;
  11309. background-color:rgba(255, 255, 255, 0);
  11310. border:none;
  11311. border-radius:0px;
  11312. -moz-box-shadow:none;
  11313. -webkit-box-shadow:none;
  11314. box-shadow:none;
  11315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11316. font-weight:400;
  11317. font-style:normal;
  11318. font-size:12px;
  11319. color:#AAAAAA;
  11320. }
  11321. #u68329 {
  11322. border-width:0px;
  11323. position:absolute;
  11324. left:30px;
  11325. top:690px;
  11326. width:49px;
  11327. height:17px;
  11328. display:flex;
  11329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11330. font-weight:400;
  11331. font-style:normal;
  11332. font-size:12px;
  11333. color:#AAAAAA;
  11334. }
  11335. #u68329 .text {
  11336. position:absolute;
  11337. align-self:flex-start;
  11338. padding:0px 0px 0px 0px;
  11339. box-sizing:border-box;
  11340. width:100%;
  11341. }
  11342. #u68329_text {
  11343. border-width:0px;
  11344. white-space:nowrap;
  11345. text-transform:none;
  11346. }
  11347. #u68330_div {
  11348. border-width:0px;
  11349. position:absolute;
  11350. left:0px;
  11351. top:0px;
  11352. width:65px;
  11353. height:22px;
  11354. background:inherit;
  11355. background-color:rgba(255, 255, 255, 0);
  11356. border:none;
  11357. border-radius:0px;
  11358. -moz-box-shadow:none;
  11359. -webkit-box-shadow:none;
  11360. box-shadow:none;
  11361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11362. font-weight:400;
  11363. font-style:normal;
  11364. font-size:16px;
  11365. }
  11366. #u68330 {
  11367. border-width:0px;
  11368. position:absolute;
  11369. left:30px;
  11370. top:768px;
  11371. width:65px;
  11372. height:22px;
  11373. display:flex;
  11374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11375. font-weight:400;
  11376. font-style:normal;
  11377. font-size:16px;
  11378. }
  11379. #u68330 .text {
  11380. position:absolute;
  11381. align-self:flex-start;
  11382. padding:0px 0px 0px 0px;
  11383. box-sizing:border-box;
  11384. width:100%;
  11385. }
  11386. #u68330_text {
  11387. border-width:0px;
  11388. white-space:nowrap;
  11389. text-transform:none;
  11390. }
  11391. #u68331_div {
  11392. border-width:0px;
  11393. position:absolute;
  11394. left:0px;
  11395. top:0px;
  11396. width:65px;
  11397. height:22px;
  11398. background:inherit;
  11399. background-color:rgba(255, 255, 255, 0);
  11400. border:none;
  11401. border-radius:0px;
  11402. -moz-box-shadow:none;
  11403. -webkit-box-shadow:none;
  11404. box-shadow:none;
  11405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11406. font-weight:400;
  11407. font-style:normal;
  11408. font-size:16px;
  11409. }
  11410. #u68331 {
  11411. border-width:0px;
  11412. position:absolute;
  11413. left:30px;
  11414. top:852px;
  11415. width:65px;
  11416. height:22px;
  11417. display:flex;
  11418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11419. font-weight:400;
  11420. font-style:normal;
  11421. font-size:16px;
  11422. }
  11423. #u68331 .text {
  11424. position:absolute;
  11425. align-self:flex-start;
  11426. padding:0px 0px 0px 0px;
  11427. box-sizing:border-box;
  11428. width:100%;
  11429. }
  11430. #u68331_text {
  11431. border-width:0px;
  11432. white-space:nowrap;
  11433. text-transform:none;
  11434. }
  11435. #u68332_div {
  11436. border-width:0px;
  11437. position:absolute;
  11438. left:0px;
  11439. top:0px;
  11440. width:65px;
  11441. height:22px;
  11442. background:inherit;
  11443. background-color:rgba(255, 255, 255, 0);
  11444. border:none;
  11445. border-radius:0px;
  11446. -moz-box-shadow:none;
  11447. -webkit-box-shadow:none;
  11448. box-shadow:none;
  11449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11450. font-weight:400;
  11451. font-style:normal;
  11452. font-size:16px;
  11453. }
  11454. #u68332 {
  11455. border-width:0px;
  11456. position:absolute;
  11457. left:30px;
  11458. top:810px;
  11459. width:65px;
  11460. height:22px;
  11461. display:flex;
  11462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11463. font-weight:400;
  11464. font-style:normal;
  11465. font-size:16px;
  11466. }
  11467. #u68332 .text {
  11468. position:absolute;
  11469. align-self:flex-start;
  11470. padding:0px 0px 0px 0px;
  11471. box-sizing:border-box;
  11472. width:100%;
  11473. }
  11474. #u68332_text {
  11475. border-width:0px;
  11476. white-space:nowrap;
  11477. text-transform:none;
  11478. }
  11479. #u68333_div {
  11480. border-width:0px;
  11481. position:absolute;
  11482. left:0px;
  11483. top:0px;
  11484. width:65px;
  11485. height:22px;
  11486. background:inherit;
  11487. background-color:rgba(255, 255, 255, 0);
  11488. border:none;
  11489. border-radius:0px;
  11490. -moz-box-shadow:none;
  11491. -webkit-box-shadow:none;
  11492. box-shadow:none;
  11493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11494. font-weight:400;
  11495. font-style:normal;
  11496. font-size:16px;
  11497. }
  11498. #u68333 {
  11499. border-width:0px;
  11500. position:absolute;
  11501. left:30px;
  11502. top:894px;
  11503. width:65px;
  11504. height:22px;
  11505. display:flex;
  11506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11507. font-weight:400;
  11508. font-style:normal;
  11509. font-size:16px;
  11510. }
  11511. #u68333 .text {
  11512. position:absolute;
  11513. align-self:flex-start;
  11514. padding:0px 0px 0px 0px;
  11515. box-sizing:border-box;
  11516. width:100%;
  11517. }
  11518. #u68333_text {
  11519. border-width:0px;
  11520. white-space:nowrap;
  11521. text-transform:none;
  11522. }
  11523. #u68334_div {
  11524. border-width:0px;
  11525. position:absolute;
  11526. left:0px;
  11527. top:0px;
  11528. width:65px;
  11529. height:22px;
  11530. background:inherit;
  11531. background-color:rgba(255, 255, 255, 0);
  11532. border:none;
  11533. border-radius:0px;
  11534. -moz-box-shadow:none;
  11535. -webkit-box-shadow:none;
  11536. box-shadow:none;
  11537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11538. font-weight:400;
  11539. font-style:normal;
  11540. font-size:16px;
  11541. }
  11542. #u68334 {
  11543. border-width:0px;
  11544. position:absolute;
  11545. left:30px;
  11546. top:936px;
  11547. width:65px;
  11548. height:22px;
  11549. display:flex;
  11550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11551. font-weight:400;
  11552. font-style:normal;
  11553. font-size:16px;
  11554. }
  11555. #u68334 .text {
  11556. position:absolute;
  11557. align-self:flex-start;
  11558. padding:0px 0px 0px 0px;
  11559. box-sizing:border-box;
  11560. width:100%;
  11561. }
  11562. #u68334_text {
  11563. border-width:0px;
  11564. white-space:nowrap;
  11565. text-transform:none;
  11566. }
  11567. #u68335_img {
  11568. border-width:0px;
  11569. position:absolute;
  11570. left:0px;
  11571. top:0px;
  11572. width:201px;
  11573. height:2px;
  11574. }
  11575. #u68335 {
  11576. border-width:0px;
  11577. position:absolute;
  11578. left:0px;
  11579. top:1018px;
  11580. width:200px;
  11581. height:1px;
  11582. display:flex;
  11583. }
  11584. #u68335 .text {
  11585. position:absolute;
  11586. align-self:center;
  11587. padding:2px 2px 2px 2px;
  11588. box-sizing:border-box;
  11589. width:100%;
  11590. }
  11591. #u68335_text {
  11592. border-width:0px;
  11593. word-wrap:break-word;
  11594. text-transform:none;
  11595. visibility:hidden;
  11596. }
  11597. #u68336_div {
  11598. border-width:0px;
  11599. position:absolute;
  11600. left:0px;
  11601. top:0px;
  11602. width:65px;
  11603. height:22px;
  11604. background:inherit;
  11605. background-color:rgba(255, 255, 255, 0);
  11606. border:none;
  11607. border-radius:0px;
  11608. -moz-box-shadow:none;
  11609. -webkit-box-shadow:none;
  11610. box-shadow:none;
  11611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11612. font-weight:400;
  11613. font-style:normal;
  11614. font-size:16px;
  11615. }
  11616. #u68336 {
  11617. border-width:0px;
  11618. position:absolute;
  11619. left:30px;
  11620. top:1075px;
  11621. width:65px;
  11622. height:22px;
  11623. display:flex;
  11624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11625. font-weight:400;
  11626. font-style:normal;
  11627. font-size:16px;
  11628. }
  11629. #u68336 .text {
  11630. position:absolute;
  11631. align-self:flex-start;
  11632. padding:0px 0px 0px 0px;
  11633. box-sizing:border-box;
  11634. width:100%;
  11635. }
  11636. #u68336_text {
  11637. border-width:0px;
  11638. white-space:nowrap;
  11639. text-transform:none;
  11640. }
  11641. #u68337_div {
  11642. border-width:0px;
  11643. position:absolute;
  11644. left:0px;
  11645. top:0px;
  11646. width:49px;
  11647. height:17px;
  11648. background:inherit;
  11649. background-color:rgba(255, 255, 255, 0);
  11650. border:none;
  11651. border-radius:0px;
  11652. -moz-box-shadow:none;
  11653. -webkit-box-shadow:none;
  11654. box-shadow:none;
  11655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11656. font-weight:400;
  11657. font-style:normal;
  11658. font-size:12px;
  11659. color:#AAAAAA;
  11660. }
  11661. #u68337 {
  11662. border-width:0px;
  11663. position:absolute;
  11664. left:30px;
  11665. top:1039px;
  11666. width:49px;
  11667. height:17px;
  11668. display:flex;
  11669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11670. font-weight:400;
  11671. font-style:normal;
  11672. font-size:12px;
  11673. color:#AAAAAA;
  11674. }
  11675. #u68337 .text {
  11676. position:absolute;
  11677. align-self:flex-start;
  11678. padding:0px 0px 0px 0px;
  11679. box-sizing:border-box;
  11680. width:100%;
  11681. }
  11682. #u68337_text {
  11683. border-width:0px;
  11684. white-space:nowrap;
  11685. text-transform:none;
  11686. }
  11687. #u68338_div {
  11688. border-width:0px;
  11689. position:absolute;
  11690. left:0px;
  11691. top:0px;
  11692. width:65px;
  11693. height:22px;
  11694. background:inherit;
  11695. background-color:rgba(255, 255, 255, 0);
  11696. border:none;
  11697. border-radius:0px;
  11698. -moz-box-shadow:none;
  11699. -webkit-box-shadow:none;
  11700. box-shadow:none;
  11701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11702. font-weight:400;
  11703. font-style:normal;
  11704. font-size:16px;
  11705. }
  11706. #u68338 {
  11707. border-width:0px;
  11708. position:absolute;
  11709. left:30px;
  11710. top:1117px;
  11711. width:65px;
  11712. height:22px;
  11713. display:flex;
  11714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11715. font-weight:400;
  11716. font-style:normal;
  11717. font-size:16px;
  11718. }
  11719. #u68338 .text {
  11720. position:absolute;
  11721. align-self:flex-start;
  11722. padding:0px 0px 0px 0px;
  11723. box-sizing:border-box;
  11724. width:100%;
  11725. }
  11726. #u68338_text {
  11727. border-width:0px;
  11728. white-space:nowrap;
  11729. text-transform:none;
  11730. }
  11731. #u68339_div {
  11732. border-width:0px;
  11733. position:absolute;
  11734. left:0px;
  11735. top:0px;
  11736. width:65px;
  11737. height:22px;
  11738. background:inherit;
  11739. background-color:rgba(255, 255, 255, 0);
  11740. border:none;
  11741. border-radius:0px;
  11742. -moz-box-shadow:none;
  11743. -webkit-box-shadow:none;
  11744. box-shadow:none;
  11745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11746. font-weight:400;
  11747. font-style:normal;
  11748. font-size:16px;
  11749. }
  11750. #u68339 {
  11751. border-width:0px;
  11752. position:absolute;
  11753. left:30px;
  11754. top:1201px;
  11755. width:65px;
  11756. height:22px;
  11757. display:flex;
  11758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11759. font-weight:400;
  11760. font-style:normal;
  11761. font-size:16px;
  11762. }
  11763. #u68339 .text {
  11764. position:absolute;
  11765. align-self:flex-start;
  11766. padding:0px 0px 0px 0px;
  11767. box-sizing:border-box;
  11768. width:100%;
  11769. }
  11770. #u68339_text {
  11771. border-width:0px;
  11772. white-space:nowrap;
  11773. text-transform:none;
  11774. }
  11775. #u68340_div {
  11776. border-width:0px;
  11777. position:absolute;
  11778. left:0px;
  11779. top:0px;
  11780. width:65px;
  11781. height:22px;
  11782. background:inherit;
  11783. background-color:rgba(255, 255, 255, 0);
  11784. border:none;
  11785. border-radius:0px;
  11786. -moz-box-shadow:none;
  11787. -webkit-box-shadow:none;
  11788. box-shadow:none;
  11789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11790. font-weight:400;
  11791. font-style:normal;
  11792. font-size:16px;
  11793. }
  11794. #u68340 {
  11795. border-width:0px;
  11796. position:absolute;
  11797. left:30px;
  11798. top:1159px;
  11799. width:65px;
  11800. height:22px;
  11801. display:flex;
  11802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11803. font-weight:400;
  11804. font-style:normal;
  11805. font-size:16px;
  11806. }
  11807. #u68340 .text {
  11808. position:absolute;
  11809. align-self:flex-start;
  11810. padding:0px 0px 0px 0px;
  11811. box-sizing:border-box;
  11812. width:100%;
  11813. }
  11814. #u68340_text {
  11815. border-width:0px;
  11816. white-space:nowrap;
  11817. text-transform:none;
  11818. }
  11819. #u68341_div {
  11820. border-width:0px;
  11821. position:absolute;
  11822. left:0px;
  11823. top:0px;
  11824. width:65px;
  11825. height:22px;
  11826. background:inherit;
  11827. background-color:rgba(255, 255, 255, 0);
  11828. border:none;
  11829. border-radius:0px;
  11830. -moz-box-shadow:none;
  11831. -webkit-box-shadow:none;
  11832. box-shadow:none;
  11833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11834. font-weight:400;
  11835. font-style:normal;
  11836. font-size:16px;
  11837. }
  11838. #u68341 {
  11839. border-width:0px;
  11840. position:absolute;
  11841. left:30px;
  11842. top:1243px;
  11843. width:65px;
  11844. height:22px;
  11845. display:flex;
  11846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11847. font-weight:400;
  11848. font-style:normal;
  11849. font-size:16px;
  11850. }
  11851. #u68341 .text {
  11852. position:absolute;
  11853. align-self:flex-start;
  11854. padding:0px 0px 0px 0px;
  11855. box-sizing:border-box;
  11856. width:100%;
  11857. }
  11858. #u68341_text {
  11859. border-width:0px;
  11860. white-space:nowrap;
  11861. text-transform:none;
  11862. }
  11863. #u68342_div {
  11864. border-width:0px;
  11865. position:absolute;
  11866. left:0px;
  11867. top:0px;
  11868. width:65px;
  11869. height:22px;
  11870. background:inherit;
  11871. background-color:rgba(255, 255, 255, 0);
  11872. border:none;
  11873. border-radius:0px;
  11874. -moz-box-shadow:none;
  11875. -webkit-box-shadow:none;
  11876. box-shadow:none;
  11877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11878. font-weight:400;
  11879. font-style:normal;
  11880. font-size:16px;
  11881. }
  11882. #u68342 {
  11883. border-width:0px;
  11884. position:absolute;
  11885. left:30px;
  11886. top:978px;
  11887. width:65px;
  11888. height:22px;
  11889. display:flex;
  11890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11891. font-weight:400;
  11892. font-style:normal;
  11893. font-size:16px;
  11894. }
  11895. #u68342 .text {
  11896. position:absolute;
  11897. align-self:flex-start;
  11898. padding:0px 0px 0px 0px;
  11899. box-sizing:border-box;
  11900. width:100%;
  11901. }
  11902. #u68342_text {
  11903. border-width:0px;
  11904. white-space:nowrap;
  11905. text-transform:none;
  11906. }
  11907. #u68343_div {
  11908. border-width:0px;
  11909. position:absolute;
  11910. left:0px;
  11911. top:0px;
  11912. width:65px;
  11913. height:22px;
  11914. background:inherit;
  11915. background-color:rgba(255, 255, 255, 0);
  11916. border:none;
  11917. border-radius:0px;
  11918. -moz-box-shadow:none;
  11919. -webkit-box-shadow:none;
  11920. box-shadow:none;
  11921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11922. font-weight:400;
  11923. font-style:normal;
  11924. font-size:16px;
  11925. }
  11926. #u68343 {
  11927. border-width:0px;
  11928. position:absolute;
  11929. left:30px;
  11930. top:622px;
  11931. width:65px;
  11932. height:22px;
  11933. display:flex;
  11934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11935. font-weight:400;
  11936. font-style:normal;
  11937. font-size:16px;
  11938. }
  11939. #u68343 .text {
  11940. position:absolute;
  11941. align-self:flex-start;
  11942. padding:0px 0px 0px 0px;
  11943. box-sizing:border-box;
  11944. width:100%;
  11945. }
  11946. #u68343_text {
  11947. border-width:0px;
  11948. white-space:nowrap;
  11949. text-transform:none;
  11950. }
  11951. #u68344 {
  11952. border-width:0px;
  11953. position:absolute;
  11954. left:0px;
  11955. top:0px;
  11956. width:0px;
  11957. height:0px;
  11958. }
  11959. #u68345_div {
  11960. border-width:0px;
  11961. position:absolute;
  11962. left:0px;
  11963. top:0px;
  11964. width:600px;
  11965. height:287px;
  11966. background:inherit;
  11967. background-color:rgba(255, 255, 255, 1);
  11968. box-sizing:border-box;
  11969. border-width:1px;
  11970. border-style:solid;
  11971. border-color:rgba(121, 121, 121, 1);
  11972. border-radius:0px;
  11973. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  11974. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  11975. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  11976. color:#1890FF;
  11977. }
  11978. #u68345 {
  11979. border-width:0px;
  11980. position:absolute;
  11981. left:1686px;
  11982. top:60px;
  11983. width:600px;
  11984. height:287px;
  11985. display:flex;
  11986. color:#1890FF;
  11987. }
  11988. #u68345 .text {
  11989. position:absolute;
  11990. align-self:center;
  11991. padding:2px 2px 2px 2px;
  11992. box-sizing:border-box;
  11993. width:100%;
  11994. }
  11995. #u68345_text {
  11996. border-width:0px;
  11997. word-wrap:break-word;
  11998. text-transform:none;
  11999. visibility:hidden;
  12000. }
  12001. #u68346_div {
  12002. border-width:0px;
  12003. position:absolute;
  12004. left:0px;
  12005. top:0px;
  12006. width:73px;
  12007. height:30px;
  12008. background:inherit;
  12009. background-color:rgba(255, 255, 255, 0);
  12010. border:none;
  12011. border-radius:0px;
  12012. -moz-box-shadow:none;
  12013. -webkit-box-shadow:none;
  12014. box-shadow:none;
  12015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12016. font-weight:400;
  12017. font-style:normal;
  12018. font-size:18px;
  12019. color:#000000;
  12020. line-height:30px;
  12021. }
  12022. #u68346 {
  12023. border-width:0px;
  12024. position:absolute;
  12025. left:1722px;
  12026. top:92px;
  12027. width:73px;
  12028. height:30px;
  12029. display:flex;
  12030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12031. font-weight:400;
  12032. font-style:normal;
  12033. font-size:18px;
  12034. color:#000000;
  12035. line-height:30px;
  12036. }
  12037. #u68346 .text {
  12038. position:absolute;
  12039. align-self:flex-start;
  12040. padding:0px 0px 0px 0px;
  12041. box-sizing:border-box;
  12042. width:100%;
  12043. }
  12044. #u68346_text {
  12045. border-width:0px;
  12046. white-space:nowrap;
  12047. text-transform:none;
  12048. }
  12049. #u68347 {
  12050. border-width:0px;
  12051. position:absolute;
  12052. left:0px;
  12053. top:0px;
  12054. width:0px;
  12055. height:0px;
  12056. }
  12057. #u68348_div {
  12058. border-width:0px;
  12059. position:absolute;
  12060. left:0px;
  12061. top:0px;
  12062. width:40px;
  12063. height:40px;
  12064. background:inherit;
  12065. background-color:rgba(255, 255, 255, 0);
  12066. border:none;
  12067. border-top:0px;
  12068. border-right:0px;
  12069. border-bottom:0px;
  12070. border-radius:0px;
  12071. border-top-left-radius:0px;
  12072. border-bottom-left-radius:0px;
  12073. -moz-box-shadow:none;
  12074. -webkit-box-shadow:none;
  12075. box-shadow:none;
  12076. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12077. font-weight:500;
  12078. font-style:normal;
  12079. font-size:18px;
  12080. text-align:center;
  12081. }
  12082. #u68348 {
  12083. border-width:0px;
  12084. position:absolute;
  12085. left:2246px;
  12086. top:60px;
  12087. width:40px;
  12088. height:40px;
  12089. display:flex;
  12090. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12091. font-weight:500;
  12092. font-style:normal;
  12093. font-size:18px;
  12094. text-align:center;
  12095. }
  12096. #u68348 .text {
  12097. position:absolute;
  12098. align-self:center;
  12099. padding:5px 10px 5px 0px;
  12100. box-sizing:border-box;
  12101. width:100%;
  12102. }
  12103. #u68348_text {
  12104. border-width:0px;
  12105. word-wrap:break-word;
  12106. text-transform:none;
  12107. }
  12108. #u68349_img {
  12109. border-width:0px;
  12110. position:absolute;
  12111. left:0px;
  12112. top:0px;
  12113. width:13px;
  12114. height:13px;
  12115. }
  12116. #u68349 {
  12117. border-width:0px;
  12118. position:absolute;
  12119. left:2233px;
  12120. top:78px;
  12121. width:13px;
  12122. height:13px;
  12123. display:flex;
  12124. }
  12125. #u68349 .text {
  12126. position:absolute;
  12127. align-self:center;
  12128. padding:2px 2px 2px 2px;
  12129. box-sizing:border-box;
  12130. width:100%;
  12131. }
  12132. #u68349_text {
  12133. border-width:0px;
  12134. word-wrap:break-word;
  12135. text-transform:none;
  12136. visibility:hidden;
  12137. }
  12138. #u68350 {
  12139. border-width:0px;
  12140. position:absolute;
  12141. left:0px;
  12142. top:0px;
  12143. width:0px;
  12144. height:0px;
  12145. }
  12146. #u68351_div {
  12147. border-width:0px;
  12148. position:absolute;
  12149. left:0px;
  12150. top:0px;
  12151. width:600px;
  12152. height:60px;
  12153. background:inherit;
  12154. background-color:rgba(255, 255, 255, 1);
  12155. box-sizing:border-box;
  12156. border-width:1px;
  12157. border-style:solid;
  12158. border-color:rgba(215, 215, 215, 1);
  12159. border-radius:0px;
  12160. -moz-box-shadow:none;
  12161. -webkit-box-shadow:none;
  12162. box-shadow:none;
  12163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12164. font-weight:400;
  12165. font-style:normal;
  12166. font-size:14px;
  12167. color:#AAAAAA;
  12168. text-align:center;
  12169. line-height:30px;
  12170. }
  12171. #u68351 {
  12172. border-width:0px;
  12173. position:absolute;
  12174. left:1686px;
  12175. top:287px;
  12176. width:600px;
  12177. height:60px;
  12178. display:flex;
  12179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12180. font-weight:400;
  12181. font-style:normal;
  12182. font-size:14px;
  12183. color:#AAAAAA;
  12184. text-align:center;
  12185. line-height:30px;
  12186. }
  12187. #u68351 .text {
  12188. position:absolute;
  12189. align-self:center;
  12190. padding:5px 10px 5px 10px;
  12191. box-sizing:border-box;
  12192. width:100%;
  12193. }
  12194. #u68351_text {
  12195. border-width:0px;
  12196. word-wrap:break-word;
  12197. text-transform:none;
  12198. visibility:hidden;
  12199. }
  12200. #u68352_div {
  12201. border-width:0px;
  12202. position:absolute;
  12203. left:0px;
  12204. top:0px;
  12205. width:80px;
  12206. height:30px;
  12207. background:inherit;
  12208. background-color:rgba(24, 144, 255, 1);
  12209. border:none;
  12210. border-radius:4px;
  12211. -moz-box-shadow:none;
  12212. -webkit-box-shadow:none;
  12213. box-shadow:none;
  12214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12215. font-weight:400;
  12216. font-style:normal;
  12217. font-size:14px;
  12218. color:#FFFFFF;
  12219. }
  12220. #u68352 {
  12221. border-width:0px;
  12222. position:absolute;
  12223. left:2161px;
  12224. top:302px;
  12225. width:80px;
  12226. height:30px;
  12227. display:flex;
  12228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12229. font-weight:400;
  12230. font-style:normal;
  12231. font-size:14px;
  12232. color:#FFFFFF;
  12233. }
  12234. #u68352 .text {
  12235. position:absolute;
  12236. align-self:center;
  12237. padding:2px 2px 2px 2px;
  12238. box-sizing:border-box;
  12239. width:100%;
  12240. }
  12241. #u68352_text {
  12242. border-width:0px;
  12243. word-wrap:break-word;
  12244. text-transform:none;
  12245. }
  12246. #u68353_div {
  12247. border-width:0px;
  12248. position:absolute;
  12249. left:0px;
  12250. top:0px;
  12251. width:80px;
  12252. height:30px;
  12253. background:inherit;
  12254. background-color:rgba(255, 255, 255, 1);
  12255. box-sizing:border-box;
  12256. border-width:1px;
  12257. border-style:solid;
  12258. border-color:rgba(170, 170, 170, 1);
  12259. border-radius:4px;
  12260. -moz-box-shadow:none;
  12261. -webkit-box-shadow:none;
  12262. box-shadow:none;
  12263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12264. font-weight:400;
  12265. font-style:normal;
  12266. font-size:14px;
  12267. }
  12268. #u68353 {
  12269. border-width:0px;
  12270. position:absolute;
  12271. left:2062px;
  12272. top:302px;
  12273. width:80px;
  12274. height:30px;
  12275. display:flex;
  12276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12277. font-weight:400;
  12278. font-style:normal;
  12279. font-size:14px;
  12280. }
  12281. #u68353 .text {
  12282. position:absolute;
  12283. align-self:center;
  12284. padding:2px 2px 2px 2px;
  12285. box-sizing:border-box;
  12286. width:100%;
  12287. }
  12288. #u68353_text {
  12289. border-width:0px;
  12290. word-wrap:break-word;
  12291. text-transform:none;
  12292. }
  12293. #u68354_div {
  12294. border-width:0px;
  12295. position:absolute;
  12296. left:0px;
  12297. top:0px;
  12298. width:109px;
  12299. height:30px;
  12300. background:inherit;
  12301. background-color:rgba(255, 255, 255, 0);
  12302. border:none;
  12303. border-radius:0px;
  12304. -moz-box-shadow:none;
  12305. -webkit-box-shadow:none;
  12306. box-shadow:none;
  12307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12308. font-weight:400;
  12309. font-style:normal;
  12310. font-size:18px;
  12311. color:#000000;
  12312. line-height:30px;
  12313. }
  12314. #u68354 {
  12315. border-width:0px;
  12316. position:absolute;
  12317. left:1741px;
  12318. top:157px;
  12319. width:109px;
  12320. height:30px;
  12321. display:flex;
  12322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12323. font-weight:400;
  12324. font-style:normal;
  12325. font-size:18px;
  12326. color:#000000;
  12327. line-height:30px;
  12328. }
  12329. #u68354 .text {
  12330. position:absolute;
  12331. align-self:flex-start;
  12332. padding:0px 0px 0px 0px;
  12333. box-sizing:border-box;
  12334. width:100%;
  12335. }
  12336. #u68354_text {
  12337. border-width:0px;
  12338. white-space:nowrap;
  12339. text-transform:none;
  12340. }
  12341. #u68355 {
  12342. border-width:0px;
  12343. position:absolute;
  12344. left:0px;
  12345. top:0px;
  12346. width:0px;
  12347. height:0px;
  12348. }
  12349. #u68356_div {
  12350. border-width:0px;
  12351. position:absolute;
  12352. left:0px;
  12353. top:0px;
  12354. width:490px;
  12355. height:40px;
  12356. background:inherit;
  12357. background-color:rgba(255, 255, 255, 1);
  12358. box-sizing:border-box;
  12359. border-width:1px;
  12360. border-style:solid;
  12361. border-color:rgba(215, 215, 215, 1);
  12362. border-radius:4px;
  12363. -moz-box-shadow:none;
  12364. -webkit-box-shadow:none;
  12365. box-shadow:none;
  12366. font-size:14px;
  12367. }
  12368. #u68356 {
  12369. border-width:0px;
  12370. position:absolute;
  12371. left:1741px;
  12372. top:197px;
  12373. width:490px;
  12374. height:40px;
  12375. display:flex;
  12376. font-size:14px;
  12377. }
  12378. #u68356 .text {
  12379. position:absolute;
  12380. align-self:center;
  12381. padding:2px 2px 2px 2px;
  12382. box-sizing:border-box;
  12383. width:100%;
  12384. }
  12385. #u68356_text {
  12386. border-width:0px;
  12387. word-wrap:break-word;
  12388. text-transform:none;
  12389. visibility:hidden;
  12390. }
  12391. #u68357_input {
  12392. position:absolute;
  12393. left:0px;
  12394. top:0px;
  12395. width:462px;
  12396. height:31px;
  12397. padding:2px 2px 2px 2px;
  12398. font-family:'ArialMT', 'Arial', sans-serif;
  12399. font-weight:400;
  12400. font-style:normal;
  12401. font-size:14px;
  12402. letter-spacing:normal;
  12403. color:#AAAAAA;
  12404. vertical-align:none;
  12405. text-align:left;
  12406. text-transform:none;
  12407. background-color:transparent;
  12408. border-color:transparent;
  12409. }
  12410. #u68357_input.disabled {
  12411. position:absolute;
  12412. left:0px;
  12413. top:0px;
  12414. width:462px;
  12415. height:31px;
  12416. padding:2px 2px 2px 2px;
  12417. font-family:'ArialMT', 'Arial', sans-serif;
  12418. font-weight:400;
  12419. font-style:normal;
  12420. font-size:14px;
  12421. letter-spacing:normal;
  12422. color:#AAAAAA;
  12423. vertical-align:none;
  12424. text-align:left;
  12425. text-transform:none;
  12426. background-color:transparent;
  12427. border-color:transparent;
  12428. }
  12429. #u68357_div {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:0px;
  12433. top:0px;
  12434. width:462px;
  12435. height:31px;
  12436. background:inherit;
  12437. background-color:rgba(255, 255, 255, 1);
  12438. border:none;
  12439. border-radius:0px;
  12440. -moz-box-shadow:none;
  12441. -webkit-box-shadow:none;
  12442. box-shadow:none;
  12443. font-size:14px;
  12444. color:#AAAAAA;
  12445. }
  12446. #u68357 {
  12447. border-width:0px;
  12448. position:absolute;
  12449. left:1755px;
  12450. top:202px;
  12451. width:462px;
  12452. height:31px;
  12453. display:flex;
  12454. font-size:14px;
  12455. color:#AAAAAA;
  12456. }
  12457. #u68357 .text {
  12458. position:absolute;
  12459. align-self:flex-start;
  12460. padding:2px 2px 2px 2px;
  12461. box-sizing:border-box;
  12462. width:100%;
  12463. }
  12464. #u68357_div.disabled {
  12465. border-width:0px;
  12466. position:absolute;
  12467. left:0px;
  12468. top:0px;
  12469. width:462px;
  12470. height:31px;
  12471. background:inherit;
  12472. background-color:rgba(240, 240, 240, 1);
  12473. border:none;
  12474. border-radius:0px;
  12475. -moz-box-shadow:none;
  12476. -webkit-box-shadow:none;
  12477. box-shadow:none;
  12478. font-size:14px;
  12479. color:#AAAAAA;
  12480. }
  12481. #u68357.disabled {
  12482. }
  12483. .u68357_input_option {
  12484. font-size:14px;
  12485. }
  12486. #u68358 {
  12487. border-width:0px;
  12488. position:absolute;
  12489. left:0px;
  12490. top:0px;
  12491. width:0px;
  12492. height:0px;
  12493. }
  12494. #u68359_div {
  12495. border-width:0px;
  12496. position:absolute;
  12497. left:0px;
  12498. top:0px;
  12499. width:100px;
  12500. height:140px;
  12501. background:inherit;
  12502. background-color:rgba(255, 255, 255, 1);
  12503. box-sizing:border-box;
  12504. border-width:1px;
  12505. border-style:solid;
  12506. border-color:rgba(242, 242, 242, 1);
  12507. border-radius:4px;
  12508. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12509. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12510. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12512. font-weight:400;
  12513. font-style:normal;
  12514. font-size:14px;
  12515. text-align:left;
  12516. }
  12517. #u68359 {
  12518. border-width:0px;
  12519. position:absolute;
  12520. left:1452px;
  12521. top:274px;
  12522. width:100px;
  12523. height:140px;
  12524. display:flex;
  12525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12526. font-weight:400;
  12527. font-style:normal;
  12528. font-size:14px;
  12529. text-align:left;
  12530. }
  12531. #u68359 .text {
  12532. position:absolute;
  12533. align-self:center;
  12534. padding:2px 2px 2px 2px;
  12535. box-sizing:border-box;
  12536. width:100%;
  12537. }
  12538. #u68359_text {
  12539. border-width:0px;
  12540. word-wrap:break-word;
  12541. text-transform:none;
  12542. visibility:hidden;
  12543. }
  12544. #u68360_div {
  12545. border-width:0px;
  12546. position:absolute;
  12547. left:0px;
  12548. top:0px;
  12549. width:85px;
  12550. height:40px;
  12551. background:inherit;
  12552. background-color:rgba(255, 255, 255, 1);
  12553. border:none;
  12554. border-left:0px;
  12555. border-top:0px;
  12556. border-right:0px;
  12557. border-radius:0px;
  12558. border-bottom-right-radius:0px;
  12559. border-bottom-left-radius:0px;
  12560. -moz-box-shadow:none;
  12561. -webkit-box-shadow:none;
  12562. box-shadow:none;
  12563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12564. font-weight:400;
  12565. font-style:normal;
  12566. font-size:14px;
  12567. }
  12568. #u68360 {
  12569. border-width:0px;
  12570. position:absolute;
  12571. left:1459px;
  12572. top:364px;
  12573. width:85px;
  12574. height:40px;
  12575. display:flex;
  12576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12577. font-weight:400;
  12578. font-style:normal;
  12579. font-size:14px;
  12580. }
  12581. #u68360 .text {
  12582. position:absolute;
  12583. align-self:center;
  12584. padding:2px 2px 2px 2px;
  12585. box-sizing:border-box;
  12586. width:100%;
  12587. }
  12588. #u68360_text {
  12589. border-width:0px;
  12590. word-wrap:break-word;
  12591. text-transform:none;
  12592. }
  12593. #u68361_div {
  12594. border-width:0px;
  12595. position:absolute;
  12596. left:0px;
  12597. top:0px;
  12598. width:85px;
  12599. height:40px;
  12600. background:inherit;
  12601. background-color:rgba(255, 255, 255, 1);
  12602. box-sizing:border-box;
  12603. border-width:1px;
  12604. border-style:solid;
  12605. border-color:rgba(215, 215, 215, 1);
  12606. border-left:0px;
  12607. border-top:0px;
  12608. border-right:0px;
  12609. border-radius:0px;
  12610. border-bottom-right-radius:0px;
  12611. border-bottom-left-radius:0px;
  12612. -moz-box-shadow:none;
  12613. -webkit-box-shadow:none;
  12614. box-shadow:none;
  12615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12616. font-weight:400;
  12617. font-style:normal;
  12618. font-size:14px;
  12619. }
  12620. #u68361 {
  12621. border-width:0px;
  12622. position:absolute;
  12623. left:1459px;
  12624. top:324px;
  12625. width:85px;
  12626. height:40px;
  12627. display:flex;
  12628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12629. font-weight:400;
  12630. font-style:normal;
  12631. font-size:14px;
  12632. }
  12633. #u68361 .text {
  12634. position:absolute;
  12635. align-self:center;
  12636. padding:2px 2px 2px 2px;
  12637. box-sizing:border-box;
  12638. width:100%;
  12639. }
  12640. #u68361_text {
  12641. border-width:0px;
  12642. word-wrap:break-word;
  12643. text-transform:none;
  12644. }
  12645. #u68362_div {
  12646. border-width:0px;
  12647. position:absolute;
  12648. left:0px;
  12649. top:0px;
  12650. width:85px;
  12651. height:40px;
  12652. background:inherit;
  12653. background-color:rgba(255, 255, 255, 1);
  12654. box-sizing:border-box;
  12655. border-width:1px;
  12656. border-style:solid;
  12657. border-color:rgba(215, 215, 215, 1);
  12658. border-left:0px;
  12659. border-top:0px;
  12660. border-right:0px;
  12661. border-radius:0px;
  12662. border-bottom-right-radius:0px;
  12663. border-bottom-left-radius:0px;
  12664. -moz-box-shadow:none;
  12665. -webkit-box-shadow:none;
  12666. box-shadow:none;
  12667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12668. font-weight:400;
  12669. font-style:normal;
  12670. font-size:14px;
  12671. }
  12672. #u68362 {
  12673. border-width:0px;
  12674. position:absolute;
  12675. left:1459px;
  12676. top:284px;
  12677. width:85px;
  12678. height:40px;
  12679. display:flex;
  12680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12681. font-weight:400;
  12682. font-style:normal;
  12683. font-size:14px;
  12684. }
  12685. #u68362 .text {
  12686. position:absolute;
  12687. align-self:center;
  12688. padding:2px 2px 2px 2px;
  12689. box-sizing:border-box;
  12690. width:100%;
  12691. }
  12692. #u68362_text {
  12693. border-width:0px;
  12694. word-wrap:break-word;
  12695. text-transform:none;
  12696. }
  12697. #u68363 {
  12698. border-width:0px;
  12699. position:absolute;
  12700. left:0px;
  12701. top:0px;
  12702. width:0px;
  12703. height:0px;
  12704. }
  12705. #u68364 {
  12706. border-width:0px;
  12707. position:absolute;
  12708. left:0px;
  12709. top:0px;
  12710. width:0px;
  12711. height:0px;
  12712. }
  12713. #u68365_div {
  12714. border-width:0px;
  12715. position:absolute;
  12716. left:0px;
  12717. top:0px;
  12718. width:380px;
  12719. height:164px;
  12720. background:inherit;
  12721. background-color:rgba(255, 255, 255, 1);
  12722. border:none;
  12723. border-radius:4px;
  12724. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12725. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12726. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12727. font-family:'Microsoft YaHei', sans-serif;
  12728. font-weight:400;
  12729. font-style:normal;
  12730. }
  12731. #u68365 {
  12732. border-width:0px;
  12733. position:absolute;
  12734. left:1083px;
  12735. top:470px;
  12736. width:380px;
  12737. height:164px;
  12738. display:flex;
  12739. font-family:'Microsoft YaHei', sans-serif;
  12740. font-weight:400;
  12741. font-style:normal;
  12742. }
  12743. #u68365 .text {
  12744. position:absolute;
  12745. align-self:center;
  12746. padding:2px 2px 2px 2px;
  12747. box-sizing:border-box;
  12748. width:100%;
  12749. }
  12750. #u68365_text {
  12751. border-width:0px;
  12752. word-wrap:break-word;
  12753. text-transform:none;
  12754. visibility:hidden;
  12755. }
  12756. #u68366_div {
  12757. border-width:0px;
  12758. position:absolute;
  12759. left:0px;
  12760. top:0px;
  12761. width:299px;
  12762. height:44px;
  12763. background:inherit;
  12764. background-color:rgba(255, 255, 255, 0);
  12765. border:none;
  12766. border-radius:0px;
  12767. -moz-box-shadow:none;
  12768. -webkit-box-shadow:none;
  12769. box-shadow:none;
  12770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12771. font-weight:400;
  12772. font-style:normal;
  12773. font-size:14px;
  12774. color:#666666;
  12775. line-height:22px;
  12776. }
  12777. #u68366 {
  12778. border-width:0px;
  12779. position:absolute;
  12780. left:1143px;
  12781. top:525px;
  12782. width:299px;
  12783. height:44px;
  12784. display:flex;
  12785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12786. font-weight:400;
  12787. font-style:normal;
  12788. font-size:14px;
  12789. color:#666666;
  12790. line-height:22px;
  12791. }
  12792. #u68366 .text {
  12793. position:absolute;
  12794. align-self:flex-start;
  12795. padding:0px 0px 0px 0px;
  12796. box-sizing:border-box;
  12797. width:100%;
  12798. }
  12799. #u68366_text {
  12800. border-width:0px;
  12801. word-wrap:break-word;
  12802. text-transform:none;
  12803. }
  12804. #u68367_div {
  12805. border-width:0px;
  12806. position:absolute;
  12807. left:0px;
  12808. top:0px;
  12809. width:73px;
  12810. height:21px;
  12811. background:inherit;
  12812. background-color:rgba(255, 255, 255, 0);
  12813. border:none;
  12814. border-radius:0px;
  12815. -moz-box-shadow:none;
  12816. -webkit-box-shadow:none;
  12817. box-shadow:none;
  12818. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12819. font-weight:500;
  12820. font-style:normal;
  12821. font-size:18px;
  12822. color:#000000;
  12823. line-height:22px;
  12824. }
  12825. #u68367 {
  12826. border-width:0px;
  12827. position:absolute;
  12828. left:1143px;
  12829. top:495px;
  12830. width:73px;
  12831. height:21px;
  12832. display:flex;
  12833. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12834. font-weight:500;
  12835. font-style:normal;
  12836. font-size:18px;
  12837. color:#000000;
  12838. line-height:22px;
  12839. }
  12840. #u68367 .text {
  12841. position:absolute;
  12842. align-self:flex-start;
  12843. padding:0px 0px 0px 0px;
  12844. box-sizing:border-box;
  12845. width:100%;
  12846. }
  12847. #u68367_text {
  12848. border-width:0px;
  12849. white-space:nowrap;
  12850. text-transform:none;
  12851. }
  12852. #u68368_div {
  12853. border-width:0px;
  12854. position:absolute;
  12855. left:0px;
  12856. top:0px;
  12857. width:61px;
  12858. height:32px;
  12859. background:inherit;
  12860. background-color:rgba(24, 144, 255, 1);
  12861. border:none;
  12862. border-radius:4px;
  12863. -moz-box-shadow:none;
  12864. -webkit-box-shadow:none;
  12865. box-shadow:none;
  12866. font-family:'Microsoft YaHei', sans-serif;
  12867. font-weight:400;
  12868. font-style:normal;
  12869. font-size:14px;
  12870. color:#FFFFFF;
  12871. }
  12872. #u68368 {
  12873. border-width:0px;
  12874. position:absolute;
  12875. left:1385px;
  12876. top:585px;
  12877. width:61px;
  12878. height:32px;
  12879. display:flex;
  12880. font-family:'Microsoft YaHei', sans-serif;
  12881. font-weight:400;
  12882. font-style:normal;
  12883. font-size:14px;
  12884. color:#FFFFFF;
  12885. }
  12886. #u68368 .text {
  12887. position:absolute;
  12888. align-self:center;
  12889. padding:2px 16px 2px 16px;
  12890. box-sizing:border-box;
  12891. width:100%;
  12892. }
  12893. #u68368_text {
  12894. border-width:0px;
  12895. white-space:nowrap;
  12896. text-transform:none;
  12897. }
  12898. #u68369_img {
  12899. border-width:0px;
  12900. position:absolute;
  12901. left:0px;
  12902. top:0px;
  12903. width:20px;
  12904. height:20px;
  12905. }
  12906. #u68369 {
  12907. border-width:0px;
  12908. position:absolute;
  12909. left:1112px;
  12910. top:499px;
  12911. width:20px;
  12912. height:20px;
  12913. display:flex;
  12914. }
  12915. #u68369 .text {
  12916. position:absolute;
  12917. align-self:center;
  12918. padding:2px 2px 2px 2px;
  12919. box-sizing:border-box;
  12920. width:100%;
  12921. }
  12922. #u68369_text {
  12923. border-width:0px;
  12924. word-wrap:break-word;
  12925. text-transform:none;
  12926. visibility:hidden;
  12927. }
  12928. #u68370_div {
  12929. border-width:0px;
  12930. position:absolute;
  12931. left:0px;
  12932. top:0px;
  12933. width:79px;
  12934. height:30px;
  12935. background:inherit;
  12936. background-color:rgba(255, 255, 255, 1);
  12937. box-sizing:border-box;
  12938. border-width:1px;
  12939. border-style:solid;
  12940. border-color:rgba(170, 170, 170, 1);
  12941. border-radius:4px;
  12942. -moz-box-shadow:none;
  12943. -webkit-box-shadow:none;
  12944. box-shadow:none;
  12945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12946. font-weight:400;
  12947. font-style:normal;
  12948. font-size:12px;
  12949. color:#555555;
  12950. }
  12951. #u68370 {
  12952. border-width:0px;
  12953. position:absolute;
  12954. left:1499px;
  12955. top:66px;
  12956. width:79px;
  12957. height:30px;
  12958. display:flex;
  12959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12960. font-weight:400;
  12961. font-style:normal;
  12962. font-size:12px;
  12963. color:#555555;
  12964. }
  12965. #u68370 .text {
  12966. position:absolute;
  12967. align-self:center;
  12968. padding:5px 15px 5px 15px;
  12969. box-sizing:border-box;
  12970. width:100%;
  12971. }
  12972. #u68370_text {
  12973. border-width:0px;
  12974. white-space:nowrap;
  12975. text-transform:none;
  12976. }
  12977. #u68371 {
  12978. border-width:0px;
  12979. position:absolute;
  12980. left:0px;
  12981. top:0px;
  12982. width:0px;
  12983. height:0px;
  12984. }
  12985. #u68372_div {
  12986. border-width:0px;
  12987. position:absolute;
  12988. left:0px;
  12989. top:0px;
  12990. width:100px;
  12991. height:50px;
  12992. background:inherit;
  12993. background-color:rgba(255, 255, 255, 1);
  12994. box-sizing:border-box;
  12995. border-width:1px;
  12996. border-style:solid;
  12997. border-color:rgba(242, 242, 242, 1);
  12998. border-radius:4px;
  12999. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  13000. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  13001. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  13002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13003. font-weight:400;
  13004. font-style:normal;
  13005. font-size:14px;
  13006. text-align:left;
  13007. }
  13008. #u68372 {
  13009. border-width:0px;
  13010. position:absolute;
  13011. left:1473px;
  13012. top:94px;
  13013. width:100px;
  13014. height:50px;
  13015. display:flex;
  13016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13017. font-weight:400;
  13018. font-style:normal;
  13019. font-size:14px;
  13020. text-align:left;
  13021. }
  13022. #u68372 .text {
  13023. position:absolute;
  13024. align-self:center;
  13025. padding:2px 2px 2px 2px;
  13026. box-sizing:border-box;
  13027. width:100%;
  13028. }
  13029. #u68372_text {
  13030. border-width:0px;
  13031. word-wrap:break-word;
  13032. text-transform:none;
  13033. visibility:hidden;
  13034. }
  13035. #u68373_div {
  13036. border-width:0px;
  13037. position:absolute;
  13038. left:0px;
  13039. top:0px;
  13040. width:85px;
  13041. height:40px;
  13042. background:inherit;
  13043. background-color:rgba(255, 255, 255, 1);
  13044. border:none;
  13045. border-left:0px;
  13046. border-top:0px;
  13047. border-right:0px;
  13048. border-radius:0px;
  13049. border-bottom-right-radius:0px;
  13050. border-bottom-left-radius:0px;
  13051. -moz-box-shadow:none;
  13052. -webkit-box-shadow:none;
  13053. box-shadow:none;
  13054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13055. font-weight:400;
  13056. font-style:normal;
  13057. font-size:14px;
  13058. }
  13059. #u68373 {
  13060. border-width:0px;
  13061. position:absolute;
  13062. left:1480px;
  13063. top:104px;
  13064. width:85px;
  13065. height:40px;
  13066. display:flex;
  13067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13068. font-weight:400;
  13069. font-style:normal;
  13070. font-size:14px;
  13071. }
  13072. #u68373 .text {
  13073. position:absolute;
  13074. align-self:center;
  13075. padding:2px 2px 2px 2px;
  13076. box-sizing:border-box;
  13077. width:100%;
  13078. }
  13079. #u68373_text {
  13080. border-width:0px;
  13081. word-wrap:break-word;
  13082. text-transform:none;
  13083. }
  13084. #u68374 {
  13085. border-width:0px;
  13086. position:absolute;
  13087. left:0px;
  13088. top:0px;
  13089. width:0px;
  13090. height:0px;
  13091. }
  13092. #u68375 {
  13093. border-width:0px;
  13094. position:absolute;
  13095. left:0px;
  13096. top:0px;
  13097. width:0px;
  13098. height:0px;
  13099. }
  13100. #u68376_div {
  13101. border-width:0px;
  13102. position:absolute;
  13103. left:0px;
  13104. top:0px;
  13105. width:380px;
  13106. height:164px;
  13107. background:inherit;
  13108. background-color:rgba(255, 255, 255, 1);
  13109. border:none;
  13110. border-radius:4px;
  13111. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  13112. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  13113. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  13114. font-family:'Microsoft YaHei', sans-serif;
  13115. font-weight:400;
  13116. font-style:normal;
  13117. }
  13118. #u68376 {
  13119. border-width:0px;
  13120. position:absolute;
  13121. left:656px;
  13122. top:477px;
  13123. width:380px;
  13124. height:164px;
  13125. display:flex;
  13126. font-family:'Microsoft YaHei', sans-serif;
  13127. font-weight:400;
  13128. font-style:normal;
  13129. }
  13130. #u68376 .text {
  13131. position:absolute;
  13132. align-self:center;
  13133. padding:2px 2px 2px 2px;
  13134. box-sizing:border-box;
  13135. width:100%;
  13136. }
  13137. #u68376_text {
  13138. border-width:0px;
  13139. word-wrap:break-word;
  13140. text-transform:none;
  13141. visibility:hidden;
  13142. }
  13143. #u68377_div {
  13144. border-width:0px;
  13145. position:absolute;
  13146. left:0px;
  13147. top:0px;
  13148. width:299px;
  13149. height:22px;
  13150. background:inherit;
  13151. background-color:rgba(255, 255, 255, 0);
  13152. border:none;
  13153. border-radius:0px;
  13154. -moz-box-shadow:none;
  13155. -webkit-box-shadow:none;
  13156. box-shadow:none;
  13157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13158. font-weight:400;
  13159. font-style:normal;
  13160. font-size:14px;
  13161. color:#666666;
  13162. line-height:22px;
  13163. }
  13164. #u68377 {
  13165. border-width:0px;
  13166. position:absolute;
  13167. left:716px;
  13168. top:532px;
  13169. width:299px;
  13170. height:22px;
  13171. display:flex;
  13172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13173. font-weight:400;
  13174. font-style:normal;
  13175. font-size:14px;
  13176. color:#666666;
  13177. line-height:22px;
  13178. }
  13179. #u68377 .text {
  13180. position:absolute;
  13181. align-self:flex-start;
  13182. padding:0px 0px 0px 0px;
  13183. box-sizing:border-box;
  13184. width:100%;
  13185. }
  13186. #u68377_text {
  13187. border-width:0px;
  13188. word-wrap:break-word;
  13189. text-transform:none;
  13190. }
  13191. #u68378_div {
  13192. border-width:0px;
  13193. position:absolute;
  13194. left:0px;
  13195. top:0px;
  13196. width:73px;
  13197. height:21px;
  13198. background:inherit;
  13199. background-color:rgba(255, 255, 255, 0);
  13200. border:none;
  13201. border-radius:0px;
  13202. -moz-box-shadow:none;
  13203. -webkit-box-shadow:none;
  13204. box-shadow:none;
  13205. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13206. font-weight:500;
  13207. font-style:normal;
  13208. font-size:18px;
  13209. color:#000000;
  13210. line-height:22px;
  13211. }
  13212. #u68378 {
  13213. border-width:0px;
  13214. position:absolute;
  13215. left:716px;
  13216. top:502px;
  13217. width:73px;
  13218. height:21px;
  13219. display:flex;
  13220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13221. font-weight:500;
  13222. font-style:normal;
  13223. font-size:18px;
  13224. color:#000000;
  13225. line-height:22px;
  13226. }
  13227. #u68378 .text {
  13228. position:absolute;
  13229. align-self:flex-start;
  13230. padding:0px 0px 0px 0px;
  13231. box-sizing:border-box;
  13232. width:100%;
  13233. }
  13234. #u68378_text {
  13235. border-width:0px;
  13236. white-space:nowrap;
  13237. text-transform:none;
  13238. }
  13239. #u68379_div {
  13240. border-width:0px;
  13241. position:absolute;
  13242. left:0px;
  13243. top:0px;
  13244. width:61px;
  13245. height:32px;
  13246. background:inherit;
  13247. background-color:rgba(24, 144, 255, 1);
  13248. border:none;
  13249. border-radius:4px;
  13250. -moz-box-shadow:none;
  13251. -webkit-box-shadow:none;
  13252. box-shadow:none;
  13253. font-family:'Microsoft YaHei', sans-serif;
  13254. font-weight:400;
  13255. font-style:normal;
  13256. font-size:14px;
  13257. color:#FFFFFF;
  13258. }
  13259. #u68379 {
  13260. border-width:0px;
  13261. position:absolute;
  13262. left:958px;
  13263. top:592px;
  13264. width:61px;
  13265. height:32px;
  13266. display:flex;
  13267. font-family:'Microsoft YaHei', sans-serif;
  13268. font-weight:400;
  13269. font-style:normal;
  13270. font-size:14px;
  13271. color:#FFFFFF;
  13272. }
  13273. #u68379 .text {
  13274. position:absolute;
  13275. align-self:center;
  13276. padding:2px 16px 2px 16px;
  13277. box-sizing:border-box;
  13278. width:100%;
  13279. }
  13280. #u68379_text {
  13281. border-width:0px;
  13282. white-space:nowrap;
  13283. text-transform:none;
  13284. }
  13285. #u68380_img {
  13286. border-width:0px;
  13287. position:absolute;
  13288. left:0px;
  13289. top:0px;
  13290. width:20px;
  13291. height:20px;
  13292. }
  13293. #u68380 {
  13294. border-width:0px;
  13295. position:absolute;
  13296. left:685px;
  13297. top:506px;
  13298. width:20px;
  13299. height:20px;
  13300. display:flex;
  13301. }
  13302. #u68380 .text {
  13303. position:absolute;
  13304. align-self:center;
  13305. padding:2px 2px 2px 2px;
  13306. box-sizing:border-box;
  13307. width:100%;
  13308. }
  13309. #u68380_text {
  13310. border-width:0px;
  13311. word-wrap:break-word;
  13312. text-transform:none;
  13313. visibility:hidden;
  13314. }