styles.css 133 KB

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