styles.css 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1713px;
  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. #u68609_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. #u68609 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u68609 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u68609_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u68610_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. #u68610 {
  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. #u68610 .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. #u68610_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u68611_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. #u68611 {
  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. #u68611 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u68611_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u68612 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u68613_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u68613 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u68613 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u68613_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u68614_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. #u68614 {
  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. #u68614 .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. #u68614_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u68615_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. #u68615 {
  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. #u68615 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u68615_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u68616 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u68617_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u68617_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u68617_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u68617 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u68617 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u68617_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u68617.disabled {
  356. }
  357. .u68617_input_option {
  358. font-size:14px;
  359. }
  360. #u68618_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u68618 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u68618 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u68618_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u68619_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u68619 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u68619 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u68619_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u68620_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u68620 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u68620 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u68620_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u68621 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u68622_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u68622 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u68622 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u68622_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u68623_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u68623 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u68623 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u68623_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u68624 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u68625_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u68625 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u68625 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u68625_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u68626_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u68626 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u68626 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u68626_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u68627 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u68628_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u68628 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u68628 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u68628_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u68629_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u68629 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u68629 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u68629_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u68630 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u68631_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u68631 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u68631 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u68631_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u68632_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u68632 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u68632 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u68632_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u68633 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u68634_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u68634 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u68634 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u68634_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u68635_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u68635 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u68635 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u68635_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u68636 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u68637_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u68637 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u68637 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u68637_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u68638_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u68638 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u68638 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u68638_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u68639 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u68640_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u68640 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u68640 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u68640_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u68641_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u68641 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u68641 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u68641_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u68642 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u68643_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u68643 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u68643 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u68643_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u68644_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u68644 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u68644 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u68644_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u68645 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u68646_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u68646 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u68646 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u68646_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u68647_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u68647 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u68647 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u68647_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u68648 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u68649_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u68649 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u68649 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u68649_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u68650_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u68650 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u68650 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u68650_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u68651_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u68651 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u68651 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u68651_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u68652_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u68652 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u68652 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u68652_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u68653_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u68653 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u68653 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u68653_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u68654_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u68654 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u68654 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u68654_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u68655 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u68656_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u68656 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u68656 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u68656_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u68657_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u68657 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u68657 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u68657_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u68658 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u68659_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u68659 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u68659 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u68659_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u68660_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u68660 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u68660 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u68660_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u68661 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u68662_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:200px;
  1652. height:1180px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. }
  1661. #u68662 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:122px;
  1665. top:50px;
  1666. width:200px;
  1667. height:1180px;
  1668. display:flex;
  1669. }
  1670. #u68662 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u68662_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. visibility:hidden;
  1682. }
  1683. #u68663_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:200px;
  1689. height:60px;
  1690. background:inherit;
  1691. background-color:rgba(224, 231, 247, 1);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1698. font-weight:500;
  1699. font-style:normal;
  1700. font-size:18px;
  1701. }
  1702. #u68663 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:122px;
  1706. top:50px;
  1707. width:200px;
  1708. height:60px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1711. font-weight:500;
  1712. font-style:normal;
  1713. font-size:18px;
  1714. }
  1715. #u68663 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:0px 0px 0px 20px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u68663_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. }
  1727. #u68664_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:65px;
  1733. height:22px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 0);
  1736. border:none;
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:16px;
  1745. }
  1746. #u68664 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:149px;
  1750. top:161px;
  1751. width:65px;
  1752. height:22px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:16px;
  1758. }
  1759. #u68664 .text {
  1760. position:absolute;
  1761. align-self:flex-start;
  1762. padding:0px 0px 0px 0px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u68664_text {
  1767. border-width:0px;
  1768. white-space:nowrap;
  1769. text-transform:none;
  1770. }
  1771. #u68665_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:65px;
  1777. height:22px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-radius:0px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:16px;
  1789. }
  1790. #u68665 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:149px;
  1794. top:203px;
  1795. width:65px;
  1796. height:22px;
  1797. display:flex;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:16px;
  1802. }
  1803. #u68665 .text {
  1804. position:absolute;
  1805. align-self:flex-start;
  1806. padding:0px 0px 0px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u68665_text {
  1811. border-width:0px;
  1812. white-space:nowrap;
  1813. text-transform:none;
  1814. }
  1815. #u68666_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:65px;
  1821. height:22px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 0);
  1824. border:none;
  1825. border-radius:0px;
  1826. -moz-box-shadow:none;
  1827. -webkit-box-shadow:none;
  1828. box-shadow:none;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:16px;
  1833. }
  1834. #u68666 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:149px;
  1838. top:245px;
  1839. width:65px;
  1840. height:22px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:16px;
  1846. }
  1847. #u68666 .text {
  1848. position:absolute;
  1849. align-self:flex-start;
  1850. padding:0px 0px 0px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u68666_text {
  1855. border-width:0px;
  1856. white-space:nowrap;
  1857. text-transform:none;
  1858. }
  1859. #u68667_div {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:65px;
  1865. height:22px;
  1866. background:inherit;
  1867. background-color:rgba(255, 255, 255, 0);
  1868. border:none;
  1869. border-radius:0px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:16px;
  1877. color:#1890FF;
  1878. }
  1879. #u68667 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:149px;
  1883. top:287px;
  1884. width:65px;
  1885. height:22px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:16px;
  1891. color:#1890FF;
  1892. }
  1893. #u68667 .text {
  1894. position:absolute;
  1895. align-self:flex-start;
  1896. padding:0px 0px 0px 0px;
  1897. box-sizing:border-box;
  1898. width:100%;
  1899. }
  1900. #u68667_text {
  1901. border-width:0px;
  1902. white-space:nowrap;
  1903. text-transform:none;
  1904. }
  1905. #u68668_div {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:49px;
  1911. height:17px;
  1912. background:inherit;
  1913. background-color:rgba(255, 255, 255, 0);
  1914. border:none;
  1915. border-radius:0px;
  1916. -moz-box-shadow:none;
  1917. -webkit-box-shadow:none;
  1918. box-shadow:none;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. color:#AAAAAA;
  1924. }
  1925. #u68668 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:149px;
  1929. top:125px;
  1930. width:49px;
  1931. height:17px;
  1932. display:flex;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:12px;
  1937. color:#AAAAAA;
  1938. }
  1939. #u68668 .text {
  1940. position:absolute;
  1941. align-self:flex-start;
  1942. padding:0px 0px 0px 0px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u68668_text {
  1947. border-width:0px;
  1948. white-space:nowrap;
  1949. text-transform:none;
  1950. }
  1951. #u68669_div {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:65px;
  1957. height:22px;
  1958. background:inherit;
  1959. background-color:rgba(255, 255, 255, 0);
  1960. border:none;
  1961. border-radius:0px;
  1962. -moz-box-shadow:none;
  1963. -webkit-box-shadow:none;
  1964. box-shadow:none;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:16px;
  1969. }
  1970. #u68669 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:149px;
  1974. top:387px;
  1975. width:65px;
  1976. height:22px;
  1977. display:flex;
  1978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1979. font-weight:400;
  1980. font-style:normal;
  1981. font-size:16px;
  1982. }
  1983. #u68669 .text {
  1984. position:absolute;
  1985. align-self:flex-start;
  1986. padding:0px 0px 0px 0px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u68669_text {
  1991. border-width:0px;
  1992. white-space:nowrap;
  1993. text-transform:none;
  1994. }
  1995. #u68670_div {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:49px;
  2001. height:17px;
  2002. background:inherit;
  2003. background-color:rgba(255, 255, 255, 0);
  2004. border:none;
  2005. border-radius:0px;
  2006. -moz-box-shadow:none;
  2007. -webkit-box-shadow:none;
  2008. box-shadow:none;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#AAAAAA;
  2014. }
  2015. #u68670 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:149px;
  2019. top:351px;
  2020. width:49px;
  2021. height:17px;
  2022. display:flex;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:12px;
  2027. color:#AAAAAA;
  2028. }
  2029. #u68670 .text {
  2030. position:absolute;
  2031. align-self:flex-start;
  2032. padding:0px 0px 0px 0px;
  2033. box-sizing:border-box;
  2034. width:100%;
  2035. }
  2036. #u68670_text {
  2037. border-width:0px;
  2038. white-space:nowrap;
  2039. text-transform:none;
  2040. }
  2041. #u68671_img {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:201px;
  2047. height:2px;
  2048. }
  2049. #u68671 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:122px;
  2053. top:329px;
  2054. width:200px;
  2055. height:1px;
  2056. display:flex;
  2057. }
  2058. #u68671 .text {
  2059. position:absolute;
  2060. align-self:center;
  2061. padding:2px 2px 2px 2px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u68671_text {
  2066. border-width:0px;
  2067. word-wrap:break-word;
  2068. text-transform:none;
  2069. visibility:hidden;
  2070. }
  2071. #u68672_div {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:65px;
  2077. height:22px;
  2078. background:inherit;
  2079. background-color:rgba(255, 255, 255, 0);
  2080. border:none;
  2081. border-radius:0px;
  2082. -moz-box-shadow:none;
  2083. -webkit-box-shadow:none;
  2084. box-shadow:none;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:16px;
  2089. }
  2090. #u68672 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:149px;
  2094. top:484px;
  2095. width:65px;
  2096. height:22px;
  2097. display:flex;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:16px;
  2102. }
  2103. #u68672 .text {
  2104. position:absolute;
  2105. align-self:flex-start;
  2106. padding:0px 0px 0px 0px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u68672_text {
  2111. border-width:0px;
  2112. white-space:nowrap;
  2113. text-transform:none;
  2114. }
  2115. #u68673_div {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:49px;
  2121. height:17px;
  2122. background:inherit;
  2123. background-color:rgba(255, 255, 255, 0);
  2124. border:none;
  2125. border-radius:0px;
  2126. -moz-box-shadow:none;
  2127. -webkit-box-shadow:none;
  2128. box-shadow:none;
  2129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:12px;
  2133. color:#AAAAAA;
  2134. }
  2135. #u68673 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:149px;
  2139. top:448px;
  2140. width:49px;
  2141. height:17px;
  2142. display:flex;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. font-size:12px;
  2147. color:#AAAAAA;
  2148. }
  2149. #u68673 .text {
  2150. position:absolute;
  2151. align-self:flex-start;
  2152. padding:0px 0px 0px 0px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u68673_text {
  2157. border-width:0px;
  2158. white-space:nowrap;
  2159. text-transform:none;
  2160. }
  2161. #u68674_img {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:201px;
  2167. height:2px;
  2168. }
  2169. #u68674 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:122px;
  2173. top:426px;
  2174. width:200px;
  2175. height:1px;
  2176. display:flex;
  2177. }
  2178. #u68674 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 2px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u68674_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. visibility:hidden;
  2190. }
  2191. #u68675_div {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:65px;
  2197. height:22px;
  2198. background:inherit;
  2199. background-color:rgba(255, 255, 255, 0);
  2200. border:none;
  2201. border-radius:0px;
  2202. -moz-box-shadow:none;
  2203. -webkit-box-shadow:none;
  2204. box-shadow:none;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:16px;
  2209. }
  2210. #u68675 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:149px;
  2214. top:526px;
  2215. width:65px;
  2216. height:22px;
  2217. display:flex;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:16px;
  2222. }
  2223. #u68675 .text {
  2224. position:absolute;
  2225. align-self:flex-start;
  2226. padding:0px 0px 0px 0px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u68675_text {
  2231. border-width:0px;
  2232. white-space:nowrap;
  2233. text-transform:none;
  2234. }
  2235. #u68676_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:1381px;
  2241. height:1065px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 1);
  2244. box-sizing:border-box;
  2245. border-width:1px;
  2246. border-style:solid;
  2247. border-color:rgba(242, 242, 242, 1);
  2248. border-radius:0px;
  2249. -moz-box-shadow:none;
  2250. -webkit-box-shadow:none;
  2251. box-shadow:none;
  2252. }
  2253. #u68676 {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:332px;
  2257. top:150px;
  2258. width:1381px;
  2259. height:1065px;
  2260. display:flex;
  2261. }
  2262. #u68676 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 2px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u68676_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. visibility:hidden;
  2274. }
  2275. #u68677 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:0px;
  2281. height:0px;
  2282. }
  2283. #u68678_div {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:160px;
  2289. height:30px;
  2290. background:inherit;
  2291. background-color:rgba(255, 255, 255, 1);
  2292. box-sizing:border-box;
  2293. border-width:1px;
  2294. border-style:solid;
  2295. border-color:rgba(215, 215, 215, 1);
  2296. border-radius:4px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. font-size:14px;
  2301. }
  2302. #u68678 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:356px;
  2306. top:170px;
  2307. width:160px;
  2308. height:30px;
  2309. display:flex;
  2310. font-size:14px;
  2311. }
  2312. #u68678 .text {
  2313. position:absolute;
  2314. align-self:center;
  2315. padding:2px 2px 2px 2px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u68678_text {
  2320. border-width:0px;
  2321. word-wrap:break-word;
  2322. text-transform:none;
  2323. visibility:hidden;
  2324. }
  2325. #u68679_input {
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:153px;
  2330. height:23px;
  2331. padding:2px 2px 2px 2px;
  2332. font-family:'ArialMT', 'Arial', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:14px;
  2336. letter-spacing:normal;
  2337. color:#AAAAAA;
  2338. vertical-align:none;
  2339. text-align:left;
  2340. text-transform:none;
  2341. background-color:transparent;
  2342. border-color:transparent;
  2343. }
  2344. #u68679_input.disabled {
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:153px;
  2349. height:23px;
  2350. padding:2px 2px 2px 2px;
  2351. font-family:'ArialMT', 'Arial', sans-serif;
  2352. font-weight:400;
  2353. font-style:normal;
  2354. font-size:14px;
  2355. letter-spacing:normal;
  2356. color:#AAAAAA;
  2357. vertical-align:none;
  2358. text-align:left;
  2359. text-transform:none;
  2360. background-color:transparent;
  2361. border-color:transparent;
  2362. }
  2363. #u68679_div {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:153px;
  2369. height:23px;
  2370. background:inherit;
  2371. background-color:rgba(255, 255, 255, 1);
  2372. border:none;
  2373. border-radius:0px;
  2374. -moz-box-shadow:none;
  2375. -webkit-box-shadow:none;
  2376. box-shadow:none;
  2377. font-size:14px;
  2378. color:#AAAAAA;
  2379. }
  2380. #u68679 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:361px;
  2384. top:172px;
  2385. width:153px;
  2386. height:23px;
  2387. display:flex;
  2388. font-size:14px;
  2389. color:#AAAAAA;
  2390. }
  2391. #u68679 .text {
  2392. position:absolute;
  2393. align-self:flex-start;
  2394. padding:2px 2px 2px 2px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u68679_div.disabled {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:153px;
  2404. height:23px;
  2405. background:inherit;
  2406. background-color:rgba(240, 240, 240, 1);
  2407. border:none;
  2408. border-radius:0px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-size:14px;
  2413. color:#AAAAAA;
  2414. }
  2415. #u68679.disabled {
  2416. }
  2417. .u68679_input_option {
  2418. font-size:14px;
  2419. }
  2420. #u68680 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:356px;
  2424. top:220px;
  2425. width:1335px;
  2426. height:238px;
  2427. }
  2428. #u68681_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:43px;
  2434. height:44px;
  2435. }
  2436. #u68681 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:43px;
  2442. height:44px;
  2443. display:flex;
  2444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:14px;
  2448. color:#FFFFFF;
  2449. }
  2450. #u68681 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 2px 2px 2px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u68681_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. }
  2462. #u68682_img {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:140px;
  2468. height:44px;
  2469. }
  2470. #u68682 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:43px;
  2474. top:0px;
  2475. width:140px;
  2476. height:44px;
  2477. display:flex;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:14px;
  2482. color:#FFFFFF;
  2483. }
  2484. #u68682 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 2px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u68682_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. }
  2496. #u68683_img {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:153px;
  2502. height:44px;
  2503. }
  2504. #u68683 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:183px;
  2508. top:0px;
  2509. width:153px;
  2510. height:44px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:14px;
  2516. color:#FFFFFF;
  2517. }
  2518. #u68683 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 2px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u68683_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. }
  2530. #u68684_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:74px;
  2536. height:44px;
  2537. }
  2538. #u68684 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:336px;
  2542. top:0px;
  2543. width:74px;
  2544. height:44px;
  2545. display:flex;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:14px;
  2550. color:#FFFFFF;
  2551. }
  2552. #u68684 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:2px 2px 2px 2px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u68684_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. }
  2564. #u68685_img {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:80px;
  2570. height:44px;
  2571. }
  2572. #u68685 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:410px;
  2576. top:0px;
  2577. width:80px;
  2578. height:44px;
  2579. display:flex;
  2580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. font-size:14px;
  2584. color:#FFFFFF;
  2585. }
  2586. #u68685 .text {
  2587. position:absolute;
  2588. align-self:center;
  2589. padding:2px 2px 2px 2px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u68685_text {
  2594. border-width:0px;
  2595. word-wrap:break-word;
  2596. text-transform:none;
  2597. }
  2598. #u68686_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:102px;
  2604. height:44px;
  2605. }
  2606. #u68686 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:490px;
  2610. top:0px;
  2611. width:102px;
  2612. height:44px;
  2613. display:flex;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:14px;
  2618. color:#FFFFFF;
  2619. }
  2620. #u68686 .text {
  2621. position:absolute;
  2622. align-self:center;
  2623. padding:2px 2px 2px 2px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u68686_text {
  2628. border-width:0px;
  2629. word-wrap:break-word;
  2630. text-transform:none;
  2631. }
  2632. #u68687_img {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:124px;
  2638. height:44px;
  2639. }
  2640. #u68687 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:592px;
  2644. top:0px;
  2645. width:124px;
  2646. height:44px;
  2647. display:flex;
  2648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2649. font-weight:400;
  2650. font-style:normal;
  2651. font-size:14px;
  2652. color:#FFFFFF;
  2653. }
  2654. #u68687 .text {
  2655. position:absolute;
  2656. align-self:center;
  2657. padding:2px 2px 2px 2px;
  2658. box-sizing:border-box;
  2659. width:100%;
  2660. }
  2661. #u68687_text {
  2662. border-width:0px;
  2663. word-wrap:break-word;
  2664. text-transform:none;
  2665. }
  2666. #u68688_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:111px;
  2672. height:44px;
  2673. }
  2674. #u68688 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:716px;
  2678. top:0px;
  2679. width:111px;
  2680. height:44px;
  2681. display:flex;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:14px;
  2686. color:#FFFFFF;
  2687. }
  2688. #u68688 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u68688_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. }
  2700. #u68689_img {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:148px;
  2706. height:44px;
  2707. }
  2708. #u68689 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:827px;
  2712. top:0px;
  2713. width:148px;
  2714. height:44px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:14px;
  2720. color:#FFFFFF;
  2721. }
  2722. #u68689 .text {
  2723. position:absolute;
  2724. align-self:center;
  2725. padding:2px 2px 2px 2px;
  2726. box-sizing:border-box;
  2727. width:100%;
  2728. }
  2729. #u68689_text {
  2730. border-width:0px;
  2731. word-wrap:break-word;
  2732. text-transform:none;
  2733. }
  2734. #u68690_img {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:148px;
  2740. height:44px;
  2741. }
  2742. #u68690 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:975px;
  2746. top:0px;
  2747. width:148px;
  2748. height:44px;
  2749. display:flex;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. font-size:14px;
  2754. color:#FFFFFF;
  2755. }
  2756. #u68690 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 2px 2px 2px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u68690_text {
  2764. border-width:0px;
  2765. word-wrap:break-word;
  2766. text-transform:none;
  2767. }
  2768. #u68691_img {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:100px;
  2774. height:44px;
  2775. }
  2776. #u68691 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:1123px;
  2780. top:0px;
  2781. width:100px;
  2782. height:44px;
  2783. display:flex;
  2784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2785. font-weight:400;
  2786. font-style:normal;
  2787. font-size:14px;
  2788. color:#FFFFFF;
  2789. }
  2790. #u68691 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:2px 2px 2px 2px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u68691_text {
  2798. border-width:0px;
  2799. word-wrap:break-word;
  2800. text-transform:none;
  2801. }
  2802. #u68692_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:113px;
  2808. height:44px;
  2809. }
  2810. #u68692 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:1223px;
  2814. top:0px;
  2815. width:113px;
  2816. height:44px;
  2817. display:flex;
  2818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2819. font-weight:400;
  2820. font-style:normal;
  2821. font-size:14px;
  2822. color:#FFFFFF;
  2823. }
  2824. #u68692 .text {
  2825. position:absolute;
  2826. align-self:center;
  2827. padding:2px 2px 2px 2px;
  2828. box-sizing:border-box;
  2829. width:100%;
  2830. }
  2831. #u68692_text {
  2832. border-width:0px;
  2833. word-wrap:break-word;
  2834. text-transform:none;
  2835. }
  2836. #u68693_img {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:43px;
  2842. height:44px;
  2843. }
  2844. #u68693 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:0px;
  2848. top:44px;
  2849. width:43px;
  2850. height:44px;
  2851. display:flex;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:14px;
  2856. }
  2857. #u68693 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 2px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u68693_text {
  2865. border-width:0px;
  2866. word-wrap:break-word;
  2867. text-transform:none;
  2868. }
  2869. #u68694_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:140px;
  2875. height:44px;
  2876. }
  2877. #u68694 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:43px;
  2881. top:44px;
  2882. width:140px;
  2883. height:44px;
  2884. display:flex;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:14px;
  2889. }
  2890. #u68694 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 2px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u68694_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. }
  2902. #u68695_img {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:153px;
  2908. height:44px;
  2909. }
  2910. #u68695 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:183px;
  2914. top:44px;
  2915. width:153px;
  2916. height:44px;
  2917. display:flex;
  2918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:14px;
  2922. }
  2923. #u68695 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:2px 2px 2px 2px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u68695_text {
  2931. border-width:0px;
  2932. word-wrap:break-word;
  2933. text-transform:none;
  2934. }
  2935. #u68696_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:74px;
  2941. height:44px;
  2942. }
  2943. #u68696 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:336px;
  2947. top:44px;
  2948. width:74px;
  2949. height:44px;
  2950. display:flex;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. }
  2956. #u68696 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u68696_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. }
  2968. #u68697_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:80px;
  2974. height:44px;
  2975. }
  2976. #u68697 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:410px;
  2980. top:44px;
  2981. width:80px;
  2982. height:44px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:14px;
  2988. }
  2989. #u68697 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 2px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u68697_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. visibility:hidden;
  3001. }
  3002. #u68698_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:102px;
  3008. height:44px;
  3009. }
  3010. #u68698 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:490px;
  3014. top:44px;
  3015. width:102px;
  3016. height:44px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:14px;
  3022. }
  3023. #u68698 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 2px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u68698_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. }
  3035. #u68699_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:124px;
  3041. height:44px;
  3042. }
  3043. #u68699 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:592px;
  3047. top:44px;
  3048. width:124px;
  3049. height:44px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. }
  3056. #u68699 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u68699_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. }
  3068. #u68700_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:111px;
  3074. height:44px;
  3075. }
  3076. #u68700 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:716px;
  3080. top:44px;
  3081. width:111px;
  3082. height:44px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. }
  3089. #u68700 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 2px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u68700_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. }
  3101. #u68701_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:148px;
  3107. height:44px;
  3108. }
  3109. #u68701 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:827px;
  3113. top:44px;
  3114. width:148px;
  3115. height:44px;
  3116. display:flex;
  3117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:14px;
  3121. }
  3122. #u68701 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 2px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u68701_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. }
  3134. #u68702_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:148px;
  3140. height:44px;
  3141. }
  3142. #u68702 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:975px;
  3146. top:44px;
  3147. width:148px;
  3148. height:44px;
  3149. display:flex;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:14px;
  3154. }
  3155. #u68702 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 2px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u68702_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. }
  3167. #u68703_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:100px;
  3173. height:44px;
  3174. }
  3175. #u68703 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:1123px;
  3179. top:44px;
  3180. width:100px;
  3181. height:44px;
  3182. display:flex;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:14px;
  3187. }
  3188. #u68703 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 2px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u68703_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. }
  3200. #u68704_img {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:113px;
  3206. height:44px;
  3207. }
  3208. #u68704 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:1223px;
  3212. top:44px;
  3213. width:113px;
  3214. height:44px;
  3215. display:flex;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:14px;
  3220. color:#1890FF;
  3221. }
  3222. #u68704 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 2px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u68704_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. }
  3234. #u68705_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:43px;
  3240. height:30px;
  3241. }
  3242. #u68705 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:88px;
  3247. width:43px;
  3248. height:30px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:14px;
  3254. }
  3255. #u68705 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u68705_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u68706_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:140px;
  3274. height:30px;
  3275. }
  3276. #u68706 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:43px;
  3280. top:88px;
  3281. width:140px;
  3282. height:30px;
  3283. display:flex;
  3284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:14px;
  3288. }
  3289. #u68706 .text {
  3290. position:absolute;
  3291. align-self:center;
  3292. padding:2px 2px 2px 2px;
  3293. box-sizing:border-box;
  3294. width:100%;
  3295. }
  3296. #u68706_text {
  3297. border-width:0px;
  3298. word-wrap:break-word;
  3299. text-transform:none;
  3300. visibility:hidden;
  3301. }
  3302. #u68707_img {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:0px;
  3306. top:0px;
  3307. width:153px;
  3308. height:30px;
  3309. }
  3310. #u68707 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:183px;
  3314. top:88px;
  3315. width:153px;
  3316. height:30px;
  3317. display:flex;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. }
  3323. #u68707 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u68707_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. visibility:hidden;
  3335. }
  3336. #u68708_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:74px;
  3342. height:30px;
  3343. }
  3344. #u68708 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:336px;
  3348. top:88px;
  3349. width:74px;
  3350. height:30px;
  3351. display:flex;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:14px;
  3356. }
  3357. #u68708 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 2px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u68708_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. visibility:hidden;
  3369. }
  3370. #u68709_img {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:80px;
  3376. height:30px;
  3377. }
  3378. #u68709 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:410px;
  3382. top:88px;
  3383. width:80px;
  3384. height:30px;
  3385. display:flex;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:14px;
  3390. }
  3391. #u68709 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 2px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u68709_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. visibility:hidden;
  3403. }
  3404. #u68710_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:102px;
  3410. height:30px;
  3411. }
  3412. #u68710 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:490px;
  3416. top:88px;
  3417. width:102px;
  3418. height:30px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:14px;
  3424. }
  3425. #u68710 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:2px 2px 2px 2px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u68710_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. visibility:hidden;
  3437. }
  3438. #u68711_img {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:124px;
  3444. height:30px;
  3445. }
  3446. #u68711 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:592px;
  3450. top:88px;
  3451. width:124px;
  3452. height:30px;
  3453. display:flex;
  3454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. font-size:14px;
  3458. }
  3459. #u68711 .text {
  3460. position:absolute;
  3461. align-self:center;
  3462. padding:2px 2px 2px 2px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u68711_text {
  3467. border-width:0px;
  3468. word-wrap:break-word;
  3469. text-transform:none;
  3470. visibility:hidden;
  3471. }
  3472. #u68712_img {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:111px;
  3478. height:30px;
  3479. }
  3480. #u68712 {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:716px;
  3484. top:88px;
  3485. width:111px;
  3486. height:30px;
  3487. display:flex;
  3488. font-size:14px;
  3489. }
  3490. #u68712 .text {
  3491. position:absolute;
  3492. align-self:center;
  3493. padding:2px 2px 2px 2px;
  3494. box-sizing:border-box;
  3495. width:100%;
  3496. }
  3497. #u68712_text {
  3498. border-width:0px;
  3499. word-wrap:break-word;
  3500. text-transform:none;
  3501. visibility:hidden;
  3502. }
  3503. #u68713_img {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:148px;
  3509. height:30px;
  3510. }
  3511. #u68713 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:827px;
  3515. top:88px;
  3516. width:148px;
  3517. height:30px;
  3518. display:flex;
  3519. font-size:14px;
  3520. }
  3521. #u68713 .text {
  3522. position:absolute;
  3523. align-self:center;
  3524. padding:2px 2px 2px 2px;
  3525. box-sizing:border-box;
  3526. width:100%;
  3527. }
  3528. #u68713_text {
  3529. border-width:0px;
  3530. word-wrap:break-word;
  3531. text-transform:none;
  3532. visibility:hidden;
  3533. }
  3534. #u68714_img {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:148px;
  3540. height:30px;
  3541. }
  3542. #u68714 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:975px;
  3546. top:88px;
  3547. width:148px;
  3548. height:30px;
  3549. display:flex;
  3550. font-size:14px;
  3551. }
  3552. #u68714 .text {
  3553. position:absolute;
  3554. align-self:center;
  3555. padding:2px 2px 2px 2px;
  3556. box-sizing:border-box;
  3557. width:100%;
  3558. }
  3559. #u68714_text {
  3560. border-width:0px;
  3561. word-wrap:break-word;
  3562. text-transform:none;
  3563. visibility:hidden;
  3564. }
  3565. #u68715_img {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:100px;
  3571. height:30px;
  3572. }
  3573. #u68715 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:1123px;
  3577. top:88px;
  3578. width:100px;
  3579. height:30px;
  3580. display:flex;
  3581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:14px;
  3585. }
  3586. #u68715 .text {
  3587. position:absolute;
  3588. align-self:center;
  3589. padding:2px 2px 2px 2px;
  3590. box-sizing:border-box;
  3591. width:100%;
  3592. }
  3593. #u68715_text {
  3594. border-width:0px;
  3595. word-wrap:break-word;
  3596. text-transform:none;
  3597. }
  3598. #u68716_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:113px;
  3604. height:30px;
  3605. }
  3606. #u68716 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:1223px;
  3610. top:88px;
  3611. width:113px;
  3612. height:30px;
  3613. display:flex;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:14px;
  3618. color:#AAAAAA;
  3619. }
  3620. #u68716 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 2px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u68716_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. }
  3632. #u68717_img {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:43px;
  3638. height:30px;
  3639. }
  3640. #u68717 {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:118px;
  3645. width:43px;
  3646. height:30px;
  3647. display:flex;
  3648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:14px;
  3652. }
  3653. #u68717 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 2px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u68717_text {
  3661. border-width:0px;
  3662. word-wrap:break-word;
  3663. text-transform:none;
  3664. visibility:hidden;
  3665. }
  3666. #u68718_img {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:140px;
  3672. height:30px;
  3673. }
  3674. #u68718 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:43px;
  3678. top:118px;
  3679. width:140px;
  3680. height:30px;
  3681. display:flex;
  3682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:14px;
  3686. }
  3687. #u68718 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 2px 2px 2px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u68718_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. visibility:hidden;
  3699. }
  3700. #u68719_img {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:153px;
  3706. height:30px;
  3707. }
  3708. #u68719 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:183px;
  3712. top:118px;
  3713. width:153px;
  3714. height:30px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:14px;
  3720. }
  3721. #u68719 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 2px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u68719_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u68720_img {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:74px;
  3740. height:30px;
  3741. }
  3742. #u68720 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:336px;
  3746. top:118px;
  3747. width:74px;
  3748. height:30px;
  3749. display:flex;
  3750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3751. font-weight:400;
  3752. font-style:normal;
  3753. font-size:14px;
  3754. }
  3755. #u68720 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 2px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u68720_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u68721_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:80px;
  3774. height:30px;
  3775. }
  3776. #u68721 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:410px;
  3780. top:118px;
  3781. width:80px;
  3782. height:30px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:14px;
  3788. }
  3789. #u68721 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 2px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u68721_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u68722_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:102px;
  3808. height:30px;
  3809. }
  3810. #u68722 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:490px;
  3814. top:118px;
  3815. width:102px;
  3816. height:30px;
  3817. display:flex;
  3818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:14px;
  3822. }
  3823. #u68722 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 2px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u68722_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u68723_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:124px;
  3842. height:30px;
  3843. }
  3844. #u68723 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:592px;
  3848. top:118px;
  3849. width:124px;
  3850. height:30px;
  3851. display:flex;
  3852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:14px;
  3856. }
  3857. #u68723 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 2px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u68723_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u68724_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:111px;
  3876. height:30px;
  3877. }
  3878. #u68724 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:716px;
  3882. top:118px;
  3883. width:111px;
  3884. height:30px;
  3885. display:flex;
  3886. font-size:14px;
  3887. }
  3888. #u68724 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:2px 2px 2px 2px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u68724_text {
  3896. border-width:0px;
  3897. word-wrap:break-word;
  3898. text-transform:none;
  3899. visibility:hidden;
  3900. }
  3901. #u68725_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:148px;
  3907. height:30px;
  3908. }
  3909. #u68725 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:827px;
  3913. top:118px;
  3914. width:148px;
  3915. height:30px;
  3916. display:flex;
  3917. font-size:14px;
  3918. }
  3919. #u68725 .text {
  3920. position:absolute;
  3921. align-self:center;
  3922. padding:2px 2px 2px 2px;
  3923. box-sizing:border-box;
  3924. width:100%;
  3925. }
  3926. #u68725_text {
  3927. border-width:0px;
  3928. word-wrap:break-word;
  3929. text-transform:none;
  3930. visibility:hidden;
  3931. }
  3932. #u68726_img {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:0px;
  3936. top:0px;
  3937. width:148px;
  3938. height:30px;
  3939. }
  3940. #u68726 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:975px;
  3944. top:118px;
  3945. width:148px;
  3946. height:30px;
  3947. display:flex;
  3948. font-size:14px;
  3949. }
  3950. #u68726 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 2px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u68726_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. visibility:hidden;
  3962. }
  3963. #u68727_img {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:100px;
  3969. height:30px;
  3970. }
  3971. #u68727 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:1123px;
  3975. top:118px;
  3976. width:100px;
  3977. height:30px;
  3978. display:flex;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:14px;
  3983. }
  3984. #u68727 .text {
  3985. position:absolute;
  3986. align-self:center;
  3987. padding:2px 2px 2px 2px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u68727_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. }
  3996. #u68728_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:113px;
  4002. height:30px;
  4003. }
  4004. #u68728 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:1223px;
  4008. top:118px;
  4009. width:113px;
  4010. height:30px;
  4011. display:flex;
  4012. font-size:14px;
  4013. }
  4014. #u68728 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:2px 2px 2px 2px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u68728_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u68729_img {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:43px;
  4033. height:30px;
  4034. }
  4035. #u68729 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:148px;
  4040. width:43px;
  4041. height:30px;
  4042. display:flex;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:14px;
  4047. }
  4048. #u68729 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 2px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u68729_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. visibility:hidden;
  4060. }
  4061. #u68730_img {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:140px;
  4067. height:30px;
  4068. }
  4069. #u68730 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:43px;
  4073. top:148px;
  4074. width:140px;
  4075. height:30px;
  4076. display:flex;
  4077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:14px;
  4081. }
  4082. #u68730 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 2px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u68730_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. visibility:hidden;
  4094. }
  4095. #u68731_img {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:153px;
  4101. height:30px;
  4102. }
  4103. #u68731 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:183px;
  4107. top:148px;
  4108. width:153px;
  4109. height:30px;
  4110. display:flex;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. font-size:14px;
  4115. }
  4116. #u68731 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 2px 2px 2px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u68731_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. visibility:hidden;
  4128. }
  4129. #u68732_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:74px;
  4135. height:30px;
  4136. }
  4137. #u68732 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:336px;
  4141. top:148px;
  4142. width:74px;
  4143. height:30px;
  4144. display:flex;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:14px;
  4149. }
  4150. #u68732 .text {
  4151. position:absolute;
  4152. align-self:center;
  4153. padding:2px 2px 2px 2px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u68732_text {
  4158. border-width:0px;
  4159. word-wrap:break-word;
  4160. text-transform:none;
  4161. visibility:hidden;
  4162. }
  4163. #u68733_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:80px;
  4169. height:30px;
  4170. }
  4171. #u68733 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:410px;
  4175. top:148px;
  4176. width:80px;
  4177. height:30px;
  4178. display:flex;
  4179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:14px;
  4183. }
  4184. #u68733 .text {
  4185. position:absolute;
  4186. align-self:center;
  4187. padding:2px 2px 2px 2px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u68733_text {
  4192. border-width:0px;
  4193. word-wrap:break-word;
  4194. text-transform:none;
  4195. visibility:hidden;
  4196. }
  4197. #u68734_img {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:102px;
  4203. height:30px;
  4204. }
  4205. #u68734 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:490px;
  4209. top:148px;
  4210. width:102px;
  4211. height:30px;
  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. #u68734 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 2px 2px 2px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u68734_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. visibility:hidden;
  4230. }
  4231. #u68735_img {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:124px;
  4237. height:30px;
  4238. }
  4239. #u68735 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:592px;
  4243. top:148px;
  4244. width:124px;
  4245. height:30px;
  4246. display:flex;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:14px;
  4251. }
  4252. #u68735 .text {
  4253. position:absolute;
  4254. align-self:center;
  4255. padding:2px 2px 2px 2px;
  4256. box-sizing:border-box;
  4257. width:100%;
  4258. }
  4259. #u68735_text {
  4260. border-width:0px;
  4261. word-wrap:break-word;
  4262. text-transform:none;
  4263. visibility:hidden;
  4264. }
  4265. #u68736_img {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:111px;
  4271. height:30px;
  4272. }
  4273. #u68736 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:716px;
  4277. top:148px;
  4278. width:111px;
  4279. height:30px;
  4280. display:flex;
  4281. font-size:14px;
  4282. }
  4283. #u68736 .text {
  4284. position:absolute;
  4285. align-self:center;
  4286. padding:2px 2px 2px 2px;
  4287. box-sizing:border-box;
  4288. width:100%;
  4289. }
  4290. #u68736_text {
  4291. border-width:0px;
  4292. word-wrap:break-word;
  4293. text-transform:none;
  4294. visibility:hidden;
  4295. }
  4296. #u68737_img {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:148px;
  4302. height:30px;
  4303. }
  4304. #u68737 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:827px;
  4308. top:148px;
  4309. width:148px;
  4310. height:30px;
  4311. display:flex;
  4312. font-size:14px;
  4313. }
  4314. #u68737 .text {
  4315. position:absolute;
  4316. align-self:center;
  4317. padding:2px 2px 2px 2px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u68737_text {
  4322. border-width:0px;
  4323. word-wrap:break-word;
  4324. text-transform:none;
  4325. visibility:hidden;
  4326. }
  4327. #u68738_img {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:148px;
  4333. height:30px;
  4334. }
  4335. #u68738 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:975px;
  4339. top:148px;
  4340. width:148px;
  4341. height:30px;
  4342. display:flex;
  4343. font-size:14px;
  4344. }
  4345. #u68738 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 2px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u68738_text {
  4353. border-width:0px;
  4354. word-wrap:break-word;
  4355. text-transform:none;
  4356. visibility:hidden;
  4357. }
  4358. #u68739_img {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:100px;
  4364. height:30px;
  4365. }
  4366. #u68739 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:1123px;
  4370. top:148px;
  4371. width:100px;
  4372. height:30px;
  4373. display:flex;
  4374. font-size:14px;
  4375. }
  4376. #u68739 .text {
  4377. position:absolute;
  4378. align-self:center;
  4379. padding:2px 2px 2px 2px;
  4380. box-sizing:border-box;
  4381. width:100%;
  4382. }
  4383. #u68739_text {
  4384. border-width:0px;
  4385. word-wrap:break-word;
  4386. text-transform:none;
  4387. visibility:hidden;
  4388. }
  4389. #u68740_img {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:113px;
  4395. height:30px;
  4396. }
  4397. #u68740 {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:1223px;
  4401. top:148px;
  4402. width:113px;
  4403. height:30px;
  4404. display:flex;
  4405. font-size:14px;
  4406. }
  4407. #u68740 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 2px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u68740_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. visibility:hidden;
  4419. }
  4420. #u68741_img {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:43px;
  4426. height:30px;
  4427. }
  4428. #u68741 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:178px;
  4433. width:43px;
  4434. height:30px;
  4435. display:flex;
  4436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:14px;
  4440. }
  4441. #u68741 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 2px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u68741_text {
  4449. border-width:0px;
  4450. word-wrap:break-word;
  4451. text-transform:none;
  4452. visibility:hidden;
  4453. }
  4454. #u68742_img {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:140px;
  4460. height:30px;
  4461. }
  4462. #u68742 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:43px;
  4466. top:178px;
  4467. width:140px;
  4468. height:30px;
  4469. display:flex;
  4470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4471. font-weight:400;
  4472. font-style:normal;
  4473. font-size:14px;
  4474. }
  4475. #u68742 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 2px 2px 2px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u68742_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. visibility:hidden;
  4487. }
  4488. #u68743_img {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:153px;
  4494. height:30px;
  4495. }
  4496. #u68743 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:183px;
  4500. top:178px;
  4501. width:153px;
  4502. height:30px;
  4503. display:flex;
  4504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:14px;
  4508. }
  4509. #u68743 .text {
  4510. position:absolute;
  4511. align-self:center;
  4512. padding:2px 2px 2px 2px;
  4513. box-sizing:border-box;
  4514. width:100%;
  4515. }
  4516. #u68743_text {
  4517. border-width:0px;
  4518. word-wrap:break-word;
  4519. text-transform:none;
  4520. visibility:hidden;
  4521. }
  4522. #u68744_img {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:0px;
  4526. top:0px;
  4527. width:74px;
  4528. height:30px;
  4529. }
  4530. #u68744 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:336px;
  4534. top:178px;
  4535. width:74px;
  4536. height:30px;
  4537. display:flex;
  4538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:14px;
  4542. }
  4543. #u68744 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 2px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u68744_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u68745_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:80px;
  4562. height:30px;
  4563. }
  4564. #u68745 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:410px;
  4568. top:178px;
  4569. width:80px;
  4570. height:30px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:14px;
  4576. }
  4577. #u68745 .text {
  4578. position:absolute;
  4579. align-self:center;
  4580. padding:2px 2px 2px 2px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u68745_text {
  4585. border-width:0px;
  4586. word-wrap:break-word;
  4587. text-transform:none;
  4588. visibility:hidden;
  4589. }
  4590. #u68746_img {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:102px;
  4596. height:30px;
  4597. }
  4598. #u68746 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:490px;
  4602. top:178px;
  4603. width:102px;
  4604. height:30px;
  4605. display:flex;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:14px;
  4610. }
  4611. #u68746 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 2px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u68746_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u68747_img {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:124px;
  4630. height:30px;
  4631. }
  4632. #u68747 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:592px;
  4636. top:178px;
  4637. width:124px;
  4638. height:30px;
  4639. display:flex;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:14px;
  4644. }
  4645. #u68747 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 2px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u68747_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u68748_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:111px;
  4664. height:30px;
  4665. }
  4666. #u68748 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:716px;
  4670. top:178px;
  4671. width:111px;
  4672. height:30px;
  4673. display:flex;
  4674. font-size:14px;
  4675. }
  4676. #u68748 .text {
  4677. position:absolute;
  4678. align-self:center;
  4679. padding:2px 2px 2px 2px;
  4680. box-sizing:border-box;
  4681. width:100%;
  4682. }
  4683. #u68748_text {
  4684. border-width:0px;
  4685. word-wrap:break-word;
  4686. text-transform:none;
  4687. visibility:hidden;
  4688. }
  4689. #u68749_img {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:148px;
  4695. height:30px;
  4696. }
  4697. #u68749 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:827px;
  4701. top:178px;
  4702. width:148px;
  4703. height:30px;
  4704. display:flex;
  4705. font-size:14px;
  4706. }
  4707. #u68749 .text {
  4708. position:absolute;
  4709. align-self:center;
  4710. padding:2px 2px 2px 2px;
  4711. box-sizing:border-box;
  4712. width:100%;
  4713. }
  4714. #u68749_text {
  4715. border-width:0px;
  4716. word-wrap:break-word;
  4717. text-transform:none;
  4718. visibility:hidden;
  4719. }
  4720. #u68750_img {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:148px;
  4726. height:30px;
  4727. }
  4728. #u68750 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:975px;
  4732. top:178px;
  4733. width:148px;
  4734. height:30px;
  4735. display:flex;
  4736. font-size:14px;
  4737. }
  4738. #u68750 .text {
  4739. position:absolute;
  4740. align-self:center;
  4741. padding:2px 2px 2px 2px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u68750_text {
  4746. border-width:0px;
  4747. word-wrap:break-word;
  4748. text-transform:none;
  4749. visibility:hidden;
  4750. }
  4751. #u68751_img {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:100px;
  4757. height:30px;
  4758. }
  4759. #u68751 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:1123px;
  4763. top:178px;
  4764. width:100px;
  4765. height:30px;
  4766. display:flex;
  4767. font-size:14px;
  4768. }
  4769. #u68751 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:2px 2px 2px 2px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u68751_text {
  4777. border-width:0px;
  4778. word-wrap:break-word;
  4779. text-transform:none;
  4780. visibility:hidden;
  4781. }
  4782. #u68752_img {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:113px;
  4788. height:30px;
  4789. }
  4790. #u68752 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:1223px;
  4794. top:178px;
  4795. width:113px;
  4796. height:30px;
  4797. display:flex;
  4798. font-size:14px;
  4799. }
  4800. #u68752 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 2px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u68752_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. visibility:hidden;
  4812. }
  4813. #u68753_img {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:43px;
  4819. height:30px;
  4820. }
  4821. #u68753 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:208px;
  4826. width:43px;
  4827. height:30px;
  4828. display:flex;
  4829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4830. font-weight:400;
  4831. font-style:normal;
  4832. font-size:14px;
  4833. }
  4834. #u68753 .text {
  4835. position:absolute;
  4836. align-self:center;
  4837. padding:2px 2px 2px 2px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u68753_text {
  4842. border-width:0px;
  4843. word-wrap:break-word;
  4844. text-transform:none;
  4845. visibility:hidden;
  4846. }
  4847. #u68754_img {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:140px;
  4853. height:30px;
  4854. }
  4855. #u68754 {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:43px;
  4859. top:208px;
  4860. width:140px;
  4861. height:30px;
  4862. display:flex;
  4863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4864. font-weight:400;
  4865. font-style:normal;
  4866. font-size:14px;
  4867. }
  4868. #u68754 .text {
  4869. position:absolute;
  4870. align-self:center;
  4871. padding:2px 2px 2px 2px;
  4872. box-sizing:border-box;
  4873. width:100%;
  4874. }
  4875. #u68754_text {
  4876. border-width:0px;
  4877. word-wrap:break-word;
  4878. text-transform:none;
  4879. visibility:hidden;
  4880. }
  4881. #u68755_img {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:0px;
  4885. top:0px;
  4886. width:153px;
  4887. height:30px;
  4888. }
  4889. #u68755 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:183px;
  4893. top:208px;
  4894. width:153px;
  4895. height:30px;
  4896. display:flex;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:14px;
  4901. }
  4902. #u68755 .text {
  4903. position:absolute;
  4904. align-self:center;
  4905. padding:2px 2px 2px 2px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u68755_text {
  4910. border-width:0px;
  4911. word-wrap:break-word;
  4912. text-transform:none;
  4913. visibility:hidden;
  4914. }
  4915. #u68756_img {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:74px;
  4921. height:30px;
  4922. }
  4923. #u68756 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:336px;
  4927. top:208px;
  4928. width:74px;
  4929. height:30px;
  4930. display:flex;
  4931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:14px;
  4935. }
  4936. #u68756 .text {
  4937. position:absolute;
  4938. align-self:center;
  4939. padding:2px 2px 2px 2px;
  4940. box-sizing:border-box;
  4941. width:100%;
  4942. }
  4943. #u68756_text {
  4944. border-width:0px;
  4945. word-wrap:break-word;
  4946. text-transform:none;
  4947. visibility:hidden;
  4948. }
  4949. #u68757_img {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:80px;
  4955. height:30px;
  4956. }
  4957. #u68757 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:410px;
  4961. top:208px;
  4962. width:80px;
  4963. height:30px;
  4964. display:flex;
  4965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4966. font-weight:400;
  4967. font-style:normal;
  4968. font-size:14px;
  4969. }
  4970. #u68757 .text {
  4971. position:absolute;
  4972. align-self:center;
  4973. padding:2px 2px 2px 2px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u68757_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. visibility:hidden;
  4982. }
  4983. #u68758_img {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:102px;
  4989. height:30px;
  4990. }
  4991. #u68758 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:490px;
  4995. top:208px;
  4996. width:102px;
  4997. height:30px;
  4998. display:flex;
  4999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5000. font-weight:400;
  5001. font-style:normal;
  5002. font-size:14px;
  5003. }
  5004. #u68758 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:2px 2px 2px 2px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u68758_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. visibility:hidden;
  5016. }
  5017. #u68759_img {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:124px;
  5023. height:30px;
  5024. }
  5025. #u68759 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:592px;
  5029. top:208px;
  5030. width:124px;
  5031. height:30px;
  5032. display:flex;
  5033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:14px;
  5037. }
  5038. #u68759 .text {
  5039. position:absolute;
  5040. align-self:center;
  5041. padding:2px 2px 2px 2px;
  5042. box-sizing:border-box;
  5043. width:100%;
  5044. }
  5045. #u68759_text {
  5046. border-width:0px;
  5047. word-wrap:break-word;
  5048. text-transform:none;
  5049. visibility:hidden;
  5050. }
  5051. #u68760_img {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:0px;
  5055. top:0px;
  5056. width:111px;
  5057. height:30px;
  5058. }
  5059. #u68760 {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:716px;
  5063. top:208px;
  5064. width:111px;
  5065. height:30px;
  5066. display:flex;
  5067. font-size:14px;
  5068. }
  5069. #u68760 .text {
  5070. position:absolute;
  5071. align-self:center;
  5072. padding:2px 2px 2px 2px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u68760_text {
  5077. border-width:0px;
  5078. word-wrap:break-word;
  5079. text-transform:none;
  5080. visibility:hidden;
  5081. }
  5082. #u68761_img {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:148px;
  5088. height:30px;
  5089. }
  5090. #u68761 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:827px;
  5094. top:208px;
  5095. width:148px;
  5096. height:30px;
  5097. display:flex;
  5098. font-size:14px;
  5099. }
  5100. #u68761 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:2px 2px 2px 2px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u68761_text {
  5108. border-width:0px;
  5109. word-wrap:break-word;
  5110. text-transform:none;
  5111. visibility:hidden;
  5112. }
  5113. #u68762_img {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:148px;
  5119. height:30px;
  5120. }
  5121. #u68762 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:975px;
  5125. top:208px;
  5126. width:148px;
  5127. height:30px;
  5128. display:flex;
  5129. font-size:14px;
  5130. }
  5131. #u68762 .text {
  5132. position:absolute;
  5133. align-self:center;
  5134. padding:2px 2px 2px 2px;
  5135. box-sizing:border-box;
  5136. width:100%;
  5137. }
  5138. #u68762_text {
  5139. border-width:0px;
  5140. word-wrap:break-word;
  5141. text-transform:none;
  5142. visibility:hidden;
  5143. }
  5144. #u68763_img {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:100px;
  5150. height:30px;
  5151. }
  5152. #u68763 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:1123px;
  5156. top:208px;
  5157. width:100px;
  5158. height:30px;
  5159. display:flex;
  5160. font-size:14px;
  5161. }
  5162. #u68763 .text {
  5163. position:absolute;
  5164. align-self:center;
  5165. padding:2px 2px 2px 2px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u68763_text {
  5170. border-width:0px;
  5171. word-wrap:break-word;
  5172. text-transform:none;
  5173. visibility:hidden;
  5174. }
  5175. #u68764_img {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:113px;
  5181. height:30px;
  5182. }
  5183. #u68764 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:1223px;
  5187. top:208px;
  5188. width:113px;
  5189. height:30px;
  5190. display:flex;
  5191. font-size:14px;
  5192. }
  5193. #u68764 .text {
  5194. position:absolute;
  5195. align-self:center;
  5196. padding:2px 2px 2px 2px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u68764_text {
  5201. border-width:0px;
  5202. word-wrap:break-word;
  5203. text-transform:none;
  5204. visibility:hidden;
  5205. }
  5206. #u68765 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:0px;
  5212. height:0px;
  5213. }
  5214. #u68766_div {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:160px;
  5220. height:30px;
  5221. background:inherit;
  5222. background-color:rgba(255, 255, 255, 1);
  5223. box-sizing:border-box;
  5224. border-width:1px;
  5225. border-style:solid;
  5226. border-color:rgba(201, 201, 201, 1);
  5227. border-radius:4px;
  5228. -moz-box-shadow:none;
  5229. -webkit-box-shadow:none;
  5230. box-shadow:none;
  5231. font-family:'Microsoft YaHei', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:14px;
  5235. color:#CCCCCC;
  5236. text-align:left;
  5237. }
  5238. #u68766 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:696px;
  5242. top:169px;
  5243. width:160px;
  5244. height:30px;
  5245. display:flex;
  5246. font-family:'Microsoft YaHei', sans-serif;
  5247. font-weight:400;
  5248. font-style:normal;
  5249. font-size:14px;
  5250. color:#CCCCCC;
  5251. text-align:left;
  5252. }
  5253. #u68766 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:2px 8px 2px 8px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u68766_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. visibility:hidden;
  5265. }
  5266. #u68767_input {
  5267. position:absolute;
  5268. left:0px;
  5269. top:0px;
  5270. width:150px;
  5271. height:28px;
  5272. padding:2px 2px 2px 2px;
  5273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:14px;
  5277. letter-spacing:normal;
  5278. color:#000000;
  5279. vertical-align:none;
  5280. text-align:left;
  5281. text-transform:none;
  5282. background-color:transparent;
  5283. border-color:transparent;
  5284. }
  5285. #u68767_input.disabled {
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:150px;
  5290. height:28px;
  5291. padding:2px 2px 2px 2px;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:14px;
  5296. letter-spacing:normal;
  5297. color:#000000;
  5298. vertical-align:none;
  5299. text-align:left;
  5300. text-transform:none;
  5301. background-color:transparent;
  5302. border-color:transparent;
  5303. }
  5304. #u68767_div {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:0px;
  5309. width:150px;
  5310. height:28px;
  5311. background:inherit;
  5312. background-color:rgba(255, 255, 255, 1);
  5313. border:none;
  5314. border-radius:0px;
  5315. -moz-box-shadow:none;
  5316. -webkit-box-shadow:none;
  5317. box-shadow:none;
  5318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:14px;
  5322. }
  5323. #u68767 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:702px;
  5327. top:170px;
  5328. width:150px;
  5329. height:28px;
  5330. display:flex;
  5331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. font-size:14px;
  5335. }
  5336. #u68767 .text {
  5337. position:absolute;
  5338. align-self:center;
  5339. padding:2px 2px 2px 2px;
  5340. box-sizing:border-box;
  5341. width:100%;
  5342. }
  5343. #u68767_div.disabled {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:150px;
  5349. height:28px;
  5350. background:inherit;
  5351. background-color:rgba(240, 240, 240, 1);
  5352. border:none;
  5353. border-radius:0px;
  5354. -moz-box-shadow:none;
  5355. -webkit-box-shadow:none;
  5356. box-shadow:none;
  5357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5358. font-weight:400;
  5359. font-style:normal;
  5360. font-size:14px;
  5361. }
  5362. #u68767.disabled {
  5363. }
  5364. #u68768 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:0px;
  5370. height:0px;
  5371. }
  5372. #u68769_div {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:160px;
  5378. height:30px;
  5379. background:inherit;
  5380. background-color:rgba(255, 255, 255, 1);
  5381. box-sizing:border-box;
  5382. border-width:1px;
  5383. border-style:solid;
  5384. border-color:rgba(201, 201, 201, 1);
  5385. border-radius:4px;
  5386. -moz-box-shadow:none;
  5387. -webkit-box-shadow:none;
  5388. box-shadow:none;
  5389. font-family:'Microsoft YaHei', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:14px;
  5393. color:#CCCCCC;
  5394. text-align:left;
  5395. }
  5396. #u68769 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:526px;
  5400. top:169px;
  5401. width:160px;
  5402. height:30px;
  5403. display:flex;
  5404. font-family:'Microsoft YaHei', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:14px;
  5408. color:#CCCCCC;
  5409. text-align:left;
  5410. }
  5411. #u68769 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:2px 8px 2px 8px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u68769_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. visibility:hidden;
  5423. }
  5424. #u68770_input {
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:150px;
  5429. height:28px;
  5430. padding:2px 2px 2px 2px;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:14px;
  5435. letter-spacing:normal;
  5436. color:#000000;
  5437. vertical-align:none;
  5438. text-align:left;
  5439. text-transform:none;
  5440. background-color:transparent;
  5441. border-color:transparent;
  5442. }
  5443. #u68770_input.disabled {
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:150px;
  5448. height:28px;
  5449. padding:2px 2px 2px 2px;
  5450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5451. font-weight:400;
  5452. font-style:normal;
  5453. font-size:14px;
  5454. letter-spacing:normal;
  5455. color:#000000;
  5456. vertical-align:none;
  5457. text-align:left;
  5458. text-transform:none;
  5459. background-color:transparent;
  5460. border-color:transparent;
  5461. }
  5462. #u68770_div {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:150px;
  5468. height:28px;
  5469. background:inherit;
  5470. background-color:rgba(255, 255, 255, 1);
  5471. border:none;
  5472. border-radius:0px;
  5473. -moz-box-shadow:none;
  5474. -webkit-box-shadow:none;
  5475. box-shadow:none;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:14px;
  5480. }
  5481. #u68770 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:532px;
  5485. top:170px;
  5486. width:150px;
  5487. height:28px;
  5488. display:flex;
  5489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:14px;
  5493. }
  5494. #u68770 .text {
  5495. position:absolute;
  5496. align-self:center;
  5497. padding:2px 2px 2px 2px;
  5498. box-sizing:border-box;
  5499. width:100%;
  5500. }
  5501. #u68770_div.disabled {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:150px;
  5507. height:28px;
  5508. background:inherit;
  5509. background-color:rgba(240, 240, 240, 1);
  5510. border:none;
  5511. border-radius:0px;
  5512. -moz-box-shadow:none;
  5513. -webkit-box-shadow:none;
  5514. box-shadow:none;
  5515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5516. font-weight:400;
  5517. font-style:normal;
  5518. font-size:14px;
  5519. }
  5520. #u68770.disabled {
  5521. }
  5522. #u68771 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:0px;
  5528. height:0px;
  5529. }
  5530. #u68772_div {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:60px;
  5536. height:30px;
  5537. background:inherit;
  5538. background-color:rgba(24, 144, 255, 1);
  5539. border:none;
  5540. border-radius:4px;
  5541. -moz-box-shadow:none;
  5542. -webkit-box-shadow:none;
  5543. box-shadow:none;
  5544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:14px;
  5548. color:#FFFFFF;
  5549. }
  5550. #u68772 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:1376px;
  5554. top:169px;
  5555. width:60px;
  5556. height:30px;
  5557. display:flex;
  5558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5559. font-weight:400;
  5560. font-style:normal;
  5561. font-size:14px;
  5562. color:#FFFFFF;
  5563. }
  5564. #u68772 .text {
  5565. position:absolute;
  5566. align-self:center;
  5567. padding:2px 2px 2px 2px;
  5568. box-sizing:border-box;
  5569. width:100%;
  5570. }
  5571. #u68772_text {
  5572. border-width:0px;
  5573. word-wrap:break-word;
  5574. text-transform:none;
  5575. }
  5576. #u68773_div {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:60px;
  5582. height:30px;
  5583. background:inherit;
  5584. background-color:rgba(255, 255, 255, 1);
  5585. box-sizing:border-box;
  5586. border-width:1px;
  5587. border-style:solid;
  5588. border-color:rgba(170, 170, 170, 1);
  5589. border-radius:4px;
  5590. -moz-box-shadow:none;
  5591. -webkit-box-shadow:none;
  5592. box-shadow:none;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. font-size:14px;
  5597. }
  5598. #u68773 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:1446px;
  5602. top:169px;
  5603. width:60px;
  5604. height:30px;
  5605. display:flex;
  5606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:14px;
  5610. }
  5611. #u68773 .text {
  5612. position:absolute;
  5613. align-self:center;
  5614. padding:2px 2px 2px 2px;
  5615. box-sizing:border-box;
  5616. width:100%;
  5617. }
  5618. #u68773_text {
  5619. border-width:0px;
  5620. word-wrap:break-word;
  5621. text-transform:none;
  5622. }
  5623. #u68774 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:0px;
  5629. height:0px;
  5630. }
  5631. #u68775_div {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:160px;
  5637. height:30px;
  5638. background:inherit;
  5639. background-color:rgba(255, 255, 255, 1);
  5640. box-sizing:border-box;
  5641. border-width:1px;
  5642. border-style:solid;
  5643. border-color:rgba(201, 201, 201, 1);
  5644. border-radius:4px;
  5645. -moz-box-shadow:none;
  5646. -webkit-box-shadow:none;
  5647. box-shadow:none;
  5648. font-family:'Microsoft YaHei', sans-serif;
  5649. font-weight:400;
  5650. font-style:normal;
  5651. font-size:14px;
  5652. color:#CCCCCC;
  5653. text-align:left;
  5654. }
  5655. #u68775 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:866px;
  5659. top:169px;
  5660. width:160px;
  5661. height:30px;
  5662. display:flex;
  5663. font-family:'Microsoft YaHei', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:14px;
  5667. color:#CCCCCC;
  5668. text-align:left;
  5669. }
  5670. #u68775 .text {
  5671. position:absolute;
  5672. align-self:center;
  5673. padding:2px 8px 2px 8px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u68775_text {
  5678. border-width:0px;
  5679. word-wrap:break-word;
  5680. text-transform:none;
  5681. visibility:hidden;
  5682. }
  5683. #u68776_input {
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:150px;
  5688. height:28px;
  5689. padding:2px 2px 2px 2px;
  5690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:14px;
  5694. letter-spacing:normal;
  5695. color:#000000;
  5696. vertical-align:none;
  5697. text-align:left;
  5698. text-transform:none;
  5699. background-color:transparent;
  5700. border-color:transparent;
  5701. }
  5702. #u68776_input.disabled {
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:150px;
  5707. height:28px;
  5708. padding:2px 2px 2px 2px;
  5709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:14px;
  5713. letter-spacing:normal;
  5714. color:#000000;
  5715. vertical-align:none;
  5716. text-align:left;
  5717. text-transform:none;
  5718. background-color:transparent;
  5719. border-color:transparent;
  5720. }
  5721. #u68776_div {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:150px;
  5727. height:28px;
  5728. background:inherit;
  5729. background-color:rgba(255, 255, 255, 1);
  5730. border:none;
  5731. border-radius:0px;
  5732. -moz-box-shadow:none;
  5733. -webkit-box-shadow:none;
  5734. box-shadow:none;
  5735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5736. font-weight:400;
  5737. font-style:normal;
  5738. font-size:14px;
  5739. }
  5740. #u68776 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:872px;
  5744. top:170px;
  5745. width:150px;
  5746. height:28px;
  5747. display:flex;
  5748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5749. font-weight:400;
  5750. font-style:normal;
  5751. font-size:14px;
  5752. }
  5753. #u68776 .text {
  5754. position:absolute;
  5755. align-self:center;
  5756. padding:2px 2px 2px 2px;
  5757. box-sizing:border-box;
  5758. width:100%;
  5759. }
  5760. #u68776_div.disabled {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:150px;
  5766. height:28px;
  5767. background:inherit;
  5768. background-color:rgba(240, 240, 240, 1);
  5769. border:none;
  5770. border-radius:0px;
  5771. -moz-box-shadow:none;
  5772. -webkit-box-shadow:none;
  5773. box-shadow:none;
  5774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:14px;
  5778. }
  5779. #u68776.disabled {
  5780. }
  5781. #u68777 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:0px;
  5787. height:0px;
  5788. }
  5789. #u68778_div {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:160px;
  5795. height:30px;
  5796. background:inherit;
  5797. background-color:rgba(255, 255, 255, 1);
  5798. box-sizing:border-box;
  5799. border-width:1px;
  5800. border-style:solid;
  5801. border-color:rgba(215, 215, 215, 1);
  5802. border-radius:4px;
  5803. -moz-box-shadow:none;
  5804. -webkit-box-shadow:none;
  5805. box-shadow:none;
  5806. font-size:14px;
  5807. }
  5808. #u68778 {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:1036px;
  5812. top:169px;
  5813. width:160px;
  5814. height:30px;
  5815. display:flex;
  5816. font-size:14px;
  5817. }
  5818. #u68778 .text {
  5819. position:absolute;
  5820. align-self:center;
  5821. padding:2px 2px 2px 2px;
  5822. box-sizing:border-box;
  5823. width:100%;
  5824. }
  5825. #u68778_text {
  5826. border-width:0px;
  5827. word-wrap:break-word;
  5828. text-transform:none;
  5829. visibility:hidden;
  5830. }
  5831. #u68779_input {
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:153px;
  5836. height:23px;
  5837. padding:2px 2px 2px 2px;
  5838. font-family:'ArialMT', 'Arial', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:14px;
  5842. letter-spacing:normal;
  5843. color:#AAAAAA;
  5844. vertical-align:none;
  5845. text-align:left;
  5846. text-transform:none;
  5847. background-color:transparent;
  5848. border-color:transparent;
  5849. }
  5850. #u68779_input.disabled {
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:153px;
  5855. height:23px;
  5856. padding:2px 2px 2px 2px;
  5857. font-family:'ArialMT', 'Arial', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:14px;
  5861. letter-spacing:normal;
  5862. color:#AAAAAA;
  5863. vertical-align:none;
  5864. text-align:left;
  5865. text-transform:none;
  5866. background-color:transparent;
  5867. border-color:transparent;
  5868. }
  5869. #u68779_div {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:153px;
  5875. height:23px;
  5876. background:inherit;
  5877. background-color:rgba(255, 255, 255, 1);
  5878. border:none;
  5879. border-radius:0px;
  5880. -moz-box-shadow:none;
  5881. -webkit-box-shadow:none;
  5882. box-shadow:none;
  5883. font-size:14px;
  5884. color:#AAAAAA;
  5885. }
  5886. #u68779 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:1041px;
  5890. top:171px;
  5891. width:153px;
  5892. height:23px;
  5893. display:flex;
  5894. font-size:14px;
  5895. color:#AAAAAA;
  5896. }
  5897. #u68779 .text {
  5898. position:absolute;
  5899. align-self:flex-start;
  5900. padding:2px 2px 2px 2px;
  5901. box-sizing:border-box;
  5902. width:100%;
  5903. }
  5904. #u68779_div.disabled {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:153px;
  5910. height:23px;
  5911. background:inherit;
  5912. background-color:rgba(240, 240, 240, 1);
  5913. border:none;
  5914. border-radius:0px;
  5915. -moz-box-shadow:none;
  5916. -webkit-box-shadow:none;
  5917. box-shadow:none;
  5918. font-size:14px;
  5919. color:#AAAAAA;
  5920. }
  5921. #u68779.disabled {
  5922. }
  5923. .u68779_input_option {
  5924. font-size:14px;
  5925. }
  5926. #u68780 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:0px;
  5932. height:0px;
  5933. }
  5934. #u68781_div {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:160px;
  5940. height:30px;
  5941. background:inherit;
  5942. background-color:rgba(255, 255, 255, 1);
  5943. box-sizing:border-box;
  5944. border-width:1px;
  5945. border-style:solid;
  5946. border-color:rgba(215, 215, 215, 1);
  5947. border-radius:4px;
  5948. -moz-box-shadow:none;
  5949. -webkit-box-shadow:none;
  5950. box-shadow:none;
  5951. font-size:14px;
  5952. }
  5953. #u68781 {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:1206px;
  5957. top:169px;
  5958. width:160px;
  5959. height:30px;
  5960. display:flex;
  5961. font-size:14px;
  5962. }
  5963. #u68781 .text {
  5964. position:absolute;
  5965. align-self:center;
  5966. padding:2px 2px 2px 2px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u68781_text {
  5971. border-width:0px;
  5972. word-wrap:break-word;
  5973. text-transform:none;
  5974. visibility:hidden;
  5975. }
  5976. #u68782_input {
  5977. position:absolute;
  5978. left:0px;
  5979. top:0px;
  5980. width:153px;
  5981. height:23px;
  5982. padding:2px 2px 2px 2px;
  5983. font-family:'ArialMT', 'Arial', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:14px;
  5987. letter-spacing:normal;
  5988. color:#AAAAAA;
  5989. vertical-align:none;
  5990. text-align:left;
  5991. text-transform:none;
  5992. background-color:transparent;
  5993. border-color:transparent;
  5994. }
  5995. #u68782_input.disabled {
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:153px;
  6000. height:23px;
  6001. padding:2px 2px 2px 2px;
  6002. font-family:'ArialMT', 'Arial', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:14px;
  6006. letter-spacing:normal;
  6007. color:#AAAAAA;
  6008. vertical-align:none;
  6009. text-align:left;
  6010. text-transform:none;
  6011. background-color:transparent;
  6012. border-color:transparent;
  6013. }
  6014. #u68782_div {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:153px;
  6020. height:23px;
  6021. background:inherit;
  6022. background-color:rgba(255, 255, 255, 1);
  6023. border:none;
  6024. border-radius:0px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. font-size:14px;
  6029. color:#AAAAAA;
  6030. }
  6031. #u68782 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:1211px;
  6035. top:171px;
  6036. width:153px;
  6037. height:23px;
  6038. display:flex;
  6039. font-size:14px;
  6040. color:#AAAAAA;
  6041. }
  6042. #u68782 .text {
  6043. position:absolute;
  6044. align-self:flex-start;
  6045. padding:2px 2px 2px 2px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u68782_div.disabled {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:153px;
  6055. height:23px;
  6056. background:inherit;
  6057. background-color:rgba(240, 240, 240, 1);
  6058. border:none;
  6059. border-radius:0px;
  6060. -moz-box-shadow:none;
  6061. -webkit-box-shadow:none;
  6062. box-shadow:none;
  6063. font-size:14px;
  6064. color:#AAAAAA;
  6065. }
  6066. #u68782.disabled {
  6067. }
  6068. .u68782_input_option {
  6069. font-size:14px;
  6070. }
  6071. #u68783 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:0px;
  6077. height:0px;
  6078. }
  6079. #u68784 {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:0px;
  6083. top:0px;
  6084. width:0px;
  6085. height:0px;
  6086. }
  6087. #u68785_div {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:380px;
  6093. height:180px;
  6094. background:inherit;
  6095. background-color:rgba(255, 255, 255, 1);
  6096. border:none;
  6097. border-radius:4px;
  6098. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6099. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6100. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6101. font-family:'Microsoft YaHei', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. }
  6105. #u68785 {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:413px;
  6109. top:488px;
  6110. width:380px;
  6111. height:180px;
  6112. display:flex;
  6113. font-family:'Microsoft YaHei', sans-serif;
  6114. font-weight:400;
  6115. font-style:normal;
  6116. }
  6117. #u68785 .text {
  6118. position:absolute;
  6119. align-self:center;
  6120. padding:2px 2px 2px 2px;
  6121. box-sizing:border-box;
  6122. width:100%;
  6123. }
  6124. #u68785_text {
  6125. border-width:0px;
  6126. word-wrap:break-word;
  6127. text-transform:none;
  6128. visibility:hidden;
  6129. }
  6130. #u68786_div {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:299px;
  6136. height:44px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 0);
  6139. border:none;
  6140. border-radius:0px;
  6141. -moz-box-shadow:none;
  6142. -webkit-box-shadow:none;
  6143. box-shadow:none;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:14px;
  6148. color:#666666;
  6149. line-height:22px;
  6150. }
  6151. #u68786 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:473px;
  6155. top:543px;
  6156. width:299px;
  6157. height:44px;
  6158. display:flex;
  6159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:14px;
  6163. color:#666666;
  6164. line-height:22px;
  6165. }
  6166. #u68786 .text {
  6167. position:absolute;
  6168. align-self:flex-start;
  6169. padding:0px 0px 0px 0px;
  6170. box-sizing:border-box;
  6171. width:100%;
  6172. }
  6173. #u68786_text {
  6174. border-width:0px;
  6175. word-wrap:break-word;
  6176. text-transform:none;
  6177. }
  6178. #u68787_div {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:235px;
  6184. height:21px;
  6185. background:inherit;
  6186. background-color:rgba(255, 255, 255, 0);
  6187. border:none;
  6188. border-radius:0px;
  6189. -moz-box-shadow:none;
  6190. -webkit-box-shadow:none;
  6191. box-shadow:none;
  6192. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6193. font-weight:650;
  6194. font-style:normal;
  6195. font-size:18px;
  6196. color:#000000;
  6197. line-height:22px;
  6198. }
  6199. #u68787 {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:473px;
  6203. top:513px;
  6204. width:235px;
  6205. height:21px;
  6206. display:flex;
  6207. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6208. font-weight:650;
  6209. font-style:normal;
  6210. font-size:18px;
  6211. color:#000000;
  6212. line-height:22px;
  6213. }
  6214. #u68787 .text {
  6215. position:absolute;
  6216. align-self:flex-start;
  6217. padding:0px 0px 0px 0px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u68787_text {
  6222. border-width:0px;
  6223. white-space:nowrap;
  6224. text-transform:none;
  6225. }
  6226. #u68788_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:61px;
  6232. height:32px;
  6233. background:inherit;
  6234. background-color:rgba(24, 144, 255, 1);
  6235. border:none;
  6236. border-radius:4px;
  6237. -moz-box-shadow:none;
  6238. -webkit-box-shadow:none;
  6239. box-shadow:none;
  6240. font-family:'Microsoft YaHei', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:14px;
  6244. color:#FFFFFF;
  6245. }
  6246. #u68788 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:715px;
  6250. top:624px;
  6251. width:61px;
  6252. height:32px;
  6253. display:flex;
  6254. font-family:'Microsoft YaHei', sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:14px;
  6258. color:#FFFFFF;
  6259. }
  6260. #u68788 .text {
  6261. position:absolute;
  6262. align-self:center;
  6263. padding:2px 16px 2px 16px;
  6264. box-sizing:border-box;
  6265. width:100%;
  6266. }
  6267. #u68788_text {
  6268. border-width:0px;
  6269. white-space:nowrap;
  6270. text-transform:none;
  6271. }
  6272. #u68789_div {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:66px;
  6278. height:32px;
  6279. background:inherit;
  6280. background-color:rgba(255, 255, 255, 1);
  6281. box-sizing:border-box;
  6282. border-width:1px;
  6283. border-style:solid;
  6284. border-color:rgba(217, 217, 217, 1);
  6285. border-radius:4px;
  6286. -moz-box-shadow:none;
  6287. -webkit-box-shadow:none;
  6288. box-shadow:none;
  6289. font-family:'Microsoft YaHei', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:14px;
  6293. color:rgba(0, 0, 0, 0.647058823529412);
  6294. line-height:21px;
  6295. }
  6296. #u68789 {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:633px;
  6300. top:624px;
  6301. width:66px;
  6302. height:32px;
  6303. display:flex;
  6304. font-family:'Microsoft YaHei', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:14px;
  6308. color:rgba(0, 0, 0, 0.647058823529412);
  6309. line-height:21px;
  6310. }
  6311. #u68789 .text {
  6312. position:absolute;
  6313. align-self:center;
  6314. padding:2px 16px 2px 16px;
  6315. box-sizing:border-box;
  6316. width:100%;
  6317. }
  6318. #u68789_text {
  6319. border-width:0px;
  6320. white-space:nowrap;
  6321. text-transform:none;
  6322. }
  6323. #u68790_img {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:20px;
  6329. height:20px;
  6330. }
  6331. #u68790 {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:442px;
  6335. top:513px;
  6336. width:20px;
  6337. height:20px;
  6338. display:flex;
  6339. }
  6340. #u68790 .text {
  6341. position:absolute;
  6342. align-self:center;
  6343. padding:2px 2px 2px 2px;
  6344. box-sizing:border-box;
  6345. width:100%;
  6346. }
  6347. #u68790_text {
  6348. border-width:0px;
  6349. word-wrap:break-word;
  6350. text-transform:none;
  6351. visibility:hidden;
  6352. }
  6353. #u68791 {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:0px;
  6359. height:0px;
  6360. }
  6361. #u68792 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:0px;
  6367. height:0px;
  6368. }
  6369. #u68793_div {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:380px;
  6375. height:180px;
  6376. background:inherit;
  6377. background-color:rgba(255, 255, 255, 1);
  6378. border:none;
  6379. border-radius:4px;
  6380. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6381. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6382. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6383. font-family:'Microsoft YaHei', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. }
  6387. #u68793 {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:409px;
  6391. top:693px;
  6392. width:380px;
  6393. height:180px;
  6394. display:flex;
  6395. font-family:'Microsoft YaHei', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. }
  6399. #u68793 .text {
  6400. position:absolute;
  6401. align-self:center;
  6402. padding:2px 2px 2px 2px;
  6403. box-sizing:border-box;
  6404. width:100%;
  6405. }
  6406. #u68793_text {
  6407. border-width:0px;
  6408. word-wrap:break-word;
  6409. text-transform:none;
  6410. visibility:hidden;
  6411. }
  6412. #u68794_div {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:299px;
  6418. height:44px;
  6419. background:inherit;
  6420. background-color:rgba(255, 255, 255, 0);
  6421. border:none;
  6422. border-radius:0px;
  6423. -moz-box-shadow:none;
  6424. -webkit-box-shadow:none;
  6425. box-shadow:none;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:14px;
  6430. color:#666666;
  6431. line-height:22px;
  6432. }
  6433. #u68794 {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:469px;
  6437. top:748px;
  6438. width:299px;
  6439. height:44px;
  6440. display:flex;
  6441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6442. font-weight:400;
  6443. font-style:normal;
  6444. font-size:14px;
  6445. color:#666666;
  6446. line-height:22px;
  6447. }
  6448. #u68794 .text {
  6449. position:absolute;
  6450. align-self:flex-start;
  6451. padding:0px 0px 0px 0px;
  6452. box-sizing:border-box;
  6453. width:100%;
  6454. }
  6455. #u68794_text {
  6456. border-width:0px;
  6457. word-wrap:break-word;
  6458. text-transform:none;
  6459. }
  6460. #u68795_div {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:235px;
  6466. height:21px;
  6467. background:inherit;
  6468. background-color:rgba(255, 255, 255, 0);
  6469. border:none;
  6470. border-radius:0px;
  6471. -moz-box-shadow:none;
  6472. -webkit-box-shadow:none;
  6473. box-shadow:none;
  6474. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6475. font-weight:650;
  6476. font-style:normal;
  6477. font-size:18px;
  6478. color:#000000;
  6479. line-height:22px;
  6480. }
  6481. #u68795 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:469px;
  6485. top:718px;
  6486. width:235px;
  6487. height:21px;
  6488. display:flex;
  6489. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6490. font-weight:650;
  6491. font-style:normal;
  6492. font-size:18px;
  6493. color:#000000;
  6494. line-height:22px;
  6495. }
  6496. #u68795 .text {
  6497. position:absolute;
  6498. align-self:flex-start;
  6499. padding:0px 0px 0px 0px;
  6500. box-sizing:border-box;
  6501. width:100%;
  6502. }
  6503. #u68795_text {
  6504. border-width:0px;
  6505. white-space:nowrap;
  6506. text-transform:none;
  6507. }
  6508. #u68796_div {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:61px;
  6514. height:32px;
  6515. background:inherit;
  6516. background-color:rgba(24, 144, 255, 1);
  6517. border:none;
  6518. border-radius:4px;
  6519. -moz-box-shadow:none;
  6520. -webkit-box-shadow:none;
  6521. box-shadow:none;
  6522. font-family:'Microsoft YaHei', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:14px;
  6526. color:#FFFFFF;
  6527. }
  6528. #u68796 {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:711px;
  6532. top:829px;
  6533. width:61px;
  6534. height:32px;
  6535. display:flex;
  6536. font-family:'Microsoft YaHei', sans-serif;
  6537. font-weight:400;
  6538. font-style:normal;
  6539. font-size:14px;
  6540. color:#FFFFFF;
  6541. }
  6542. #u68796 .text {
  6543. position:absolute;
  6544. align-self:center;
  6545. padding:2px 16px 2px 16px;
  6546. box-sizing:border-box;
  6547. width:100%;
  6548. }
  6549. #u68796_text {
  6550. border-width:0px;
  6551. white-space:nowrap;
  6552. text-transform:none;
  6553. }
  6554. #u68797_div {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:66px;
  6560. height:32px;
  6561. background:inherit;
  6562. background-color:rgba(255, 255, 255, 1);
  6563. box-sizing:border-box;
  6564. border-width:1px;
  6565. border-style:solid;
  6566. border-color:rgba(217, 217, 217, 1);
  6567. border-radius:4px;
  6568. -moz-box-shadow:none;
  6569. -webkit-box-shadow:none;
  6570. box-shadow:none;
  6571. font-family:'Microsoft YaHei', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:14px;
  6575. color:rgba(0, 0, 0, 0.647058823529412);
  6576. line-height:21px;
  6577. }
  6578. #u68797 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:629px;
  6582. top:829px;
  6583. width:66px;
  6584. height:32px;
  6585. display:flex;
  6586. font-family:'Microsoft YaHei', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:14px;
  6590. color:rgba(0, 0, 0, 0.647058823529412);
  6591. line-height:21px;
  6592. }
  6593. #u68797 .text {
  6594. position:absolute;
  6595. align-self:center;
  6596. padding:2px 16px 2px 16px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u68797_text {
  6601. border-width:0px;
  6602. white-space:nowrap;
  6603. text-transform:none;
  6604. }
  6605. #u68798_img {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:20px;
  6611. height:20px;
  6612. }
  6613. #u68798 {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:438px;
  6617. top:718px;
  6618. width:20px;
  6619. height:20px;
  6620. display:flex;
  6621. }
  6622. #u68798 .text {
  6623. position:absolute;
  6624. align-self:center;
  6625. padding:2px 2px 2px 2px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u68798_text {
  6630. border-width:0px;
  6631. word-wrap:break-word;
  6632. text-transform:none;
  6633. visibility:hidden;
  6634. }
  6635. #u68799 {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:0px;
  6639. top:0px;
  6640. width:0px;
  6641. height:0px;
  6642. }
  6643. #u68800 {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:0px;
  6649. height:0px;
  6650. }
  6651. #u68801_div {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:380px;
  6657. height:160px;
  6658. background:inherit;
  6659. background-color:rgba(255, 255, 255, 1);
  6660. border:none;
  6661. border-radius:4px;
  6662. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6663. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6664. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6665. font-family:'Microsoft YaHei', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. }
  6669. #u68801 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:863px;
  6673. top:488px;
  6674. width:380px;
  6675. height:160px;
  6676. display:flex;
  6677. font-family:'Microsoft YaHei', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. }
  6681. #u68801 .text {
  6682. position:absolute;
  6683. align-self:center;
  6684. padding:2px 2px 2px 2px;
  6685. box-sizing:border-box;
  6686. width:100%;
  6687. }
  6688. #u68801_text {
  6689. border-width:0px;
  6690. word-wrap:break-word;
  6691. text-transform:none;
  6692. visibility:hidden;
  6693. }
  6694. #u68802_div {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:299px;
  6700. height:22px;
  6701. background:inherit;
  6702. background-color:rgba(255, 255, 255, 0);
  6703. border:none;
  6704. border-radius:0px;
  6705. -moz-box-shadow:none;
  6706. -webkit-box-shadow:none;
  6707. box-shadow:none;
  6708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6709. font-weight:400;
  6710. font-style:normal;
  6711. font-size:18px;
  6712. color:#666666;
  6713. line-height:22px;
  6714. }
  6715. #u68802 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:883px;
  6719. top:507px;
  6720. width:299px;
  6721. height:22px;
  6722. display:flex;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:18px;
  6727. color:#666666;
  6728. line-height:22px;
  6729. }
  6730. #u68802 .text {
  6731. position:absolute;
  6732. align-self:flex-start;
  6733. padding:0px 0px 0px 0px;
  6734. box-sizing:border-box;
  6735. width:100%;
  6736. }
  6737. #u68802_text {
  6738. border-width:0px;
  6739. word-wrap:break-word;
  6740. text-transform:none;
  6741. }
  6742. #u68803_div {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:0px;
  6746. top:0px;
  6747. width:61px;
  6748. height:32px;
  6749. background:inherit;
  6750. background-color:rgba(255, 255, 255, 1);
  6751. box-sizing:border-box;
  6752. border-width:1px;
  6753. border-style:solid;
  6754. border-color:rgba(217, 217, 217, 1);
  6755. border-radius:4px;
  6756. -moz-box-shadow:none;
  6757. -webkit-box-shadow:none;
  6758. box-shadow:none;
  6759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6760. font-weight:400;
  6761. font-style:normal;
  6762. font-size:14px;
  6763. color:rgba(0, 0, 0, 0.647058823529412);
  6764. line-height:21px;
  6765. }
  6766. #u68803 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:1162px;
  6770. top:606px;
  6771. width:61px;
  6772. height:32px;
  6773. display:flex;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:14px;
  6778. color:rgba(0, 0, 0, 0.647058823529412);
  6779. line-height:21px;
  6780. }
  6781. #u68803 .text {
  6782. position:absolute;
  6783. align-self:center;
  6784. padding:2px 16px 2px 16px;
  6785. box-sizing:border-box;
  6786. width:100%;
  6787. }
  6788. #u68803_text {
  6789. border-width:0px;
  6790. white-space:nowrap;
  6791. text-transform:none;
  6792. }
  6793. #u68804_div {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:349px;
  6799. height:44px;
  6800. background:inherit;
  6801. background-color:rgba(255, 255, 255, 0);
  6802. border:none;
  6803. border-radius:0px;
  6804. -moz-box-shadow:none;
  6805. -webkit-box-shadow:none;
  6806. box-shadow:none;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:14px;
  6811. color:#666666;
  6812. line-height:22px;
  6813. }
  6814. #u68804 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:883px;
  6818. top:543px;
  6819. width:349px;
  6820. height:44px;
  6821. display:flex;
  6822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6823. font-weight:400;
  6824. font-style:normal;
  6825. font-size:14px;
  6826. color:#666666;
  6827. line-height:22px;
  6828. }
  6829. #u68804 .text {
  6830. position:absolute;
  6831. align-self:flex-start;
  6832. padding:0px 0px 0px 0px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u68804_text {
  6837. border-width:0px;
  6838. word-wrap:break-word;
  6839. text-transform:none;
  6840. }
  6841. #u68805_div {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:1381px;
  6847. height:90px;
  6848. background:inherit;
  6849. background-color:rgba(255, 255, 255, 1);
  6850. box-sizing:border-box;
  6851. border-width:1px;
  6852. border-style:solid;
  6853. border-color:rgba(242, 242, 242, 1);
  6854. border-radius:0px;
  6855. -moz-box-shadow:none;
  6856. -webkit-box-shadow:none;
  6857. box-shadow:none;
  6858. }
  6859. #u68805 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:332px;
  6863. top:50px;
  6864. width:1381px;
  6865. height:90px;
  6866. display:flex;
  6867. }
  6868. #u68805 .text {
  6869. position:absolute;
  6870. align-self:center;
  6871. padding:2px 2px 2px 2px;
  6872. box-sizing:border-box;
  6873. width:100%;
  6874. }
  6875. #u68805_text {
  6876. border-width:0px;
  6877. word-wrap:break-word;
  6878. text-transform:none;
  6879. visibility:hidden;
  6880. }
  6881. #u68806_div {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:73px;
  6887. height:50px;
  6888. background:inherit;
  6889. background-color:rgba(255, 255, 255, 0);
  6890. border:none;
  6891. border-left:0px;
  6892. border-top:0px;
  6893. border-right:0px;
  6894. border-radius:0px;
  6895. border-bottom-right-radius:0px;
  6896. border-bottom-left-radius:0px;
  6897. -moz-box-shadow:none;
  6898. -webkit-box-shadow:none;
  6899. box-shadow:none;
  6900. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6901. font-weight:500;
  6902. font-style:normal;
  6903. font-size:18px;
  6904. line-height:40px;
  6905. }
  6906. #u68806 {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:352px;
  6910. top:50px;
  6911. width:73px;
  6912. height:50px;
  6913. display:flex;
  6914. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6915. font-weight:500;
  6916. font-style:normal;
  6917. font-size:18px;
  6918. line-height:40px;
  6919. }
  6920. #u68806 .text {
  6921. position:absolute;
  6922. align-self:center;
  6923. padding:0px 0px 0px 0px;
  6924. box-sizing:border-box;
  6925. width:100%;
  6926. }
  6927. #u68806_text {
  6928. border-width:0px;
  6929. white-space:nowrap;
  6930. text-transform:none;
  6931. }
  6932. #u68807_img {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:13px;
  6938. height:13px;
  6939. }
  6940. #u68807 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:436px;
  6944. top:69px;
  6945. width:13px;
  6946. height:13px;
  6947. display:flex;
  6948. }
  6949. #u68807 .text {
  6950. position:absolute;
  6951. align-self:center;
  6952. padding:2px 2px 2px 2px;
  6953. box-sizing:border-box;
  6954. width:100%;
  6955. }
  6956. #u68807_text {
  6957. border-width:0px;
  6958. word-wrap:break-word;
  6959. text-transform:none;
  6960. visibility:hidden;
  6961. }
  6962. #u68808_div {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:61px;
  6968. height:50px;
  6969. background:inherit;
  6970. background-color:rgba(0, 191, 191, 0);
  6971. box-sizing:border-box;
  6972. border-width:2px;
  6973. border-style:solid;
  6974. border-color:rgba(41, 143, 255, 1);
  6975. border-left:0px;
  6976. border-top:0px;
  6977. border-right:0px;
  6978. border-radius:0px;
  6979. border-bottom-right-radius:0px;
  6980. border-bottom-left-radius:0px;
  6981. -moz-box-shadow:none;
  6982. -webkit-box-shadow:none;
  6983. box-shadow:none;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:14px;
  6988. color:#1890FF;
  6989. line-height:40px;
  6990. }
  6991. #u68808 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:352px;
  6995. top:90px;
  6996. width:61px;
  6997. height:50px;
  6998. display:flex;
  6999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. font-size:14px;
  7003. color:#1890FF;
  7004. line-height:40px;
  7005. }
  7006. #u68808 .text {
  7007. position:absolute;
  7008. align-self:center;
  7009. padding:0px 0px 0px 0px;
  7010. box-sizing:border-box;
  7011. width:100%;
  7012. }
  7013. #u68808_text {
  7014. border-width:0px;
  7015. white-space:nowrap;
  7016. text-transform:none;
  7017. }
  7018. #u68809_div {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:0px;
  7022. top:0px;
  7023. width:69px;
  7024. height:50px;
  7025. background:inherit;
  7026. background-color:rgba(0, 191, 191, 0);
  7027. border:none;
  7028. border-left:0px;
  7029. border-top:0px;
  7030. border-right:0px;
  7031. border-radius:0px;
  7032. border-bottom-right-radius:0px;
  7033. border-bottom-left-radius:0px;
  7034. -moz-box-shadow:none;
  7035. -webkit-box-shadow:none;
  7036. box-shadow:none;
  7037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7038. font-weight:400;
  7039. font-style:normal;
  7040. font-size:14px;
  7041. line-height:40px;
  7042. }
  7043. #u68809 {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:444px;
  7047. top:90px;
  7048. width:69px;
  7049. height:50px;
  7050. display:flex;
  7051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7052. font-weight:400;
  7053. font-style:normal;
  7054. font-size:14px;
  7055. line-height:40px;
  7056. }
  7057. #u68809 .text {
  7058. position:absolute;
  7059. align-self:center;
  7060. padding:0px 0px 0px 0px;
  7061. box-sizing:border-box;
  7062. width:100%;
  7063. }
  7064. #u68809_text {
  7065. border-width:0px;
  7066. white-space:nowrap;
  7067. text-transform:none;
  7068. }
  7069. #u68810_div {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:0px;
  7073. top:0px;
  7074. width:69px;
  7075. height:50px;
  7076. background:inherit;
  7077. background-color:rgba(255, 255, 255, 0);
  7078. border:none;
  7079. border-left:0px;
  7080. border-top:0px;
  7081. border-right:0px;
  7082. border-radius:0px;
  7083. border-bottom-right-radius:0px;
  7084. border-bottom-left-radius:0px;
  7085. -moz-box-shadow:none;
  7086. -webkit-box-shadow:none;
  7087. box-shadow:none;
  7088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:14px;
  7092. line-height:40px;
  7093. }
  7094. #u68810 {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:545px;
  7098. top:90px;
  7099. width:69px;
  7100. height:50px;
  7101. display:flex;
  7102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7103. font-weight:400;
  7104. font-style:normal;
  7105. font-size:14px;
  7106. line-height:40px;
  7107. }
  7108. #u68810 .text {
  7109. position:absolute;
  7110. align-self:center;
  7111. padding:0px 0px 0px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u68810_text {
  7116. border-width:0px;
  7117. white-space:nowrap;
  7118. text-transform:none;
  7119. }
  7120. #u68811_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:69px;
  7126. height:50px;
  7127. background:inherit;
  7128. background-color:rgba(255, 255, 255, 0);
  7129. border:none;
  7130. border-left:0px;
  7131. border-top:0px;
  7132. border-right:0px;
  7133. border-radius:0px;
  7134. border-bottom-right-radius:0px;
  7135. border-bottom-left-radius:0px;
  7136. -moz-box-shadow:none;
  7137. -webkit-box-shadow:none;
  7138. box-shadow:none;
  7139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7140. font-weight:400;
  7141. font-style:normal;
  7142. font-size:14px;
  7143. line-height:40px;
  7144. }
  7145. #u68811 {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:645px;
  7149. top:90px;
  7150. width:69px;
  7151. height:50px;
  7152. display:flex;
  7153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:14px;
  7157. line-height:40px;
  7158. }
  7159. #u68811 .text {
  7160. position:absolute;
  7161. align-self:center;
  7162. padding:0px 0px 0px 0px;
  7163. box-sizing:border-box;
  7164. width:100%;
  7165. }
  7166. #u68811_text {
  7167. border-width:0px;
  7168. white-space:nowrap;
  7169. text-transform:none;
  7170. }