styles.css 195 KB

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