styles.css 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1830px;
  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. #u79116_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. #u79116 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u79116 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u79116_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u79117_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. #u79117 {
  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. #u79117 .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. #u79117_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u79118_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. #u79118 {
  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. #u79118 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u79118_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u79119 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u79120_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u79120 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u79120 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u79120_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u79121_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. #u79121 {
  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. #u79121 .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. #u79121_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u79122_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. #u79122 {
  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. #u79122 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u79122_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u79123 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u79124_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. #u79124 {
  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. #u79124 .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. #u79124_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u79125_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u79125 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u79125 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u79125_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u79126 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u79127_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. #u79127 {
  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. #u79127 .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. #u79127_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u79128_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u79128 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u79128 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u79128_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u79129 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u79130_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. #u79130 {
  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. #u79130 .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. #u79130_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u79131_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u79131 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u79131 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u79131_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u79132 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u79133_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. #u79133 {
  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. #u79133 .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. #u79133_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u79134_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u79134 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u79134 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u79134_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u79135 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u79136_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. #u79136 {
  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. #u79136 .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. #u79136_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u79137_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u79137 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u79137 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u79137_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u79138 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u79139_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. #u79139 {
  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. #u79139 .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. #u79139_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u79140_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u79140 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u79140 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u79140_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u79141 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u79142_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. #u79142 {
  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. #u79142 .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. #u79142_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u79143_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u79143 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u79143 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u79143_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u79144 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u79145_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. #u79145 {
  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. #u79145 .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. #u79145_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u79146_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u79146 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u79146 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u79146_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u79147 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u79148_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. #u79148 {
  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. #u79148 .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. #u79148_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u79149_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u79149 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u79149 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u79149_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u79150_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. #u79150 {
  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. #u79150 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u79150_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u79151_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u79151 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u79151 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u79151_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u79152_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. #u79152 {
  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. #u79152 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u79152_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u79153_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u79153 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u79153 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u79153_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u79154 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u79155_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. #u79155 {
  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. #u79155 .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. #u79155_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u79156_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u79156 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u79156 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u79156_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u79157 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u79158_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. #u79158 {
  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. #u79158 .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. #u79158_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u79159_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u79159 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u79159 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u79159_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u79160 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u79161_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. #u79161_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. #u79161_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. #u79161 {
  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. #u79161 .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. #u79161_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. #u79161.disabled {
  1428. }
  1429. .u79161_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u79162_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u79162 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u79162 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u79162_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u79163_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. #u79163 {
  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. #u79163 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u79163_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u79164_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u79164 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u79164 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u79164_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u79165_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. #u79165 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1191px;
  1560. display:flex;
  1561. }
  1562. #u79165 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u79165_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u79166_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:1160px;
  1581. height:60px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 1);
  1584. box-sizing:border-box;
  1585. border-width:1px;
  1586. border-style:solid;
  1587. border-color:rgba(215, 215, 215, 1);
  1588. border-radius:0px;
  1589. -moz-box-shadow:none;
  1590. -webkit-box-shadow:none;
  1591. box-shadow:none;
  1592. }
  1593. #u79166 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:670px;
  1597. top:698px;
  1598. width:1160px;
  1599. height:60px;
  1600. display:flex;
  1601. }
  1602. #u79166 .text {
  1603. position:absolute;
  1604. align-self:center;
  1605. padding:2px 2px 2px 2px;
  1606. box-sizing:border-box;
  1607. width:100%;
  1608. }
  1609. #u79166_text {
  1610. border-width:0px;
  1611. word-wrap:break-word;
  1612. text-transform:none;
  1613. visibility:hidden;
  1614. }
  1615. #u79168 {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:0px;
  1621. height:0px;
  1622. }
  1623. #u79169_img {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:0px;
  1627. top:0px;
  1628. width:200px;
  1629. height:1191px;
  1630. }
  1631. #u79169 {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:120px;
  1635. top:50px;
  1636. width:200px;
  1637. height:1191px;
  1638. display:flex;
  1639. }
  1640. #u79169 .text {
  1641. position:absolute;
  1642. align-self:center;
  1643. padding:2px 2px 2px 2px;
  1644. box-sizing:border-box;
  1645. width:100%;
  1646. }
  1647. #u79169_text {
  1648. border-width:0px;
  1649. word-wrap:break-word;
  1650. text-transform:none;
  1651. visibility:hidden;
  1652. }
  1653. #u79170_div {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:200px;
  1659. height:60px;
  1660. background:inherit;
  1661. background-color:rgba(224, 231, 247, 1);
  1662. border:none;
  1663. border-radius:0px;
  1664. -moz-box-shadow:none;
  1665. -webkit-box-shadow:none;
  1666. box-shadow:none;
  1667. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1668. font-weight:500;
  1669. font-style:normal;
  1670. font-size:18px;
  1671. }
  1672. #u79170 {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:120px;
  1676. top:50px;
  1677. width:200px;
  1678. height:60px;
  1679. display:flex;
  1680. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1681. font-weight:500;
  1682. font-style:normal;
  1683. font-size:18px;
  1684. }
  1685. #u79170 .text {
  1686. position:absolute;
  1687. align-self:center;
  1688. padding:0px 0px 0px 20px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u79170_text {
  1693. border-width:0px;
  1694. word-wrap:break-word;
  1695. text-transform:none;
  1696. }
  1697. #u79171 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:120px;
  1701. top:130px;
  1702. width:200px;
  1703. height:1078px;
  1704. }
  1705. #u79171_state0 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:200px;
  1711. height:1078px;
  1712. overflow:auto;
  1713. -webkit-overflow-scrolling:touch;
  1714. -ms-overflow-x:hidden;
  1715. overflow-x:hidden;
  1716. background-image:none;
  1717. border:none;
  1718. border-radius:0px;
  1719. -moz-box-shadow:none;
  1720. -webkit-box-shadow:none;
  1721. box-shadow:none;
  1722. }
  1723. #u79171_state0_content {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:1px;
  1729. height:1px;
  1730. }
  1731. #u79172_div {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:97px;
  1737. height:22px;
  1738. background:inherit;
  1739. background-color:rgba(255, 255, 255, 0);
  1740. border:none;
  1741. border-radius:0px;
  1742. -moz-box-shadow:none;
  1743. -webkit-box-shadow:none;
  1744. box-shadow:none;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:16px;
  1749. }
  1750. #u79172 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:30px;
  1754. top:0px;
  1755. width:97px;
  1756. height:22px;
  1757. display:flex;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:16px;
  1762. }
  1763. #u79172 .text {
  1764. position:absolute;
  1765. align-self:flex-start;
  1766. padding:0px 0px 0px 0px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u79172_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. }
  1775. #u79173_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:65px;
  1781. height:22px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 0);
  1784. border:none;
  1785. border-radius:0px;
  1786. -moz-box-shadow:none;
  1787. -webkit-box-shadow:none;
  1788. box-shadow:none;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:16px;
  1793. }
  1794. #u79173 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:30px;
  1798. top:42px;
  1799. width:65px;
  1800. height:22px;
  1801. display:flex;
  1802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1803. font-weight:400;
  1804. font-style:normal;
  1805. font-size:16px;
  1806. }
  1807. #u79173 .text {
  1808. position:absolute;
  1809. align-self:flex-start;
  1810. padding:0px 0px 0px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u79173_text {
  1815. border-width:0px;
  1816. white-space:nowrap;
  1817. text-transform:none;
  1818. }
  1819. #u79174_div {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:49px;
  1825. height:22px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 0);
  1828. border:none;
  1829. border-radius:0px;
  1830. -moz-box-shadow:none;
  1831. -webkit-box-shadow:none;
  1832. box-shadow:none;
  1833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:16px;
  1837. }
  1838. #u79174 {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:30px;
  1842. top:145px;
  1843. width:49px;
  1844. height:22px;
  1845. display:flex;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:16px;
  1850. }
  1851. #u79174 .text {
  1852. position:absolute;
  1853. align-self:flex-start;
  1854. padding:0px 0px 0px 0px;
  1855. box-sizing:border-box;
  1856. width:100%;
  1857. }
  1858. #u79174_text {
  1859. border-width:0px;
  1860. white-space:nowrap;
  1861. text-transform:none;
  1862. }
  1863. #u79175_div {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:97px;
  1869. height:22px;
  1870. background:inherit;
  1871. background-color:rgba(255, 255, 255, 0);
  1872. border:none;
  1873. border-radius:0px;
  1874. -moz-box-shadow:none;
  1875. -webkit-box-shadow:none;
  1876. box-shadow:none;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:16px;
  1881. }
  1882. #u79175 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:30px;
  1886. top:187px;
  1887. width:97px;
  1888. height:22px;
  1889. display:flex;
  1890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:16px;
  1894. }
  1895. #u79175 .text {
  1896. position:absolute;
  1897. align-self:flex-start;
  1898. padding:0px 0px 0px 0px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u79175_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. }
  1907. #u79176_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:201px;
  1913. height:2px;
  1914. }
  1915. #u79176 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:84px;
  1920. width:200px;
  1921. height:1px;
  1922. display:flex;
  1923. }
  1924. #u79176 .text {
  1925. position:absolute;
  1926. align-self:center;
  1927. padding:2px 2px 2px 2px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u79176_text {
  1932. border-width:0px;
  1933. word-wrap:break-word;
  1934. text-transform:none;
  1935. visibility:hidden;
  1936. }
  1937. #u79177_div {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:49px;
  1943. height:17px;
  1944. background:inherit;
  1945. background-color:rgba(255, 255, 255, 0);
  1946. border:none;
  1947. border-radius:0px;
  1948. -moz-box-shadow:none;
  1949. -webkit-box-shadow:none;
  1950. box-shadow:none;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:12px;
  1955. color:#AAAAAA;
  1956. }
  1957. #u79177 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:30px;
  1961. top:105px;
  1962. width:49px;
  1963. height:17px;
  1964. display:flex;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:12px;
  1969. color:#AAAAAA;
  1970. }
  1971. #u79177 .text {
  1972. position:absolute;
  1973. align-self:flex-start;
  1974. padding:0px 0px 0px 0px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u79177_text {
  1979. border-width:0px;
  1980. white-space:nowrap;
  1981. text-transform:none;
  1982. }
  1983. #u79178_div {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:97px;
  1989. height:22px;
  1990. background:inherit;
  1991. background-color:rgba(255, 255, 255, 0);
  1992. border:none;
  1993. border-radius:0px;
  1994. -moz-box-shadow:none;
  1995. -webkit-box-shadow:none;
  1996. box-shadow:none;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:16px;
  2001. }
  2002. #u79178 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:30px;
  2006. top:229px;
  2007. width:97px;
  2008. height:22px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:16px;
  2014. }
  2015. #u79178 .text {
  2016. position:absolute;
  2017. align-self:flex-start;
  2018. padding:0px 0px 0px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u79178_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u79179_div {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:65px;
  2033. height:22px;
  2034. background:inherit;
  2035. background-color:rgba(255, 255, 255, 0);
  2036. border:none;
  2037. border-radius:0px;
  2038. -moz-box-shadow:none;
  2039. -webkit-box-shadow:none;
  2040. box-shadow:none;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:16px;
  2045. }
  2046. #u79179 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:30px;
  2050. top:271px;
  2051. width:65px;
  2052. height:22px;
  2053. display:flex;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:16px;
  2058. }
  2059. #u79179 .text {
  2060. position:absolute;
  2061. align-self:flex-start;
  2062. padding:0px 0px 0px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u79179_text {
  2067. border-width:0px;
  2068. white-space:nowrap;
  2069. text-transform:none;
  2070. }
  2071. #u79180_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:201px;
  2077. height:2px;
  2078. }
  2079. #u79180 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:313px;
  2084. width:200px;
  2085. height:1px;
  2086. display:flex;
  2087. }
  2088. #u79180 .text {
  2089. position:absolute;
  2090. align-self:center;
  2091. padding:2px 2px 2px 2px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u79180_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. visibility:hidden;
  2100. }
  2101. #u79181_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:65px;
  2107. height:22px;
  2108. background:inherit;
  2109. background-color:rgba(255, 255, 255, 0);
  2110. border:none;
  2111. border-radius:0px;
  2112. -moz-box-shadow:none;
  2113. -webkit-box-shadow:none;
  2114. box-shadow:none;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:16px;
  2119. }
  2120. #u79181 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:30px;
  2124. top:370px;
  2125. width:65px;
  2126. height:22px;
  2127. display:flex;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:16px;
  2132. }
  2133. #u79181 .text {
  2134. position:absolute;
  2135. align-self:flex-start;
  2136. padding:0px 0px 0px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u79181_text {
  2141. border-width:0px;
  2142. white-space:nowrap;
  2143. text-transform:none;
  2144. }
  2145. #u79182_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:49px;
  2151. height:17px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 0);
  2154. border:none;
  2155. border-radius:0px;
  2156. -moz-box-shadow:none;
  2157. -webkit-box-shadow:none;
  2158. box-shadow:none;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:12px;
  2163. color:#AAAAAA;
  2164. }
  2165. #u79182 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:30px;
  2169. top:334px;
  2170. width:49px;
  2171. height:17px;
  2172. display:flex;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:12px;
  2177. color:#AAAAAA;
  2178. }
  2179. #u79182 .text {
  2180. position:absolute;
  2181. align-self:flex-start;
  2182. padding:0px 0px 0px 0px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u79182_text {
  2187. border-width:0px;
  2188. white-space:nowrap;
  2189. text-transform:none;
  2190. }
  2191. #u79183_div {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:65px;
  2197. height:22px;
  2198. background:inherit;
  2199. background-color:rgba(255, 255, 255, 0);
  2200. border:none;
  2201. border-radius:0px;
  2202. -moz-box-shadow:none;
  2203. -webkit-box-shadow:none;
  2204. box-shadow:none;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:16px;
  2209. }
  2210. #u79183 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:30px;
  2214. top:412px;
  2215. width:65px;
  2216. height:22px;
  2217. display:flex;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:16px;
  2222. }
  2223. #u79183 .text {
  2224. position:absolute;
  2225. align-self:flex-start;
  2226. padding:0px 0px 0px 0px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u79183_text {
  2231. border-width:0px;
  2232. white-space:nowrap;
  2233. text-transform:none;
  2234. }
  2235. #u79184_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:65px;
  2241. height:22px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 0);
  2244. border:none;
  2245. border-radius:0px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:16px;
  2253. }
  2254. #u79184 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:30px;
  2258. top:454px;
  2259. width:65px;
  2260. height:22px;
  2261. display:flex;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:16px;
  2266. }
  2267. #u79184 .text {
  2268. position:absolute;
  2269. align-self:flex-start;
  2270. padding:0px 0px 0px 0px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u79184_text {
  2275. border-width:0px;
  2276. white-space:nowrap;
  2277. text-transform:none;
  2278. }
  2279. #u79185_div {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:65px;
  2285. height:22px;
  2286. background:inherit;
  2287. background-color:rgba(255, 255, 255, 0);
  2288. border:none;
  2289. border-radius:0px;
  2290. -moz-box-shadow:none;
  2291. -webkit-box-shadow:none;
  2292. box-shadow:none;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:16px;
  2297. }
  2298. #u79185 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:30px;
  2302. top:496px;
  2303. width:65px;
  2304. height:22px;
  2305. display:flex;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:16px;
  2310. }
  2311. #u79185 .text {
  2312. position:absolute;
  2313. align-self:flex-start;
  2314. padding:0px 0px 0px 0px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u79185_text {
  2319. border-width:0px;
  2320. white-space:nowrap;
  2321. text-transform:none;
  2322. }
  2323. #u79186_div {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:65px;
  2329. height:22px;
  2330. background:inherit;
  2331. background-color:rgba(255, 255, 255, 0);
  2332. border:none;
  2333. border-radius:0px;
  2334. -moz-box-shadow:none;
  2335. -webkit-box-shadow:none;
  2336. box-shadow:none;
  2337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2338. font-weight:400;
  2339. font-style:normal;
  2340. font-size:16px;
  2341. }
  2342. #u79186 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:30px;
  2346. top:538px;
  2347. width:65px;
  2348. height:22px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:16px;
  2354. }
  2355. #u79186 .text {
  2356. position:absolute;
  2357. align-self:flex-start;
  2358. padding:0px 0px 0px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u79186_text {
  2363. border-width:0px;
  2364. white-space:nowrap;
  2365. text-transform:none;
  2366. }
  2367. #u79187_div {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:65px;
  2373. height:22px;
  2374. background:inherit;
  2375. background-color:rgba(255, 255, 255, 0);
  2376. border:none;
  2377. border-radius:0px;
  2378. -moz-box-shadow:none;
  2379. -webkit-box-shadow:none;
  2380. box-shadow:none;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:16px;
  2385. }
  2386. #u79187 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:30px;
  2390. top:580px;
  2391. width:65px;
  2392. height:22px;
  2393. display:flex;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:16px;
  2398. }
  2399. #u79187 .text {
  2400. position:absolute;
  2401. align-self:flex-start;
  2402. padding:0px 0px 0px 0px;
  2403. box-sizing:border-box;
  2404. width:100%;
  2405. }
  2406. #u79187_text {
  2407. border-width:0px;
  2408. white-space:nowrap;
  2409. text-transform:none;
  2410. }
  2411. #u79188_img {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:201px;
  2417. height:2px;
  2418. }
  2419. #u79188 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:1289px;
  2424. width:200px;
  2425. height:1px;
  2426. display:flex;
  2427. }
  2428. #u79188 .text {
  2429. position:absolute;
  2430. align-self:center;
  2431. padding:2px 2px 2px 2px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u79188_text {
  2436. border-width:0px;
  2437. word-wrap:break-word;
  2438. text-transform:none;
  2439. visibility:hidden;
  2440. }
  2441. #u79189_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:65px;
  2447. height:22px;
  2448. background:inherit;
  2449. background-color:rgba(255, 255, 255, 0);
  2450. border:none;
  2451. border-radius:0px;
  2452. -moz-box-shadow:none;
  2453. -webkit-box-shadow:none;
  2454. box-shadow:none;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. font-size:16px;
  2459. }
  2460. #u79189 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:30px;
  2464. top:1346px;
  2465. width:65px;
  2466. height:22px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:16px;
  2472. }
  2473. #u79189 .text {
  2474. position:absolute;
  2475. align-self:flex-start;
  2476. padding:0px 0px 0px 0px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u79189_text {
  2481. border-width:0px;
  2482. white-space:nowrap;
  2483. text-transform:none;
  2484. }
  2485. #u79190_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:49px;
  2491. height:17px;
  2492. background:inherit;
  2493. background-color:rgba(255, 255, 255, 0);
  2494. border:none;
  2495. border-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#AAAAAA;
  2504. }
  2505. #u79190 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:30px;
  2509. top:1310px;
  2510. width:49px;
  2511. height:17px;
  2512. display:flex;
  2513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2514. font-weight:400;
  2515. font-style:normal;
  2516. font-size:12px;
  2517. color:#AAAAAA;
  2518. }
  2519. #u79190 .text {
  2520. position:absolute;
  2521. align-self:flex-start;
  2522. padding:0px 0px 0px 0px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u79190_text {
  2527. border-width:0px;
  2528. white-space:nowrap;
  2529. text-transform:none;
  2530. }
  2531. #u79191_div {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:65px;
  2537. height:22px;
  2538. background:inherit;
  2539. background-color:rgba(255, 255, 255, 0);
  2540. border:none;
  2541. border-radius:0px;
  2542. -moz-box-shadow:none;
  2543. -webkit-box-shadow:none;
  2544. box-shadow:none;
  2545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. font-size:16px;
  2549. }
  2550. #u79191 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:30px;
  2554. top:1388px;
  2555. width:65px;
  2556. height:22px;
  2557. display:flex;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. font-size:16px;
  2562. }
  2563. #u79191 .text {
  2564. position:absolute;
  2565. align-self:flex-start;
  2566. padding:0px 0px 0px 0px;
  2567. box-sizing:border-box;
  2568. width:100%;
  2569. }
  2570. #u79191_text {
  2571. border-width:0px;
  2572. white-space:nowrap;
  2573. text-transform:none;
  2574. }
  2575. #u79192_div {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:65px;
  2581. height:22px;
  2582. background:inherit;
  2583. background-color:rgba(255, 255, 255, 0);
  2584. border:none;
  2585. border-radius:0px;
  2586. -moz-box-shadow:none;
  2587. -webkit-box-shadow:none;
  2588. box-shadow:none;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:16px;
  2593. }
  2594. #u79192 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:30px;
  2598. top:1472px;
  2599. width:65px;
  2600. height:22px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:16px;
  2606. }
  2607. #u79192 .text {
  2608. position:absolute;
  2609. align-self:flex-start;
  2610. padding:0px 0px 0px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u79192_text {
  2615. border-width:0px;
  2616. white-space:nowrap;
  2617. text-transform:none;
  2618. }
  2619. #u79193_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:201px;
  2625. height:2px;
  2626. }
  2627. #u79193 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:1514px;
  2632. width:200px;
  2633. height:1px;
  2634. display:flex;
  2635. }
  2636. #u79193 .text {
  2637. position:absolute;
  2638. align-self:center;
  2639. padding:2px 2px 2px 2px;
  2640. box-sizing:border-box;
  2641. width:100%;
  2642. }
  2643. #u79193_text {
  2644. border-width:0px;
  2645. word-wrap:break-word;
  2646. text-transform:none;
  2647. visibility:hidden;
  2648. }
  2649. #u79194_div {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:0px;
  2654. width:49px;
  2655. height:22px;
  2656. background:inherit;
  2657. background-color:rgba(255, 255, 255, 0);
  2658. border:none;
  2659. border-radius:0px;
  2660. -moz-box-shadow:none;
  2661. -webkit-box-shadow:none;
  2662. box-shadow:none;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:16px;
  2667. }
  2668. #u79194 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:30px;
  2672. top:1571px;
  2673. width:49px;
  2674. height:22px;
  2675. display:flex;
  2676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2677. font-weight:400;
  2678. font-style:normal;
  2679. font-size:16px;
  2680. }
  2681. #u79194 .text {
  2682. position:absolute;
  2683. align-self:flex-start;
  2684. padding:0px 0px 0px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u79194_text {
  2689. border-width:0px;
  2690. white-space:nowrap;
  2691. text-transform:none;
  2692. }
  2693. #u79195_div {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:49px;
  2699. height:17px;
  2700. background:inherit;
  2701. background-color:rgba(255, 255, 255, 0);
  2702. border:none;
  2703. border-radius:0px;
  2704. -moz-box-shadow:none;
  2705. -webkit-box-shadow:none;
  2706. box-shadow:none;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:12px;
  2711. color:#AAAAAA;
  2712. }
  2713. #u79195 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:30px;
  2717. top:1535px;
  2718. width:49px;
  2719. height:17px;
  2720. display:flex;
  2721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:12px;
  2725. color:#AAAAAA;
  2726. }
  2727. #u79195 .text {
  2728. position:absolute;
  2729. align-self:flex-start;
  2730. padding:0px 0px 0px 0px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u79195_text {
  2735. border-width:0px;
  2736. white-space:nowrap;
  2737. text-transform:none;
  2738. }
  2739. #u79196_div {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:49px;
  2745. height:22px;
  2746. background:inherit;
  2747. background-color:rgba(255, 255, 255, 0);
  2748. border:none;
  2749. border-radius:0px;
  2750. -moz-box-shadow:none;
  2751. -webkit-box-shadow:none;
  2752. box-shadow:none;
  2753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:16px;
  2757. }
  2758. #u79196 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:30px;
  2762. top:1613px;
  2763. width:49px;
  2764. height:22px;
  2765. display:flex;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:16px;
  2770. }
  2771. #u79196 .text {
  2772. position:absolute;
  2773. align-self:flex-start;
  2774. padding:0px 0px 0px 0px;
  2775. box-sizing:border-box;
  2776. width:100%;
  2777. }
  2778. #u79196_text {
  2779. border-width:0px;
  2780. white-space:nowrap;
  2781. text-transform:none;
  2782. }
  2783. #u79197_div {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:65px;
  2789. height:22px;
  2790. background:inherit;
  2791. background-color:rgba(255, 255, 255, 0);
  2792. border:none;
  2793. border-radius:0px;
  2794. -moz-box-shadow:none;
  2795. -webkit-box-shadow:none;
  2796. box-shadow:none;
  2797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2798. font-weight:400;
  2799. font-style:normal;
  2800. font-size:16px;
  2801. }
  2802. #u79197 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:30px;
  2806. top:1655px;
  2807. width:65px;
  2808. height:22px;
  2809. display:flex;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:16px;
  2814. }
  2815. #u79197 .text {
  2816. position:absolute;
  2817. align-self:flex-start;
  2818. padding:0px 0px 0px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u79197_text {
  2823. border-width:0px;
  2824. white-space:nowrap;
  2825. text-transform:none;
  2826. }
  2827. #u79198_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:201px;
  2833. height:2px;
  2834. }
  2835. #u79198 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:1697px;
  2840. width:200px;
  2841. height:1px;
  2842. display:flex;
  2843. }
  2844. #u79198 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 2px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u79198_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. visibility:hidden;
  2856. }
  2857. #u79199_div {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:81px;
  2863. height:22px;
  2864. background:inherit;
  2865. background-color:rgba(255, 255, 255, 0);
  2866. border:none;
  2867. border-radius:0px;
  2868. -moz-box-shadow:none;
  2869. -webkit-box-shadow:none;
  2870. box-shadow:none;
  2871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2872. font-weight:400;
  2873. font-style:normal;
  2874. font-size:16px;
  2875. }
  2876. #u79199 {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:30px;
  2880. top:1754px;
  2881. width:81px;
  2882. height:22px;
  2883. display:flex;
  2884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2885. font-weight:400;
  2886. font-style:normal;
  2887. font-size:16px;
  2888. }
  2889. #u79199 .text {
  2890. position:absolute;
  2891. align-self:flex-start;
  2892. padding:0px 0px 0px 0px;
  2893. box-sizing:border-box;
  2894. width:100%;
  2895. }
  2896. #u79199_text {
  2897. border-width:0px;
  2898. white-space:nowrap;
  2899. text-transform:none;
  2900. }
  2901. #u79200_div {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:49px;
  2907. height:17px;
  2908. background:inherit;
  2909. background-color:rgba(255, 255, 255, 0);
  2910. border:none;
  2911. border-radius:0px;
  2912. -moz-box-shadow:none;
  2913. -webkit-box-shadow:none;
  2914. box-shadow:none;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#AAAAAA;
  2920. }
  2921. #u79200 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:30px;
  2925. top:1718px;
  2926. width:49px;
  2927. height:17px;
  2928. display:flex;
  2929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. font-size:12px;
  2933. color:#AAAAAA;
  2934. }
  2935. #u79200 .text {
  2936. position:absolute;
  2937. align-self:flex-start;
  2938. padding:0px 0px 0px 0px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u79200_text {
  2943. border-width:0px;
  2944. white-space:nowrap;
  2945. text-transform:none;
  2946. }
  2947. #u79201_div {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:81px;
  2953. height:22px;
  2954. background:inherit;
  2955. background-color:rgba(255, 255, 255, 0);
  2956. border:none;
  2957. border-radius:0px;
  2958. -moz-box-shadow:none;
  2959. -webkit-box-shadow:none;
  2960. box-shadow:none;
  2961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2962. font-weight:400;
  2963. font-style:normal;
  2964. font-size:16px;
  2965. }
  2966. #u79201 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:30px;
  2970. top:1796px;
  2971. width:81px;
  2972. height:22px;
  2973. display:flex;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:16px;
  2978. }
  2979. #u79201 .text {
  2980. position:absolute;
  2981. align-self:flex-start;
  2982. padding:0px 0px 0px 0px;
  2983. box-sizing:border-box;
  2984. width:100%;
  2985. }
  2986. #u79201_text {
  2987. border-width:0px;
  2988. white-space:nowrap;
  2989. text-transform:none;
  2990. }
  2991. #u79202_div {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:81px;
  2997. height:22px;
  2998. background:inherit;
  2999. background-color:rgba(255, 255, 255, 0);
  3000. border:none;
  3001. border-radius:0px;
  3002. -moz-box-shadow:none;
  3003. -webkit-box-shadow:none;
  3004. box-shadow:none;
  3005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3006. font-weight:400;
  3007. font-style:normal;
  3008. font-size:16px;
  3009. }
  3010. #u79202 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:30px;
  3014. top:1838px;
  3015. width:81px;
  3016. height:22px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:16px;
  3022. }
  3023. #u79202 .text {
  3024. position:absolute;
  3025. align-self:flex-start;
  3026. padding:0px 0px 0px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u79202_text {
  3031. border-width:0px;
  3032. white-space:nowrap;
  3033. text-transform:none;
  3034. }
  3035. #u79203_div {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:65px;
  3041. height:22px;
  3042. background:inherit;
  3043. background-color:rgba(255, 255, 255, 0);
  3044. border:none;
  3045. border-radius:0px;
  3046. -moz-box-shadow:none;
  3047. -webkit-box-shadow:none;
  3048. box-shadow:none;
  3049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:16px;
  3053. }
  3054. #u79203 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:30px;
  3058. top:1430px;
  3059. width:65px;
  3060. height:22px;
  3061. display:flex;
  3062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:16px;
  3066. }
  3067. #u79203 .text {
  3068. position:absolute;
  3069. align-self:flex-start;
  3070. padding:0px 0px 0px 0px;
  3071. box-sizing:border-box;
  3072. width:100%;
  3073. }
  3074. #u79203_text {
  3075. border-width:0px;
  3076. white-space:nowrap;
  3077. text-transform:none;
  3078. }
  3079. #u79204_img {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:201px;
  3085. height:2px;
  3086. }
  3087. #u79204 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:669px;
  3092. width:200px;
  3093. height:1px;
  3094. display:flex;
  3095. }
  3096. #u79204 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 2px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u79204_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. visibility:hidden;
  3108. }
  3109. #u79205_div {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:65px;
  3115. height:22px;
  3116. background:inherit;
  3117. background-color:rgba(255, 255, 255, 0);
  3118. border:none;
  3119. border-radius:0px;
  3120. -moz-box-shadow:none;
  3121. -webkit-box-shadow:none;
  3122. box-shadow:none;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:16px;
  3127. }
  3128. #u79205 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:30px;
  3132. top:726px;
  3133. width:65px;
  3134. height:22px;
  3135. display:flex;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:16px;
  3140. }
  3141. #u79205 .text {
  3142. position:absolute;
  3143. align-self:flex-start;
  3144. padding:0px 0px 0px 0px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u79205_text {
  3149. border-width:0px;
  3150. white-space:nowrap;
  3151. text-transform:none;
  3152. }
  3153. #u79206_div {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:49px;
  3159. height:17px;
  3160. background:inherit;
  3161. background-color:rgba(255, 255, 255, 0);
  3162. border:none;
  3163. border-radius:0px;
  3164. -moz-box-shadow:none;
  3165. -webkit-box-shadow:none;
  3166. box-shadow:none;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:12px;
  3171. color:#AAAAAA;
  3172. }
  3173. #u79206 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:30px;
  3177. top:690px;
  3178. width:49px;
  3179. height:17px;
  3180. display:flex;
  3181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:12px;
  3185. color:#AAAAAA;
  3186. }
  3187. #u79206 .text {
  3188. position:absolute;
  3189. align-self:flex-start;
  3190. padding:0px 0px 0px 0px;
  3191. box-sizing:border-box;
  3192. width:100%;
  3193. }
  3194. #u79206_text {
  3195. border-width:0px;
  3196. white-space:nowrap;
  3197. text-transform:none;
  3198. }
  3199. #u79207_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:65px;
  3205. height:22px;
  3206. background:inherit;
  3207. background-color:rgba(255, 255, 255, 0);
  3208. border:none;
  3209. border-radius:0px;
  3210. -moz-box-shadow:none;
  3211. -webkit-box-shadow:none;
  3212. box-shadow:none;
  3213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3214. font-weight:400;
  3215. font-style:normal;
  3216. font-size:16px;
  3217. }
  3218. #u79207 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:30px;
  3222. top:768px;
  3223. width:65px;
  3224. height:22px;
  3225. display:flex;
  3226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3227. font-weight:400;
  3228. font-style:normal;
  3229. font-size:16px;
  3230. }
  3231. #u79207 .text {
  3232. position:absolute;
  3233. align-self:flex-start;
  3234. padding:0px 0px 0px 0px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u79207_text {
  3239. border-width:0px;
  3240. white-space:nowrap;
  3241. text-transform:none;
  3242. }
  3243. #u79208_div {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:65px;
  3249. height:22px;
  3250. background:inherit;
  3251. background-color:rgba(255, 255, 255, 0);
  3252. border:none;
  3253. border-radius:0px;
  3254. -moz-box-shadow:none;
  3255. -webkit-box-shadow:none;
  3256. box-shadow:none;
  3257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. font-size:16px;
  3261. }
  3262. #u79208 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:30px;
  3266. top:852px;
  3267. width:65px;
  3268. height:22px;
  3269. display:flex;
  3270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3271. font-weight:400;
  3272. font-style:normal;
  3273. font-size:16px;
  3274. }
  3275. #u79208 .text {
  3276. position:absolute;
  3277. align-self:flex-start;
  3278. padding:0px 0px 0px 0px;
  3279. box-sizing:border-box;
  3280. width:100%;
  3281. }
  3282. #u79208_text {
  3283. border-width:0px;
  3284. white-space:nowrap;
  3285. text-transform:none;
  3286. }
  3287. #u79209_div {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:65px;
  3293. height:22px;
  3294. background:inherit;
  3295. background-color:rgba(255, 255, 255, 0);
  3296. border:none;
  3297. border-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:16px;
  3305. }
  3306. #u79209 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:30px;
  3310. top:810px;
  3311. width:65px;
  3312. height:22px;
  3313. display:flex;
  3314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:16px;
  3318. }
  3319. #u79209 .text {
  3320. position:absolute;
  3321. align-self:flex-start;
  3322. padding:0px 0px 0px 0px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u79209_text {
  3327. border-width:0px;
  3328. white-space:nowrap;
  3329. text-transform:none;
  3330. }
  3331. #u79210_div {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:65px;
  3337. height:22px;
  3338. background:inherit;
  3339. background-color:rgba(255, 255, 255, 0);
  3340. border:none;
  3341. border-radius:0px;
  3342. -moz-box-shadow:none;
  3343. -webkit-box-shadow:none;
  3344. box-shadow:none;
  3345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:16px;
  3349. }
  3350. #u79210 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:30px;
  3354. top:894px;
  3355. width:65px;
  3356. height:22px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:16px;
  3362. }
  3363. #u79210 .text {
  3364. position:absolute;
  3365. align-self:flex-start;
  3366. padding:0px 0px 0px 0px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u79210_text {
  3371. border-width:0px;
  3372. white-space:nowrap;
  3373. text-transform:none;
  3374. }
  3375. #u79211_div {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:65px;
  3381. height:22px;
  3382. background:inherit;
  3383. background-color:rgba(255, 255, 255, 0);
  3384. border:none;
  3385. border-radius:0px;
  3386. -moz-box-shadow:none;
  3387. -webkit-box-shadow:none;
  3388. box-shadow:none;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:16px;
  3393. }
  3394. #u79211 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:30px;
  3398. top:936px;
  3399. width:65px;
  3400. height:22px;
  3401. display:flex;
  3402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3403. font-weight:400;
  3404. font-style:normal;
  3405. font-size:16px;
  3406. }
  3407. #u79211 .text {
  3408. position:absolute;
  3409. align-self:flex-start;
  3410. padding:0px 0px 0px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u79211_text {
  3415. border-width:0px;
  3416. white-space:nowrap;
  3417. text-transform:none;
  3418. }
  3419. #u79212_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:201px;
  3425. height:2px;
  3426. }
  3427. #u79212 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:1018px;
  3432. width:200px;
  3433. height:1px;
  3434. display:flex;
  3435. }
  3436. #u79212 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 2px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u79212_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u79213_div {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:65px;
  3455. height:22px;
  3456. background:inherit;
  3457. background-color:rgba(255, 255, 255, 0);
  3458. border:none;
  3459. border-radius:0px;
  3460. -moz-box-shadow:none;
  3461. -webkit-box-shadow:none;
  3462. box-shadow:none;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:16px;
  3467. }
  3468. #u79213 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:30px;
  3472. top:1075px;
  3473. width:65px;
  3474. height:22px;
  3475. display:flex;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:16px;
  3480. }
  3481. #u79213 .text {
  3482. position:absolute;
  3483. align-self:flex-start;
  3484. padding:0px 0px 0px 0px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u79213_text {
  3489. border-width:0px;
  3490. white-space:nowrap;
  3491. text-transform:none;
  3492. }
  3493. #u79214_div {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:49px;
  3499. height:17px;
  3500. background:inherit;
  3501. background-color:rgba(255, 255, 255, 0);
  3502. border:none;
  3503. border-radius:0px;
  3504. -moz-box-shadow:none;
  3505. -webkit-box-shadow:none;
  3506. box-shadow:none;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:12px;
  3511. color:#AAAAAA;
  3512. }
  3513. #u79214 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:30px;
  3517. top:1039px;
  3518. width:49px;
  3519. height:17px;
  3520. display:flex;
  3521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:12px;
  3525. color:#AAAAAA;
  3526. }
  3527. #u79214 .text {
  3528. position:absolute;
  3529. align-self:flex-start;
  3530. padding:0px 0px 0px 0px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u79214_text {
  3535. border-width:0px;
  3536. white-space:nowrap;
  3537. text-transform:none;
  3538. }
  3539. #u79215_div {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:65px;
  3545. height:22px;
  3546. background:inherit;
  3547. background-color:rgba(255, 255, 255, 0);
  3548. border:none;
  3549. border-radius:0px;
  3550. -moz-box-shadow:none;
  3551. -webkit-box-shadow:none;
  3552. box-shadow:none;
  3553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. font-size:16px;
  3557. }
  3558. #u79215 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:30px;
  3562. top:1117px;
  3563. width:65px;
  3564. height:22px;
  3565. display:flex;
  3566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3567. font-weight:400;
  3568. font-style:normal;
  3569. font-size:16px;
  3570. }
  3571. #u79215 .text {
  3572. position:absolute;
  3573. align-self:flex-start;
  3574. padding:0px 0px 0px 0px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u79215_text {
  3579. border-width:0px;
  3580. white-space:nowrap;
  3581. text-transform:none;
  3582. }
  3583. #u79216_div {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:65px;
  3589. height:22px;
  3590. background:inherit;
  3591. background-color:rgba(255, 255, 255, 0);
  3592. border:none;
  3593. border-radius:0px;
  3594. -moz-box-shadow:none;
  3595. -webkit-box-shadow:none;
  3596. box-shadow:none;
  3597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3598. font-weight:400;
  3599. font-style:normal;
  3600. font-size:16px;
  3601. }
  3602. #u79216 {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:30px;
  3606. top:1201px;
  3607. width:65px;
  3608. height:22px;
  3609. display:flex;
  3610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:16px;
  3614. }
  3615. #u79216 .text {
  3616. position:absolute;
  3617. align-self:flex-start;
  3618. padding:0px 0px 0px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u79216_text {
  3623. border-width:0px;
  3624. white-space:nowrap;
  3625. text-transform:none;
  3626. }
  3627. #u79217_div {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:65px;
  3633. height:22px;
  3634. background:inherit;
  3635. background-color:rgba(255, 255, 255, 0);
  3636. border:none;
  3637. border-radius:0px;
  3638. -moz-box-shadow:none;
  3639. -webkit-box-shadow:none;
  3640. box-shadow:none;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:16px;
  3645. }
  3646. #u79217 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:30px;
  3650. top:1159px;
  3651. width:65px;
  3652. height:22px;
  3653. display:flex;
  3654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:16px;
  3658. }
  3659. #u79217 .text {
  3660. position:absolute;
  3661. align-self:flex-start;
  3662. padding:0px 0px 0px 0px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u79217_text {
  3667. border-width:0px;
  3668. white-space:nowrap;
  3669. text-transform:none;
  3670. }
  3671. #u79218_div {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:65px;
  3677. height:22px;
  3678. background:inherit;
  3679. background-color:rgba(255, 255, 255, 0);
  3680. border:none;
  3681. border-radius:0px;
  3682. -moz-box-shadow:none;
  3683. -webkit-box-shadow:none;
  3684. box-shadow:none;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:16px;
  3689. }
  3690. #u79218 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:30px;
  3694. top:1243px;
  3695. width:65px;
  3696. height:22px;
  3697. display:flex;
  3698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:16px;
  3702. }
  3703. #u79218 .text {
  3704. position:absolute;
  3705. align-self:flex-start;
  3706. padding:0px 0px 0px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u79218_text {
  3711. border-width:0px;
  3712. white-space:nowrap;
  3713. text-transform:none;
  3714. }
  3715. #u79219_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:65px;
  3721. height:22px;
  3722. background:inherit;
  3723. background-color:rgba(255, 255, 255, 0);
  3724. border:none;
  3725. border-radius:0px;
  3726. -moz-box-shadow:none;
  3727. -webkit-box-shadow:none;
  3728. box-shadow:none;
  3729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:16px;
  3733. }
  3734. #u79219 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:30px;
  3738. top:978px;
  3739. width:65px;
  3740. height:22px;
  3741. display:flex;
  3742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:16px;
  3746. }
  3747. #u79219 .text {
  3748. position:absolute;
  3749. align-self:flex-start;
  3750. padding:0px 0px 0px 0px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u79219_text {
  3755. border-width:0px;
  3756. white-space:nowrap;
  3757. text-transform:none;
  3758. }
  3759. #u79220_div {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:65px;
  3765. height:22px;
  3766. background:inherit;
  3767. background-color:rgba(255, 255, 255, 0);
  3768. border:none;
  3769. border-radius:0px;
  3770. -moz-box-shadow:none;
  3771. -webkit-box-shadow:none;
  3772. box-shadow:none;
  3773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3774. font-weight:400;
  3775. font-style:normal;
  3776. font-size:16px;
  3777. }
  3778. #u79220 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:30px;
  3782. top:622px;
  3783. width:65px;
  3784. height:22px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:16px;
  3790. }
  3791. #u79220 .text {
  3792. position:absolute;
  3793. align-self:flex-start;
  3794. padding:0px 0px 0px 0px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u79220_text {
  3799. border-width:0px;
  3800. white-space:nowrap;
  3801. text-transform:none;
  3802. }
  3803. #u79221_div {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:199px;
  3809. height:50px;
  3810. background:inherit;
  3811. background-color:rgba(255, 255, 255, 0);
  3812. border:none;
  3813. border-left:0px;
  3814. border-top:0px;
  3815. border-right:0px;
  3816. border-radius:0px;
  3817. border-bottom-right-radius:0px;
  3818. border-bottom-left-radius:0px;
  3819. -moz-box-shadow:none;
  3820. -webkit-box-shadow:none;
  3821. box-shadow:none;
  3822. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3823. font-weight:500;
  3824. font-style:normal;
  3825. font-size:18px;
  3826. }
  3827. #u79221 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:650px;
  3831. top:50px;
  3832. width:199px;
  3833. height:50px;
  3834. display:flex;
  3835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3836. font-weight:500;
  3837. font-style:normal;
  3838. font-size:18px;
  3839. }
  3840. #u79221 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:0px 0px 0px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u79221_text {
  3848. border-width:0px;
  3849. white-space:nowrap;
  3850. text-transform:none;
  3851. }
  3852. #u79222_div {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:145px;
  3858. height:40px;
  3859. background:inherit;
  3860. background-color:rgba(255, 255, 255, 0);
  3861. border:none;
  3862. border-radius:0px;
  3863. -moz-box-shadow:none;
  3864. -webkit-box-shadow:none;
  3865. box-shadow:none;
  3866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3867. font-weight:500;
  3868. font-style:normal;
  3869. font-size:18px;
  3870. line-height:40px;
  3871. }
  3872. #u79222 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:670px;
  3876. top:110px;
  3877. width:145px;
  3878. height:40px;
  3879. display:flex;
  3880. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3881. font-weight:500;
  3882. font-style:normal;
  3883. font-size:18px;
  3884. line-height:40px;
  3885. }
  3886. #u79222 .text {
  3887. position:absolute;
  3888. align-self:flex-start;
  3889. padding:0px 0px 0px 0px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u79222_text {
  3894. border-width:0px;
  3895. white-space:nowrap;
  3896. text-transform:none;
  3897. }
  3898. #u79223 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:0px;
  3904. height:0px;
  3905. }
  3906. #u79224_div {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:104px;
  3912. height:40px;
  3913. background:inherit;
  3914. background-color:rgba(242, 242, 242, 1);
  3915. box-sizing:border-box;
  3916. border-width:1px;
  3917. border-style:solid;
  3918. border-color:rgba(215, 215, 215, 1);
  3919. border-radius:4px;
  3920. -moz-box-shadow:none;
  3921. -webkit-box-shadow:none;
  3922. box-shadow:none;
  3923. font-size:14px;
  3924. }
  3925. #u79224 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:828px;
  3929. top:221px;
  3930. width:104px;
  3931. height:40px;
  3932. display:flex;
  3933. font-size:14px;
  3934. }
  3935. #u79224 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 2px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u79224_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. visibility:hidden;
  3947. }
  3948. #u79225_input {
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:98px;
  3953. height:31px;
  3954. padding:2px 2px 2px 2px;
  3955. font-family:'ArialMT', 'Arial', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:14px;
  3959. letter-spacing:normal;
  3960. color:#AAAAAA;
  3961. vertical-align:none;
  3962. text-align:left;
  3963. text-transform:none;
  3964. background-color:transparent;
  3965. border-color:transparent;
  3966. }
  3967. #u79225_input.disabled {
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:98px;
  3972. height:31px;
  3973. padding:2px 2px 2px 2px;
  3974. font-family:'ArialMT', 'Arial', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:14px;
  3978. letter-spacing:normal;
  3979. color:#AAAAAA;
  3980. vertical-align:none;
  3981. text-align:left;
  3982. text-transform:none;
  3983. background-color:transparent;
  3984. border-color:transparent;
  3985. }
  3986. #u79225_div {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:98px;
  3992. height:31px;
  3993. background:inherit;
  3994. background-color:rgba(242, 242, 242, 1);
  3995. border:none;
  3996. border-radius:0px;
  3997. -moz-box-shadow:none;
  3998. -webkit-box-shadow:none;
  3999. box-shadow:none;
  4000. font-size:14px;
  4001. color:#AAAAAA;
  4002. }
  4003. #u79225 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:831px;
  4007. top:226px;
  4008. width:98px;
  4009. height:31px;
  4010. display:flex;
  4011. font-size:14px;
  4012. color:#AAAAAA;
  4013. }
  4014. #u79225 .text {
  4015. position:absolute;
  4016. align-self:flex-start;
  4017. padding:2px 2px 2px 2px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u79225_div.disabled {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:98px;
  4027. height:31px;
  4028. background:inherit;
  4029. background-color:rgba(240, 240, 240, 1);
  4030. border:none;
  4031. border-radius:0px;
  4032. -moz-box-shadow:none;
  4033. -webkit-box-shadow:none;
  4034. box-shadow:none;
  4035. font-size:14px;
  4036. color:#AAAAAA;
  4037. }
  4038. #u79225.disabled {
  4039. }
  4040. .u79225_input_option {
  4041. font-size:14px;
  4042. }
  4043. #u79226_div {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:253px;
  4049. height:40px;
  4050. background:inherit;
  4051. background-color:rgba(255, 255, 255, 0);
  4052. border:none;
  4053. border-radius:0px;
  4054. -moz-box-shadow:none;
  4055. -webkit-box-shadow:none;
  4056. box-shadow:none;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. line-height:40px;
  4062. }
  4063. #u79226 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:939px;
  4067. top:221px;
  4068. width:253px;
  4069. height:40px;
  4070. display:flex;
  4071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:12px;
  4075. line-height:40px;
  4076. }
  4077. #u79226 .text {
  4078. position:absolute;
  4079. align-self:flex-start;
  4080. padding:0px 0px 0px 0px;
  4081. box-sizing:border-box;
  4082. width:100%;
  4083. }
  4084. #u79226_text {
  4085. border-width:0px;
  4086. white-space:nowrap;
  4087. text-transform:none;
  4088. }
  4089. #u79227 label {
  4090. left:0px;
  4091. width:100%;
  4092. }
  4093. #u79227_img {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:4px;
  4098. width:12px;
  4099. height:12px;
  4100. }
  4101. #u79227 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:690px;
  4105. top:231px;
  4106. width:138px;
  4107. height:20px;
  4108. display:flex;
  4109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4110. font-weight:400;
  4111. font-style:normal;
  4112. font-size:14px;
  4113. }
  4114. #u79227 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:0px 2px 0px 2px;
  4118. box-sizing:border-box;
  4119. }
  4120. #u79227_img.selected {
  4121. }
  4122. #u79227.selected {
  4123. }
  4124. #u79227_img.disabled {
  4125. }
  4126. #u79227.disabled {
  4127. }
  4128. #u79227_img.selectedDisabled {
  4129. }
  4130. #u79227.selectedDisabled {
  4131. }
  4132. #u79227_text {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:14px;
  4136. top:0px;
  4137. width:122px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. }
  4141. #u79227_input {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:0px;
  4147. height:0px;
  4148. opacity:0;
  4149. }
  4150. #u79228_div {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:145px;
  4156. height:40px;
  4157. background:inherit;
  4158. background-color:rgba(255, 255, 255, 0);
  4159. border:none;
  4160. border-radius:0px;
  4161. -moz-box-shadow:none;
  4162. -webkit-box-shadow:none;
  4163. box-shadow:none;
  4164. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4165. font-weight:500;
  4166. font-style:normal;
  4167. font-size:18px;
  4168. line-height:40px;
  4169. }
  4170. #u79228 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:670px;
  4174. top:278px;
  4175. width:145px;
  4176. height:40px;
  4177. display:flex;
  4178. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4179. font-weight:500;
  4180. font-style:normal;
  4181. font-size:18px;
  4182. line-height:40px;
  4183. }
  4184. #u79228 .text {
  4185. position:absolute;
  4186. align-self:flex-start;
  4187. padding:0px 0px 0px 0px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u79228_text {
  4192. border-width:0px;
  4193. white-space:nowrap;
  4194. text-transform:none;
  4195. }
  4196. #u79229 {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:0px;
  4202. height:0px;
  4203. }
  4204. #u79230_div {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:104px;
  4210. height:40px;
  4211. background:inherit;
  4212. background-color:rgba(255, 255, 255, 1);
  4213. box-sizing:border-box;
  4214. border-width:1px;
  4215. border-style:solid;
  4216. border-color:rgba(215, 215, 215, 1);
  4217. border-radius:4px;
  4218. -moz-box-shadow:none;
  4219. -webkit-box-shadow:none;
  4220. box-shadow:none;
  4221. font-size:14px;
  4222. }
  4223. #u79230 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:894px;
  4227. top:368px;
  4228. width:104px;
  4229. height:40px;
  4230. display:flex;
  4231. font-size:14px;
  4232. }
  4233. #u79230 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 2px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u79230_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u79231_input {
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:98px;
  4251. height:31px;
  4252. padding:2px 2px 2px 2px;
  4253. font-family:'ArialMT', 'Arial', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:14px;
  4257. letter-spacing:normal;
  4258. color:#AAAAAA;
  4259. vertical-align:none;
  4260. text-align:left;
  4261. text-transform:none;
  4262. background-color:transparent;
  4263. border-color:transparent;
  4264. }
  4265. #u79231_input.disabled {
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:98px;
  4270. height:31px;
  4271. padding:2px 2px 2px 2px;
  4272. font-family:'ArialMT', 'Arial', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:14px;
  4276. letter-spacing:normal;
  4277. color:#AAAAAA;
  4278. vertical-align:none;
  4279. text-align:left;
  4280. text-transform:none;
  4281. background-color:transparent;
  4282. border-color:transparent;
  4283. }
  4284. #u79231_div {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:98px;
  4290. height:31px;
  4291. background:inherit;
  4292. background-color:rgba(255, 255, 255, 1);
  4293. border:none;
  4294. border-radius:0px;
  4295. -moz-box-shadow:none;
  4296. -webkit-box-shadow:none;
  4297. box-shadow:none;
  4298. font-size:14px;
  4299. color:#AAAAAA;
  4300. }
  4301. #u79231 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:897px;
  4305. top:373px;
  4306. width:98px;
  4307. height:31px;
  4308. display:flex;
  4309. font-size:14px;
  4310. color:#AAAAAA;
  4311. }
  4312. #u79231 .text {
  4313. position:absolute;
  4314. align-self:flex-start;
  4315. padding:2px 2px 2px 2px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u79231_div.disabled {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:98px;
  4325. height:31px;
  4326. background:inherit;
  4327. background-color:rgba(240, 240, 240, 1);
  4328. border:none;
  4329. border-radius:0px;
  4330. -moz-box-shadow:none;
  4331. -webkit-box-shadow:none;
  4332. box-shadow:none;
  4333. font-size:14px;
  4334. color:#AAAAAA;
  4335. }
  4336. #u79231.disabled {
  4337. }
  4338. .u79231_input_option {
  4339. font-size:14px;
  4340. }
  4341. #u79232_div {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:253px;
  4347. height:40px;
  4348. background:inherit;
  4349. background-color:rgba(255, 255, 255, 0);
  4350. border:none;
  4351. border-radius:0px;
  4352. -moz-box-shadow:none;
  4353. -webkit-box-shadow:none;
  4354. box-shadow:none;
  4355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:12px;
  4359. line-height:40px;
  4360. }
  4361. #u79232 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:1008px;
  4365. top:368px;
  4366. width:253px;
  4367. height:40px;
  4368. display:flex;
  4369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:12px;
  4373. line-height:40px;
  4374. }
  4375. #u79232 .text {
  4376. position:absolute;
  4377. align-self:flex-start;
  4378. padding:0px 0px 0px 0px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u79232_text {
  4383. border-width:0px;
  4384. white-space:nowrap;
  4385. text-transform:none;
  4386. }
  4387. #u79233 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:0px;
  4393. height:0px;
  4394. }
  4395. #u79234_div {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:104px;
  4401. height:40px;
  4402. background:inherit;
  4403. background-color:rgba(255, 255, 255, 1);
  4404. box-sizing:border-box;
  4405. border-width:1px;
  4406. border-style:solid;
  4407. border-color:rgba(215, 215, 215, 1);
  4408. border-radius:4px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. font-size:14px;
  4413. }
  4414. #u79234 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:781px;
  4418. top:368px;
  4419. width:104px;
  4420. height:40px;
  4421. display:flex;
  4422. font-size:14px;
  4423. }
  4424. #u79234 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 2px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u79234_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u79235_input {
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:98px;
  4442. height:31px;
  4443. padding:2px 2px 2px 2px;
  4444. font-family:'ArialMT', 'Arial', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:14px;
  4448. letter-spacing:normal;
  4449. color:#AAAAAA;
  4450. vertical-align:none;
  4451. text-align:left;
  4452. text-transform:none;
  4453. background-color:transparent;
  4454. border-color:transparent;
  4455. }
  4456. #u79235_input.disabled {
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:98px;
  4461. height:31px;
  4462. padding:2px 2px 2px 2px;
  4463. font-family:'ArialMT', 'Arial', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:14px;
  4467. letter-spacing:normal;
  4468. color:#AAAAAA;
  4469. vertical-align:none;
  4470. text-align:left;
  4471. text-transform:none;
  4472. background-color:transparent;
  4473. border-color:transparent;
  4474. }
  4475. #u79235_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:98px;
  4481. height:31px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 1);
  4484. border:none;
  4485. border-radius:0px;
  4486. -moz-box-shadow:none;
  4487. -webkit-box-shadow:none;
  4488. box-shadow:none;
  4489. font-size:14px;
  4490. color:#AAAAAA;
  4491. }
  4492. #u79235 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:784px;
  4496. top:373px;
  4497. width:98px;
  4498. height:31px;
  4499. display:flex;
  4500. font-size:14px;
  4501. color:#AAAAAA;
  4502. }
  4503. #u79235 .text {
  4504. position:absolute;
  4505. align-self:flex-start;
  4506. padding:2px 2px 2px 2px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u79235_div.disabled {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:98px;
  4516. height:31px;
  4517. background:inherit;
  4518. background-color:rgba(240, 240, 240, 1);
  4519. border:none;
  4520. border-radius:0px;
  4521. -moz-box-shadow:none;
  4522. -webkit-box-shadow:none;
  4523. box-shadow:none;
  4524. font-size:14px;
  4525. color:#AAAAAA;
  4526. }
  4527. #u79235.disabled {
  4528. }
  4529. .u79235_input_option {
  4530. font-size:14px;
  4531. }
  4532. #u79236 label {
  4533. left:0px;
  4534. width:100%;
  4535. }
  4536. #u79236_img {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:4px;
  4541. width:12px;
  4542. height:12px;
  4543. }
  4544. #u79236 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:690px;
  4548. top:378px;
  4549. width:100px;
  4550. height:20px;
  4551. display:flex;
  4552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4553. font-weight:400;
  4554. font-style:normal;
  4555. font-size:14px;
  4556. }
  4557. #u79236 .text {
  4558. position:absolute;
  4559. align-self:center;
  4560. padding:0px 2px 0px 2px;
  4561. box-sizing:border-box;
  4562. }
  4563. #u79236_img.selected {
  4564. }
  4565. #u79236.selected {
  4566. }
  4567. #u79236_img.disabled {
  4568. }
  4569. #u79236.disabled {
  4570. }
  4571. #u79236_img.selectedDisabled {
  4572. }
  4573. #u79236.selectedDisabled {
  4574. }
  4575. #u79236_text {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:14px;
  4579. top:0px;
  4580. width:84px;
  4581. word-wrap:break-word;
  4582. text-transform:none;
  4583. }
  4584. #u79236_input {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:0px;
  4590. height:0px;
  4591. opacity:0;
  4592. }
  4593. #u79237 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:0px;
  4599. height:0px;
  4600. }
  4601. #u79238_div {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:104px;
  4607. height:40px;
  4608. background:inherit;
  4609. background-color:rgba(242, 242, 242, 1);
  4610. box-sizing:border-box;
  4611. border-width:1px;
  4612. border-style:solid;
  4613. border-color:rgba(215, 215, 215, 1);
  4614. border-radius:4px;
  4615. -moz-box-shadow:none;
  4616. -webkit-box-shadow:none;
  4617. box-shadow:none;
  4618. font-size:14px;
  4619. }
  4620. #u79238 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:894px;
  4624. top:418px;
  4625. width:104px;
  4626. height:40px;
  4627. display:flex;
  4628. font-size:14px;
  4629. }
  4630. #u79238 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:2px 2px 2px 2px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u79238_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. visibility:hidden;
  4642. }
  4643. #u79239_input {
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:98px;
  4648. height:31px;
  4649. padding:2px 2px 2px 2px;
  4650. font-family:'ArialMT', 'Arial', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:14px;
  4654. letter-spacing:normal;
  4655. color:#AAAAAA;
  4656. vertical-align:none;
  4657. text-align:left;
  4658. text-transform:none;
  4659. background-color:transparent;
  4660. border-color:transparent;
  4661. }
  4662. #u79239_input.disabled {
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:98px;
  4667. height:31px;
  4668. padding:2px 2px 2px 2px;
  4669. font-family:'ArialMT', 'Arial', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:14px;
  4673. letter-spacing:normal;
  4674. color:#AAAAAA;
  4675. vertical-align:none;
  4676. text-align:left;
  4677. text-transform:none;
  4678. background-color:transparent;
  4679. border-color:transparent;
  4680. }
  4681. #u79239_div {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:98px;
  4687. height:31px;
  4688. background:inherit;
  4689. background-color:rgba(242, 242, 242, 1);
  4690. border:none;
  4691. border-radius:0px;
  4692. -moz-box-shadow:none;
  4693. -webkit-box-shadow:none;
  4694. box-shadow:none;
  4695. font-size:14px;
  4696. color:#AAAAAA;
  4697. }
  4698. #u79239 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:897px;
  4702. top:423px;
  4703. width:98px;
  4704. height:31px;
  4705. display:flex;
  4706. font-size:14px;
  4707. color:#AAAAAA;
  4708. }
  4709. #u79239 .text {
  4710. position:absolute;
  4711. align-self:flex-start;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u79239_div.disabled {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:98px;
  4722. height:31px;
  4723. background:inherit;
  4724. background-color:rgba(240, 240, 240, 1);
  4725. border:none;
  4726. border-radius:0px;
  4727. -moz-box-shadow:none;
  4728. -webkit-box-shadow:none;
  4729. box-shadow:none;
  4730. font-size:14px;
  4731. color:#AAAAAA;
  4732. }
  4733. #u79239.disabled {
  4734. }
  4735. .u79239_input_option {
  4736. font-size:14px;
  4737. }
  4738. #u79240_div {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:253px;
  4744. height:40px;
  4745. background:inherit;
  4746. background-color:rgba(255, 255, 255, 0);
  4747. border:none;
  4748. border-radius:0px;
  4749. -moz-box-shadow:none;
  4750. -webkit-box-shadow:none;
  4751. box-shadow:none;
  4752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4753. font-weight:400;
  4754. font-style:normal;
  4755. font-size:12px;
  4756. line-height:40px;
  4757. }
  4758. #u79240 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:1008px;
  4762. top:418px;
  4763. width:253px;
  4764. height:40px;
  4765. display:flex;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:12px;
  4770. line-height:40px;
  4771. }
  4772. #u79240 .text {
  4773. position:absolute;
  4774. align-self:flex-start;
  4775. padding:0px 0px 0px 0px;
  4776. box-sizing:border-box;
  4777. width:100%;
  4778. }
  4779. #u79240_text {
  4780. border-width:0px;
  4781. white-space:nowrap;
  4782. text-transform:none;
  4783. }
  4784. #u79241 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:0px;
  4788. top:0px;
  4789. width:0px;
  4790. height:0px;
  4791. }
  4792. #u79242_div {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:104px;
  4798. height:40px;
  4799. background:inherit;
  4800. background-color:rgba(242, 242, 242, 1);
  4801. box-sizing:border-box;
  4802. border-width:1px;
  4803. border-style:solid;
  4804. border-color:rgba(215, 215, 215, 1);
  4805. border-radius:4px;
  4806. -moz-box-shadow:none;
  4807. -webkit-box-shadow:none;
  4808. box-shadow:none;
  4809. font-size:14px;
  4810. }
  4811. #u79242 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:781px;
  4815. top:418px;
  4816. width:104px;
  4817. height:40px;
  4818. display:flex;
  4819. font-size:14px;
  4820. }
  4821. #u79242 .text {
  4822. position:absolute;
  4823. align-self:center;
  4824. padding:2px 2px 2px 2px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u79242_text {
  4829. border-width:0px;
  4830. word-wrap:break-word;
  4831. text-transform:none;
  4832. visibility:hidden;
  4833. }
  4834. #u79243_input {
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:98px;
  4839. height:31px;
  4840. padding:2px 2px 2px 2px;
  4841. font-family:'ArialMT', 'Arial', sans-serif;
  4842. font-weight:400;
  4843. font-style:normal;
  4844. font-size:14px;
  4845. letter-spacing:normal;
  4846. color:#AAAAAA;
  4847. vertical-align:none;
  4848. text-align:left;
  4849. text-transform:none;
  4850. background-color:transparent;
  4851. border-color:transparent;
  4852. }
  4853. #u79243_input.disabled {
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:98px;
  4858. height:31px;
  4859. padding:2px 2px 2px 2px;
  4860. font-family:'ArialMT', 'Arial', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:14px;
  4864. letter-spacing:normal;
  4865. color:#AAAAAA;
  4866. vertical-align:none;
  4867. text-align:left;
  4868. text-transform:none;
  4869. background-color:transparent;
  4870. border-color:transparent;
  4871. }
  4872. #u79243_div {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:98px;
  4878. height:31px;
  4879. background:inherit;
  4880. background-color:rgba(242, 242, 242, 1);
  4881. border:none;
  4882. border-radius:0px;
  4883. -moz-box-shadow:none;
  4884. -webkit-box-shadow:none;
  4885. box-shadow:none;
  4886. font-size:14px;
  4887. color:#AAAAAA;
  4888. }
  4889. #u79243 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:784px;
  4893. top:423px;
  4894. width:98px;
  4895. height:31px;
  4896. display:flex;
  4897. font-size:14px;
  4898. color:#AAAAAA;
  4899. }
  4900. #u79243 .text {
  4901. position:absolute;
  4902. align-self:flex-start;
  4903. padding:2px 2px 2px 2px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u79243_div.disabled {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:98px;
  4913. height:31px;
  4914. background:inherit;
  4915. background-color:rgba(240, 240, 240, 1);
  4916. border:none;
  4917. border-radius:0px;
  4918. -moz-box-shadow:none;
  4919. -webkit-box-shadow:none;
  4920. box-shadow:none;
  4921. font-size:14px;
  4922. color:#AAAAAA;
  4923. }
  4924. #u79243.disabled {
  4925. }
  4926. .u79243_input_option {
  4927. font-size:14px;
  4928. }
  4929. #u79244 label {
  4930. left:0px;
  4931. width:100%;
  4932. }
  4933. #u79244_img {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:4px;
  4938. width:12px;
  4939. height:12px;
  4940. }
  4941. #u79244 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:690px;
  4945. top:428px;
  4946. width:100px;
  4947. height:20px;
  4948. display:flex;
  4949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:14px;
  4953. }
  4954. #u79244 .text {
  4955. position:absolute;
  4956. align-self:center;
  4957. padding:0px 2px 0px 2px;
  4958. box-sizing:border-box;
  4959. }
  4960. #u79244_img.selected {
  4961. }
  4962. #u79244.selected {
  4963. }
  4964. #u79244_img.disabled {
  4965. }
  4966. #u79244.disabled {
  4967. }
  4968. #u79244_img.selectedDisabled {
  4969. }
  4970. #u79244.selectedDisabled {
  4971. }
  4972. #u79244_text {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:14px;
  4976. top:0px;
  4977. width:84px;
  4978. word-wrap:break-word;
  4979. text-transform:none;
  4980. }
  4981. #u79244_input {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:0px;
  4987. height:0px;
  4988. opacity:0;
  4989. }
  4990. #u79245_div {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:145px;
  4996. height:40px;
  4997. background:inherit;
  4998. background-color:rgba(255, 255, 255, 0);
  4999. border:none;
  5000. border-radius:0px;
  5001. -moz-box-shadow:none;
  5002. -webkit-box-shadow:none;
  5003. box-shadow:none;
  5004. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5005. font-weight:500;
  5006. font-style:normal;
  5007. font-size:18px;
  5008. line-height:40px;
  5009. }
  5010. #u79245 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:670px;
  5014. top:478px;
  5015. width:145px;
  5016. height:40px;
  5017. display:flex;
  5018. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5019. font-weight:500;
  5020. font-style:normal;
  5021. font-size:18px;
  5022. line-height:40px;
  5023. }
  5024. #u79245 .text {
  5025. position:absolute;
  5026. align-self:flex-start;
  5027. padding:0px 0px 0px 0px;
  5028. box-sizing:border-box;
  5029. width:100%;
  5030. }
  5031. #u79245_text {
  5032. border-width:0px;
  5033. white-space:nowrap;
  5034. text-transform:none;
  5035. }
  5036. #u79246 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:0px;
  5042. height:0px;
  5043. }
  5044. #u79247_div {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:104px;
  5050. height:40px;
  5051. background:inherit;
  5052. background-color:rgba(255, 255, 255, 1);
  5053. box-sizing:border-box;
  5054. border-width:1px;
  5055. border-style:solid;
  5056. border-color:rgba(215, 215, 215, 1);
  5057. border-radius:4px;
  5058. -moz-box-shadow:none;
  5059. -webkit-box-shadow:none;
  5060. box-shadow:none;
  5061. font-size:14px;
  5062. }
  5063. #u79247 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:894px;
  5067. top:528px;
  5068. width:104px;
  5069. height:40px;
  5070. display:flex;
  5071. font-size:14px;
  5072. }
  5073. #u79247 .text {
  5074. position:absolute;
  5075. align-self:center;
  5076. padding:2px 2px 2px 2px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u79247_text {
  5081. border-width:0px;
  5082. word-wrap:break-word;
  5083. text-transform:none;
  5084. visibility:hidden;
  5085. }
  5086. #u79248_input {
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:98px;
  5091. height:31px;
  5092. padding:2px 2px 2px 2px;
  5093. font-family:'ArialMT', 'Arial', sans-serif;
  5094. font-weight:400;
  5095. font-style:normal;
  5096. font-size:14px;
  5097. letter-spacing:normal;
  5098. color:#AAAAAA;
  5099. vertical-align:none;
  5100. text-align:left;
  5101. text-transform:none;
  5102. background-color:transparent;
  5103. border-color:transparent;
  5104. }
  5105. #u79248_input.disabled {
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:98px;
  5110. height:31px;
  5111. padding:2px 2px 2px 2px;
  5112. font-family:'ArialMT', 'Arial', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:14px;
  5116. letter-spacing:normal;
  5117. color:#AAAAAA;
  5118. vertical-align:none;
  5119. text-align:left;
  5120. text-transform:none;
  5121. background-color:transparent;
  5122. border-color:transparent;
  5123. }
  5124. #u79248_div {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:98px;
  5130. height:31px;
  5131. background:inherit;
  5132. background-color:rgba(255, 255, 255, 1);
  5133. border:none;
  5134. border-radius:0px;
  5135. -moz-box-shadow:none;
  5136. -webkit-box-shadow:none;
  5137. box-shadow:none;
  5138. font-size:14px;
  5139. color:#AAAAAA;
  5140. }
  5141. #u79248 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:897px;
  5145. top:533px;
  5146. width:98px;
  5147. height:31px;
  5148. display:flex;
  5149. font-size:14px;
  5150. color:#AAAAAA;
  5151. }
  5152. #u79248 .text {
  5153. position:absolute;
  5154. align-self:flex-start;
  5155. padding:2px 2px 2px 2px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u79248_div.disabled {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:0px;
  5163. top:0px;
  5164. width:98px;
  5165. height:31px;
  5166. background:inherit;
  5167. background-color:rgba(240, 240, 240, 1);
  5168. border:none;
  5169. border-radius:0px;
  5170. -moz-box-shadow:none;
  5171. -webkit-box-shadow:none;
  5172. box-shadow:none;
  5173. font-size:14px;
  5174. color:#AAAAAA;
  5175. }
  5176. #u79248.disabled {
  5177. }
  5178. .u79248_input_option {
  5179. font-size:14px;
  5180. }
  5181. #u79249_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:253px;
  5187. height:40px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 0);
  5190. border:none;
  5191. border-radius:0px;
  5192. -moz-box-shadow:none;
  5193. -webkit-box-shadow:none;
  5194. box-shadow:none;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:12px;
  5199. line-height:40px;
  5200. }
  5201. #u79249 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:1008px;
  5205. top:528px;
  5206. width:253px;
  5207. height:40px;
  5208. display:flex;
  5209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:12px;
  5213. line-height:40px;
  5214. }
  5215. #u79249 .text {
  5216. position:absolute;
  5217. align-self:flex-start;
  5218. padding:0px 0px 0px 0px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u79249_text {
  5223. border-width:0px;
  5224. white-space:nowrap;
  5225. text-transform:none;
  5226. }
  5227. #u79250 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:0px;
  5231. top:0px;
  5232. width:0px;
  5233. height:0px;
  5234. }
  5235. #u79251_div {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:104px;
  5241. height:40px;
  5242. background:inherit;
  5243. background-color:rgba(255, 255, 255, 1);
  5244. box-sizing:border-box;
  5245. border-width:1px;
  5246. border-style:solid;
  5247. border-color:rgba(215, 215, 215, 1);
  5248. border-radius:4px;
  5249. -moz-box-shadow:none;
  5250. -webkit-box-shadow:none;
  5251. box-shadow:none;
  5252. font-size:14px;
  5253. }
  5254. #u79251 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:781px;
  5258. top:528px;
  5259. width:104px;
  5260. height:40px;
  5261. display:flex;
  5262. font-size:14px;
  5263. }
  5264. #u79251 .text {
  5265. position:absolute;
  5266. align-self:center;
  5267. padding:2px 2px 2px 2px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u79251_text {
  5272. border-width:0px;
  5273. word-wrap:break-word;
  5274. text-transform:none;
  5275. visibility:hidden;
  5276. }
  5277. #u79252_input {
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:98px;
  5282. height:31px;
  5283. padding:2px 2px 2px 2px;
  5284. font-family:'ArialMT', 'Arial', sans-serif;
  5285. font-weight:400;
  5286. font-style:normal;
  5287. font-size:14px;
  5288. letter-spacing:normal;
  5289. color:#AAAAAA;
  5290. vertical-align:none;
  5291. text-align:left;
  5292. text-transform:none;
  5293. background-color:transparent;
  5294. border-color:transparent;
  5295. }
  5296. #u79252_input.disabled {
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:98px;
  5301. height:31px;
  5302. padding:2px 2px 2px 2px;
  5303. font-family:'ArialMT', 'Arial', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:14px;
  5307. letter-spacing:normal;
  5308. color:#AAAAAA;
  5309. vertical-align:none;
  5310. text-align:left;
  5311. text-transform:none;
  5312. background-color:transparent;
  5313. border-color:transparent;
  5314. }
  5315. #u79252_div {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:98px;
  5321. height:31px;
  5322. background:inherit;
  5323. background-color:rgba(255, 255, 255, 1);
  5324. border:none;
  5325. border-radius:0px;
  5326. -moz-box-shadow:none;
  5327. -webkit-box-shadow:none;
  5328. box-shadow:none;
  5329. font-size:14px;
  5330. color:#AAAAAA;
  5331. }
  5332. #u79252 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:784px;
  5336. top:533px;
  5337. width:98px;
  5338. height:31px;
  5339. display:flex;
  5340. font-size:14px;
  5341. color:#AAAAAA;
  5342. }
  5343. #u79252 .text {
  5344. position:absolute;
  5345. align-self:flex-start;
  5346. padding:2px 2px 2px 2px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u79252_div.disabled {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:98px;
  5356. height:31px;
  5357. background:inherit;
  5358. background-color:rgba(240, 240, 240, 1);
  5359. border:none;
  5360. border-radius:0px;
  5361. -moz-box-shadow:none;
  5362. -webkit-box-shadow:none;
  5363. box-shadow:none;
  5364. font-size:14px;
  5365. color:#AAAAAA;
  5366. }
  5367. #u79252.disabled {
  5368. }
  5369. .u79252_input_option {
  5370. font-size:14px;
  5371. }
  5372. #u79253 label {
  5373. left:0px;
  5374. width:100%;
  5375. }
  5376. #u79253_img {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:4px;
  5381. width:12px;
  5382. height:12px;
  5383. }
  5384. #u79253 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:690px;
  5388. top:538px;
  5389. width:100px;
  5390. height:20px;
  5391. display:flex;
  5392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5393. font-weight:400;
  5394. font-style:normal;
  5395. font-size:14px;
  5396. }
  5397. #u79253 .text {
  5398. position:absolute;
  5399. align-self:center;
  5400. padding:0px 2px 0px 2px;
  5401. box-sizing:border-box;
  5402. }
  5403. #u79253_img.selected {
  5404. }
  5405. #u79253.selected {
  5406. }
  5407. #u79253_img.disabled {
  5408. }
  5409. #u79253.disabled {
  5410. }
  5411. #u79253_img.selectedDisabled {
  5412. }
  5413. #u79253.selectedDisabled {
  5414. }
  5415. #u79253_text {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:14px;
  5419. top:0px;
  5420. width:84px;
  5421. word-wrap:break-word;
  5422. text-transform:none;
  5423. }
  5424. #u79253_input {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:0px;
  5430. height:0px;
  5431. opacity:0;
  5432. }
  5433. #u79254 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:0px;
  5439. height:0px;
  5440. }
  5441. #u79255_div {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:104px;
  5447. height:40px;
  5448. background:inherit;
  5449. background-color:rgba(255, 255, 255, 1);
  5450. box-sizing:border-box;
  5451. border-width:1px;
  5452. border-style:solid;
  5453. border-color:rgba(215, 215, 215, 1);
  5454. border-radius:4px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. font-size:14px;
  5459. }
  5460. #u79255 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:894px;
  5464. top:578px;
  5465. width:104px;
  5466. height:40px;
  5467. display:flex;
  5468. font-size:14px;
  5469. }
  5470. #u79255 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 2px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u79255_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u79256_input {
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:98px;
  5488. height:31px;
  5489. padding:2px 2px 2px 2px;
  5490. font-family:'ArialMT', 'Arial', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:14px;
  5494. letter-spacing:normal;
  5495. color:#AAAAAA;
  5496. vertical-align:none;
  5497. text-align:left;
  5498. text-transform:none;
  5499. background-color:transparent;
  5500. border-color:transparent;
  5501. }
  5502. #u79256_input.disabled {
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:98px;
  5507. height:31px;
  5508. padding:2px 2px 2px 2px;
  5509. font-family:'ArialMT', 'Arial', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:14px;
  5513. letter-spacing:normal;
  5514. color:#AAAAAA;
  5515. vertical-align:none;
  5516. text-align:left;
  5517. text-transform:none;
  5518. background-color:transparent;
  5519. border-color:transparent;
  5520. }
  5521. #u79256_div {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:98px;
  5527. height:31px;
  5528. background:inherit;
  5529. background-color:rgba(255, 255, 255, 1);
  5530. border:none;
  5531. border-radius:0px;
  5532. -moz-box-shadow:none;
  5533. -webkit-box-shadow:none;
  5534. box-shadow:none;
  5535. font-size:14px;
  5536. color:#AAAAAA;
  5537. }
  5538. #u79256 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:897px;
  5542. top:583px;
  5543. width:98px;
  5544. height:31px;
  5545. display:flex;
  5546. font-size:14px;
  5547. color:#AAAAAA;
  5548. }
  5549. #u79256 .text {
  5550. position:absolute;
  5551. align-self:flex-start;
  5552. padding:2px 2px 2px 2px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u79256_div.disabled {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:98px;
  5562. height:31px;
  5563. background:inherit;
  5564. background-color:rgba(240, 240, 240, 1);
  5565. border:none;
  5566. border-radius:0px;
  5567. -moz-box-shadow:none;
  5568. -webkit-box-shadow:none;
  5569. box-shadow:none;
  5570. font-size:14px;
  5571. color:#AAAAAA;
  5572. }
  5573. #u79256.disabled {
  5574. }
  5575. .u79256_input_option {
  5576. font-size:14px;
  5577. }
  5578. #u79257_div {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:253px;
  5584. height:40px;
  5585. background:inherit;
  5586. background-color:rgba(255, 255, 255, 0);
  5587. border:none;
  5588. border-radius:0px;
  5589. -moz-box-shadow:none;
  5590. -webkit-box-shadow:none;
  5591. box-shadow:none;
  5592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:12px;
  5596. line-height:40px;
  5597. }
  5598. #u79257 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:1008px;
  5602. top:578px;
  5603. width:253px;
  5604. height:40px;
  5605. display:flex;
  5606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:12px;
  5610. line-height:40px;
  5611. }
  5612. #u79257 .text {
  5613. position:absolute;
  5614. align-self:flex-start;
  5615. padding:0px 0px 0px 0px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u79257_text {
  5620. border-width:0px;
  5621. white-space:nowrap;
  5622. text-transform:none;
  5623. }
  5624. #u79258 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:0px;
  5630. height:0px;
  5631. }
  5632. #u79259_div {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:104px;
  5638. height:40px;
  5639. background:inherit;
  5640. background-color:rgba(255, 255, 255, 1);
  5641. box-sizing:border-box;
  5642. border-width:1px;
  5643. border-style:solid;
  5644. border-color:rgba(215, 215, 215, 1);
  5645. border-radius:4px;
  5646. -moz-box-shadow:none;
  5647. -webkit-box-shadow:none;
  5648. box-shadow:none;
  5649. font-size:14px;
  5650. }
  5651. #u79259 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:781px;
  5655. top:578px;
  5656. width:104px;
  5657. height:40px;
  5658. display:flex;
  5659. font-size:14px;
  5660. }
  5661. #u79259 .text {
  5662. position:absolute;
  5663. align-self:center;
  5664. padding:2px 2px 2px 2px;
  5665. box-sizing:border-box;
  5666. width:100%;
  5667. }
  5668. #u79259_text {
  5669. border-width:0px;
  5670. word-wrap:break-word;
  5671. text-transform:none;
  5672. visibility:hidden;
  5673. }
  5674. #u79260_input {
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:98px;
  5679. height:31px;
  5680. padding:2px 2px 2px 2px;
  5681. font-family:'ArialMT', 'Arial', sans-serif;
  5682. font-weight:400;
  5683. font-style:normal;
  5684. font-size:14px;
  5685. letter-spacing:normal;
  5686. color:#AAAAAA;
  5687. vertical-align:none;
  5688. text-align:left;
  5689. text-transform:none;
  5690. background-color:transparent;
  5691. border-color:transparent;
  5692. }
  5693. #u79260_input.disabled {
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:98px;
  5698. height:31px;
  5699. padding:2px 2px 2px 2px;
  5700. font-family:'ArialMT', 'Arial', sans-serif;
  5701. font-weight:400;
  5702. font-style:normal;
  5703. font-size:14px;
  5704. letter-spacing:normal;
  5705. color:#AAAAAA;
  5706. vertical-align:none;
  5707. text-align:left;
  5708. text-transform:none;
  5709. background-color:transparent;
  5710. border-color:transparent;
  5711. }
  5712. #u79260_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:98px;
  5718. height:31px;
  5719. background:inherit;
  5720. background-color:rgba(255, 255, 255, 1);
  5721. border:none;
  5722. border-radius:0px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. font-size:14px;
  5727. color:#AAAAAA;
  5728. }
  5729. #u79260 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:784px;
  5733. top:583px;
  5734. width:98px;
  5735. height:31px;
  5736. display:flex;
  5737. font-size:14px;
  5738. color:#AAAAAA;
  5739. }
  5740. #u79260 .text {
  5741. position:absolute;
  5742. align-self:flex-start;
  5743. padding:2px 2px 2px 2px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u79260_div.disabled {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:98px;
  5753. height:31px;
  5754. background:inherit;
  5755. background-color:rgba(240, 240, 240, 1);
  5756. border:none;
  5757. border-radius:0px;
  5758. -moz-box-shadow:none;
  5759. -webkit-box-shadow:none;
  5760. box-shadow:none;
  5761. font-size:14px;
  5762. color:#AAAAAA;
  5763. }
  5764. #u79260.disabled {
  5765. }
  5766. .u79260_input_option {
  5767. font-size:14px;
  5768. }
  5769. #u79261 label {
  5770. left:0px;
  5771. width:100%;
  5772. }
  5773. #u79261_img {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:4px;
  5778. width:12px;
  5779. height:12px;
  5780. }
  5781. #u79261 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:690px;
  5785. top:588px;
  5786. width:100px;
  5787. height:20px;
  5788. display:flex;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:14px;
  5793. }
  5794. #u79261 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:0px 2px 0px 2px;
  5798. box-sizing:border-box;
  5799. }
  5800. #u79261_img.selected {
  5801. }
  5802. #u79261.selected {
  5803. }
  5804. #u79261_img.disabled {
  5805. }
  5806. #u79261.disabled {
  5807. }
  5808. #u79261_img.selectedDisabled {
  5809. }
  5810. #u79261.selectedDisabled {
  5811. }
  5812. #u79261_text {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:14px;
  5816. top:0px;
  5817. width:84px;
  5818. word-wrap:break-word;
  5819. text-transform:none;
  5820. }
  5821. #u79261_input {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:0px;
  5827. height:0px;
  5828. opacity:0;
  5829. }
  5830. #u79262_div {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:145px;
  5836. height:40px;
  5837. background:inherit;
  5838. background-color:rgba(255, 255, 255, 0);
  5839. border:none;
  5840. border-radius:0px;
  5841. -moz-box-shadow:none;
  5842. -webkit-box-shadow:none;
  5843. box-shadow:none;
  5844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5845. font-weight:500;
  5846. font-style:normal;
  5847. font-size:18px;
  5848. line-height:40px;
  5849. }
  5850. #u79262 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:670px;
  5854. top:648px;
  5855. width:145px;
  5856. height:40px;
  5857. display:flex;
  5858. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5859. font-weight:500;
  5860. font-style:normal;
  5861. font-size:18px;
  5862. line-height:40px;
  5863. }
  5864. #u79262 .text {
  5865. position:absolute;
  5866. align-self:flex-start;
  5867. padding:0px 0px 0px 0px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u79262_text {
  5872. border-width:0px;
  5873. white-space:nowrap;
  5874. text-transform:none;
  5875. }
  5876. #u79263_div {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:163px;
  5882. height:40px;
  5883. background:inherit;
  5884. background-color:rgba(255, 255, 255, 0);
  5885. border:none;
  5886. border-radius:0px;
  5887. -moz-box-shadow:none;
  5888. -webkit-box-shadow:none;
  5889. box-shadow:none;
  5890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:18px;
  5894. line-height:40px;
  5895. }
  5896. #u79263 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:690px;
  5900. top:708px;
  5901. width:163px;
  5902. height:40px;
  5903. display:flex;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:18px;
  5908. line-height:40px;
  5909. }
  5910. #u79263 .text {
  5911. position:absolute;
  5912. align-self:flex-start;
  5913. padding:0px 0px 0px 0px;
  5914. box-sizing:border-box;
  5915. width:100%;
  5916. }
  5917. #u79263_text {
  5918. border-width:0px;
  5919. white-space:nowrap;
  5920. text-transform:none;
  5921. }
  5922. #u79264_img {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:50px;
  5928. height:31px;
  5929. }
  5930. #u79264 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:1755px;
  5934. top:713px;
  5935. width:50px;
  5936. height:31px;
  5937. display:flex;
  5938. }
  5939. #u79264 .text {
  5940. position:absolute;
  5941. align-self:center;
  5942. padding:2px 2px 2px 2px;
  5943. box-sizing:border-box;
  5944. width:100%;
  5945. }
  5946. #u79264_text {
  5947. border-width:0px;
  5948. word-wrap:break-word;
  5949. text-transform:none;
  5950. visibility:hidden;
  5951. }
  5952. #u79265_div {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:85px;
  5958. height:40px;
  5959. background:inherit;
  5960. background-color:rgba(255, 255, 255, 0);
  5961. border:none;
  5962. border-radius:0px;
  5963. -moz-box-shadow:none;
  5964. -webkit-box-shadow:none;
  5965. box-shadow:none;
  5966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. color:#1890FF;
  5970. line-height:40px;
  5971. }
  5972. #u79265 {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:1660px;
  5976. top:708px;
  5977. width:85px;
  5978. height:40px;
  5979. display:flex;
  5980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. color:#1890FF;
  5984. line-height:40px;
  5985. }
  5986. #u79265 .text {
  5987. position:absolute;
  5988. align-self:flex-start;
  5989. padding:0px 0px 0px 0px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u79265_text {
  5994. border-width:0px;
  5995. white-space:nowrap;
  5996. text-transform:none;
  5997. }
  5998. #u79266_div {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:1160px;
  6004. height:60px;
  6005. background:inherit;
  6006. background-color:rgba(255, 255, 255, 1);
  6007. box-sizing:border-box;
  6008. border-width:1px;
  6009. border-style:solid;
  6010. border-color:rgba(215, 215, 215, 1);
  6011. border-radius:0px;
  6012. -moz-box-shadow:none;
  6013. -webkit-box-shadow:none;
  6014. box-shadow:none;
  6015. }
  6016. #u79266 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:670px;
  6020. top:768px;
  6021. width:1160px;
  6022. height:60px;
  6023. display:flex;
  6024. }
  6025. #u79266 .text {
  6026. position:absolute;
  6027. align-self:center;
  6028. padding:2px 2px 2px 2px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u79266_text {
  6033. border-width:0px;
  6034. word-wrap:break-word;
  6035. text-transform:none;
  6036. visibility:hidden;
  6037. }
  6038. #u79267_div {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:145px;
  6044. height:40px;
  6045. background:inherit;
  6046. background-color:rgba(255, 255, 255, 0);
  6047. border:none;
  6048. border-radius:0px;
  6049. -moz-box-shadow:none;
  6050. -webkit-box-shadow:none;
  6051. box-shadow:none;
  6052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:18px;
  6056. line-height:40px;
  6057. }
  6058. #u79267 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:690px;
  6062. top:778px;
  6063. width:145px;
  6064. height:40px;
  6065. display:flex;
  6066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6067. font-weight:400;
  6068. font-style:normal;
  6069. font-size:18px;
  6070. line-height:40px;
  6071. }
  6072. #u79267 .text {
  6073. position:absolute;
  6074. align-self:flex-start;
  6075. padding:0px 0px 0px 0px;
  6076. box-sizing:border-box;
  6077. width:100%;
  6078. }
  6079. #u79267_text {
  6080. border-width:0px;
  6081. white-space:nowrap;
  6082. text-transform:none;
  6083. }
  6084. #u79268_img {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:0px;
  6088. top:0px;
  6089. width:50px;
  6090. height:31px;
  6091. }
  6092. #u79268 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:1755px;
  6096. top:783px;
  6097. width:50px;
  6098. height:31px;
  6099. display:flex;
  6100. }
  6101. #u79268 .text {
  6102. position:absolute;
  6103. align-self:center;
  6104. padding:2px 2px 2px 2px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u79268_text {
  6109. border-width:0px;
  6110. word-wrap:break-word;
  6111. text-transform:none;
  6112. visibility:hidden;
  6113. }
  6114. #u79269_div {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:85px;
  6120. height:40px;
  6121. background:inherit;
  6122. background-color:rgba(255, 255, 255, 0);
  6123. border:none;
  6124. border-radius:0px;
  6125. -moz-box-shadow:none;
  6126. -webkit-box-shadow:none;
  6127. box-shadow:none;
  6128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6129. font-weight:400;
  6130. font-style:normal;
  6131. color:#1890FF;
  6132. line-height:40px;
  6133. }
  6134. #u79269 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:1660px;
  6138. top:778px;
  6139. width:85px;
  6140. height:40px;
  6141. display:flex;
  6142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. color:#1890FF;
  6146. line-height:40px;
  6147. }
  6148. #u79269 .text {
  6149. position:absolute;
  6150. align-self:flex-start;
  6151. padding:0px 0px 0px 0px;
  6152. box-sizing:border-box;
  6153. width:100%;
  6154. }
  6155. #u79269_text {
  6156. border-width:0px;
  6157. white-space:nowrap;
  6158. text-transform:none;
  6159. }
  6160. #u79270_div {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:1160px;
  6166. height:60px;
  6167. background:inherit;
  6168. background-color:rgba(255, 255, 255, 1);
  6169. box-sizing:border-box;
  6170. border-width:1px;
  6171. border-style:solid;
  6172. border-color:rgba(215, 215, 215, 1);
  6173. border-radius:0px;
  6174. -moz-box-shadow:none;
  6175. -webkit-box-shadow:none;
  6176. box-shadow:none;
  6177. }
  6178. #u79270 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:670px;
  6182. top:838px;
  6183. width:1160px;
  6184. height:60px;
  6185. display:flex;
  6186. }
  6187. #u79270 .text {
  6188. position:absolute;
  6189. align-self:center;
  6190. padding:2px 2px 2px 2px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u79270_text {
  6195. border-width:0px;
  6196. word-wrap:break-word;
  6197. text-transform:none;
  6198. visibility:hidden;
  6199. }
  6200. #u79271_div {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:217px;
  6206. height:40px;
  6207. background:inherit;
  6208. background-color:rgba(255, 255, 255, 0);
  6209. border:none;
  6210. border-radius:0px;
  6211. -moz-box-shadow:none;
  6212. -webkit-box-shadow:none;
  6213. box-shadow:none;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:18px;
  6218. line-height:40px;
  6219. }
  6220. #u79271 {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:690px;
  6224. top:848px;
  6225. width:217px;
  6226. height:40px;
  6227. display:flex;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:18px;
  6232. line-height:40px;
  6233. }
  6234. #u79271 .text {
  6235. position:absolute;
  6236. align-self:flex-start;
  6237. padding:0px 0px 0px 0px;
  6238. box-sizing:border-box;
  6239. width:100%;
  6240. }
  6241. #u79271_text {
  6242. border-width:0px;
  6243. white-space:nowrap;
  6244. text-transform:none;
  6245. }
  6246. #u79272_div {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:85px;
  6252. height:40px;
  6253. background:inherit;
  6254. background-color:rgba(255, 255, 255, 0);
  6255. border:none;
  6256. border-radius:0px;
  6257. -moz-box-shadow:none;
  6258. -webkit-box-shadow:none;
  6259. box-shadow:none;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. color:#1890FF;
  6264. line-height:40px;
  6265. }
  6266. #u79272 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:1660px;
  6270. top:848px;
  6271. width:85px;
  6272. height:40px;
  6273. display:flex;
  6274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. color:#1890FF;
  6278. line-height:40px;
  6279. }
  6280. #u79272 .text {
  6281. position:absolute;
  6282. align-self:flex-start;
  6283. padding:0px 0px 0px 0px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u79272_text {
  6288. border-width:0px;
  6289. white-space:nowrap;
  6290. text-transform:none;
  6291. }
  6292. #u79273_img {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:50px;
  6298. height:31px;
  6299. }
  6300. #u79273 {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:1755px;
  6304. top:853px;
  6305. width:50px;
  6306. height:31px;
  6307. display:flex;
  6308. }
  6309. #u79273 .text {
  6310. position:absolute;
  6311. align-self:center;
  6312. padding:2px 2px 2px 2px;
  6313. box-sizing:border-box;
  6314. width:100%;
  6315. }
  6316. #u79273_text {
  6317. border-width:0px;
  6318. word-wrap:break-word;
  6319. text-transform:none;
  6320. visibility:hidden;
  6321. }
  6322. #u79274_div {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:0px;
  6326. top:0px;
  6327. width:659px;
  6328. height:40px;
  6329. background:inherit;
  6330. background-color:rgba(255, 255, 255, 0);
  6331. border:none;
  6332. border-radius:0px;
  6333. -moz-box-shadow:none;
  6334. -webkit-box-shadow:none;
  6335. box-shadow:none;
  6336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. color:#D9001B;
  6340. line-height:40px;
  6341. }
  6342. #u79274 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:670px;
  6346. top:318px;
  6347. width:659px;
  6348. height:40px;
  6349. display:flex;
  6350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. color:#D9001B;
  6354. line-height:40px;
  6355. }
  6356. #u79274 .text {
  6357. position:absolute;
  6358. align-self:flex-start;
  6359. padding:0px 0px 0px 0px;
  6360. box-sizing:border-box;
  6361. width:100%;
  6362. }
  6363. #u79274_text {
  6364. border-width:0px;
  6365. white-space:nowrap;
  6366. text-transform:none;
  6367. }
  6368. #u79275_div {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:300px;
  6374. height:1106px;
  6375. background:inherit;
  6376. background-color:rgba(240, 242, 245, 1);
  6377. border:none;
  6378. border-radius:0px;
  6379. -moz-box-shadow:none;
  6380. -webkit-box-shadow:none;
  6381. box-shadow:none;
  6382. }
  6383. #u79275 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:330px;
  6387. top:51px;
  6388. width:300px;
  6389. height:1106px;
  6390. display:flex;
  6391. }
  6392. #u79275 .text {
  6393. position:absolute;
  6394. align-self:center;
  6395. padding:2px 2px 2px 2px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u79275_text {
  6400. border-width:0px;
  6401. word-wrap:break-word;
  6402. text-transform:none;
  6403. visibility:hidden;
  6404. }
  6405. #u79276_div {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:73px;
  6411. height:35px;
  6412. background:inherit;
  6413. background-color:rgba(255, 255, 255, 0);
  6414. border:none;
  6415. border-left:0px;
  6416. border-top:0px;
  6417. border-right:0px;
  6418. border-radius:0px;
  6419. border-bottom-right-radius:0px;
  6420. border-bottom-left-radius:0px;
  6421. -moz-box-shadow:none;
  6422. -webkit-box-shadow:none;
  6423. box-shadow:none;
  6424. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6425. font-weight:500;
  6426. font-style:normal;
  6427. font-size:18px;
  6428. }
  6429. #u79276 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:354px;
  6433. top:73px;
  6434. width:73px;
  6435. height:35px;
  6436. display:flex;
  6437. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6438. font-weight:500;
  6439. font-style:normal;
  6440. font-size:18px;
  6441. }
  6442. #u79276 .text {
  6443. position:absolute;
  6444. align-self:center;
  6445. padding:5px 0px 5px 0px;
  6446. box-sizing:border-box;
  6447. width:100%;
  6448. }
  6449. #u79276_text {
  6450. border-width:0px;
  6451. white-space:nowrap;
  6452. text-transform:none;
  6453. }
  6454. #u79277 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:0px;
  6460. height:0px;
  6461. }
  6462. #u79278_div {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:260px;
  6468. height:40px;
  6469. background:inherit;
  6470. background-color:rgba(255, 255, 255, 1);
  6471. box-sizing:border-box;
  6472. border-width:1px;
  6473. border-style:solid;
  6474. border-color:rgba(242, 242, 242, 1);
  6475. border-radius:4px;
  6476. -moz-box-shadow:none;
  6477. -webkit-box-shadow:none;
  6478. box-shadow:none;
  6479. font-family:'Microsoft YaHei', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:14px;
  6483. color:#CCCCCC;
  6484. text-align:left;
  6485. }
  6486. #u79278 {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:350px;
  6490. top:128px;
  6491. width:260px;
  6492. height:40px;
  6493. display:flex;
  6494. font-family:'Microsoft YaHei', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:14px;
  6498. color:#CCCCCC;
  6499. text-align:left;
  6500. }
  6501. #u79278 .text {
  6502. position:absolute;
  6503. align-self:center;
  6504. padding:2px 8px 2px 8px;
  6505. box-sizing:border-box;
  6506. width:100%;
  6507. }
  6508. #u79278_text {
  6509. border-width:0px;
  6510. word-wrap:break-word;
  6511. text-transform:none;
  6512. visibility:hidden;
  6513. }
  6514. #u79279_input {
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:217px;
  6519. height:33px;
  6520. padding:2px 2px 2px 2px;
  6521. font-family:'Microsoft YaHei', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:14px;
  6525. letter-spacing:normal;
  6526. color:#000000;
  6527. vertical-align:none;
  6528. text-align:left;
  6529. text-transform:none;
  6530. background-color:transparent;
  6531. border-color:transparent;
  6532. }
  6533. #u79279_input.disabled {
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:217px;
  6538. height:33px;
  6539. padding:2px 2px 2px 2px;
  6540. font-family:'Microsoft YaHei', sans-serif;
  6541. font-weight:400;
  6542. font-style:normal;
  6543. font-size:14px;
  6544. letter-spacing:normal;
  6545. color:#000000;
  6546. vertical-align:none;
  6547. text-align:left;
  6548. text-transform:none;
  6549. background-color:transparent;
  6550. border-color:transparent;
  6551. }
  6552. #u79279_div {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:217px;
  6558. height:33px;
  6559. background:inherit;
  6560. background-color:rgba(255, 255, 255, 1);
  6561. border:none;
  6562. border-radius:0px;
  6563. -moz-box-shadow:none;
  6564. -webkit-box-shadow:none;
  6565. box-shadow:none;
  6566. font-family:'Microsoft YaHei', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:14px;
  6570. }
  6571. #u79279 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:358px;
  6575. top:129px;
  6576. width:217px;
  6577. height:33px;
  6578. display:flex;
  6579. font-family:'Microsoft YaHei', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:14px;
  6583. }
  6584. #u79279 .text {
  6585. position:absolute;
  6586. align-self:center;
  6587. padding:2px 2px 2px 2px;
  6588. box-sizing:border-box;
  6589. width:100%;
  6590. }
  6591. #u79279_div.disabled {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:0px;
  6595. top:0px;
  6596. width:217px;
  6597. height:33px;
  6598. background:inherit;
  6599. background-color:rgba(240, 240, 240, 1);
  6600. border:none;
  6601. border-radius:0px;
  6602. -moz-box-shadow:none;
  6603. -webkit-box-shadow:none;
  6604. box-shadow:none;
  6605. font-family:'Microsoft YaHei', sans-serif;
  6606. font-weight:400;
  6607. font-style:normal;
  6608. font-size:14px;
  6609. }
  6610. #u79279.disabled {
  6611. }
  6612. #u79280_img {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:14px;
  6618. height:14px;
  6619. }
  6620. #u79280 {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:582px;
  6624. top:140px;
  6625. width:14px;
  6626. height:14px;
  6627. display:flex;
  6628. }
  6629. #u79280 .text {
  6630. position:absolute;
  6631. align-self:center;
  6632. padding:2px 2px 2px 2px;
  6633. box-sizing:border-box;
  6634. width:100%;
  6635. }
  6636. #u79280_text {
  6637. border-width:0px;
  6638. word-wrap:break-word;
  6639. text-transform:none;
  6640. visibility:hidden;
  6641. }
  6642. #u79281 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:0px;
  6648. height:0px;
  6649. }
  6650. #u79282_div {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:260px;
  6656. height:60px;
  6657. background:inherit;
  6658. background-color:rgba(0, 153, 255, 0.0980392156862745);
  6659. border:none;
  6660. border-radius:4px;
  6661. -moz-box-shadow:none;
  6662. -webkit-box-shadow:none;
  6663. box-shadow:none;
  6664. font-family:'Microsoft YaHei', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:14px;
  6668. color:#CCCCCC;
  6669. text-align:left;
  6670. }
  6671. #u79282 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:350px;
  6675. top:178px;
  6676. width:260px;
  6677. height:60px;
  6678. display:flex;
  6679. font-family:'Microsoft YaHei', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:14px;
  6683. color:#CCCCCC;
  6684. text-align:left;
  6685. }
  6686. #u79282 .text {
  6687. position:absolute;
  6688. align-self:center;
  6689. padding:2px 8px 2px 8px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u79282_text {
  6694. border-width:0px;
  6695. word-wrap:break-word;
  6696. text-transform:none;
  6697. visibility:hidden;
  6698. }
  6699. #u79283_div {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:19px;
  6705. height:18px;
  6706. background:inherit;
  6707. background-color:rgba(51, 51, 51, 1);
  6708. border:none;
  6709. border-radius:8px;
  6710. -moz-box-shadow:none;
  6711. -webkit-box-shadow:none;
  6712. box-shadow:none;
  6713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:10px;
  6717. color:#FFFFFF;
  6718. }
  6719. #u79283 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:365px;
  6723. top:200px;
  6724. width:19px;
  6725. height:18px;
  6726. display:flex;
  6727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6728. font-weight:400;
  6729. font-style:normal;
  6730. font-size:10px;
  6731. color:#FFFFFF;
  6732. }
  6733. #u79283 .text {
  6734. position:absolute;
  6735. align-self:center;
  6736. padding:0px 0px 0px 0px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u79283_text {
  6741. border-width:0px;
  6742. word-wrap:break-word;
  6743. text-transform:none;
  6744. }
  6745. #u79284_div {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:155px;
  6751. height:20px;
  6752. background:inherit;
  6753. background-color:rgba(51, 51, 51, 0);
  6754. border:none;
  6755. border-radius:4px;
  6756. -moz-box-shadow:none;
  6757. -webkit-box-shadow:none;
  6758. box-shadow:none;
  6759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6760. font-weight:400;
  6761. font-style:normal;
  6762. font-size:14px;
  6763. text-align:left;
  6764. }
  6765. #u79284 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:391px;
  6769. top:201px;
  6770. width:155px;
  6771. height:20px;
  6772. display:flex;
  6773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6774. font-weight:400;
  6775. font-style:normal;
  6776. font-size:14px;
  6777. text-align:left;
  6778. }
  6779. #u79284 .text {
  6780. position:absolute;
  6781. align-self:center;
  6782. padding:0px 0px 0px 0px;
  6783. box-sizing:border-box;
  6784. width:100%;
  6785. }
  6786. #u79284_text {
  6787. border-width:0px;
  6788. white-space:nowrap;
  6789. text-transform:none;
  6790. }
  6791. #u79285 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:0px;
  6797. height:0px;
  6798. }
  6799. #u79286_div {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:260px;
  6805. height:60px;
  6806. background:inherit;
  6807. background-color:rgba(242, 242, 242, 0);
  6808. border:none;
  6809. border-radius:4px;
  6810. -moz-box-shadow:none;
  6811. -webkit-box-shadow:none;
  6812. box-shadow:none;
  6813. font-family:'Microsoft YaHei', sans-serif;
  6814. font-weight:400;
  6815. font-style:normal;
  6816. font-size:14px;
  6817. color:#CCCCCC;
  6818. text-align:left;
  6819. }
  6820. #u79286 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:350px;
  6824. top:238px;
  6825. width:260px;
  6826. height:60px;
  6827. display:flex;
  6828. font-family:'Microsoft YaHei', sans-serif;
  6829. font-weight:400;
  6830. font-style:normal;
  6831. font-size:14px;
  6832. color:#CCCCCC;
  6833. text-align:left;
  6834. }
  6835. #u79286 .text {
  6836. position:absolute;
  6837. align-self:center;
  6838. padding:2px 8px 2px 8px;
  6839. box-sizing:border-box;
  6840. width:100%;
  6841. }
  6842. #u79286_text {
  6843. border-width:0px;
  6844. word-wrap:break-word;
  6845. text-transform:none;
  6846. visibility:hidden;
  6847. }
  6848. #u79287_div {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:0px;
  6852. top:0px;
  6853. width:19px;
  6854. height:18px;
  6855. background:inherit;
  6856. background-color:rgba(51, 51, 51, 0);
  6857. box-sizing:border-box;
  6858. border-width:1px;
  6859. border-style:solid;
  6860. border-color:rgba(51, 51, 51, 1);
  6861. border-radius:8px;
  6862. -moz-box-shadow:none;
  6863. -webkit-box-shadow:none;
  6864. box-shadow:none;
  6865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6866. font-weight:400;
  6867. font-style:normal;
  6868. font-size:10px;
  6869. }
  6870. #u79287 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:390px;
  6874. top:260px;
  6875. width:19px;
  6876. height:18px;
  6877. display:flex;
  6878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6879. font-weight:400;
  6880. font-style:normal;
  6881. font-size:10px;
  6882. }
  6883. #u79287 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:0px 0px 0px 0px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u79287_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. }
  6895. #u79288_div {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:161px;
  6901. height:20px;
  6902. background:inherit;
  6903. background-color:rgba(51, 51, 51, 0);
  6904. border:none;
  6905. border-radius:4px;
  6906. -moz-box-shadow:none;
  6907. -webkit-box-shadow:none;
  6908. box-shadow:none;
  6909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6910. font-weight:400;
  6911. font-style:normal;
  6912. font-size:14px;
  6913. text-align:left;
  6914. }
  6915. #u79288 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:415px;
  6919. top:261px;
  6920. width:161px;
  6921. height:20px;
  6922. display:flex;
  6923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6924. font-weight:400;
  6925. font-style:normal;
  6926. font-size:14px;
  6927. text-align:left;
  6928. }
  6929. #u79288 .text {
  6930. position:absolute;
  6931. align-self:center;
  6932. padding:0px 0px 0px 0px;
  6933. box-sizing:border-box;
  6934. width:100%;
  6935. }
  6936. #u79288_text {
  6937. border-width:0px;
  6938. white-space:nowrap;
  6939. text-transform:none;
  6940. }
  6941. #u79289 {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:0px;
  6945. top:0px;
  6946. width:0px;
  6947. height:0px;
  6948. }
  6949. #u79290_div {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:260px;
  6955. height:60px;
  6956. background:inherit;
  6957. background-color:rgba(0, 153, 255, 0);
  6958. border:none;
  6959. border-radius:4px;
  6960. -moz-box-shadow:none;
  6961. -webkit-box-shadow:none;
  6962. box-shadow:none;
  6963. font-family:'Microsoft YaHei', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:14px;
  6967. color:#CCCCCC;
  6968. text-align:left;
  6969. }
  6970. #u79290 {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:350px;
  6974. top:298px;
  6975. width:260px;
  6976. height:60px;
  6977. display:flex;
  6978. font-family:'Microsoft YaHei', sans-serif;
  6979. font-weight:400;
  6980. font-style:normal;
  6981. font-size:14px;
  6982. color:#CCCCCC;
  6983. text-align:left;
  6984. }
  6985. #u79290 .text {
  6986. position:absolute;
  6987. align-self:center;
  6988. padding:2px 8px 2px 8px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u79290_text {
  6993. border-width:0px;
  6994. word-wrap:break-word;
  6995. text-transform:none;
  6996. visibility:hidden;
  6997. }
  6998. #u79291_div {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:19px;
  7004. height:18px;
  7005. background:inherit;
  7006. background-color:rgba(51, 51, 51, 1);
  7007. border:none;
  7008. border-radius:8px;
  7009. -moz-box-shadow:none;
  7010. -webkit-box-shadow:none;
  7011. box-shadow:none;
  7012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7013. font-weight:400;
  7014. font-style:normal;
  7015. font-size:10px;
  7016. color:#FFFFFF;
  7017. }
  7018. #u79291 {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:365px;
  7022. top:320px;
  7023. width:19px;
  7024. height:18px;
  7025. display:flex;
  7026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7027. font-weight:400;
  7028. font-style:normal;
  7029. font-size:10px;
  7030. color:#FFFFFF;
  7031. }
  7032. #u79291 .text {
  7033. position:absolute;
  7034. align-self:center;
  7035. padding:0px 0px 0px 0px;
  7036. box-sizing:border-box;
  7037. width:100%;
  7038. }
  7039. #u79291_text {
  7040. border-width:0px;
  7041. word-wrap:break-word;
  7042. text-transform:none;
  7043. }
  7044. #u79292_div {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:180px;
  7050. height:20px;
  7051. background:inherit;
  7052. background-color:rgba(51, 51, 51, 0);
  7053. border:none;
  7054. border-radius:4px;
  7055. -moz-box-shadow:none;
  7056. -webkit-box-shadow:none;
  7057. box-shadow:none;
  7058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7059. font-weight:400;
  7060. font-style:normal;
  7061. font-size:14px;
  7062. text-align:left;
  7063. }
  7064. #u79292 {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:390px;
  7068. top:320px;
  7069. width:180px;
  7070. height:20px;
  7071. display:flex;
  7072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7073. font-weight:400;
  7074. font-style:normal;
  7075. font-size:14px;
  7076. text-align:left;
  7077. }
  7078. #u79292 .text {
  7079. position:absolute;
  7080. align-self:center;
  7081. padding:0px 0px 0px 0px;
  7082. box-sizing:border-box;
  7083. width:100%;
  7084. }
  7085. #u79292_text {
  7086. border-width:0px;
  7087. word-wrap:break-word;
  7088. text-transform:none;
  7089. }
  7090. #u79293 {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:0px;
  7096. height:0px;
  7097. }
  7098. #u79294_div {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:0px;
  7102. top:0px;
  7103. width:104px;
  7104. height:40px;
  7105. background:inherit;
  7106. background-color:rgba(255, 255, 255, 1);
  7107. box-sizing:border-box;
  7108. border-width:1px;
  7109. border-style:solid;
  7110. border-color:rgba(215, 215, 215, 1);
  7111. border-radius:4px;
  7112. -moz-box-shadow:none;
  7113. -webkit-box-shadow:none;
  7114. box-shadow:none;
  7115. font-size:14px;
  7116. }
  7117. #u79294 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:894px;
  7121. top:178px;
  7122. width:104px;
  7123. height:40px;
  7124. display:flex;
  7125. font-size:14px;
  7126. }
  7127. #u79294 .text {
  7128. position:absolute;
  7129. align-self:center;
  7130. padding:2px 2px 2px 2px;
  7131. box-sizing:border-box;
  7132. width:100%;
  7133. }
  7134. #u79294_text {
  7135. border-width:0px;
  7136. word-wrap:break-word;
  7137. text-transform:none;
  7138. visibility:hidden;
  7139. }
  7140. #u79295_input {
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:98px;
  7145. height:31px;
  7146. padding:2px 2px 2px 2px;
  7147. font-family:'ArialMT', 'Arial', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:14px;
  7151. letter-spacing:normal;
  7152. color:#AAAAAA;
  7153. vertical-align:none;
  7154. text-align:left;
  7155. text-transform:none;
  7156. background-color:transparent;
  7157. border-color:transparent;
  7158. }
  7159. #u79295_input.disabled {
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:98px;
  7164. height:31px;
  7165. padding:2px 2px 2px 2px;
  7166. font-family:'ArialMT', 'Arial', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:14px;
  7170. letter-spacing:normal;
  7171. color:#AAAAAA;
  7172. vertical-align:none;
  7173. text-align:left;
  7174. text-transform:none;
  7175. background-color:transparent;
  7176. border-color:transparent;
  7177. }
  7178. #u79295_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:98px;
  7184. height:31px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 1);
  7187. border:none;
  7188. border-radius:0px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-size:14px;
  7193. color:#AAAAAA;
  7194. }
  7195. #u79295 {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:897px;
  7199. top:183px;
  7200. width:98px;
  7201. height:31px;
  7202. display:flex;
  7203. font-size:14px;
  7204. color:#AAAAAA;
  7205. }
  7206. #u79295 .text {
  7207. position:absolute;
  7208. align-self:flex-start;
  7209. padding:2px 2px 2px 2px;
  7210. box-sizing:border-box;
  7211. width:100%;
  7212. }
  7213. #u79295_div.disabled {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:98px;
  7219. height:31px;
  7220. background:inherit;
  7221. background-color:rgba(240, 240, 240, 1);
  7222. border:none;
  7223. border-radius:0px;
  7224. -moz-box-shadow:none;
  7225. -webkit-box-shadow:none;
  7226. box-shadow:none;
  7227. font-size:14px;
  7228. color:#AAAAAA;
  7229. }
  7230. #u79295.disabled {
  7231. }
  7232. .u79295_input_option {
  7233. font-size:14px;
  7234. }
  7235. #u79296_div {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:0px;
  7240. width:253px;
  7241. height:40px;
  7242. background:inherit;
  7243. background-color:rgba(255, 255, 255, 0);
  7244. border:none;
  7245. border-radius:0px;
  7246. -moz-box-shadow:none;
  7247. -webkit-box-shadow:none;
  7248. box-shadow:none;
  7249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7250. font-weight:400;
  7251. font-style:normal;
  7252. font-size:12px;
  7253. line-height:40px;
  7254. }
  7255. #u79296 {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:1008px;
  7259. top:178px;
  7260. width:253px;
  7261. height:40px;
  7262. display:flex;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:12px;
  7267. line-height:40px;
  7268. }
  7269. #u79296 .text {
  7270. position:absolute;
  7271. align-self:flex-start;
  7272. padding:0px 0px 0px 0px;
  7273. box-sizing:border-box;
  7274. width:100%;
  7275. }
  7276. #u79296_text {
  7277. border-width:0px;
  7278. white-space:nowrap;
  7279. text-transform:none;
  7280. }
  7281. #u79297 label {
  7282. left:0px;
  7283. width:100%;
  7284. }
  7285. #u79297_img {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:4px;
  7290. width:12px;
  7291. height:12px;
  7292. }
  7293. #u79297 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:690px;
  7297. top:188px;
  7298. width:100px;
  7299. height:20px;
  7300. display:flex;
  7301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:14px;
  7305. }
  7306. #u79297 .text {
  7307. position:absolute;
  7308. align-self:center;
  7309. padding:0px 2px 0px 2px;
  7310. box-sizing:border-box;
  7311. }
  7312. #u79297_img.selected {
  7313. }
  7314. #u79297.selected {
  7315. }
  7316. #u79297_img.disabled {
  7317. }
  7318. #u79297.disabled {
  7319. }
  7320. #u79297_img.selectedDisabled {
  7321. }
  7322. #u79297.selectedDisabled {
  7323. }
  7324. #u79297_text {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:14px;
  7328. top:0px;
  7329. width:84px;
  7330. word-wrap:break-word;
  7331. text-transform:none;
  7332. }
  7333. #u79297_input {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:0px;
  7339. height:0px;
  7340. opacity:0;
  7341. }