styles.css 211 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2274px;
  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. #u36768_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u36768 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u36768 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u36768_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u36769_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u36769 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u36769 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u36769_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u36770 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u36771_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u36771 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u36771 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u36771_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u36772 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u36773_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u36773 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u36773 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u36773_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u36774_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u36774 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u36774 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u36774_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u36775 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u36776_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u36776 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u36776 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u36776_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u36777_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u36777 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u36777 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u36777_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u36778_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u36778 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u36778 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u36778_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u36779_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u36779 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u36779 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u36779_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u36780_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u36780 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u36780 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u36780_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u36781_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u36781 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u36781 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u36781_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u36782 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u36783_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u36783 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u36783 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u36783_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u36784_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u36784 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u36784 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u36784_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u36785 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u36786_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u36786 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u36786 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u36786_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u36787_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u36787 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u36787 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u36787_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u36788_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u36788 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u36788 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u36788_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u36789 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u36790_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u36790 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u36790 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u36790_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u36791_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u36791 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u36791 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u36791_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u36792 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u36793_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u36793 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u36793 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u36793_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u36794_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u36794 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u36794 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u36794_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u36795_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:740px;
  783. background:inherit;
  784. background-color:rgba(242, 242, 242, 1);
  785. border:none;
  786. border-top:0px;
  787. border-radius:25px;
  788. border-top-left-radius:0px;
  789. border-top-right-radius:0px;
  790. -moz-box-shadow:none;
  791. -webkit-box-shadow:none;
  792. box-shadow:none;
  793. }
  794. #u36795 {
  795. border-width:0px;
  796. position:absolute;
  797. left:29px;
  798. top:105px;
  799. width:375px;
  800. height:740px;
  801. display:flex;
  802. }
  803. #u36795 .text {
  804. position:absolute;
  805. align-self:center;
  806. padding:2px 2px 2px 2px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u36795_text {
  811. border-width:0px;
  812. word-wrap:break-word;
  813. text-transform:none;
  814. visibility:hidden;
  815. }
  816. #u36796 {
  817. border-width:0px;
  818. position:absolute;
  819. left:0px;
  820. top:0px;
  821. width:0px;
  822. height:0px;
  823. }
  824. #u36797_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:11px;
  830. height:18px;
  831. }
  832. #u36797 {
  833. border-width:0px;
  834. position:absolute;
  835. left:40px;
  836. top:79px;
  837. width:11px;
  838. height:18px;
  839. display:flex;
  840. }
  841. #u36797 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u36797_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u36798 {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:0px;
  860. height:0px;
  861. }
  862. #u36799_div {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:88px;
  868. height:32px;
  869. background:inherit;
  870. background-color:rgba(255, 255, 255, 1);
  871. box-sizing:border-box;
  872. border-width:1px;
  873. border-style:solid;
  874. border-color:rgba(242, 242, 242, 1);
  875. border-radius:33px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u36799 {
  881. border-width:0px;
  882. position:absolute;
  883. left:309px;
  884. top:71px;
  885. width:88px;
  886. height:32px;
  887. display:flex;
  888. }
  889. #u36799 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u36799_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u36800 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u36801_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:18px;
  916. height:18px;
  917. }
  918. #u36801 {
  919. border-width:0px;
  920. position:absolute;
  921. left:372px;
  922. top:78px;
  923. width:18px;
  924. height:18px;
  925. display:flex;
  926. }
  927. #u36801 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u36801_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u36802_img {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:6px;
  946. height:6px;
  947. }
  948. #u36802 {
  949. border-width:0px;
  950. position:absolute;
  951. left:378px;
  952. top:84px;
  953. width:6px;
  954. height:6px;
  955. display:flex;
  956. }
  957. #u36802 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u36802_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. visibility:hidden;
  969. }
  970. #u36803 {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:0px;
  976. height:0px;
  977. }
  978. #u36804_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:5px;
  984. height:5px;
  985. }
  986. #u36804 {
  987. border-width:0px;
  988. position:absolute;
  989. left:323px;
  990. top:85px;
  991. width:5px;
  992. height:5px;
  993. display:flex;
  994. }
  995. #u36804 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u36804_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u36805_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:5px;
  1014. height:5px;
  1015. }
  1016. #u36805 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:339px;
  1020. top:85px;
  1021. width:5px;
  1022. height:5px;
  1023. display:flex;
  1024. }
  1025. #u36805 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u36805_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u36806_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:7px;
  1044. height:7px;
  1045. }
  1046. #u36806 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:330px;
  1050. top:84px;
  1051. width:7px;
  1052. height:7px;
  1053. display:flex;
  1054. }
  1055. #u36806 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u36806_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u36807_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:19px;
  1074. height:2px;
  1075. }
  1076. #u36807 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:347px;
  1080. top:87px;
  1081. width:18px;
  1082. height:1px;
  1083. display:flex;
  1084. -webkit-transform:rotate(90deg);
  1085. -moz-transform:rotate(90deg);
  1086. -ms-transform:rotate(90deg);
  1087. transform:rotate(90deg);
  1088. }
  1089. #u36807 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u36807_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u36808 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:0px;
  1108. height:0px;
  1109. }
  1110. #u36809_img {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:355px;
  1116. height:200px;
  1117. }
  1118. #u36809 {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:39px;
  1122. top:207px;
  1123. width:355px;
  1124. height:200px;
  1125. display:flex;
  1126. }
  1127. #u36809 .text {
  1128. position:absolute;
  1129. align-self:center;
  1130. padding:2px 2px 2px 2px;
  1131. box-sizing:border-box;
  1132. width:100%;
  1133. }
  1134. #u36809_text {
  1135. border-width:0px;
  1136. word-wrap:break-word;
  1137. text-transform:none;
  1138. visibility:hidden;
  1139. }
  1140. #u36810_div {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:183px;
  1146. height:30px;
  1147. background:inherit;
  1148. background-color:rgba(255, 255, 255, 0);
  1149. border:none;
  1150. border-left:0px;
  1151. border-top:0px;
  1152. border-right:0px;
  1153. border-radius:0px;
  1154. border-bottom-right-radius:0px;
  1155. border-bottom-left-radius:0px;
  1156. -moz-box-shadow:none;
  1157. -webkit-box-shadow:none;
  1158. box-shadow:none;
  1159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1160. font-weight:500;
  1161. font-style:normal;
  1162. font-size:14px;
  1163. line-height:30px;
  1164. }
  1165. #u36810 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:55px;
  1169. top:213px;
  1170. width:183px;
  1171. height:30px;
  1172. display:flex;
  1173. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1174. font-weight:500;
  1175. font-style:normal;
  1176. font-size:14px;
  1177. line-height:30px;
  1178. }
  1179. #u36810 .text {
  1180. position:absolute;
  1181. align-self:flex-start;
  1182. padding:0px 0px 0px 0px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u36810_text {
  1187. border-width:0px;
  1188. white-space:nowrap;
  1189. text-transform:none;
  1190. }
  1191. #u36811_div {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:0px;
  1195. top:0px;
  1196. width:325px;
  1197. height:125px;
  1198. background:inherit;
  1199. background-color:rgba(255, 255, 255, 0);
  1200. border:none;
  1201. border-left:0px;
  1202. border-top:0px;
  1203. border-right:0px;
  1204. border-radius:0px;
  1205. border-bottom-right-radius:0px;
  1206. border-bottom-left-radius:0px;
  1207. -moz-box-shadow:none;
  1208. -webkit-box-shadow:none;
  1209. box-shadow:none;
  1210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1211. font-weight:400;
  1212. font-style:normal;
  1213. font-size:12px;
  1214. line-height:25px;
  1215. }
  1216. #u36811 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:55px;
  1220. top:243px;
  1221. width:325px;
  1222. height:125px;
  1223. display:flex;
  1224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1225. font-weight:400;
  1226. font-style:normal;
  1227. font-size:12px;
  1228. line-height:25px;
  1229. }
  1230. #u36811 .text {
  1231. position:absolute;
  1232. align-self:flex-start;
  1233. padding:0px 0px 0px 0px;
  1234. box-sizing:border-box;
  1235. width:100%;
  1236. }
  1237. #u36811_text {
  1238. border-width:0px;
  1239. word-wrap:break-word;
  1240. text-transform:none;
  1241. }
  1242. #u36812_div {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:0px;
  1246. top:0px;
  1247. width:9px;
  1248. height:9px;
  1249. background:inherit;
  1250. background-color:rgba(255, 255, 255, 0);
  1251. box-sizing:border-box;
  1252. border-width:1px;
  1253. border-style:solid;
  1254. border-color:rgba(127, 127, 127, 1);
  1255. border-right:0px;
  1256. border-bottom:0px;
  1257. border-radius:0px;
  1258. border-top-right-radius:0px;
  1259. border-bottom-left-radius:0px;
  1260. -moz-box-shadow:none;
  1261. -webkit-box-shadow:none;
  1262. box-shadow:none;
  1263. }
  1264. #u36812 {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:370px;
  1268. top:221px;
  1269. width:9px;
  1270. height:9px;
  1271. display:flex;
  1272. -webkit-transform:rotate(135deg);
  1273. -moz-transform:rotate(135deg);
  1274. -ms-transform:rotate(135deg);
  1275. transform:rotate(135deg);
  1276. }
  1277. #u36812 .text {
  1278. position:absolute;
  1279. align-self:center;
  1280. padding:2px 2px 2px 2px;
  1281. box-sizing:border-box;
  1282. width:100%;
  1283. }
  1284. #u36812_text {
  1285. border-width:0px;
  1286. word-wrap:break-word;
  1287. text-transform:none;
  1288. visibility:hidden;
  1289. }
  1290. #u36813_div {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:0px;
  1294. top:0px;
  1295. width:60px;
  1296. height:30px;
  1297. background:inherit;
  1298. background-color:rgba(255, 255, 255, 1);
  1299. box-sizing:border-box;
  1300. border-width:1px;
  1301. border-style:solid;
  1302. border-color:rgba(215, 215, 215, 1);
  1303. border-radius:63px;
  1304. -moz-box-shadow:none;
  1305. -webkit-box-shadow:none;
  1306. box-shadow:none;
  1307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1308. font-weight:400;
  1309. font-style:normal;
  1310. font-size:14px;
  1311. color:#555555;
  1312. }
  1313. #u36813 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:314px;
  1317. top:367px;
  1318. width:60px;
  1319. height:30px;
  1320. display:flex;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. font-size:14px;
  1325. color:#555555;
  1326. }
  1327. #u36813 .text {
  1328. position:absolute;
  1329. align-self:center;
  1330. padding:2px 2px 2px 2px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u36813_text {
  1335. border-width:0px;
  1336. word-wrap:break-word;
  1337. text-transform:none;
  1338. }
  1339. #u36814_div {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:60px;
  1345. height:30px;
  1346. background:inherit;
  1347. background-color:rgba(41, 143, 255, 1);
  1348. border:none;
  1349. border-radius:63px;
  1350. -moz-box-shadow:none;
  1351. -webkit-box-shadow:none;
  1352. box-shadow:none;
  1353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1354. font-weight:400;
  1355. font-style:normal;
  1356. font-size:14px;
  1357. color:#FFFFFF;
  1358. }
  1359. #u36814 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:244px;
  1363. top:367px;
  1364. width:60px;
  1365. height:30px;
  1366. display:flex;
  1367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1368. font-weight:400;
  1369. font-style:normal;
  1370. font-size:14px;
  1371. color:#FFFFFF;
  1372. }
  1373. #u36814 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u36814_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. }
  1385. #u36816_img {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:0px;
  1389. top:0px;
  1390. width:433px;
  1391. height:865px;
  1392. }
  1393. #u36816 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:457px;
  1397. top:0px;
  1398. width:433px;
  1399. height:865px;
  1400. display:flex;
  1401. }
  1402. #u36816 .text {
  1403. position:absolute;
  1404. align-self:center;
  1405. padding:2px 2px 2px 2px;
  1406. box-sizing:border-box;
  1407. width:100%;
  1408. }
  1409. #u36816_text {
  1410. border-width:0px;
  1411. word-wrap:break-word;
  1412. text-transform:none;
  1413. visibility:hidden;
  1414. }
  1415. #u36817_div {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:0px;
  1419. top:0px;
  1420. width:375px;
  1421. height:40px;
  1422. background:inherit;
  1423. background-color:rgba(255, 255, 255, 1);
  1424. border:none;
  1425. border-left:0px;
  1426. border-top:0px;
  1427. border-right:0px;
  1428. border-radius:0px;
  1429. border-bottom-right-radius:0px;
  1430. border-bottom-left-radius:0px;
  1431. -moz-box-shadow:none;
  1432. -webkit-box-shadow:none;
  1433. box-shadow:none;
  1434. }
  1435. #u36817 {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:486px;
  1439. top:67px;
  1440. width:375px;
  1441. height:40px;
  1442. display:flex;
  1443. }
  1444. #u36817 .text {
  1445. position:absolute;
  1446. align-self:center;
  1447. padding:2px 2px 2px 2px;
  1448. box-sizing:border-box;
  1449. width:100%;
  1450. }
  1451. #u36817_text {
  1452. border-width:0px;
  1453. word-wrap:break-word;
  1454. text-transform:none;
  1455. visibility:hidden;
  1456. }
  1457. #u36818 {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:0px;
  1461. top:0px;
  1462. width:0px;
  1463. height:0px;
  1464. }
  1465. #u36819_div {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:88px;
  1471. height:32px;
  1472. background:inherit;
  1473. background-color:rgba(255, 255, 255, 1);
  1474. box-sizing:border-box;
  1475. border-width:1px;
  1476. border-style:solid;
  1477. border-color:rgba(242, 242, 242, 1);
  1478. border-radius:33px;
  1479. -moz-box-shadow:none;
  1480. -webkit-box-shadow:none;
  1481. box-shadow:none;
  1482. }
  1483. #u36819 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:766px;
  1487. top:71px;
  1488. width:88px;
  1489. height:32px;
  1490. display:flex;
  1491. }
  1492. #u36819 .text {
  1493. position:absolute;
  1494. align-self:center;
  1495. padding:2px 2px 2px 2px;
  1496. box-sizing:border-box;
  1497. width:100%;
  1498. }
  1499. #u36819_text {
  1500. border-width:0px;
  1501. word-wrap:break-word;
  1502. text-transform:none;
  1503. visibility:hidden;
  1504. }
  1505. #u36820 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:0px;
  1509. top:0px;
  1510. width:0px;
  1511. height:0px;
  1512. }
  1513. #u36821_img {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:0px;
  1517. top:0px;
  1518. width:18px;
  1519. height:18px;
  1520. }
  1521. #u36821 {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:829px;
  1525. top:78px;
  1526. width:18px;
  1527. height:18px;
  1528. display:flex;
  1529. }
  1530. #u36821 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u36821_text {
  1538. border-width:0px;
  1539. word-wrap:break-word;
  1540. text-transform:none;
  1541. visibility:hidden;
  1542. }
  1543. #u36822_img {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:6px;
  1549. height:6px;
  1550. }
  1551. #u36822 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:835px;
  1555. top:84px;
  1556. width:6px;
  1557. height:6px;
  1558. display:flex;
  1559. }
  1560. #u36822 .text {
  1561. position:absolute;
  1562. align-self:center;
  1563. padding:2px 2px 2px 2px;
  1564. box-sizing:border-box;
  1565. width:100%;
  1566. }
  1567. #u36822_text {
  1568. border-width:0px;
  1569. word-wrap:break-word;
  1570. text-transform:none;
  1571. visibility:hidden;
  1572. }
  1573. #u36823 {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:0px;
  1577. top:0px;
  1578. width:0px;
  1579. height:0px;
  1580. }
  1581. #u36824_img {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:5px;
  1587. height:5px;
  1588. }
  1589. #u36824 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:780px;
  1593. top:85px;
  1594. width:5px;
  1595. height:5px;
  1596. display:flex;
  1597. }
  1598. #u36824 .text {
  1599. position:absolute;
  1600. align-self:center;
  1601. padding:2px 2px 2px 2px;
  1602. box-sizing:border-box;
  1603. width:100%;
  1604. }
  1605. #u36824_text {
  1606. border-width:0px;
  1607. word-wrap:break-word;
  1608. text-transform:none;
  1609. visibility:hidden;
  1610. }
  1611. #u36825_img {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:0px;
  1615. top:0px;
  1616. width:5px;
  1617. height:5px;
  1618. }
  1619. #u36825 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:796px;
  1623. top:85px;
  1624. width:5px;
  1625. height:5px;
  1626. display:flex;
  1627. }
  1628. #u36825 .text {
  1629. position:absolute;
  1630. align-self:center;
  1631. padding:2px 2px 2px 2px;
  1632. box-sizing:border-box;
  1633. width:100%;
  1634. }
  1635. #u36825_text {
  1636. border-width:0px;
  1637. word-wrap:break-word;
  1638. text-transform:none;
  1639. visibility:hidden;
  1640. }
  1641. #u36826_img {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:7px;
  1647. height:7px;
  1648. }
  1649. #u36826 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:787px;
  1653. top:84px;
  1654. width:7px;
  1655. height:7px;
  1656. display:flex;
  1657. }
  1658. #u36826 .text {
  1659. position:absolute;
  1660. align-self:center;
  1661. padding:2px 2px 2px 2px;
  1662. box-sizing:border-box;
  1663. width:100%;
  1664. }
  1665. #u36826_text {
  1666. border-width:0px;
  1667. word-wrap:break-word;
  1668. text-transform:none;
  1669. visibility:hidden;
  1670. }
  1671. #u36827_img {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:19px;
  1677. height:2px;
  1678. }
  1679. #u36827 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:804px;
  1683. top:87px;
  1684. width:18px;
  1685. height:1px;
  1686. display:flex;
  1687. -webkit-transform:rotate(90deg);
  1688. -moz-transform:rotate(90deg);
  1689. -ms-transform:rotate(90deg);
  1690. transform:rotate(90deg);
  1691. }
  1692. #u36827 .text {
  1693. position:absolute;
  1694. align-self:center;
  1695. padding:2px 2px 2px 2px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u36827_text {
  1700. border-width:0px;
  1701. word-wrap:break-word;
  1702. text-transform:none;
  1703. visibility:hidden;
  1704. }
  1705. #u36828_img {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:375px;
  1711. height:44px;
  1712. }
  1713. #u36828 {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:486px;
  1717. top:24px;
  1718. width:375px;
  1719. height:44px;
  1720. display:flex;
  1721. }
  1722. #u36828 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:2px 2px 2px 2px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u36828_text {
  1730. border-width:0px;
  1731. word-wrap:break-word;
  1732. text-transform:none;
  1733. visibility:hidden;
  1734. }
  1735. #u36829_div {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:375px;
  1741. height:50px;
  1742. background:inherit;
  1743. background-color:rgba(255, 255, 255, 1);
  1744. box-sizing:border-box;
  1745. border-width:1px;
  1746. border-style:solid;
  1747. border-color:rgba(242, 242, 242, 1);
  1748. border-radius:26px;
  1749. border-top-left-radius:0px;
  1750. border-top-right-radius:0px;
  1751. -moz-box-shadow:none;
  1752. -webkit-box-shadow:none;
  1753. box-shadow:none;
  1754. }
  1755. #u36829 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:486px;
  1759. top:788px;
  1760. width:375px;
  1761. height:50px;
  1762. display:flex;
  1763. }
  1764. #u36829 .text {
  1765. position:absolute;
  1766. align-self:center;
  1767. padding:2px 2px 2px 2px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u36829_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. visibility:hidden;
  1776. }
  1777. #u36830 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:0px;
  1783. height:0px;
  1784. }
  1785. #u36831_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:24px;
  1791. height:24px;
  1792. }
  1793. #u36831 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:526px;
  1797. top:792px;
  1798. width:24px;
  1799. height:24px;
  1800. display:flex;
  1801. font-size:8px;
  1802. }
  1803. #u36831 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 2px 2px 2px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u36831_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. }
  1815. #u36832_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:25px;
  1821. height:17px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 0);
  1824. border:none;
  1825. border-radius:0px;
  1826. -moz-box-shadow:none;
  1827. -webkit-box-shadow:none;
  1828. box-shadow:none;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:12px;
  1833. }
  1834. #u36832 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:526px;
  1838. top:817px;
  1839. width:25px;
  1840. height:17px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:12px;
  1846. }
  1847. #u36832 .text {
  1848. position:absolute;
  1849. align-self:flex-start;
  1850. padding:0px 0px 0px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u36832_text {
  1855. border-width:0px;
  1856. white-space:nowrap;
  1857. text-transform:none;
  1858. }
  1859. #u36833 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:0px;
  1865. height:0px;
  1866. }
  1867. #u36834_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:24px;
  1873. height:24px;
  1874. }
  1875. #u36834 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:796px;
  1879. top:794px;
  1880. width:24px;
  1881. height:24px;
  1882. display:flex;
  1883. font-size:8px;
  1884. }
  1885. #u36834 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 2px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u36834_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. }
  1897. #u36835_div {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:25px;
  1903. height:17px;
  1904. background:inherit;
  1905. background-color:rgba(255, 255, 255, 0);
  1906. border:none;
  1907. border-radius:0px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:12px;
  1915. }
  1916. #u36835 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:796px;
  1920. top:819px;
  1921. width:25px;
  1922. height:17px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:12px;
  1928. }
  1929. #u36835 .text {
  1930. position:absolute;
  1931. align-self:flex-start;
  1932. padding:0px 0px 0px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u36835_text {
  1937. border-width:0px;
  1938. white-space:nowrap;
  1939. text-transform:none;
  1940. }
  1941. #u36836_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:375px;
  1947. height:681px;
  1948. background:inherit;
  1949. background-color:rgba(242, 242, 242, 0.462745098039216);
  1950. border:none;
  1951. border-radius:0px;
  1952. -moz-box-shadow:none;
  1953. -webkit-box-shadow:none;
  1954. box-shadow:none;
  1955. }
  1956. #u36836 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:486px;
  1960. top:107px;
  1961. width:375px;
  1962. height:681px;
  1963. display:flex;
  1964. }
  1965. #u36836 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u36836_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. visibility:hidden;
  1977. }
  1978. #u36837 {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:0px;
  1984. height:0px;
  1985. }
  1986. #u36838_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:24px;
  1992. height:24px;
  1993. }
  1994. #u36838 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:708px;
  1998. top:792px;
  1999. width:24px;
  2000. height:24px;
  2001. display:flex;
  2002. font-size:8px;
  2003. }
  2004. #u36838 .text {
  2005. position:absolute;
  2006. align-self:center;
  2007. padding:2px 2px 2px 2px;
  2008. box-sizing:border-box;
  2009. width:100%;
  2010. }
  2011. #u36838_text {
  2012. border-width:0px;
  2013. word-wrap:break-word;
  2014. text-transform:none;
  2015. }
  2016. #u36839_div {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:0px;
  2020. top:0px;
  2021. width:37px;
  2022. height:17px;
  2023. background:inherit;
  2024. background-color:rgba(255, 255, 255, 0);
  2025. border:none;
  2026. border-radius:0px;
  2027. -moz-box-shadow:none;
  2028. -webkit-box-shadow:none;
  2029. box-shadow:none;
  2030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2031. font-weight:400;
  2032. font-style:normal;
  2033. font-size:12px;
  2034. }
  2035. #u36839 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:702px;
  2039. top:817px;
  2040. width:37px;
  2041. height:17px;
  2042. display:flex;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. }
  2048. #u36839 .text {
  2049. position:absolute;
  2050. align-self:flex-start;
  2051. padding:0px 0px 0px 0px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u36839_text {
  2056. border-width:0px;
  2057. white-space:nowrap;
  2058. text-transform:none;
  2059. }
  2060. #u36840 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:0px;
  2066. height:0px;
  2067. }
  2068. #u36841_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:24px;
  2074. height:24px;
  2075. }
  2076. #u36841 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:614px;
  2080. top:792px;
  2081. width:24px;
  2082. height:24px;
  2083. display:flex;
  2084. font-size:8px;
  2085. }
  2086. #u36841 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 2px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u36841_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. }
  2098. #u36842_div {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:37px;
  2104. height:17px;
  2105. background:inherit;
  2106. background-color:rgba(255, 255, 255, 0);
  2107. border:none;
  2108. border-radius:0px;
  2109. -moz-box-shadow:none;
  2110. -webkit-box-shadow:none;
  2111. box-shadow:none;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. }
  2117. #u36842 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:608px;
  2121. top:817px;
  2122. width:37px;
  2123. height:17px;
  2124. display:flex;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. font-size:12px;
  2129. }
  2130. #u36842 .text {
  2131. position:absolute;
  2132. align-self:flex-start;
  2133. padding:0px 0px 0px 0px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u36842_text {
  2138. border-width:0px;
  2139. white-space:nowrap;
  2140. text-transform:none;
  2141. }
  2142. #u36843_div {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:375px;
  2148. height:740px;
  2149. background:inherit;
  2150. background-color:rgba(242, 242, 242, 1);
  2151. border:none;
  2152. border-top:0px;
  2153. border-radius:25px;
  2154. border-top-left-radius:0px;
  2155. border-top-right-radius:0px;
  2156. -moz-box-shadow:none;
  2157. -webkit-box-shadow:none;
  2158. box-shadow:none;
  2159. }
  2160. #u36843 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:486px;
  2164. top:105px;
  2165. width:375px;
  2166. height:740px;
  2167. display:flex;
  2168. }
  2169. #u36843 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 2px 2px 2px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u36843_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. visibility:hidden;
  2181. }
  2182. #u36844 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:0px;
  2188. height:0px;
  2189. }
  2190. #u36845_img {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:11px;
  2196. height:18px;
  2197. }
  2198. #u36845 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:497px;
  2202. top:79px;
  2203. width:11px;
  2204. height:18px;
  2205. display:flex;
  2206. }
  2207. #u36845 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:2px 2px 2px 2px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u36845_text {
  2215. border-width:0px;
  2216. word-wrap:break-word;
  2217. text-transform:none;
  2218. visibility:hidden;
  2219. }
  2220. #u36846 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:0px;
  2226. height:0px;
  2227. }
  2228. #u36847_div {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:88px;
  2234. height:32px;
  2235. background:inherit;
  2236. background-color:rgba(255, 255, 255, 1);
  2237. box-sizing:border-box;
  2238. border-width:1px;
  2239. border-style:solid;
  2240. border-color:rgba(242, 242, 242, 1);
  2241. border-radius:33px;
  2242. -moz-box-shadow:none;
  2243. -webkit-box-shadow:none;
  2244. box-shadow:none;
  2245. }
  2246. #u36847 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:766px;
  2250. top:71px;
  2251. width:88px;
  2252. height:32px;
  2253. display:flex;
  2254. }
  2255. #u36847 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:2px 2px 2px 2px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u36847_text {
  2263. border-width:0px;
  2264. word-wrap:break-word;
  2265. text-transform:none;
  2266. visibility:hidden;
  2267. }
  2268. #u36848 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:0px;
  2274. height:0px;
  2275. }
  2276. #u36849_img {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:18px;
  2282. height:18px;
  2283. }
  2284. #u36849 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:829px;
  2288. top:78px;
  2289. width:18px;
  2290. height:18px;
  2291. display:flex;
  2292. }
  2293. #u36849 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 2px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u36849_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u36850_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:6px;
  2312. height:6px;
  2313. }
  2314. #u36850 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:835px;
  2318. top:84px;
  2319. width:6px;
  2320. height:6px;
  2321. display:flex;
  2322. }
  2323. #u36850 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 2px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u36850_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. visibility:hidden;
  2335. }
  2336. #u36851 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:0px;
  2342. height:0px;
  2343. }
  2344. #u36852_img {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:5px;
  2350. height:5px;
  2351. }
  2352. #u36852 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:780px;
  2356. top:85px;
  2357. width:5px;
  2358. height:5px;
  2359. display:flex;
  2360. }
  2361. #u36852 .text {
  2362. position:absolute;
  2363. align-self:center;
  2364. padding:2px 2px 2px 2px;
  2365. box-sizing:border-box;
  2366. width:100%;
  2367. }
  2368. #u36852_text {
  2369. border-width:0px;
  2370. word-wrap:break-word;
  2371. text-transform:none;
  2372. visibility:hidden;
  2373. }
  2374. #u36853_img {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:5px;
  2380. height:5px;
  2381. }
  2382. #u36853 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:796px;
  2386. top:85px;
  2387. width:5px;
  2388. height:5px;
  2389. display:flex;
  2390. }
  2391. #u36853 .text {
  2392. position:absolute;
  2393. align-self:center;
  2394. padding:2px 2px 2px 2px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u36853_text {
  2399. border-width:0px;
  2400. word-wrap:break-word;
  2401. text-transform:none;
  2402. visibility:hidden;
  2403. }
  2404. #u36854_img {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:7px;
  2410. height:7px;
  2411. }
  2412. #u36854 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:787px;
  2416. top:84px;
  2417. width:7px;
  2418. height:7px;
  2419. display:flex;
  2420. }
  2421. #u36854 .text {
  2422. position:absolute;
  2423. align-self:center;
  2424. padding:2px 2px 2px 2px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u36854_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. visibility:hidden;
  2433. }
  2434. #u36855_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:19px;
  2440. height:2px;
  2441. }
  2442. #u36855 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:804px;
  2446. top:87px;
  2447. width:18px;
  2448. height:1px;
  2449. display:flex;
  2450. -webkit-transform:rotate(90deg);
  2451. -moz-transform:rotate(90deg);
  2452. -ms-transform:rotate(90deg);
  2453. transform:rotate(90deg);
  2454. }
  2455. #u36855 .text {
  2456. position:absolute;
  2457. align-self:center;
  2458. padding:2px 2px 2px 2px;
  2459. box-sizing:border-box;
  2460. width:100%;
  2461. }
  2462. #u36855_text {
  2463. border-width:0px;
  2464. word-wrap:break-word;
  2465. text-transform:none;
  2466. visibility:hidden;
  2467. }
  2468. #u36856_div {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:12px;
  2474. height:12px;
  2475. background:inherit;
  2476. background-color:rgba(255, 255, 255, 0);
  2477. box-sizing:border-box;
  2478. border-width:2px;
  2479. border-style:solid;
  2480. border-color:rgba(51, 51, 51, 1);
  2481. border-right:0px;
  2482. border-bottom:0px;
  2483. border-radius:0px;
  2484. border-top-right-radius:0px;
  2485. border-bottom-left-radius:0px;
  2486. -moz-box-shadow:none;
  2487. -webkit-box-shadow:none;
  2488. box-shadow:none;
  2489. }
  2490. #u36856 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:501px;
  2494. top:82px;
  2495. width:12px;
  2496. height:12px;
  2497. display:flex;
  2498. -webkit-transform:rotate(315deg);
  2499. -moz-transform:rotate(315deg);
  2500. -ms-transform:rotate(315deg);
  2501. transform:rotate(315deg);
  2502. }
  2503. #u36856 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 2px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u36856_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. visibility:hidden;
  2515. }
  2516. #u36857_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:65px;
  2522. height:22px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 0);
  2525. border:none;
  2526. border-radius:0px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:16px;
  2534. color:#000000;
  2535. }
  2536. #u36857 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:638px;
  2540. top:77px;
  2541. width:65px;
  2542. height:22px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:16px;
  2548. color:#000000;
  2549. }
  2550. #u36857 .text {
  2551. position:absolute;
  2552. align-self:flex-start;
  2553. padding:0px 0px 0px 0px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u36857_text {
  2558. border-width:0px;
  2559. white-space:nowrap;
  2560. text-transform:none;
  2561. }
  2562. #u36859_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:433px;
  2568. height:865px;
  2569. }
  2570. #u36859 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:918px;
  2574. top:0px;
  2575. width:433px;
  2576. height:865px;
  2577. display:flex;
  2578. }
  2579. #u36859 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u36859_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. visibility:hidden;
  2591. }
  2592. #u36860_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:375px;
  2598. height:40px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 1);
  2601. border:none;
  2602. border-left:0px;
  2603. border-top:0px;
  2604. border-right:0px;
  2605. border-radius:0px;
  2606. border-bottom-right-radius:0px;
  2607. border-bottom-left-radius:0px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. }
  2612. #u36860 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:947px;
  2616. top:67px;
  2617. width:375px;
  2618. height:40px;
  2619. display:flex;
  2620. }
  2621. #u36860 .text {
  2622. position:absolute;
  2623. align-self:center;
  2624. padding:2px 2px 2px 2px;
  2625. box-sizing:border-box;
  2626. width:100%;
  2627. }
  2628. #u36860_text {
  2629. border-width:0px;
  2630. word-wrap:break-word;
  2631. text-transform:none;
  2632. visibility:hidden;
  2633. }
  2634. #u36861 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:0px;
  2640. height:0px;
  2641. }
  2642. #u36862_div {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:88px;
  2648. height:32px;
  2649. background:inherit;
  2650. background-color:rgba(255, 255, 255, 1);
  2651. box-sizing:border-box;
  2652. border-width:1px;
  2653. border-style:solid;
  2654. border-color:rgba(242, 242, 242, 1);
  2655. border-radius:33px;
  2656. -moz-box-shadow:none;
  2657. -webkit-box-shadow:none;
  2658. box-shadow:none;
  2659. }
  2660. #u36862 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:1227px;
  2664. top:71px;
  2665. width:88px;
  2666. height:32px;
  2667. display:flex;
  2668. }
  2669. #u36862 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 2px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u36862_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. visibility:hidden;
  2681. }
  2682. #u36863 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:0px;
  2688. height:0px;
  2689. }
  2690. #u36864_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:18px;
  2696. height:18px;
  2697. }
  2698. #u36864 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:1290px;
  2702. top:78px;
  2703. width:18px;
  2704. height:18px;
  2705. display:flex;
  2706. }
  2707. #u36864 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 2px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u36864_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u36865_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:6px;
  2726. height:6px;
  2727. }
  2728. #u36865 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:1296px;
  2732. top:84px;
  2733. width:6px;
  2734. height:6px;
  2735. display:flex;
  2736. }
  2737. #u36865 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 2px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u36865_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. visibility:hidden;
  2749. }
  2750. #u36866 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:0px;
  2756. height:0px;
  2757. }
  2758. #u36867_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:5px;
  2764. height:5px;
  2765. }
  2766. #u36867 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:1241px;
  2770. top:85px;
  2771. width:5px;
  2772. height:5px;
  2773. display:flex;
  2774. }
  2775. #u36867 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 2px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u36867_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u36868_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:5px;
  2794. height:5px;
  2795. }
  2796. #u36868 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:1257px;
  2800. top:85px;
  2801. width:5px;
  2802. height:5px;
  2803. display:flex;
  2804. }
  2805. #u36868 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u36868_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u36869_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:7px;
  2824. height:7px;
  2825. }
  2826. #u36869 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:1248px;
  2830. top:84px;
  2831. width:7px;
  2832. height:7px;
  2833. display:flex;
  2834. }
  2835. #u36869 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:2px 2px 2px 2px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u36869_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. visibility:hidden;
  2847. }
  2848. #u36870_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:19px;
  2854. height:2px;
  2855. }
  2856. #u36870 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:1265px;
  2860. top:87px;
  2861. width:18px;
  2862. height:1px;
  2863. display:flex;
  2864. -webkit-transform:rotate(90deg);
  2865. -moz-transform:rotate(90deg);
  2866. -ms-transform:rotate(90deg);
  2867. transform:rotate(90deg);
  2868. }
  2869. #u36870 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:2px 2px 2px 2px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u36870_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. visibility:hidden;
  2881. }
  2882. #u36871_img {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:375px;
  2888. height:44px;
  2889. }
  2890. #u36871 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:947px;
  2894. top:24px;
  2895. width:375px;
  2896. height:44px;
  2897. display:flex;
  2898. }
  2899. #u36871 .text {
  2900. position:absolute;
  2901. align-self:center;
  2902. padding:2px 2px 2px 2px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u36871_text {
  2907. border-width:0px;
  2908. word-wrap:break-word;
  2909. text-transform:none;
  2910. visibility:hidden;
  2911. }
  2912. #u36872_div {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:375px;
  2918. height:50px;
  2919. background:inherit;
  2920. background-color:rgba(255, 255, 255, 1);
  2921. box-sizing:border-box;
  2922. border-width:1px;
  2923. border-style:solid;
  2924. border-color:rgba(242, 242, 242, 1);
  2925. border-radius:26px;
  2926. border-top-left-radius:0px;
  2927. border-top-right-radius:0px;
  2928. -moz-box-shadow:none;
  2929. -webkit-box-shadow:none;
  2930. box-shadow:none;
  2931. }
  2932. #u36872 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:947px;
  2936. top:788px;
  2937. width:375px;
  2938. height:50px;
  2939. display:flex;
  2940. }
  2941. #u36872 .text {
  2942. position:absolute;
  2943. align-self:center;
  2944. padding:2px 2px 2px 2px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u36872_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. visibility:hidden;
  2953. }
  2954. #u36873 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:0px;
  2960. height:0px;
  2961. }
  2962. #u36874_img {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:24px;
  2968. height:24px;
  2969. }
  2970. #u36874 {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:987px;
  2974. top:792px;
  2975. width:24px;
  2976. height:24px;
  2977. display:flex;
  2978. font-size:8px;
  2979. }
  2980. #u36874 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 2px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u36874_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. }
  2992. #u36875_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:25px;
  2998. height:17px;
  2999. background:inherit;
  3000. background-color:rgba(255, 255, 255, 0);
  3001. border:none;
  3002. border-radius:0px;
  3003. -moz-box-shadow:none;
  3004. -webkit-box-shadow:none;
  3005. box-shadow:none;
  3006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:12px;
  3010. }
  3011. #u36875 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:987px;
  3015. top:817px;
  3016. width:25px;
  3017. height:17px;
  3018. display:flex;
  3019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:12px;
  3023. }
  3024. #u36875 .text {
  3025. position:absolute;
  3026. align-self:flex-start;
  3027. padding:0px 0px 0px 0px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u36875_text {
  3032. border-width:0px;
  3033. white-space:nowrap;
  3034. text-transform:none;
  3035. }
  3036. #u36876 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:0px;
  3042. height:0px;
  3043. }
  3044. #u36877_img {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:24px;
  3050. height:24px;
  3051. }
  3052. #u36877 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:1257px;
  3056. top:794px;
  3057. width:24px;
  3058. height:24px;
  3059. display:flex;
  3060. font-size:8px;
  3061. }
  3062. #u36877 .text {
  3063. position:absolute;
  3064. align-self:center;
  3065. padding:2px 2px 2px 2px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u36877_text {
  3070. border-width:0px;
  3071. word-wrap:break-word;
  3072. text-transform:none;
  3073. }
  3074. #u36878_div {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:25px;
  3080. height:17px;
  3081. background:inherit;
  3082. background-color:rgba(255, 255, 255, 0);
  3083. border:none;
  3084. border-radius:0px;
  3085. -moz-box-shadow:none;
  3086. -webkit-box-shadow:none;
  3087. box-shadow:none;
  3088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:12px;
  3092. }
  3093. #u36878 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:1257px;
  3097. top:819px;
  3098. width:25px;
  3099. height:17px;
  3100. display:flex;
  3101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:12px;
  3105. }
  3106. #u36878 .text {
  3107. position:absolute;
  3108. align-self:flex-start;
  3109. padding:0px 0px 0px 0px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u36878_text {
  3114. border-width:0px;
  3115. white-space:nowrap;
  3116. text-transform:none;
  3117. }
  3118. #u36879_div {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:375px;
  3124. height:681px;
  3125. background:inherit;
  3126. background-color:rgba(242, 242, 242, 0.462745098039216);
  3127. border:none;
  3128. border-radius:0px;
  3129. -moz-box-shadow:none;
  3130. -webkit-box-shadow:none;
  3131. box-shadow:none;
  3132. }
  3133. #u36879 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:947px;
  3137. top:107px;
  3138. width:375px;
  3139. height:681px;
  3140. display:flex;
  3141. }
  3142. #u36879 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 2px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u36879_text {
  3150. border-width:0px;
  3151. word-wrap:break-word;
  3152. text-transform:none;
  3153. visibility:hidden;
  3154. }
  3155. #u36880 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:0px;
  3161. height:0px;
  3162. }
  3163. #u36881_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:24px;
  3169. height:24px;
  3170. }
  3171. #u36881 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:1169px;
  3175. top:792px;
  3176. width:24px;
  3177. height:24px;
  3178. display:flex;
  3179. font-size:8px;
  3180. }
  3181. #u36881 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u36881_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. }
  3193. #u36882_div {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:37px;
  3199. height:17px;
  3200. background:inherit;
  3201. background-color:rgba(255, 255, 255, 0);
  3202. border:none;
  3203. border-radius:0px;
  3204. -moz-box-shadow:none;
  3205. -webkit-box-shadow:none;
  3206. box-shadow:none;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:12px;
  3211. }
  3212. #u36882 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:1163px;
  3216. top:817px;
  3217. width:37px;
  3218. height:17px;
  3219. display:flex;
  3220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3221. font-weight:400;
  3222. font-style:normal;
  3223. font-size:12px;
  3224. }
  3225. #u36882 .text {
  3226. position:absolute;
  3227. align-self:flex-start;
  3228. padding:0px 0px 0px 0px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u36882_text {
  3233. border-width:0px;
  3234. white-space:nowrap;
  3235. text-transform:none;
  3236. }
  3237. #u36883 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:0px;
  3243. height:0px;
  3244. }
  3245. #u36884_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:24px;
  3251. height:24px;
  3252. }
  3253. #u36884 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:1075px;
  3257. top:792px;
  3258. width:24px;
  3259. height:24px;
  3260. display:flex;
  3261. font-size:8px;
  3262. }
  3263. #u36884 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 2px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u36884_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. }
  3275. #u36885_div {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:37px;
  3281. height:17px;
  3282. background:inherit;
  3283. background-color:rgba(255, 255, 255, 0);
  3284. border:none;
  3285. border-radius:0px;
  3286. -moz-box-shadow:none;
  3287. -webkit-box-shadow:none;
  3288. box-shadow:none;
  3289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3290. font-weight:400;
  3291. font-style:normal;
  3292. font-size:12px;
  3293. }
  3294. #u36885 {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:1069px;
  3298. top:817px;
  3299. width:37px;
  3300. height:17px;
  3301. display:flex;
  3302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3303. font-weight:400;
  3304. font-style:normal;
  3305. font-size:12px;
  3306. }
  3307. #u36885 .text {
  3308. position:absolute;
  3309. align-self:flex-start;
  3310. padding:0px 0px 0px 0px;
  3311. box-sizing:border-box;
  3312. width:100%;
  3313. }
  3314. #u36885_text {
  3315. border-width:0px;
  3316. white-space:nowrap;
  3317. text-transform:none;
  3318. }
  3319. #u36886_div {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:375px;
  3325. height:740px;
  3326. background:inherit;
  3327. background-color:rgba(242, 242, 242, 1);
  3328. border:none;
  3329. border-top:0px;
  3330. border-radius:25px;
  3331. border-top-left-radius:0px;
  3332. border-top-right-radius:0px;
  3333. -moz-box-shadow:none;
  3334. -webkit-box-shadow:none;
  3335. box-shadow:none;
  3336. }
  3337. #u36886 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:947px;
  3341. top:105px;
  3342. width:375px;
  3343. height:740px;
  3344. display:flex;
  3345. }
  3346. #u36886 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 2px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u36886_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u36887 {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:0px;
  3365. height:0px;
  3366. }
  3367. #u36888_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:11px;
  3373. height:18px;
  3374. }
  3375. #u36888 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:958px;
  3379. top:79px;
  3380. width:11px;
  3381. height:18px;
  3382. display:flex;
  3383. }
  3384. #u36888 .text {
  3385. position:absolute;
  3386. align-self:center;
  3387. padding:2px 2px 2px 2px;
  3388. box-sizing:border-box;
  3389. width:100%;
  3390. }
  3391. #u36888_text {
  3392. border-width:0px;
  3393. word-wrap:break-word;
  3394. text-transform:none;
  3395. visibility:hidden;
  3396. }
  3397. #u36889 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:0px;
  3403. height:0px;
  3404. }
  3405. #u36890_div {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:88px;
  3411. height:32px;
  3412. background:inherit;
  3413. background-color:rgba(255, 255, 255, 1);
  3414. box-sizing:border-box;
  3415. border-width:1px;
  3416. border-style:solid;
  3417. border-color:rgba(242, 242, 242, 1);
  3418. border-radius:33px;
  3419. -moz-box-shadow:none;
  3420. -webkit-box-shadow:none;
  3421. box-shadow:none;
  3422. }
  3423. #u36890 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:1227px;
  3427. top:71px;
  3428. width:88px;
  3429. height:32px;
  3430. display:flex;
  3431. }
  3432. #u36890 .text {
  3433. position:absolute;
  3434. align-self:center;
  3435. padding:2px 2px 2px 2px;
  3436. box-sizing:border-box;
  3437. width:100%;
  3438. }
  3439. #u36890_text {
  3440. border-width:0px;
  3441. word-wrap:break-word;
  3442. text-transform:none;
  3443. visibility:hidden;
  3444. }
  3445. #u36891 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:0px;
  3451. height:0px;
  3452. }
  3453. #u36892_img {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:18px;
  3459. height:18px;
  3460. }
  3461. #u36892 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:1290px;
  3465. top:78px;
  3466. width:18px;
  3467. height:18px;
  3468. display:flex;
  3469. }
  3470. #u36892 .text {
  3471. position:absolute;
  3472. align-self:center;
  3473. padding:2px 2px 2px 2px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u36892_text {
  3478. border-width:0px;
  3479. word-wrap:break-word;
  3480. text-transform:none;
  3481. visibility:hidden;
  3482. }
  3483. #u36893_img {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:6px;
  3489. height:6px;
  3490. }
  3491. #u36893 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:1296px;
  3495. top:84px;
  3496. width:6px;
  3497. height:6px;
  3498. display:flex;
  3499. }
  3500. #u36893 .text {
  3501. position:absolute;
  3502. align-self:center;
  3503. padding:2px 2px 2px 2px;
  3504. box-sizing:border-box;
  3505. width:100%;
  3506. }
  3507. #u36893_text {
  3508. border-width:0px;
  3509. word-wrap:break-word;
  3510. text-transform:none;
  3511. visibility:hidden;
  3512. }
  3513. #u36894 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:0px;
  3519. height:0px;
  3520. }
  3521. #u36895_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:5px;
  3527. height:5px;
  3528. }
  3529. #u36895 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:1241px;
  3533. top:85px;
  3534. width:5px;
  3535. height:5px;
  3536. display:flex;
  3537. }
  3538. #u36895 .text {
  3539. position:absolute;
  3540. align-self:center;
  3541. padding:2px 2px 2px 2px;
  3542. box-sizing:border-box;
  3543. width:100%;
  3544. }
  3545. #u36895_text {
  3546. border-width:0px;
  3547. word-wrap:break-word;
  3548. text-transform:none;
  3549. visibility:hidden;
  3550. }
  3551. #u36896_img {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:5px;
  3557. height:5px;
  3558. }
  3559. #u36896 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:1257px;
  3563. top:85px;
  3564. width:5px;
  3565. height:5px;
  3566. display:flex;
  3567. }
  3568. #u36896 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:2px 2px 2px 2px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u36896_text {
  3576. border-width:0px;
  3577. word-wrap:break-word;
  3578. text-transform:none;
  3579. visibility:hidden;
  3580. }
  3581. #u36897_img {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:7px;
  3587. height:7px;
  3588. }
  3589. #u36897 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:1248px;
  3593. top:84px;
  3594. width:7px;
  3595. height:7px;
  3596. display:flex;
  3597. }
  3598. #u36897 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 2px 2px 2px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u36897_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. visibility:hidden;
  3610. }
  3611. #u36898_img {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:19px;
  3617. height:2px;
  3618. }
  3619. #u36898 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:1265px;
  3623. top:87px;
  3624. width:18px;
  3625. height:1px;
  3626. display:flex;
  3627. -webkit-transform:rotate(90deg);
  3628. -moz-transform:rotate(90deg);
  3629. -ms-transform:rotate(90deg);
  3630. transform:rotate(90deg);
  3631. }
  3632. #u36898 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 2px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u36898_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. visibility:hidden;
  3644. }
  3645. #u36899_div {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:12px;
  3651. height:12px;
  3652. background:inherit;
  3653. background-color:rgba(255, 255, 255, 0);
  3654. box-sizing:border-box;
  3655. border-width:2px;
  3656. border-style:solid;
  3657. border-color:rgba(51, 51, 51, 1);
  3658. border-right:0px;
  3659. border-bottom:0px;
  3660. border-radius:0px;
  3661. border-top-right-radius:0px;
  3662. border-bottom-left-radius:0px;
  3663. -moz-box-shadow:none;
  3664. -webkit-box-shadow:none;
  3665. box-shadow:none;
  3666. }
  3667. #u36899 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:962px;
  3671. top:81px;
  3672. width:12px;
  3673. height:12px;
  3674. display:flex;
  3675. -webkit-transform:rotate(315deg);
  3676. -moz-transform:rotate(315deg);
  3677. -ms-transform:rotate(315deg);
  3678. transform:rotate(315deg);
  3679. }
  3680. #u36899 .text {
  3681. position:absolute;
  3682. align-self:center;
  3683. padding:2px 2px 2px 2px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u36899_text {
  3688. border-width:0px;
  3689. word-wrap:break-word;
  3690. text-transform:none;
  3691. visibility:hidden;
  3692. }
  3693. #u36900_div {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:65px;
  3699. height:22px;
  3700. background:inherit;
  3701. background-color:rgba(255, 255, 255, 0);
  3702. border:none;
  3703. border-radius:0px;
  3704. -moz-box-shadow:none;
  3705. -webkit-box-shadow:none;
  3706. box-shadow:none;
  3707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:16px;
  3711. color:#000000;
  3712. }
  3713. #u36900 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:1099px;
  3717. top:76px;
  3718. width:65px;
  3719. height:22px;
  3720. display:flex;
  3721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. font-size:16px;
  3725. color:#000000;
  3726. }
  3727. #u36900 .text {
  3728. position:absolute;
  3729. align-self:flex-start;
  3730. padding:0px 0px 0px 0px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u36900_text {
  3735. border-width:0px;
  3736. white-space:nowrap;
  3737. text-transform:none;
  3738. }
  3739. #u36902_img {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:0px;
  3743. top:0px;
  3744. width:433px;
  3745. height:865px;
  3746. }
  3747. #u36902 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:1376px;
  3751. top:0px;
  3752. width:433px;
  3753. height:865px;
  3754. display:flex;
  3755. }
  3756. #u36902 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 2px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u36902_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. visibility:hidden;
  3768. }
  3769. #u36903_div {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:375px;
  3775. height:40px;
  3776. background:inherit;
  3777. background-color:rgba(255, 255, 255, 1);
  3778. border:none;
  3779. border-left:0px;
  3780. border-top:0px;
  3781. border-right:0px;
  3782. border-radius:0px;
  3783. border-bottom-right-radius:0px;
  3784. border-bottom-left-radius:0px;
  3785. -moz-box-shadow:none;
  3786. -webkit-box-shadow:none;
  3787. box-shadow:none;
  3788. }
  3789. #u36903 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:1405px;
  3793. top:67px;
  3794. width:375px;
  3795. height:40px;
  3796. display:flex;
  3797. }
  3798. #u36903 .text {
  3799. position:absolute;
  3800. align-self:center;
  3801. padding:2px 2px 2px 2px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u36903_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. visibility:hidden;
  3810. }
  3811. #u36904 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:0px;
  3817. height:0px;
  3818. }
  3819. #u36905_div {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:88px;
  3825. height:32px;
  3826. background:inherit;
  3827. background-color:rgba(255, 255, 255, 1);
  3828. box-sizing:border-box;
  3829. border-width:1px;
  3830. border-style:solid;
  3831. border-color:rgba(242, 242, 242, 1);
  3832. border-radius:33px;
  3833. -moz-box-shadow:none;
  3834. -webkit-box-shadow:none;
  3835. box-shadow:none;
  3836. }
  3837. #u36905 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:1685px;
  3841. top:71px;
  3842. width:88px;
  3843. height:32px;
  3844. display:flex;
  3845. }
  3846. #u36905 .text {
  3847. position:absolute;
  3848. align-self:center;
  3849. padding:2px 2px 2px 2px;
  3850. box-sizing:border-box;
  3851. width:100%;
  3852. }
  3853. #u36905_text {
  3854. border-width:0px;
  3855. word-wrap:break-word;
  3856. text-transform:none;
  3857. visibility:hidden;
  3858. }
  3859. #u36906 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:0px;
  3865. height:0px;
  3866. }
  3867. #u36907_img {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:18px;
  3873. height:18px;
  3874. }
  3875. #u36907 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:1748px;
  3879. top:78px;
  3880. width:18px;
  3881. height:18px;
  3882. display:flex;
  3883. }
  3884. #u36907 .text {
  3885. position:absolute;
  3886. align-self:center;
  3887. padding:2px 2px 2px 2px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u36907_text {
  3892. border-width:0px;
  3893. word-wrap:break-word;
  3894. text-transform:none;
  3895. visibility:hidden;
  3896. }
  3897. #u36908_img {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:0px;
  3901. top:0px;
  3902. width:6px;
  3903. height:6px;
  3904. }
  3905. #u36908 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:1754px;
  3909. top:84px;
  3910. width:6px;
  3911. height:6px;
  3912. display:flex;
  3913. }
  3914. #u36908 .text {
  3915. position:absolute;
  3916. align-self:center;
  3917. padding:2px 2px 2px 2px;
  3918. box-sizing:border-box;
  3919. width:100%;
  3920. }
  3921. #u36908_text {
  3922. border-width:0px;
  3923. word-wrap:break-word;
  3924. text-transform:none;
  3925. visibility:hidden;
  3926. }
  3927. #u36909 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:0px;
  3931. top:0px;
  3932. width:0px;
  3933. height:0px;
  3934. }
  3935. #u36910_img {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:5px;
  3941. height:5px;
  3942. }
  3943. #u36910 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:1699px;
  3947. top:85px;
  3948. width:5px;
  3949. height:5px;
  3950. display:flex;
  3951. }
  3952. #u36910 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 2px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u36910_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. visibility:hidden;
  3964. }
  3965. #u36911_img {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:5px;
  3971. height:5px;
  3972. }
  3973. #u36911 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:1715px;
  3977. top:85px;
  3978. width:5px;
  3979. height:5px;
  3980. display:flex;
  3981. }
  3982. #u36911 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 2px 2px 2px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u36911_text {
  3990. border-width:0px;
  3991. word-wrap:break-word;
  3992. text-transform:none;
  3993. visibility:hidden;
  3994. }
  3995. #u36912_img {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:7px;
  4001. height:7px;
  4002. }
  4003. #u36912 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:1706px;
  4007. top:84px;
  4008. width:7px;
  4009. height:7px;
  4010. display:flex;
  4011. }
  4012. #u36912 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 2px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u36912_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. visibility:hidden;
  4024. }
  4025. #u36913_img {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:19px;
  4031. height:2px;
  4032. }
  4033. #u36913 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:1723px;
  4037. top:87px;
  4038. width:18px;
  4039. height:1px;
  4040. display:flex;
  4041. -webkit-transform:rotate(90deg);
  4042. -moz-transform:rotate(90deg);
  4043. -ms-transform:rotate(90deg);
  4044. transform:rotate(90deg);
  4045. }
  4046. #u36913 .text {
  4047. position:absolute;
  4048. align-self:center;
  4049. padding:2px 2px 2px 2px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u36913_text {
  4054. border-width:0px;
  4055. word-wrap:break-word;
  4056. text-transform:none;
  4057. visibility:hidden;
  4058. }
  4059. #u36914_img {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:375px;
  4065. height:44px;
  4066. }
  4067. #u36914 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:1405px;
  4071. top:24px;
  4072. width:375px;
  4073. height:44px;
  4074. display:flex;
  4075. }
  4076. #u36914 .text {
  4077. position:absolute;
  4078. align-self:center;
  4079. padding:2px 2px 2px 2px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u36914_text {
  4084. border-width:0px;
  4085. word-wrap:break-word;
  4086. text-transform:none;
  4087. visibility:hidden;
  4088. }
  4089. #u36915_div {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:375px;
  4095. height:50px;
  4096. background:inherit;
  4097. background-color:rgba(255, 255, 255, 1);
  4098. box-sizing:border-box;
  4099. border-width:1px;
  4100. border-style:solid;
  4101. border-color:rgba(242, 242, 242, 1);
  4102. border-radius:26px;
  4103. border-top-left-radius:0px;
  4104. border-top-right-radius:0px;
  4105. -moz-box-shadow:none;
  4106. -webkit-box-shadow:none;
  4107. box-shadow:none;
  4108. }
  4109. #u36915 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:1405px;
  4113. top:788px;
  4114. width:375px;
  4115. height:50px;
  4116. display:flex;
  4117. }
  4118. #u36915 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 2px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u36915_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. visibility:hidden;
  4130. }
  4131. #u36916 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:0px;
  4137. height:0px;
  4138. }
  4139. #u36917_img {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:0px;
  4143. top:0px;
  4144. width:24px;
  4145. height:24px;
  4146. }
  4147. #u36917 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:1445px;
  4151. top:792px;
  4152. width:24px;
  4153. height:24px;
  4154. display:flex;
  4155. font-size:8px;
  4156. }
  4157. #u36917 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 2px 2px 2px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u36917_text {
  4165. border-width:0px;
  4166. word-wrap:break-word;
  4167. text-transform:none;
  4168. }
  4169. #u36918_div {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:25px;
  4175. height:17px;
  4176. background:inherit;
  4177. background-color:rgba(255, 255, 255, 0);
  4178. border:none;
  4179. border-radius:0px;
  4180. -moz-box-shadow:none;
  4181. -webkit-box-shadow:none;
  4182. box-shadow:none;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:12px;
  4187. }
  4188. #u36918 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:1445px;
  4192. top:817px;
  4193. width:25px;
  4194. height:17px;
  4195. display:flex;
  4196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:12px;
  4200. }
  4201. #u36918 .text {
  4202. position:absolute;
  4203. align-self:flex-start;
  4204. padding:0px 0px 0px 0px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u36918_text {
  4209. border-width:0px;
  4210. white-space:nowrap;
  4211. text-transform:none;
  4212. }
  4213. #u36919 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:0px;
  4219. height:0px;
  4220. }
  4221. #u36920_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:24px;
  4227. height:24px;
  4228. }
  4229. #u36920 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:1715px;
  4233. top:794px;
  4234. width:24px;
  4235. height:24px;
  4236. display:flex;
  4237. font-size:8px;
  4238. }
  4239. #u36920 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 2px 2px 2px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u36920_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. }
  4251. #u36921_div {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:25px;
  4257. height:17px;
  4258. background:inherit;
  4259. background-color:rgba(255, 255, 255, 0);
  4260. border:none;
  4261. border-radius:0px;
  4262. -moz-box-shadow:none;
  4263. -webkit-box-shadow:none;
  4264. box-shadow:none;
  4265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:12px;
  4269. }
  4270. #u36921 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:1715px;
  4274. top:819px;
  4275. width:25px;
  4276. height:17px;
  4277. display:flex;
  4278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:12px;
  4282. }
  4283. #u36921 .text {
  4284. position:absolute;
  4285. align-self:flex-start;
  4286. padding:0px 0px 0px 0px;
  4287. box-sizing:border-box;
  4288. width:100%;
  4289. }
  4290. #u36921_text {
  4291. border-width:0px;
  4292. white-space:nowrap;
  4293. text-transform:none;
  4294. }
  4295. #u36922_div {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:375px;
  4301. height:681px;
  4302. background:inherit;
  4303. background-color:rgba(242, 242, 242, 0.462745098039216);
  4304. border:none;
  4305. border-radius:0px;
  4306. -moz-box-shadow:none;
  4307. -webkit-box-shadow:none;
  4308. box-shadow:none;
  4309. }
  4310. #u36922 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:1405px;
  4314. top:107px;
  4315. width:375px;
  4316. height:681px;
  4317. display:flex;
  4318. }
  4319. #u36922 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 2px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u36922_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u36923 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:0px;
  4338. height:0px;
  4339. }
  4340. #u36924_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:24px;
  4346. height:24px;
  4347. }
  4348. #u36924 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:1627px;
  4352. top:792px;
  4353. width:24px;
  4354. height:24px;
  4355. display:flex;
  4356. font-size:8px;
  4357. }
  4358. #u36924 .text {
  4359. position:absolute;
  4360. align-self:center;
  4361. padding:2px 2px 2px 2px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u36924_text {
  4366. border-width:0px;
  4367. word-wrap:break-word;
  4368. text-transform:none;
  4369. }
  4370. #u36925_div {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:37px;
  4376. height:17px;
  4377. background:inherit;
  4378. background-color:rgba(255, 255, 255, 0);
  4379. border:none;
  4380. border-radius:0px;
  4381. -moz-box-shadow:none;
  4382. -webkit-box-shadow:none;
  4383. box-shadow:none;
  4384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:12px;
  4388. }
  4389. #u36925 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:1621px;
  4393. top:817px;
  4394. width:37px;
  4395. height:17px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:12px;
  4401. }
  4402. #u36925 .text {
  4403. position:absolute;
  4404. align-self:flex-start;
  4405. padding:0px 0px 0px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u36925_text {
  4410. border-width:0px;
  4411. white-space:nowrap;
  4412. text-transform:none;
  4413. }
  4414. #u36926 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:0px;
  4420. height:0px;
  4421. }
  4422. #u36927_img {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:24px;
  4428. height:24px;
  4429. }
  4430. #u36927 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:1533px;
  4434. top:792px;
  4435. width:24px;
  4436. height:24px;
  4437. display:flex;
  4438. font-size:8px;
  4439. }
  4440. #u36927 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 2px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u36927_text {
  4448. border-width:0px;
  4449. word-wrap:break-word;
  4450. text-transform:none;
  4451. }
  4452. #u36928_div {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:37px;
  4458. height:17px;
  4459. background:inherit;
  4460. background-color:rgba(255, 255, 255, 0);
  4461. border:none;
  4462. border-radius:0px;
  4463. -moz-box-shadow:none;
  4464. -webkit-box-shadow:none;
  4465. box-shadow:none;
  4466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. font-size:12px;
  4470. }
  4471. #u36928 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:1527px;
  4475. top:817px;
  4476. width:37px;
  4477. height:17px;
  4478. display:flex;
  4479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:12px;
  4483. }
  4484. #u36928 .text {
  4485. position:absolute;
  4486. align-self:flex-start;
  4487. padding:0px 0px 0px 0px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u36928_text {
  4492. border-width:0px;
  4493. white-space:nowrap;
  4494. text-transform:none;
  4495. }
  4496. #u36929_div {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:375px;
  4502. height:740px;
  4503. background:inherit;
  4504. background-color:rgba(242, 242, 242, 1);
  4505. border:none;
  4506. border-top:0px;
  4507. border-radius:25px;
  4508. border-top-left-radius:0px;
  4509. border-top-right-radius:0px;
  4510. -moz-box-shadow:none;
  4511. -webkit-box-shadow:none;
  4512. box-shadow:none;
  4513. }
  4514. #u36929 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:1405px;
  4518. top:105px;
  4519. width:375px;
  4520. height:740px;
  4521. display:flex;
  4522. }
  4523. #u36929 .text {
  4524. position:absolute;
  4525. align-self:center;
  4526. padding:2px 2px 2px 2px;
  4527. box-sizing:border-box;
  4528. width:100%;
  4529. }
  4530. #u36929_text {
  4531. border-width:0px;
  4532. word-wrap:break-word;
  4533. text-transform:none;
  4534. visibility:hidden;
  4535. }
  4536. #u36930 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:0px;
  4542. height:0px;
  4543. }
  4544. #u36931_img {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:11px;
  4550. height:18px;
  4551. }
  4552. #u36931 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:1416px;
  4556. top:79px;
  4557. width:11px;
  4558. height:18px;
  4559. display:flex;
  4560. }
  4561. #u36931 .text {
  4562. position:absolute;
  4563. align-self:center;
  4564. padding:2px 2px 2px 2px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u36931_text {
  4569. border-width:0px;
  4570. word-wrap:break-word;
  4571. text-transform:none;
  4572. visibility:hidden;
  4573. }
  4574. #u36932 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:0px;
  4580. height:0px;
  4581. }
  4582. #u36933_div {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:88px;
  4588. height:32px;
  4589. background:inherit;
  4590. background-color:rgba(255, 255, 255, 1);
  4591. box-sizing:border-box;
  4592. border-width:1px;
  4593. border-style:solid;
  4594. border-color:rgba(242, 242, 242, 1);
  4595. border-radius:33px;
  4596. -moz-box-shadow:none;
  4597. -webkit-box-shadow:none;
  4598. box-shadow:none;
  4599. }
  4600. #u36933 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:1685px;
  4604. top:71px;
  4605. width:88px;
  4606. height:32px;
  4607. display:flex;
  4608. }
  4609. #u36933 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 2px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u36933_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u36934 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:0px;
  4628. height:0px;
  4629. }
  4630. #u36935_img {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:18px;
  4636. height:18px;
  4637. }
  4638. #u36935 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:1748px;
  4642. top:78px;
  4643. width:18px;
  4644. height:18px;
  4645. display:flex;
  4646. }
  4647. #u36935 .text {
  4648. position:absolute;
  4649. align-self:center;
  4650. padding:2px 2px 2px 2px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u36935_text {
  4655. border-width:0px;
  4656. word-wrap:break-word;
  4657. text-transform:none;
  4658. visibility:hidden;
  4659. }
  4660. #u36936_img {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:6px;
  4666. height:6px;
  4667. }
  4668. #u36936 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:1754px;
  4672. top:84px;
  4673. width:6px;
  4674. height:6px;
  4675. display:flex;
  4676. }
  4677. #u36936 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 2px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u36936_text {
  4685. border-width:0px;
  4686. word-wrap:break-word;
  4687. text-transform:none;
  4688. visibility:hidden;
  4689. }
  4690. #u36937 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:0px;
  4696. height:0px;
  4697. }
  4698. #u36938_img {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:5px;
  4704. height:5px;
  4705. }
  4706. #u36938 {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:1699px;
  4710. top:85px;
  4711. width:5px;
  4712. height:5px;
  4713. display:flex;
  4714. }
  4715. #u36938 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 2px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u36938_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u36939_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:5px;
  4734. height:5px;
  4735. }
  4736. #u36939 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:1715px;
  4740. top:85px;
  4741. width:5px;
  4742. height:5px;
  4743. display:flex;
  4744. }
  4745. #u36939 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 2px 2px 2px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u36939_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. visibility:hidden;
  4757. }
  4758. #u36940_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:7px;
  4764. height:7px;
  4765. }
  4766. #u36940 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:1706px;
  4770. top:84px;
  4771. width:7px;
  4772. height:7px;
  4773. display:flex;
  4774. }
  4775. #u36940 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 2px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u36940_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u36941_img {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:19px;
  4794. height:2px;
  4795. }
  4796. #u36941 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:1723px;
  4800. top:87px;
  4801. width:18px;
  4802. height:1px;
  4803. display:flex;
  4804. -webkit-transform:rotate(90deg);
  4805. -moz-transform:rotate(90deg);
  4806. -ms-transform:rotate(90deg);
  4807. transform:rotate(90deg);
  4808. }
  4809. #u36941 .text {
  4810. position:absolute;
  4811. align-self:center;
  4812. padding:2px 2px 2px 2px;
  4813. box-sizing:border-box;
  4814. width:100%;
  4815. }
  4816. #u36941_text {
  4817. border-width:0px;
  4818. word-wrap:break-word;
  4819. text-transform:none;
  4820. visibility:hidden;
  4821. }
  4822. #u36942_div {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:12px;
  4828. height:12px;
  4829. background:inherit;
  4830. background-color:rgba(255, 255, 255, 0);
  4831. box-sizing:border-box;
  4832. border-width:2px;
  4833. border-style:solid;
  4834. border-color:rgba(51, 51, 51, 1);
  4835. border-right:0px;
  4836. border-bottom:0px;
  4837. border-radius:0px;
  4838. border-top-right-radius:0px;
  4839. border-bottom-left-radius:0px;
  4840. -moz-box-shadow:none;
  4841. -webkit-box-shadow:none;
  4842. box-shadow:none;
  4843. }
  4844. #u36942 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:1420px;
  4848. top:81px;
  4849. width:12px;
  4850. height:12px;
  4851. display:flex;
  4852. -webkit-transform:rotate(315deg);
  4853. -moz-transform:rotate(315deg);
  4854. -ms-transform:rotate(315deg);
  4855. transform:rotate(315deg);
  4856. }
  4857. #u36942 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:2px 2px 2px 2px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u36942_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. visibility:hidden;
  4869. }
  4870. #u36943_div {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:65px;
  4876. height:22px;
  4877. background:inherit;
  4878. background-color:rgba(255, 255, 255, 0);
  4879. border:none;
  4880. border-radius:0px;
  4881. -moz-box-shadow:none;
  4882. -webkit-box-shadow:none;
  4883. box-shadow:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:16px;
  4888. color:#000000;
  4889. }
  4890. #u36943 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:1557px;
  4894. top:76px;
  4895. width:65px;
  4896. height:22px;
  4897. display:flex;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:16px;
  4902. color:#000000;
  4903. }
  4904. #u36943 .text {
  4905. position:absolute;
  4906. align-self:flex-start;
  4907. padding:0px 0px 0px 0px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u36943_text {
  4912. border-width:0px;
  4913. white-space:nowrap;
  4914. text-transform:none;
  4915. }
  4916. #u36945_img {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:433px;
  4922. height:865px;
  4923. }
  4924. #u36945 {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:1841px;
  4928. top:0px;
  4929. width:433px;
  4930. height:865px;
  4931. display:flex;
  4932. }
  4933. #u36945 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:2px 2px 2px 2px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u36945_text {
  4941. border-width:0px;
  4942. word-wrap:break-word;
  4943. text-transform:none;
  4944. visibility:hidden;
  4945. }
  4946. #u36946_div {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:375px;
  4952. height:40px;
  4953. background:inherit;
  4954. background-color:rgba(255, 255, 255, 1);
  4955. border:none;
  4956. border-left:0px;
  4957. border-top:0px;
  4958. border-right:0px;
  4959. border-radius:0px;
  4960. border-bottom-right-radius:0px;
  4961. border-bottom-left-radius:0px;
  4962. -moz-box-shadow:none;
  4963. -webkit-box-shadow:none;
  4964. box-shadow:none;
  4965. }
  4966. #u36946 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:1870px;
  4970. top:67px;
  4971. width:375px;
  4972. height:40px;
  4973. display:flex;
  4974. }
  4975. #u36946 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:2px 2px 2px 2px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u36946_text {
  4983. border-width:0px;
  4984. word-wrap:break-word;
  4985. text-transform:none;
  4986. visibility:hidden;
  4987. }
  4988. #u36947 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:0px;
  4994. height:0px;
  4995. }
  4996. #u36948_div {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:88px;
  5002. height:32px;
  5003. background:inherit;
  5004. background-color:rgba(255, 255, 255, 1);
  5005. box-sizing:border-box;
  5006. border-width:1px;
  5007. border-style:solid;
  5008. border-color:rgba(242, 242, 242, 1);
  5009. border-radius:33px;
  5010. -moz-box-shadow:none;
  5011. -webkit-box-shadow:none;
  5012. box-shadow:none;
  5013. }
  5014. #u36948 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:2150px;
  5018. top:71px;
  5019. width:88px;
  5020. height:32px;
  5021. display:flex;
  5022. }
  5023. #u36948 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 2px 2px 2px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u36948_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u36949 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:0px;
  5042. height:0px;
  5043. }
  5044. #u36950_img {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:18px;
  5050. height:18px;
  5051. }
  5052. #u36950 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:2213px;
  5056. top:78px;
  5057. width:18px;
  5058. height:18px;
  5059. display:flex;
  5060. }
  5061. #u36950 .text {
  5062. position:absolute;
  5063. align-self:center;
  5064. padding:2px 2px 2px 2px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u36950_text {
  5069. border-width:0px;
  5070. word-wrap:break-word;
  5071. text-transform:none;
  5072. visibility:hidden;
  5073. }
  5074. #u36951_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:6px;
  5080. height:6px;
  5081. }
  5082. #u36951 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:2219px;
  5086. top:84px;
  5087. width:6px;
  5088. height:6px;
  5089. display:flex;
  5090. }
  5091. #u36951 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 2px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u36951_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u36952 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:0px;
  5110. height:0px;
  5111. }
  5112. #u36953_img {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:5px;
  5118. height:5px;
  5119. }
  5120. #u36953 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:2164px;
  5124. top:85px;
  5125. width:5px;
  5126. height:5px;
  5127. display:flex;
  5128. }
  5129. #u36953 .text {
  5130. position:absolute;
  5131. align-self:center;
  5132. padding:2px 2px 2px 2px;
  5133. box-sizing:border-box;
  5134. width:100%;
  5135. }
  5136. #u36953_text {
  5137. border-width:0px;
  5138. word-wrap:break-word;
  5139. text-transform:none;
  5140. visibility:hidden;
  5141. }
  5142. #u36954_img {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:5px;
  5148. height:5px;
  5149. }
  5150. #u36954 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:2180px;
  5154. top:85px;
  5155. width:5px;
  5156. height:5px;
  5157. display:flex;
  5158. }
  5159. #u36954 .text {
  5160. position:absolute;
  5161. align-self:center;
  5162. padding:2px 2px 2px 2px;
  5163. box-sizing:border-box;
  5164. width:100%;
  5165. }
  5166. #u36954_text {
  5167. border-width:0px;
  5168. word-wrap:break-word;
  5169. text-transform:none;
  5170. visibility:hidden;
  5171. }
  5172. #u36955_img {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:7px;
  5178. height:7px;
  5179. }
  5180. #u36955 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:2171px;
  5184. top:84px;
  5185. width:7px;
  5186. height:7px;
  5187. display:flex;
  5188. }
  5189. #u36955 .text {
  5190. position:absolute;
  5191. align-self:center;
  5192. padding:2px 2px 2px 2px;
  5193. box-sizing:border-box;
  5194. width:100%;
  5195. }
  5196. #u36955_text {
  5197. border-width:0px;
  5198. word-wrap:break-word;
  5199. text-transform:none;
  5200. visibility:hidden;
  5201. }
  5202. #u36956_img {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:0px;
  5206. top:0px;
  5207. width:19px;
  5208. height:2px;
  5209. }
  5210. #u36956 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:2188px;
  5214. top:87px;
  5215. width:18px;
  5216. height:1px;
  5217. display:flex;
  5218. -webkit-transform:rotate(90deg);
  5219. -moz-transform:rotate(90deg);
  5220. -ms-transform:rotate(90deg);
  5221. transform:rotate(90deg);
  5222. }
  5223. #u36956 .text {
  5224. position:absolute;
  5225. align-self:center;
  5226. padding:2px 2px 2px 2px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u36956_text {
  5231. border-width:0px;
  5232. word-wrap:break-word;
  5233. text-transform:none;
  5234. visibility:hidden;
  5235. }
  5236. #u36957_img {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:375px;
  5242. height:44px;
  5243. }
  5244. #u36957 {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:1870px;
  5248. top:24px;
  5249. width:375px;
  5250. height:44px;
  5251. display:flex;
  5252. }
  5253. #u36957 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:2px 2px 2px 2px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u36957_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. visibility:hidden;
  5265. }
  5266. #u36958_div {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:375px;
  5272. height:50px;
  5273. background:inherit;
  5274. background-color:rgba(255, 255, 255, 1);
  5275. box-sizing:border-box;
  5276. border-width:1px;
  5277. border-style:solid;
  5278. border-color:rgba(242, 242, 242, 1);
  5279. border-radius:26px;
  5280. border-top-left-radius:0px;
  5281. border-top-right-radius:0px;
  5282. -moz-box-shadow:none;
  5283. -webkit-box-shadow:none;
  5284. box-shadow:none;
  5285. }
  5286. #u36958 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:1870px;
  5290. top:788px;
  5291. width:375px;
  5292. height:50px;
  5293. display:flex;
  5294. }
  5295. #u36958 .text {
  5296. position:absolute;
  5297. align-self:center;
  5298. padding:2px 2px 2px 2px;
  5299. box-sizing:border-box;
  5300. width:100%;
  5301. }
  5302. #u36958_text {
  5303. border-width:0px;
  5304. word-wrap:break-word;
  5305. text-transform:none;
  5306. visibility:hidden;
  5307. }
  5308. #u36959 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:0px;
  5314. height:0px;
  5315. }
  5316. #u36960_img {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:24px;
  5322. height:24px;
  5323. }
  5324. #u36960 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:1910px;
  5328. top:792px;
  5329. width:24px;
  5330. height:24px;
  5331. display:flex;
  5332. font-size:8px;
  5333. }
  5334. #u36960 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 2px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u36960_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. }
  5346. #u36961_div {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:25px;
  5352. height:17px;
  5353. background:inherit;
  5354. background-color:rgba(255, 255, 255, 0);
  5355. border:none;
  5356. border-radius:0px;
  5357. -moz-box-shadow:none;
  5358. -webkit-box-shadow:none;
  5359. box-shadow:none;
  5360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5361. font-weight:400;
  5362. font-style:normal;
  5363. font-size:12px;
  5364. }
  5365. #u36961 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:1910px;
  5369. top:817px;
  5370. width:25px;
  5371. height:17px;
  5372. display:flex;
  5373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. font-size:12px;
  5377. }
  5378. #u36961 .text {
  5379. position:absolute;
  5380. align-self:flex-start;
  5381. padding:0px 0px 0px 0px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u36961_text {
  5386. border-width:0px;
  5387. white-space:nowrap;
  5388. text-transform:none;
  5389. }
  5390. #u36962 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:0px;
  5396. height:0px;
  5397. }
  5398. #u36963_img {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:24px;
  5404. height:24px;
  5405. }
  5406. #u36963 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:2180px;
  5410. top:794px;
  5411. width:24px;
  5412. height:24px;
  5413. display:flex;
  5414. font-size:8px;
  5415. }
  5416. #u36963 .text {
  5417. position:absolute;
  5418. align-self:center;
  5419. padding:2px 2px 2px 2px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u36963_text {
  5424. border-width:0px;
  5425. word-wrap:break-word;
  5426. text-transform:none;
  5427. }
  5428. #u36964_div {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:25px;
  5434. height:17px;
  5435. background:inherit;
  5436. background-color:rgba(255, 255, 255, 0);
  5437. border:none;
  5438. border-radius:0px;
  5439. -moz-box-shadow:none;
  5440. -webkit-box-shadow:none;
  5441. box-shadow:none;
  5442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. font-size:12px;
  5446. }
  5447. #u36964 {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:2180px;
  5451. top:819px;
  5452. width:25px;
  5453. height:17px;
  5454. display:flex;
  5455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5456. font-weight:400;
  5457. font-style:normal;
  5458. font-size:12px;
  5459. }
  5460. #u36964 .text {
  5461. position:absolute;
  5462. align-self:flex-start;
  5463. padding:0px 0px 0px 0px;
  5464. box-sizing:border-box;
  5465. width:100%;
  5466. }
  5467. #u36964_text {
  5468. border-width:0px;
  5469. white-space:nowrap;
  5470. text-transform:none;
  5471. }
  5472. #u36965_div {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:375px;
  5478. height:681px;
  5479. background:inherit;
  5480. background-color:rgba(242, 242, 242, 0.462745098039216);
  5481. border:none;
  5482. border-radius:0px;
  5483. -moz-box-shadow:none;
  5484. -webkit-box-shadow:none;
  5485. box-shadow:none;
  5486. }
  5487. #u36965 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:1870px;
  5491. top:107px;
  5492. width:375px;
  5493. height:681px;
  5494. display:flex;
  5495. }
  5496. #u36965 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:2px 2px 2px 2px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u36965_text {
  5504. border-width:0px;
  5505. word-wrap:break-word;
  5506. text-transform:none;
  5507. visibility:hidden;
  5508. }
  5509. #u36966 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:0px;
  5513. top:0px;
  5514. width:0px;
  5515. height:0px;
  5516. }
  5517. #u36967_img {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:24px;
  5523. height:24px;
  5524. }
  5525. #u36967 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:2092px;
  5529. top:792px;
  5530. width:24px;
  5531. height:24px;
  5532. display:flex;
  5533. font-size:8px;
  5534. }
  5535. #u36967 .text {
  5536. position:absolute;
  5537. align-self:center;
  5538. padding:2px 2px 2px 2px;
  5539. box-sizing:border-box;
  5540. width:100%;
  5541. }
  5542. #u36967_text {
  5543. border-width:0px;
  5544. word-wrap:break-word;
  5545. text-transform:none;
  5546. }
  5547. #u36968_div {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:37px;
  5553. height:17px;
  5554. background:inherit;
  5555. background-color:rgba(255, 255, 255, 0);
  5556. border:none;
  5557. border-radius:0px;
  5558. -moz-box-shadow:none;
  5559. -webkit-box-shadow:none;
  5560. box-shadow:none;
  5561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:12px;
  5565. }
  5566. #u36968 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:2086px;
  5570. top:817px;
  5571. width:37px;
  5572. height:17px;
  5573. display:flex;
  5574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5575. font-weight:400;
  5576. font-style:normal;
  5577. font-size:12px;
  5578. }
  5579. #u36968 .text {
  5580. position:absolute;
  5581. align-self:flex-start;
  5582. padding:0px 0px 0px 0px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u36968_text {
  5587. border-width:0px;
  5588. white-space:nowrap;
  5589. text-transform:none;
  5590. }
  5591. #u36969 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:0px;
  5597. height:0px;
  5598. }
  5599. #u36970_img {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:24px;
  5605. height:24px;
  5606. }
  5607. #u36970 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:1998px;
  5611. top:792px;
  5612. width:24px;
  5613. height:24px;
  5614. display:flex;
  5615. font-size:8px;
  5616. }
  5617. #u36970 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 2px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u36970_text {
  5625. border-width:0px;
  5626. word-wrap:break-word;
  5627. text-transform:none;
  5628. }
  5629. #u36971_div {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:37px;
  5635. height:17px;
  5636. background:inherit;
  5637. background-color:rgba(255, 255, 255, 0);
  5638. border:none;
  5639. border-radius:0px;
  5640. -moz-box-shadow:none;
  5641. -webkit-box-shadow:none;
  5642. box-shadow:none;
  5643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:12px;
  5647. }
  5648. #u36971 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:1992px;
  5652. top:817px;
  5653. width:37px;
  5654. height:17px;
  5655. display:flex;
  5656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:12px;
  5660. }
  5661. #u36971 .text {
  5662. position:absolute;
  5663. align-self:flex-start;
  5664. padding:0px 0px 0px 0px;
  5665. box-sizing:border-box;
  5666. width:100%;
  5667. }
  5668. #u36971_text {
  5669. border-width:0px;
  5670. white-space:nowrap;
  5671. text-transform:none;
  5672. }
  5673. #u36972_div {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:375px;
  5679. height:740px;
  5680. background:inherit;
  5681. background-color:rgba(242, 242, 242, 1);
  5682. border:none;
  5683. border-top:0px;
  5684. border-radius:25px;
  5685. border-top-left-radius:0px;
  5686. border-top-right-radius:0px;
  5687. -moz-box-shadow:none;
  5688. -webkit-box-shadow:none;
  5689. box-shadow:none;
  5690. }
  5691. #u36972 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:1870px;
  5695. top:105px;
  5696. width:375px;
  5697. height:740px;
  5698. display:flex;
  5699. }
  5700. #u36972 .text {
  5701. position:absolute;
  5702. align-self:center;
  5703. padding:2px 2px 2px 2px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u36972_text {
  5708. border-width:0px;
  5709. word-wrap:break-word;
  5710. text-transform:none;
  5711. visibility:hidden;
  5712. }
  5713. #u36973 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:0px;
  5719. height:0px;
  5720. }
  5721. #u36974_img {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:11px;
  5727. height:18px;
  5728. }
  5729. #u36974 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:1881px;
  5733. top:79px;
  5734. width:11px;
  5735. height:18px;
  5736. display:flex;
  5737. }
  5738. #u36974 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 2px 2px 2px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u36974_text {
  5746. border-width:0px;
  5747. word-wrap:break-word;
  5748. text-transform:none;
  5749. visibility:hidden;
  5750. }
  5751. #u36975 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:0px;
  5757. height:0px;
  5758. }
  5759. #u36976_div {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:88px;
  5765. height:32px;
  5766. background:inherit;
  5767. background-color:rgba(255, 255, 255, 1);
  5768. box-sizing:border-box;
  5769. border-width:1px;
  5770. border-style:solid;
  5771. border-color:rgba(242, 242, 242, 1);
  5772. border-radius:33px;
  5773. -moz-box-shadow:none;
  5774. -webkit-box-shadow:none;
  5775. box-shadow:none;
  5776. }
  5777. #u36976 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:2150px;
  5781. top:71px;
  5782. width:88px;
  5783. height:32px;
  5784. display:flex;
  5785. }
  5786. #u36976 .text {
  5787. position:absolute;
  5788. align-self:center;
  5789. padding:2px 2px 2px 2px;
  5790. box-sizing:border-box;
  5791. width:100%;
  5792. }
  5793. #u36976_text {
  5794. border-width:0px;
  5795. word-wrap:break-word;
  5796. text-transform:none;
  5797. visibility:hidden;
  5798. }
  5799. #u36977 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:0px;
  5803. top:0px;
  5804. width:0px;
  5805. height:0px;
  5806. }
  5807. #u36978_img {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:18px;
  5813. height:18px;
  5814. }
  5815. #u36978 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:2213px;
  5819. top:78px;
  5820. width:18px;
  5821. height:18px;
  5822. display:flex;
  5823. }
  5824. #u36978 .text {
  5825. position:absolute;
  5826. align-self:center;
  5827. padding:2px 2px 2px 2px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u36978_text {
  5832. border-width:0px;
  5833. word-wrap:break-word;
  5834. text-transform:none;
  5835. visibility:hidden;
  5836. }
  5837. #u36979_img {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:6px;
  5843. height:6px;
  5844. }
  5845. #u36979 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:2219px;
  5849. top:84px;
  5850. width:6px;
  5851. height:6px;
  5852. display:flex;
  5853. }
  5854. #u36979 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u36979_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u36980 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:0px;
  5873. height:0px;
  5874. }
  5875. #u36981_img {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:5px;
  5881. height:5px;
  5882. }
  5883. #u36981 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:2164px;
  5887. top:85px;
  5888. width:5px;
  5889. height:5px;
  5890. display:flex;
  5891. }
  5892. #u36981 .text {
  5893. position:absolute;
  5894. align-self:center;
  5895. padding:2px 2px 2px 2px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u36981_text {
  5900. border-width:0px;
  5901. word-wrap:break-word;
  5902. text-transform:none;
  5903. visibility:hidden;
  5904. }
  5905. #u36982_img {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:5px;
  5911. height:5px;
  5912. }
  5913. #u36982 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:2180px;
  5917. top:85px;
  5918. width:5px;
  5919. height:5px;
  5920. display:flex;
  5921. }
  5922. #u36982 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 2px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u36982_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u36983_img {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:7px;
  5941. height:7px;
  5942. }
  5943. #u36983 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:2171px;
  5947. top:84px;
  5948. width:7px;
  5949. height:7px;
  5950. display:flex;
  5951. }
  5952. #u36983 .text {
  5953. position:absolute;
  5954. align-self:center;
  5955. padding:2px 2px 2px 2px;
  5956. box-sizing:border-box;
  5957. width:100%;
  5958. }
  5959. #u36983_text {
  5960. border-width:0px;
  5961. word-wrap:break-word;
  5962. text-transform:none;
  5963. visibility:hidden;
  5964. }
  5965. #u36984_img {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:0px;
  5969. top:0px;
  5970. width:19px;
  5971. height:2px;
  5972. }
  5973. #u36984 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:2188px;
  5977. top:87px;
  5978. width:18px;
  5979. height:1px;
  5980. display:flex;
  5981. -webkit-transform:rotate(90deg);
  5982. -moz-transform:rotate(90deg);
  5983. -ms-transform:rotate(90deg);
  5984. transform:rotate(90deg);
  5985. }
  5986. #u36984 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:2px 2px 2px 2px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u36984_text {
  5994. border-width:0px;
  5995. word-wrap:break-word;
  5996. text-transform:none;
  5997. visibility:hidden;
  5998. }
  5999. #u36985_div {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:12px;
  6005. height:12px;
  6006. background:inherit;
  6007. background-color:rgba(255, 255, 255, 0);
  6008. box-sizing:border-box;
  6009. border-width:2px;
  6010. border-style:solid;
  6011. border-color:rgba(51, 51, 51, 1);
  6012. border-right:0px;
  6013. border-bottom:0px;
  6014. border-radius:0px;
  6015. border-top-right-radius:0px;
  6016. border-bottom-left-radius:0px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. }
  6021. #u36985 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:1885px;
  6025. top:82px;
  6026. width:12px;
  6027. height:12px;
  6028. display:flex;
  6029. -webkit-transform:rotate(315deg);
  6030. -moz-transform:rotate(315deg);
  6031. -ms-transform:rotate(315deg);
  6032. transform:rotate(315deg);
  6033. }
  6034. #u36985 .text {
  6035. position:absolute;
  6036. align-self:center;
  6037. padding:2px 2px 2px 2px;
  6038. box-sizing:border-box;
  6039. width:100%;
  6040. }
  6041. #u36985_text {
  6042. border-width:0px;
  6043. word-wrap:break-word;
  6044. text-transform:none;
  6045. visibility:hidden;
  6046. }
  6047. #u36986_div {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:65px;
  6053. height:22px;
  6054. background:inherit;
  6055. background-color:rgba(255, 255, 255, 0);
  6056. border:none;
  6057. border-radius:0px;
  6058. -moz-box-shadow:none;
  6059. -webkit-box-shadow:none;
  6060. box-shadow:none;
  6061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6062. font-weight:400;
  6063. font-style:normal;
  6064. font-size:16px;
  6065. color:#000000;
  6066. }
  6067. #u36986 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:2022px;
  6071. top:77px;
  6072. width:65px;
  6073. height:22px;
  6074. display:flex;
  6075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6076. font-weight:400;
  6077. font-style:normal;
  6078. font-size:16px;
  6079. color:#000000;
  6080. }
  6081. #u36986 .text {
  6082. position:absolute;
  6083. align-self:flex-start;
  6084. padding:0px 0px 0px 0px;
  6085. box-sizing:border-box;
  6086. width:100%;
  6087. }
  6088. #u36986_text {
  6089. border-width:0px;
  6090. white-space:nowrap;
  6091. text-transform:none;
  6092. }
  6093. #u36987 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:0px;
  6099. height:0px;
  6100. }
  6101. #u36988_img {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:355px;
  6107. height:200px;
  6108. }
  6109. #u36988 {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:497px;
  6113. top:207px;
  6114. width:355px;
  6115. height:200px;
  6116. display:flex;
  6117. }
  6118. #u36988 .text {
  6119. position:absolute;
  6120. align-self:center;
  6121. padding:2px 2px 2px 2px;
  6122. box-sizing:border-box;
  6123. width:100%;
  6124. }
  6125. #u36988_text {
  6126. border-width:0px;
  6127. word-wrap:break-word;
  6128. text-transform:none;
  6129. visibility:hidden;
  6130. }
  6131. #u36989_div {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:0px;
  6135. top:0px;
  6136. width:183px;
  6137. height:30px;
  6138. background:inherit;
  6139. background-color:rgba(255, 255, 255, 0);
  6140. border:none;
  6141. border-left:0px;
  6142. border-top:0px;
  6143. border-right:0px;
  6144. border-radius:0px;
  6145. border-bottom-right-radius:0px;
  6146. border-bottom-left-radius:0px;
  6147. -moz-box-shadow:none;
  6148. -webkit-box-shadow:none;
  6149. box-shadow:none;
  6150. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6151. font-weight:500;
  6152. font-style:normal;
  6153. font-size:14px;
  6154. line-height:30px;
  6155. }
  6156. #u36989 {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:513px;
  6160. top:213px;
  6161. width:183px;
  6162. height:30px;
  6163. display:flex;
  6164. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6165. font-weight:500;
  6166. font-style:normal;
  6167. font-size:14px;
  6168. line-height:30px;
  6169. }
  6170. #u36989 .text {
  6171. position:absolute;
  6172. align-self:flex-start;
  6173. padding:0px 0px 0px 0px;
  6174. box-sizing:border-box;
  6175. width:100%;
  6176. }
  6177. #u36989_text {
  6178. border-width:0px;
  6179. white-space:nowrap;
  6180. text-transform:none;
  6181. }
  6182. #u36990_div {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:325px;
  6188. height:125px;
  6189. background:inherit;
  6190. background-color:rgba(255, 255, 255, 0);
  6191. border:none;
  6192. border-left:0px;
  6193. border-top:0px;
  6194. border-right:0px;
  6195. border-radius:0px;
  6196. border-bottom-right-radius:0px;
  6197. border-bottom-left-radius:0px;
  6198. -moz-box-shadow:none;
  6199. -webkit-box-shadow:none;
  6200. box-shadow:none;
  6201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:12px;
  6205. line-height:25px;
  6206. }
  6207. #u36990 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:513px;
  6211. top:243px;
  6212. width:325px;
  6213. height:125px;
  6214. display:flex;
  6215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. font-size:12px;
  6219. line-height:25px;
  6220. }
  6221. #u36990 .text {
  6222. position:absolute;
  6223. align-self:flex-start;
  6224. padding:0px 0px 0px 0px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u36990_text {
  6229. border-width:0px;
  6230. word-wrap:break-word;
  6231. text-transform:none;
  6232. }
  6233. #u36991_div {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:9px;
  6239. height:9px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 0);
  6242. box-sizing:border-box;
  6243. border-width:1px;
  6244. border-style:solid;
  6245. border-color:rgba(127, 127, 127, 1);
  6246. border-right:0px;
  6247. border-bottom:0px;
  6248. border-radius:0px;
  6249. border-top-right-radius:0px;
  6250. border-bottom-left-radius:0px;
  6251. -moz-box-shadow:none;
  6252. -webkit-box-shadow:none;
  6253. box-shadow:none;
  6254. }
  6255. #u36991 {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:828px;
  6259. top:221px;
  6260. width:9px;
  6261. height:9px;
  6262. display:flex;
  6263. -webkit-transform:rotate(135deg);
  6264. -moz-transform:rotate(135deg);
  6265. -ms-transform:rotate(135deg);
  6266. transform:rotate(135deg);
  6267. }
  6268. #u36991 .text {
  6269. position:absolute;
  6270. align-self:center;
  6271. padding:2px 2px 2px 2px;
  6272. box-sizing:border-box;
  6273. width:100%;
  6274. }
  6275. #u36991_text {
  6276. border-width:0px;
  6277. word-wrap:break-word;
  6278. text-transform:none;
  6279. visibility:hidden;
  6280. }
  6281. #u36992_div {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:60px;
  6287. height:30px;
  6288. background:inherit;
  6289. background-color:rgba(255, 255, 255, 1);
  6290. box-sizing:border-box;
  6291. border-width:1px;
  6292. border-style:solid;
  6293. border-color:rgba(215, 215, 215, 1);
  6294. border-radius:63px;
  6295. -moz-box-shadow:none;
  6296. -webkit-box-shadow:none;
  6297. box-shadow:none;
  6298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. font-size:14px;
  6302. color:#555555;
  6303. }
  6304. #u36992 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:702px;
  6308. top:367px;
  6309. width:60px;
  6310. height:30px;
  6311. display:flex;
  6312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6313. font-weight:400;
  6314. font-style:normal;
  6315. font-size:14px;
  6316. color:#555555;
  6317. }
  6318. #u36992 .text {
  6319. position:absolute;
  6320. align-self:center;
  6321. padding:2px 2px 2px 2px;
  6322. box-sizing:border-box;
  6323. width:100%;
  6324. }
  6325. #u36992_text {
  6326. border-width:0px;
  6327. word-wrap:break-word;
  6328. text-transform:none;
  6329. }
  6330. #u36993_div {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:0px;
  6334. top:0px;
  6335. width:60px;
  6336. height:30px;
  6337. background:inherit;
  6338. background-color:rgba(41, 143, 255, 1);
  6339. border:none;
  6340. border-radius:63px;
  6341. -moz-box-shadow:none;
  6342. -webkit-box-shadow:none;
  6343. box-shadow:none;
  6344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6345. font-weight:400;
  6346. font-style:normal;
  6347. font-size:14px;
  6348. color:#FFFFFF;
  6349. }
  6350. #u36993 {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:772px;
  6354. top:367px;
  6355. width:60px;
  6356. height:30px;
  6357. display:flex;
  6358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:14px;
  6362. color:#FFFFFF;
  6363. }
  6364. #u36993 .text {
  6365. position:absolute;
  6366. align-self:center;
  6367. padding:2px 2px 2px 2px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u36993_text {
  6372. border-width:0px;
  6373. word-wrap:break-word;
  6374. text-transform:none;
  6375. }
  6376. #u36994 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:0px;
  6382. height:0px;
  6383. }
  6384. #u36995_img {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:355px;
  6390. height:200px;
  6391. }
  6392. #u36995 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:958px;
  6396. top:207px;
  6397. width:355px;
  6398. height:200px;
  6399. display:flex;
  6400. }
  6401. #u36995 .text {
  6402. position:absolute;
  6403. align-self:center;
  6404. padding:2px 2px 2px 2px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u36995_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. visibility:hidden;
  6413. }
  6414. #u36996_div {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:183px;
  6420. height:30px;
  6421. background:inherit;
  6422. background-color:rgba(255, 255, 255, 0);
  6423. border:none;
  6424. border-left:0px;
  6425. border-top:0px;
  6426. border-right:0px;
  6427. border-radius:0px;
  6428. border-bottom-right-radius:0px;
  6429. border-bottom-left-radius:0px;
  6430. -moz-box-shadow:none;
  6431. -webkit-box-shadow:none;
  6432. box-shadow:none;
  6433. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6434. font-weight:500;
  6435. font-style:normal;
  6436. font-size:14px;
  6437. line-height:30px;
  6438. }
  6439. #u36996 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:974px;
  6443. top:213px;
  6444. width:183px;
  6445. height:30px;
  6446. display:flex;
  6447. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6448. font-weight:500;
  6449. font-style:normal;
  6450. font-size:14px;
  6451. line-height:30px;
  6452. }
  6453. #u36996 .text {
  6454. position:absolute;
  6455. align-self:flex-start;
  6456. padding:0px 0px 0px 0px;
  6457. box-sizing:border-box;
  6458. width:100%;
  6459. }
  6460. #u36996_text {
  6461. border-width:0px;
  6462. white-space:nowrap;
  6463. text-transform:none;
  6464. }
  6465. #u36997_div {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:0px;
  6469. top:0px;
  6470. width:325px;
  6471. height:125px;
  6472. background:inherit;
  6473. background-color:rgba(255, 255, 255, 0);
  6474. border:none;
  6475. border-left:0px;
  6476. border-top:0px;
  6477. border-right:0px;
  6478. border-radius:0px;
  6479. border-bottom-right-radius:0px;
  6480. border-bottom-left-radius:0px;
  6481. -moz-box-shadow:none;
  6482. -webkit-box-shadow:none;
  6483. box-shadow:none;
  6484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6485. font-weight:400;
  6486. font-style:normal;
  6487. font-size:12px;
  6488. line-height:25px;
  6489. }
  6490. #u36997 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:974px;
  6494. top:243px;
  6495. width:325px;
  6496. height:125px;
  6497. display:flex;
  6498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:12px;
  6502. line-height:25px;
  6503. }
  6504. #u36997 .text {
  6505. position:absolute;
  6506. align-self:flex-start;
  6507. padding:0px 0px 0px 0px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u36997_text {
  6512. border-width:0px;
  6513. word-wrap:break-word;
  6514. text-transform:none;
  6515. }
  6516. #u36998_div {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:9px;
  6522. height:9px;
  6523. background:inherit;
  6524. background-color:rgba(255, 255, 255, 0);
  6525. box-sizing:border-box;
  6526. border-width:1px;
  6527. border-style:solid;
  6528. border-color:rgba(127, 127, 127, 1);
  6529. border-right:0px;
  6530. border-bottom:0px;
  6531. border-radius:0px;
  6532. border-top-right-radius:0px;
  6533. border-bottom-left-radius:0px;
  6534. -moz-box-shadow:none;
  6535. -webkit-box-shadow:none;
  6536. box-shadow:none;
  6537. }
  6538. #u36998 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:1289px;
  6542. top:221px;
  6543. width:9px;
  6544. height:9px;
  6545. display:flex;
  6546. -webkit-transform:rotate(135deg);
  6547. -moz-transform:rotate(135deg);
  6548. -ms-transform:rotate(135deg);
  6549. transform:rotate(135deg);
  6550. }
  6551. #u36998 .text {
  6552. position:absolute;
  6553. align-self:center;
  6554. padding:2px 2px 2px 2px;
  6555. box-sizing:border-box;
  6556. width:100%;
  6557. }
  6558. #u36998_text {
  6559. border-width:0px;
  6560. word-wrap:break-word;
  6561. text-transform:none;
  6562. visibility:hidden;
  6563. }
  6564. #u36999_div {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:60px;
  6570. height:30px;
  6571. background:inherit;
  6572. background-color:rgba(255, 255, 255, 1);
  6573. box-sizing:border-box;
  6574. border-width:1px;
  6575. border-style:solid;
  6576. border-color:rgba(215, 215, 215, 1);
  6577. border-radius:63px;
  6578. -moz-box-shadow:none;
  6579. -webkit-box-shadow:none;
  6580. box-shadow:none;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:14px;
  6585. color:#555555;
  6586. }
  6587. #u36999 {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:1163px;
  6591. top:367px;
  6592. width:60px;
  6593. height:30px;
  6594. display:flex;
  6595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. font-size:14px;
  6599. color:#555555;
  6600. }
  6601. #u36999 .text {
  6602. position:absolute;
  6603. align-self:center;
  6604. padding:2px 2px 2px 2px;
  6605. box-sizing:border-box;
  6606. width:100%;
  6607. }
  6608. #u36999_text {
  6609. border-width:0px;
  6610. word-wrap:break-word;
  6611. text-transform:none;
  6612. }
  6613. #u37000_div {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:0px;
  6617. top:0px;
  6618. width:60px;
  6619. height:30px;
  6620. background:inherit;
  6621. background-color:rgba(41, 143, 255, 1);
  6622. border:none;
  6623. border-radius:63px;
  6624. -moz-box-shadow:none;
  6625. -webkit-box-shadow:none;
  6626. box-shadow:none;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:14px;
  6631. color:#FFFFFF;
  6632. }
  6633. #u37000 {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:1233px;
  6637. top:367px;
  6638. width:60px;
  6639. height:30px;
  6640. display:flex;
  6641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. font-size:14px;
  6645. color:#FFFFFF;
  6646. }
  6647. #u37000 .text {
  6648. position:absolute;
  6649. align-self:center;
  6650. padding:2px 2px 2px 2px;
  6651. box-sizing:border-box;
  6652. width:100%;
  6653. }
  6654. #u37000_text {
  6655. border-width:0px;
  6656. word-wrap:break-word;
  6657. text-transform:none;
  6658. }
  6659. #u37001 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:0px;
  6665. height:0px;
  6666. }
  6667. #u37002_img {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:355px;
  6673. height:170px;
  6674. }
  6675. #u37002 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:1414px;
  6679. top:207px;
  6680. width:355px;
  6681. height:170px;
  6682. display:flex;
  6683. }
  6684. #u37002 .text {
  6685. position:absolute;
  6686. align-self:center;
  6687. padding:2px 2px 2px 2px;
  6688. box-sizing:border-box;
  6689. width:100%;
  6690. }
  6691. #u37002_text {
  6692. border-width:0px;
  6693. word-wrap:break-word;
  6694. text-transform:none;
  6695. visibility:hidden;
  6696. }
  6697. #u37003_div {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:183px;
  6703. height:30px;
  6704. background:inherit;
  6705. background-color:rgba(255, 255, 255, 0);
  6706. border:none;
  6707. border-left:0px;
  6708. border-top:0px;
  6709. border-right:0px;
  6710. border-radius:0px;
  6711. border-bottom-right-radius:0px;
  6712. border-bottom-left-radius:0px;
  6713. -moz-box-shadow:none;
  6714. -webkit-box-shadow:none;
  6715. box-shadow:none;
  6716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6717. font-weight:500;
  6718. font-style:normal;
  6719. font-size:14px;
  6720. line-height:30px;
  6721. }
  6722. #u37003 {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:1430px;
  6726. top:213px;
  6727. width:183px;
  6728. height:30px;
  6729. display:flex;
  6730. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6731. font-weight:500;
  6732. font-style:normal;
  6733. font-size:14px;
  6734. line-height:30px;
  6735. }
  6736. #u37003 .text {
  6737. position:absolute;
  6738. align-self:flex-start;
  6739. padding:0px 0px 0px 0px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u37003_text {
  6744. border-width:0px;
  6745. white-space:nowrap;
  6746. text-transform:none;
  6747. }
  6748. #u37004_div {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:325px;
  6754. height:125px;
  6755. background:inherit;
  6756. background-color:rgba(255, 255, 255, 0);
  6757. border:none;
  6758. border-left:0px;
  6759. border-top:0px;
  6760. border-right:0px;
  6761. border-radius:0px;
  6762. border-bottom-right-radius:0px;
  6763. border-bottom-left-radius:0px;
  6764. -moz-box-shadow:none;
  6765. -webkit-box-shadow:none;
  6766. box-shadow:none;
  6767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6768. font-weight:400;
  6769. font-style:normal;
  6770. font-size:12px;
  6771. line-height:25px;
  6772. }
  6773. #u37004 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:1430px;
  6777. top:243px;
  6778. width:325px;
  6779. height:125px;
  6780. display:flex;
  6781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. font-size:12px;
  6785. line-height:25px;
  6786. }
  6787. #u37004 .text {
  6788. position:absolute;
  6789. align-self:flex-start;
  6790. padding:0px 0px 0px 0px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u37004_text {
  6795. border-width:0px;
  6796. word-wrap:break-word;
  6797. text-transform:none;
  6798. }
  6799. #u37005_div {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:9px;
  6805. height:9px;
  6806. background:inherit;
  6807. background-color:rgba(255, 255, 255, 0);
  6808. box-sizing:border-box;
  6809. border-width:1px;
  6810. border-style:solid;
  6811. border-color:rgba(127, 127, 127, 1);
  6812. border-right:0px;
  6813. border-bottom:0px;
  6814. border-radius:0px;
  6815. border-top-right-radius:0px;
  6816. border-bottom-left-radius:0px;
  6817. -moz-box-shadow:none;
  6818. -webkit-box-shadow:none;
  6819. box-shadow:none;
  6820. }
  6821. #u37005 {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:1745px;
  6825. top:221px;
  6826. width:9px;
  6827. height:9px;
  6828. display:flex;
  6829. -webkit-transform:rotate(135deg);
  6830. -moz-transform:rotate(135deg);
  6831. -ms-transform:rotate(135deg);
  6832. transform:rotate(135deg);
  6833. }
  6834. #u37005 .text {
  6835. position:absolute;
  6836. align-self:center;
  6837. padding:2px 2px 2px 2px;
  6838. box-sizing:border-box;
  6839. width:100%;
  6840. }
  6841. #u37005_text {
  6842. border-width:0px;
  6843. word-wrap:break-word;
  6844. text-transform:none;
  6845. visibility:hidden;
  6846. }
  6847. #u37006 {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:0px;
  6853. height:0px;
  6854. }
  6855. #u37007_img {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:355px;
  6861. height:170px;
  6862. }
  6863. #u37007 {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:1879px;
  6867. top:207px;
  6868. width:355px;
  6869. height:170px;
  6870. display:flex;
  6871. }
  6872. #u37007 .text {
  6873. position:absolute;
  6874. align-self:center;
  6875. padding:2px 2px 2px 2px;
  6876. box-sizing:border-box;
  6877. width:100%;
  6878. }
  6879. #u37007_text {
  6880. border-width:0px;
  6881. word-wrap:break-word;
  6882. text-transform:none;
  6883. visibility:hidden;
  6884. }
  6885. #u37008_div {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:0px;
  6889. top:0px;
  6890. width:183px;
  6891. height:30px;
  6892. background:inherit;
  6893. background-color:rgba(255, 255, 255, 0);
  6894. border:none;
  6895. border-left:0px;
  6896. border-top:0px;
  6897. border-right:0px;
  6898. border-radius:0px;
  6899. border-bottom-right-radius:0px;
  6900. border-bottom-left-radius:0px;
  6901. -moz-box-shadow:none;
  6902. -webkit-box-shadow:none;
  6903. box-shadow:none;
  6904. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6905. font-weight:500;
  6906. font-style:normal;
  6907. font-size:14px;
  6908. line-height:30px;
  6909. }
  6910. #u37008 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:1895px;
  6914. top:213px;
  6915. width:183px;
  6916. height:30px;
  6917. display:flex;
  6918. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6919. font-weight:500;
  6920. font-style:normal;
  6921. font-size:14px;
  6922. line-height:30px;
  6923. }
  6924. #u37008 .text {
  6925. position:absolute;
  6926. align-self:flex-start;
  6927. padding:0px 0px 0px 0px;
  6928. box-sizing:border-box;
  6929. width:100%;
  6930. }
  6931. #u37008_text {
  6932. border-width:0px;
  6933. white-space:nowrap;
  6934. text-transform:none;
  6935. }
  6936. #u37009_div {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:325px;
  6942. height:125px;
  6943. background:inherit;
  6944. background-color:rgba(255, 255, 255, 0);
  6945. border:none;
  6946. border-left:0px;
  6947. border-top:0px;
  6948. border-right:0px;
  6949. border-radius:0px;
  6950. border-bottom-right-radius:0px;
  6951. border-bottom-left-radius:0px;
  6952. -moz-box-shadow:none;
  6953. -webkit-box-shadow:none;
  6954. box-shadow:none;
  6955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6956. font-weight:400;
  6957. font-style:normal;
  6958. font-size:12px;
  6959. line-height:25px;
  6960. }
  6961. #u37009 {
  6962. border-width:0px;
  6963. position:absolute;
  6964. left:1895px;
  6965. top:243px;
  6966. width:325px;
  6967. height:125px;
  6968. display:flex;
  6969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6970. font-weight:400;
  6971. font-style:normal;
  6972. font-size:12px;
  6973. line-height:25px;
  6974. }
  6975. #u37009 .text {
  6976. position:absolute;
  6977. align-self:flex-start;
  6978. padding:0px 0px 0px 0px;
  6979. box-sizing:border-box;
  6980. width:100%;
  6981. }
  6982. #u37009_text {
  6983. border-width:0px;
  6984. word-wrap:break-word;
  6985. text-transform:none;
  6986. }
  6987. #u37010_div {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:0px;
  6991. top:0px;
  6992. width:9px;
  6993. height:9px;
  6994. background:inherit;
  6995. background-color:rgba(255, 255, 255, 0);
  6996. box-sizing:border-box;
  6997. border-width:1px;
  6998. border-style:solid;
  6999. border-color:rgba(127, 127, 127, 1);
  7000. border-right:0px;
  7001. border-bottom:0px;
  7002. border-radius:0px;
  7003. border-top-right-radius:0px;
  7004. border-bottom-left-radius:0px;
  7005. -moz-box-shadow:none;
  7006. -webkit-box-shadow:none;
  7007. box-shadow:none;
  7008. }
  7009. #u37010 {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:2210px;
  7013. top:221px;
  7014. width:9px;
  7015. height:9px;
  7016. display:flex;
  7017. -webkit-transform:rotate(135deg);
  7018. -moz-transform:rotate(135deg);
  7019. -ms-transform:rotate(135deg);
  7020. transform:rotate(135deg);
  7021. }
  7022. #u37010 .text {
  7023. position:absolute;
  7024. align-self:center;
  7025. padding:2px 2px 2px 2px;
  7026. box-sizing:border-box;
  7027. width:100%;
  7028. }
  7029. #u37010_text {
  7030. border-width:0px;
  7031. word-wrap:break-word;
  7032. text-transform:none;
  7033. visibility:hidden;
  7034. }
  7035. #u37011 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:0px;
  7041. height:0px;
  7042. }
  7043. #u37012_div {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:0px;
  7047. top:0px;
  7048. width:375px;
  7049. height:50px;
  7050. background:inherit;
  7051. background-color:rgba(255, 255, 255, 1);
  7052. box-sizing:border-box;
  7053. border-width:1px;
  7054. border-style:solid;
  7055. border-color:rgba(242, 242, 242, 1);
  7056. border-radius:26px;
  7057. border-top-left-radius:0px;
  7058. border-top-right-radius:0px;
  7059. -moz-box-shadow:none;
  7060. -webkit-box-shadow:none;
  7061. box-shadow:none;
  7062. }
  7063. #u37012 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:29px;
  7067. top:795px;
  7068. width:375px;
  7069. height:50px;
  7070. display:flex;
  7071. }
  7072. #u37012 .text {
  7073. position:absolute;
  7074. align-self:center;
  7075. padding:2px 2px 2px 2px;
  7076. box-sizing:border-box;
  7077. width:100%;
  7078. }
  7079. #u37012_text {
  7080. border-width:0px;
  7081. word-wrap:break-word;
  7082. text-transform:none;
  7083. visibility:hidden;
  7084. }
  7085. #u37013 {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:0px;
  7091. height:0px;
  7092. }
  7093. #u37014_img {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:24px;
  7099. height:24px;
  7100. }
  7101. #u37014 {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:340px;
  7105. top:799px;
  7106. width:24px;
  7107. height:24px;
  7108. display:flex;
  7109. font-size:8px;
  7110. }
  7111. #u37014 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u37014_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. }
  7123. #u37015_div {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:25px;
  7129. height:17px;
  7130. background:inherit;
  7131. background-color:rgba(255, 255, 255, 0);
  7132. border:none;
  7133. border-radius:0px;
  7134. -moz-box-shadow:none;
  7135. -webkit-box-shadow:none;
  7136. box-shadow:none;
  7137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. font-size:12px;
  7141. }
  7142. #u37015 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:340px;
  7146. top:824px;
  7147. width:25px;
  7148. height:17px;
  7149. display:flex;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:12px;
  7154. }
  7155. #u37015 .text {
  7156. position:absolute;
  7157. align-self:flex-start;
  7158. padding:0px 0px 0px 0px;
  7159. box-sizing:border-box;
  7160. width:100%;
  7161. }
  7162. #u37015_text {
  7163. border-width:0px;
  7164. white-space:nowrap;
  7165. text-transform:none;
  7166. }
  7167. #u37016 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:0px;
  7173. height:0px;
  7174. }
  7175. #u37017_div {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:0px;
  7179. top:0px;
  7180. width:25px;
  7181. height:17px;
  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:12px;
  7193. }
  7194. #u37017 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:249px;
  7198. top:824px;
  7199. width:25px;
  7200. height:17px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:12px;
  7206. }
  7207. #u37017 .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. #u37017_text {
  7215. border-width:0px;
  7216. white-space:nowrap;
  7217. text-transform:none;
  7218. }
  7219. #u37018_img {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:24px;
  7225. height:24px;
  7226. }
  7227. #u37018 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:250px;
  7231. top:799px;
  7232. width:24px;
  7233. height:24px;
  7234. display:flex;
  7235. font-size:8px;
  7236. color:#FFFFFF;
  7237. }
  7238. #u37018 .text {
  7239. position:absolute;
  7240. align-self:center;
  7241. padding:2px 2px 2px 2px;
  7242. box-sizing:border-box;
  7243. width:100%;
  7244. }
  7245. #u37018_text {
  7246. border-width:0px;
  7247. word-wrap:break-word;
  7248. text-transform:none;
  7249. }
  7250. #u37019 {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:0px;
  7256. height:0px;
  7257. }
  7258. #u37020_img {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:0px;
  7262. top:0px;
  7263. width:24px;
  7264. height:24px;
  7265. }
  7266. #u37020 {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:69px;
  7270. top:799px;
  7271. width:24px;
  7272. height:24px;
  7273. display:flex;
  7274. font-size:8px;
  7275. }
  7276. #u37020 .text {
  7277. position:absolute;
  7278. align-self:center;
  7279. padding:2px 2px 2px 2px;
  7280. box-sizing:border-box;
  7281. width:100%;
  7282. }
  7283. #u37020_text {
  7284. border-width:0px;
  7285. word-wrap:break-word;
  7286. text-transform:none;
  7287. }
  7288. #u37021_div {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:25px;
  7294. height:17px;
  7295. background:inherit;
  7296. background-color:rgba(255, 255, 255, 0);
  7297. border:none;
  7298. border-radius:0px;
  7299. -moz-box-shadow:none;
  7300. -webkit-box-shadow:none;
  7301. box-shadow:none;
  7302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:12px;
  7306. }
  7307. #u37021 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:69px;
  7311. top:824px;
  7312. width:25px;
  7313. height:17px;
  7314. display:flex;
  7315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:12px;
  7319. }
  7320. #u37021 .text {
  7321. position:absolute;
  7322. align-self:flex-start;
  7323. padding:0px 0px 0px 0px;
  7324. box-sizing:border-box;
  7325. width:100%;
  7326. }
  7327. #u37021_text {
  7328. border-width:0px;
  7329. white-space:nowrap;
  7330. text-transform:none;
  7331. }
  7332. #u37022 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:0px;
  7336. top:0px;
  7337. width:0px;
  7338. height:0px;
  7339. }
  7340. #u37023_img {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:0px;
  7344. top:0px;
  7345. width:24px;
  7346. height:24px;
  7347. }
  7348. #u37023 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:160px;
  7352. top:799px;
  7353. width:24px;
  7354. height:24px;
  7355. display:flex;
  7356. font-size:8px;
  7357. }
  7358. #u37023 .text {
  7359. position:absolute;
  7360. align-self:center;
  7361. padding:2px 2px 2px 2px;
  7362. box-sizing:border-box;
  7363. width:100%;
  7364. }
  7365. #u37023_text {
  7366. border-width:0px;
  7367. word-wrap:break-word;
  7368. text-transform:none;
  7369. }
  7370. #u37024_div {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:25px;
  7376. height:17px;
  7377. background:inherit;
  7378. background-color:rgba(255, 255, 255, 0);
  7379. border:none;
  7380. border-radius:0px;
  7381. -moz-box-shadow:none;
  7382. -webkit-box-shadow:none;
  7383. box-shadow:none;
  7384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7385. font-weight:400;
  7386. font-style:normal;
  7387. font-size:12px;
  7388. }
  7389. #u37024 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:160px;
  7393. top:824px;
  7394. width:25px;
  7395. height:17px;
  7396. display:flex;
  7397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7398. font-weight:400;
  7399. font-style:normal;
  7400. font-size:12px;
  7401. }
  7402. #u37024 .text {
  7403. position:absolute;
  7404. align-self:flex-start;
  7405. padding:0px 0px 0px 0px;
  7406. box-sizing:border-box;
  7407. width:100%;
  7408. }
  7409. #u37024_text {
  7410. border-width:0px;
  7411. white-space:nowrap;
  7412. text-transform:none;
  7413. }
  7414. #u37025 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:0px;
  7420. height:0px;
  7421. }
  7422. #u37026_div {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:375px;
  7428. height:50px;
  7429. background:inherit;
  7430. background-color:rgba(255, 255, 255, 1);
  7431. box-sizing:border-box;
  7432. border-width:1px;
  7433. border-style:solid;
  7434. border-color:rgba(242, 242, 242, 1);
  7435. border-radius:26px;
  7436. border-top-left-radius:0px;
  7437. border-top-right-radius:0px;
  7438. -moz-box-shadow:none;
  7439. -webkit-box-shadow:none;
  7440. box-shadow:none;
  7441. }
  7442. #u37026 {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:486px;
  7446. top:795px;
  7447. width:375px;
  7448. height:50px;
  7449. display:flex;
  7450. }
  7451. #u37026 .text {
  7452. position:absolute;
  7453. align-self:center;
  7454. padding:2px 2px 2px 2px;
  7455. box-sizing:border-box;
  7456. width:100%;
  7457. }
  7458. #u37026_text {
  7459. border-width:0px;
  7460. word-wrap:break-word;
  7461. text-transform:none;
  7462. visibility:hidden;
  7463. }
  7464. #u37027 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:0px;
  7470. height:0px;
  7471. }
  7472. #u37028_img {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:24px;
  7478. height:24px;
  7479. }
  7480. #u37028 {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:797px;
  7484. top:799px;
  7485. width:24px;
  7486. height:24px;
  7487. display:flex;
  7488. font-size:8px;
  7489. }
  7490. #u37028 .text {
  7491. position:absolute;
  7492. align-self:center;
  7493. padding:2px 2px 2px 2px;
  7494. box-sizing:border-box;
  7495. width:100%;
  7496. }
  7497. #u37028_text {
  7498. border-width:0px;
  7499. word-wrap:break-word;
  7500. text-transform:none;
  7501. }
  7502. #u37029_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:25px;
  7508. height:17px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 0);
  7511. border:none;
  7512. border-radius:0px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:12px;
  7520. }
  7521. #u37029 {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:797px;
  7525. top:824px;
  7526. width:25px;
  7527. height:17px;
  7528. display:flex;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:12px;
  7533. }
  7534. #u37029 .text {
  7535. position:absolute;
  7536. align-self:flex-start;
  7537. padding:0px 0px 0px 0px;
  7538. box-sizing:border-box;
  7539. width:100%;
  7540. }
  7541. #u37029_text {
  7542. border-width:0px;
  7543. white-space:nowrap;
  7544. text-transform:none;
  7545. }
  7546. #u37030 {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:0px;
  7552. height:0px;
  7553. }
  7554. #u37031_div {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:25px;
  7560. height:17px;
  7561. background:inherit;
  7562. background-color:rgba(255, 255, 255, 0);
  7563. border:none;
  7564. border-radius:0px;
  7565. -moz-box-shadow:none;
  7566. -webkit-box-shadow:none;
  7567. box-shadow:none;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:12px;
  7572. }
  7573. #u37031 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:706px;
  7577. top:824px;
  7578. width:25px;
  7579. height:17px;
  7580. display:flex;
  7581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:12px;
  7585. }
  7586. #u37031 .text {
  7587. position:absolute;
  7588. align-self:flex-start;
  7589. padding:0px 0px 0px 0px;
  7590. box-sizing:border-box;
  7591. width:100%;
  7592. }
  7593. #u37031_text {
  7594. border-width:0px;
  7595. white-space:nowrap;
  7596. text-transform:none;
  7597. }
  7598. #u37032_img {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:0px;
  7602. top:0px;
  7603. width:24px;
  7604. height:24px;
  7605. }
  7606. #u37032 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:707px;
  7610. top:799px;
  7611. width:24px;
  7612. height:24px;
  7613. display:flex;
  7614. font-size:8px;
  7615. color:#FFFFFF;
  7616. }
  7617. #u37032 .text {
  7618. position:absolute;
  7619. align-self:center;
  7620. padding:2px 2px 2px 2px;
  7621. box-sizing:border-box;
  7622. width:100%;
  7623. }
  7624. #u37032_text {
  7625. border-width:0px;
  7626. word-wrap:break-word;
  7627. text-transform:none;
  7628. }
  7629. #u37033 {
  7630. border-width:0px;
  7631. position:absolute;
  7632. left:0px;
  7633. top:0px;
  7634. width:0px;
  7635. height:0px;
  7636. }
  7637. #u37034_img {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:0px;
  7641. top:0px;
  7642. width:24px;
  7643. height:24px;
  7644. }
  7645. #u37034 {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:526px;
  7649. top:799px;
  7650. width:24px;
  7651. height:24px;
  7652. display:flex;
  7653. font-size:8px;
  7654. }
  7655. #u37034 .text {
  7656. position:absolute;
  7657. align-self:center;
  7658. padding:2px 2px 2px 2px;
  7659. box-sizing:border-box;
  7660. width:100%;
  7661. }
  7662. #u37034_text {
  7663. border-width:0px;
  7664. word-wrap:break-word;
  7665. text-transform:none;
  7666. }
  7667. #u37035_div {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:0px;
  7671. top:0px;
  7672. width:25px;
  7673. height:17px;
  7674. background:inherit;
  7675. background-color:rgba(255, 255, 255, 0);
  7676. border:none;
  7677. border-radius:0px;
  7678. -moz-box-shadow:none;
  7679. -webkit-box-shadow:none;
  7680. box-shadow:none;
  7681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7682. font-weight:400;
  7683. font-style:normal;
  7684. font-size:12px;
  7685. }
  7686. #u37035 {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:526px;
  7690. top:824px;
  7691. width:25px;
  7692. height:17px;
  7693. display:flex;
  7694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7695. font-weight:400;
  7696. font-style:normal;
  7697. font-size:12px;
  7698. }
  7699. #u37035 .text {
  7700. position:absolute;
  7701. align-self:flex-start;
  7702. padding:0px 0px 0px 0px;
  7703. box-sizing:border-box;
  7704. width:100%;
  7705. }
  7706. #u37035_text {
  7707. border-width:0px;
  7708. white-space:nowrap;
  7709. text-transform:none;
  7710. }
  7711. #u37036 {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:0px;
  7715. top:0px;
  7716. width:0px;
  7717. height:0px;
  7718. }
  7719. #u37037_img {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:0px;
  7723. top:0px;
  7724. width:24px;
  7725. height:24px;
  7726. }
  7727. #u37037 {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:617px;
  7731. top:799px;
  7732. width:24px;
  7733. height:24px;
  7734. display:flex;
  7735. font-size:8px;
  7736. }
  7737. #u37037 .text {
  7738. position:absolute;
  7739. align-self:center;
  7740. padding:2px 2px 2px 2px;
  7741. box-sizing:border-box;
  7742. width:100%;
  7743. }
  7744. #u37037_text {
  7745. border-width:0px;
  7746. word-wrap:break-word;
  7747. text-transform:none;
  7748. }
  7749. #u37038_div {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:25px;
  7755. height:17px;
  7756. background:inherit;
  7757. background-color:rgba(255, 255, 255, 0);
  7758. border:none;
  7759. border-radius:0px;
  7760. -moz-box-shadow:none;
  7761. -webkit-box-shadow:none;
  7762. box-shadow:none;
  7763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7764. font-weight:400;
  7765. font-style:normal;
  7766. font-size:12px;
  7767. }
  7768. #u37038 {
  7769. border-width:0px;
  7770. position:absolute;
  7771. left:617px;
  7772. top:824px;
  7773. width:25px;
  7774. height:17px;
  7775. display:flex;
  7776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7777. font-weight:400;
  7778. font-style:normal;
  7779. font-size:12px;
  7780. }
  7781. #u37038 .text {
  7782. position:absolute;
  7783. align-self:flex-start;
  7784. padding:0px 0px 0px 0px;
  7785. box-sizing:border-box;
  7786. width:100%;
  7787. }
  7788. #u37038_text {
  7789. border-width:0px;
  7790. white-space:nowrap;
  7791. text-transform:none;
  7792. }
  7793. #u37039 {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:0px;
  7797. top:0px;
  7798. width:0px;
  7799. height:0px;
  7800. }
  7801. #u37040_div {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:0px;
  7805. top:0px;
  7806. width:375px;
  7807. height:50px;
  7808. background:inherit;
  7809. background-color:rgba(255, 255, 255, 1);
  7810. box-sizing:border-box;
  7811. border-width:1px;
  7812. border-style:solid;
  7813. border-color:rgba(242, 242, 242, 1);
  7814. border-radius:26px;
  7815. border-top-left-radius:0px;
  7816. border-top-right-radius:0px;
  7817. -moz-box-shadow:none;
  7818. -webkit-box-shadow:none;
  7819. box-shadow:none;
  7820. }
  7821. #u37040 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:947px;
  7825. top:795px;
  7826. width:375px;
  7827. height:50px;
  7828. display:flex;
  7829. }
  7830. #u37040 .text {
  7831. position:absolute;
  7832. align-self:center;
  7833. padding:2px 2px 2px 2px;
  7834. box-sizing:border-box;
  7835. width:100%;
  7836. }
  7837. #u37040_text {
  7838. border-width:0px;
  7839. word-wrap:break-word;
  7840. text-transform:none;
  7841. visibility:hidden;
  7842. }
  7843. #u37041 {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:0px;
  7847. top:0px;
  7848. width:0px;
  7849. height:0px;
  7850. }
  7851. #u37042_img {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:0px;
  7855. top:0px;
  7856. width:24px;
  7857. height:24px;
  7858. }
  7859. #u37042 {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:1258px;
  7863. top:799px;
  7864. width:24px;
  7865. height:24px;
  7866. display:flex;
  7867. font-size:8px;
  7868. }
  7869. #u37042 .text {
  7870. position:absolute;
  7871. align-self:center;
  7872. padding:2px 2px 2px 2px;
  7873. box-sizing:border-box;
  7874. width:100%;
  7875. }
  7876. #u37042_text {
  7877. border-width:0px;
  7878. word-wrap:break-word;
  7879. text-transform:none;
  7880. }
  7881. #u37043_div {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:0px;
  7885. top:0px;
  7886. width:25px;
  7887. height:17px;
  7888. background:inherit;
  7889. background-color:rgba(255, 255, 255, 0);
  7890. border:none;
  7891. border-radius:0px;
  7892. -moz-box-shadow:none;
  7893. -webkit-box-shadow:none;
  7894. box-shadow:none;
  7895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7896. font-weight:400;
  7897. font-style:normal;
  7898. font-size:12px;
  7899. }
  7900. #u37043 {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:1258px;
  7904. top:824px;
  7905. width:25px;
  7906. height:17px;
  7907. display:flex;
  7908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7909. font-weight:400;
  7910. font-style:normal;
  7911. font-size:12px;
  7912. }
  7913. #u37043 .text {
  7914. position:absolute;
  7915. align-self:flex-start;
  7916. padding:0px 0px 0px 0px;
  7917. box-sizing:border-box;
  7918. width:100%;
  7919. }
  7920. #u37043_text {
  7921. border-width:0px;
  7922. white-space:nowrap;
  7923. text-transform:none;
  7924. }
  7925. #u37044 {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:0px;
  7929. top:0px;
  7930. width:0px;
  7931. height:0px;
  7932. }
  7933. #u37045_div {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:0px;
  7937. top:0px;
  7938. width:25px;
  7939. height:17px;
  7940. background:inherit;
  7941. background-color:rgba(255, 255, 255, 0);
  7942. border:none;
  7943. border-radius:0px;
  7944. -moz-box-shadow:none;
  7945. -webkit-box-shadow:none;
  7946. box-shadow:none;
  7947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7948. font-weight:400;
  7949. font-style:normal;
  7950. font-size:12px;
  7951. }
  7952. #u37045 {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:1167px;
  7956. top:824px;
  7957. width:25px;
  7958. height:17px;
  7959. display:flex;
  7960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7961. font-weight:400;
  7962. font-style:normal;
  7963. font-size:12px;
  7964. }
  7965. #u37045 .text {
  7966. position:absolute;
  7967. align-self:flex-start;
  7968. padding:0px 0px 0px 0px;
  7969. box-sizing:border-box;
  7970. width:100%;
  7971. }
  7972. #u37045_text {
  7973. border-width:0px;
  7974. white-space:nowrap;
  7975. text-transform:none;
  7976. }
  7977. #u37046_img {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:24px;
  7983. height:24px;
  7984. }
  7985. #u37046 {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:1168px;
  7989. top:799px;
  7990. width:24px;
  7991. height:24px;
  7992. display:flex;
  7993. font-size:8px;
  7994. color:#FFFFFF;
  7995. }
  7996. #u37046 .text {
  7997. position:absolute;
  7998. align-self:center;
  7999. padding:2px 2px 2px 2px;
  8000. box-sizing:border-box;
  8001. width:100%;
  8002. }
  8003. #u37046_text {
  8004. border-width:0px;
  8005. word-wrap:break-word;
  8006. text-transform:none;
  8007. }
  8008. #u37047 {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:0px;
  8012. top:0px;
  8013. width:0px;
  8014. height:0px;
  8015. }
  8016. #u37048_img {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:0px;
  8020. top:0px;
  8021. width:24px;
  8022. height:24px;
  8023. }
  8024. #u37048 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:987px;
  8028. top:799px;
  8029. width:24px;
  8030. height:24px;
  8031. display:flex;
  8032. font-size:8px;
  8033. }
  8034. #u37048 .text {
  8035. position:absolute;
  8036. align-self:center;
  8037. padding:2px 2px 2px 2px;
  8038. box-sizing:border-box;
  8039. width:100%;
  8040. }
  8041. #u37048_text {
  8042. border-width:0px;
  8043. word-wrap:break-word;
  8044. text-transform:none;
  8045. }
  8046. #u37049_div {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:25px;
  8052. height:17px;
  8053. background:inherit;
  8054. background-color:rgba(255, 255, 255, 0);
  8055. border:none;
  8056. border-radius:0px;
  8057. -moz-box-shadow:none;
  8058. -webkit-box-shadow:none;
  8059. box-shadow:none;
  8060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8061. font-weight:400;
  8062. font-style:normal;
  8063. font-size:12px;
  8064. }
  8065. #u37049 {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:987px;
  8069. top:824px;
  8070. width:25px;
  8071. height:17px;
  8072. display:flex;
  8073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8074. font-weight:400;
  8075. font-style:normal;
  8076. font-size:12px;
  8077. }
  8078. #u37049 .text {
  8079. position:absolute;
  8080. align-self:flex-start;
  8081. padding:0px 0px 0px 0px;
  8082. box-sizing:border-box;
  8083. width:100%;
  8084. }
  8085. #u37049_text {
  8086. border-width:0px;
  8087. white-space:nowrap;
  8088. text-transform:none;
  8089. }
  8090. #u37050 {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:0px;
  8094. top:0px;
  8095. width:0px;
  8096. height:0px;
  8097. }
  8098. #u37051_img {
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:0px;
  8102. top:0px;
  8103. width:24px;
  8104. height:24px;
  8105. }
  8106. #u37051 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:1078px;
  8110. top:799px;
  8111. width:24px;
  8112. height:24px;
  8113. display:flex;
  8114. font-size:8px;
  8115. }
  8116. #u37051 .text {
  8117. position:absolute;
  8118. align-self:center;
  8119. padding:2px 2px 2px 2px;
  8120. box-sizing:border-box;
  8121. width:100%;
  8122. }
  8123. #u37051_text {
  8124. border-width:0px;
  8125. word-wrap:break-word;
  8126. text-transform:none;
  8127. }
  8128. #u37052_div {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:25px;
  8134. height:17px;
  8135. background:inherit;
  8136. background-color:rgba(255, 255, 255, 0);
  8137. border:none;
  8138. border-radius:0px;
  8139. -moz-box-shadow:none;
  8140. -webkit-box-shadow:none;
  8141. box-shadow:none;
  8142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8143. font-weight:400;
  8144. font-style:normal;
  8145. font-size:12px;
  8146. }
  8147. #u37052 {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:1078px;
  8151. top:824px;
  8152. width:25px;
  8153. height:17px;
  8154. display:flex;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:12px;
  8159. }
  8160. #u37052 .text {
  8161. position:absolute;
  8162. align-self:flex-start;
  8163. padding:0px 0px 0px 0px;
  8164. box-sizing:border-box;
  8165. width:100%;
  8166. }
  8167. #u37052_text {
  8168. border-width:0px;
  8169. white-space:nowrap;
  8170. text-transform:none;
  8171. }
  8172. #u37053 {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:0px;
  8176. top:0px;
  8177. width:0px;
  8178. height:0px;
  8179. }
  8180. #u37054_div {
  8181. border-width:0px;
  8182. position:absolute;
  8183. left:0px;
  8184. top:0px;
  8185. width:375px;
  8186. height:50px;
  8187. background:inherit;
  8188. background-color:rgba(255, 255, 255, 1);
  8189. box-sizing:border-box;
  8190. border-width:1px;
  8191. border-style:solid;
  8192. border-color:rgba(242, 242, 242, 1);
  8193. border-radius:26px;
  8194. border-top-left-radius:0px;
  8195. border-top-right-radius:0px;
  8196. -moz-box-shadow:none;
  8197. -webkit-box-shadow:none;
  8198. box-shadow:none;
  8199. }
  8200. #u37054 {
  8201. border-width:0px;
  8202. position:absolute;
  8203. left:1405px;
  8204. top:795px;
  8205. width:375px;
  8206. height:50px;
  8207. display:flex;
  8208. }
  8209. #u37054 .text {
  8210. position:absolute;
  8211. align-self:center;
  8212. padding:2px 2px 2px 2px;
  8213. box-sizing:border-box;
  8214. width:100%;
  8215. }
  8216. #u37054_text {
  8217. border-width:0px;
  8218. word-wrap:break-word;
  8219. text-transform:none;
  8220. visibility:hidden;
  8221. }
  8222. #u37055 {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:0px;
  8226. top:0px;
  8227. width:0px;
  8228. height:0px;
  8229. }
  8230. #u37056_img {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:24px;
  8236. height:24px;
  8237. }
  8238. #u37056 {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:1716px;
  8242. top:799px;
  8243. width:24px;
  8244. height:24px;
  8245. display:flex;
  8246. font-size:8px;
  8247. }
  8248. #u37056 .text {
  8249. position:absolute;
  8250. align-self:center;
  8251. padding:2px 2px 2px 2px;
  8252. box-sizing:border-box;
  8253. width:100%;
  8254. }
  8255. #u37056_text {
  8256. border-width:0px;
  8257. word-wrap:break-word;
  8258. text-transform:none;
  8259. }
  8260. #u37057_div {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:25px;
  8266. height:17px;
  8267. background:inherit;
  8268. background-color:rgba(255, 255, 255, 0);
  8269. border:none;
  8270. border-radius:0px;
  8271. -moz-box-shadow:none;
  8272. -webkit-box-shadow:none;
  8273. box-shadow:none;
  8274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8275. font-weight:400;
  8276. font-style:normal;
  8277. font-size:12px;
  8278. }
  8279. #u37057 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:1716px;
  8283. top:824px;
  8284. width:25px;
  8285. height:17px;
  8286. display:flex;
  8287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8288. font-weight:400;
  8289. font-style:normal;
  8290. font-size:12px;
  8291. }
  8292. #u37057 .text {
  8293. position:absolute;
  8294. align-self:flex-start;
  8295. padding:0px 0px 0px 0px;
  8296. box-sizing:border-box;
  8297. width:100%;
  8298. }
  8299. #u37057_text {
  8300. border-width:0px;
  8301. white-space:nowrap;
  8302. text-transform:none;
  8303. }
  8304. #u37058 {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:0px;
  8310. height:0px;
  8311. }
  8312. #u37059_div {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:0px;
  8316. top:0px;
  8317. width:25px;
  8318. height:17px;
  8319. background:inherit;
  8320. background-color:rgba(255, 255, 255, 0);
  8321. border:none;
  8322. border-radius:0px;
  8323. -moz-box-shadow:none;
  8324. -webkit-box-shadow:none;
  8325. box-shadow:none;
  8326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8327. font-weight:400;
  8328. font-style:normal;
  8329. font-size:12px;
  8330. }
  8331. #u37059 {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:1625px;
  8335. top:824px;
  8336. width:25px;
  8337. height:17px;
  8338. display:flex;
  8339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8340. font-weight:400;
  8341. font-style:normal;
  8342. font-size:12px;
  8343. }
  8344. #u37059 .text {
  8345. position:absolute;
  8346. align-self:flex-start;
  8347. padding:0px 0px 0px 0px;
  8348. box-sizing:border-box;
  8349. width:100%;
  8350. }
  8351. #u37059_text {
  8352. border-width:0px;
  8353. white-space:nowrap;
  8354. text-transform:none;
  8355. }
  8356. #u37060_img {
  8357. border-width:0px;
  8358. position:absolute;
  8359. left:0px;
  8360. top:0px;
  8361. width:24px;
  8362. height:24px;
  8363. }
  8364. #u37060 {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:1626px;
  8368. top:799px;
  8369. width:24px;
  8370. height:24px;
  8371. display:flex;
  8372. font-size:8px;
  8373. color:#FFFFFF;
  8374. }
  8375. #u37060 .text {
  8376. position:absolute;
  8377. align-self:center;
  8378. padding:2px 2px 2px 2px;
  8379. box-sizing:border-box;
  8380. width:100%;
  8381. }
  8382. #u37060_text {
  8383. border-width:0px;
  8384. word-wrap:break-word;
  8385. text-transform:none;
  8386. }
  8387. #u37061 {
  8388. border-width:0px;
  8389. position:absolute;
  8390. left:0px;
  8391. top:0px;
  8392. width:0px;
  8393. height:0px;
  8394. }
  8395. #u37062_img {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:0px;
  8399. top:0px;
  8400. width:24px;
  8401. height:24px;
  8402. }
  8403. #u37062 {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:1445px;
  8407. top:799px;
  8408. width:24px;
  8409. height:24px;
  8410. display:flex;
  8411. font-size:8px;
  8412. }
  8413. #u37062 .text {
  8414. position:absolute;
  8415. align-self:center;
  8416. padding:2px 2px 2px 2px;
  8417. box-sizing:border-box;
  8418. width:100%;
  8419. }
  8420. #u37062_text {
  8421. border-width:0px;
  8422. word-wrap:break-word;
  8423. text-transform:none;
  8424. }
  8425. #u37063_div {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:0px;
  8429. top:0px;
  8430. width:25px;
  8431. height:17px;
  8432. background:inherit;
  8433. background-color:rgba(255, 255, 255, 0);
  8434. border:none;
  8435. border-radius:0px;
  8436. -moz-box-shadow:none;
  8437. -webkit-box-shadow:none;
  8438. box-shadow:none;
  8439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8440. font-weight:400;
  8441. font-style:normal;
  8442. font-size:12px;
  8443. }
  8444. #u37063 {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:1445px;
  8448. top:824px;
  8449. width:25px;
  8450. height:17px;
  8451. display:flex;
  8452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8453. font-weight:400;
  8454. font-style:normal;
  8455. font-size:12px;
  8456. }
  8457. #u37063 .text {
  8458. position:absolute;
  8459. align-self:flex-start;
  8460. padding:0px 0px 0px 0px;
  8461. box-sizing:border-box;
  8462. width:100%;
  8463. }
  8464. #u37063_text {
  8465. border-width:0px;
  8466. white-space:nowrap;
  8467. text-transform:none;
  8468. }
  8469. #u37064 {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:0px;
  8475. height:0px;
  8476. }
  8477. #u37065_img {
  8478. border-width:0px;
  8479. position:absolute;
  8480. left:0px;
  8481. top:0px;
  8482. width:24px;
  8483. height:24px;
  8484. }
  8485. #u37065 {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:1536px;
  8489. top:799px;
  8490. width:24px;
  8491. height:24px;
  8492. display:flex;
  8493. font-size:8px;
  8494. }
  8495. #u37065 .text {
  8496. position:absolute;
  8497. align-self:center;
  8498. padding:2px 2px 2px 2px;
  8499. box-sizing:border-box;
  8500. width:100%;
  8501. }
  8502. #u37065_text {
  8503. border-width:0px;
  8504. word-wrap:break-word;
  8505. text-transform:none;
  8506. }
  8507. #u37066_div {
  8508. border-width:0px;
  8509. position:absolute;
  8510. left:0px;
  8511. top:0px;
  8512. width:25px;
  8513. height:17px;
  8514. background:inherit;
  8515. background-color:rgba(255, 255, 255, 0);
  8516. border:none;
  8517. border-radius:0px;
  8518. -moz-box-shadow:none;
  8519. -webkit-box-shadow:none;
  8520. box-shadow:none;
  8521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8522. font-weight:400;
  8523. font-style:normal;
  8524. font-size:12px;
  8525. }
  8526. #u37066 {
  8527. border-width:0px;
  8528. position:absolute;
  8529. left:1536px;
  8530. top:824px;
  8531. width:25px;
  8532. height:17px;
  8533. display:flex;
  8534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8535. font-weight:400;
  8536. font-style:normal;
  8537. font-size:12px;
  8538. }
  8539. #u37066 .text {
  8540. position:absolute;
  8541. align-self:flex-start;
  8542. padding:0px 0px 0px 0px;
  8543. box-sizing:border-box;
  8544. width:100%;
  8545. }
  8546. #u37066_text {
  8547. border-width:0px;
  8548. white-space:nowrap;
  8549. text-transform:none;
  8550. }
  8551. #u37067 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:0px;
  8555. top:0px;
  8556. width:0px;
  8557. height:0px;
  8558. }
  8559. #u37068_div {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:375px;
  8565. height:50px;
  8566. background:inherit;
  8567. background-color:rgba(255, 255, 255, 1);
  8568. box-sizing:border-box;
  8569. border-width:1px;
  8570. border-style:solid;
  8571. border-color:rgba(242, 242, 242, 1);
  8572. border-radius:26px;
  8573. border-top-left-radius:0px;
  8574. border-top-right-radius:0px;
  8575. -moz-box-shadow:none;
  8576. -webkit-box-shadow:none;
  8577. box-shadow:none;
  8578. }
  8579. #u37068 {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:1870px;
  8583. top:795px;
  8584. width:375px;
  8585. height:50px;
  8586. display:flex;
  8587. }
  8588. #u37068 .text {
  8589. position:absolute;
  8590. align-self:center;
  8591. padding:2px 2px 2px 2px;
  8592. box-sizing:border-box;
  8593. width:100%;
  8594. }
  8595. #u37068_text {
  8596. border-width:0px;
  8597. word-wrap:break-word;
  8598. text-transform:none;
  8599. visibility:hidden;
  8600. }
  8601. #u37069 {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:0px;
  8605. top:0px;
  8606. width:0px;
  8607. height:0px;
  8608. }
  8609. #u37070_img {
  8610. border-width:0px;
  8611. position:absolute;
  8612. left:0px;
  8613. top:0px;
  8614. width:24px;
  8615. height:24px;
  8616. }
  8617. #u37070 {
  8618. border-width:0px;
  8619. position:absolute;
  8620. left:2181px;
  8621. top:799px;
  8622. width:24px;
  8623. height:24px;
  8624. display:flex;
  8625. font-size:8px;
  8626. }
  8627. #u37070 .text {
  8628. position:absolute;
  8629. align-self:center;
  8630. padding:2px 2px 2px 2px;
  8631. box-sizing:border-box;
  8632. width:100%;
  8633. }
  8634. #u37070_text {
  8635. border-width:0px;
  8636. word-wrap:break-word;
  8637. text-transform:none;
  8638. }
  8639. #u37071_div {
  8640. border-width:0px;
  8641. position:absolute;
  8642. left:0px;
  8643. top:0px;
  8644. width:25px;
  8645. height:17px;
  8646. background:inherit;
  8647. background-color:rgba(255, 255, 255, 0);
  8648. border:none;
  8649. border-radius:0px;
  8650. -moz-box-shadow:none;
  8651. -webkit-box-shadow:none;
  8652. box-shadow:none;
  8653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8654. font-weight:400;
  8655. font-style:normal;
  8656. font-size:12px;
  8657. }
  8658. #u37071 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:2181px;
  8662. top:824px;
  8663. width:25px;
  8664. height:17px;
  8665. display:flex;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:12px;
  8670. }
  8671. #u37071 .text {
  8672. position:absolute;
  8673. align-self:flex-start;
  8674. padding:0px 0px 0px 0px;
  8675. box-sizing:border-box;
  8676. width:100%;
  8677. }
  8678. #u37071_text {
  8679. border-width:0px;
  8680. white-space:nowrap;
  8681. text-transform:none;
  8682. }
  8683. #u37072 {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:0px;
  8687. top:0px;
  8688. width:0px;
  8689. height:0px;
  8690. }
  8691. #u37073_div {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:25px;
  8697. height:17px;
  8698. background:inherit;
  8699. background-color:rgba(255, 255, 255, 0);
  8700. border:none;
  8701. border-radius:0px;
  8702. -moz-box-shadow:none;
  8703. -webkit-box-shadow:none;
  8704. box-shadow:none;
  8705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8706. font-weight:400;
  8707. font-style:normal;
  8708. font-size:12px;
  8709. }
  8710. #u37073 {
  8711. border-width:0px;
  8712. position:absolute;
  8713. left:2090px;
  8714. top:824px;
  8715. width:25px;
  8716. height:17px;
  8717. display:flex;
  8718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8719. font-weight:400;
  8720. font-style:normal;
  8721. font-size:12px;
  8722. }
  8723. #u37073 .text {
  8724. position:absolute;
  8725. align-self:flex-start;
  8726. padding:0px 0px 0px 0px;
  8727. box-sizing:border-box;
  8728. width:100%;
  8729. }
  8730. #u37073_text {
  8731. border-width:0px;
  8732. white-space:nowrap;
  8733. text-transform:none;
  8734. }
  8735. #u37074_img {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:0px;
  8739. top:0px;
  8740. width:24px;
  8741. height:24px;
  8742. }
  8743. #u37074 {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:2091px;
  8747. top:799px;
  8748. width:24px;
  8749. height:24px;
  8750. display:flex;
  8751. font-size:8px;
  8752. color:#FFFFFF;
  8753. }
  8754. #u37074 .text {
  8755. position:absolute;
  8756. align-self:center;
  8757. padding:2px 2px 2px 2px;
  8758. box-sizing:border-box;
  8759. width:100%;
  8760. }
  8761. #u37074_text {
  8762. border-width:0px;
  8763. word-wrap:break-word;
  8764. text-transform:none;
  8765. }
  8766. #u37075 {
  8767. border-width:0px;
  8768. position:absolute;
  8769. left:0px;
  8770. top:0px;
  8771. width:0px;
  8772. height:0px;
  8773. }
  8774. #u37076_img {
  8775. border-width:0px;
  8776. position:absolute;
  8777. left:0px;
  8778. top:0px;
  8779. width:24px;
  8780. height:24px;
  8781. }
  8782. #u37076 {
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:1910px;
  8786. top:799px;
  8787. width:24px;
  8788. height:24px;
  8789. display:flex;
  8790. font-size:8px;
  8791. }
  8792. #u37076 .text {
  8793. position:absolute;
  8794. align-self:center;
  8795. padding:2px 2px 2px 2px;
  8796. box-sizing:border-box;
  8797. width:100%;
  8798. }
  8799. #u37076_text {
  8800. border-width:0px;
  8801. word-wrap:break-word;
  8802. text-transform:none;
  8803. }
  8804. #u37077_div {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:0px;
  8808. top:0px;
  8809. width:25px;
  8810. height:17px;
  8811. background:inherit;
  8812. background-color:rgba(255, 255, 255, 0);
  8813. border:none;
  8814. border-radius:0px;
  8815. -moz-box-shadow:none;
  8816. -webkit-box-shadow:none;
  8817. box-shadow:none;
  8818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8819. font-weight:400;
  8820. font-style:normal;
  8821. font-size:12px;
  8822. }
  8823. #u37077 {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:1910px;
  8827. top:824px;
  8828. width:25px;
  8829. height:17px;
  8830. display:flex;
  8831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8832. font-weight:400;
  8833. font-style:normal;
  8834. font-size:12px;
  8835. }
  8836. #u37077 .text {
  8837. position:absolute;
  8838. align-self:flex-start;
  8839. padding:0px 0px 0px 0px;
  8840. box-sizing:border-box;
  8841. width:100%;
  8842. }
  8843. #u37077_text {
  8844. border-width:0px;
  8845. white-space:nowrap;
  8846. text-transform:none;
  8847. }
  8848. #u37078 {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:0px;
  8854. height:0px;
  8855. }
  8856. #u37079_img {
  8857. border-width:0px;
  8858. position:absolute;
  8859. left:0px;
  8860. top:0px;
  8861. width:24px;
  8862. height:24px;
  8863. }
  8864. #u37079 {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:2001px;
  8868. top:799px;
  8869. width:24px;
  8870. height:24px;
  8871. display:flex;
  8872. font-size:8px;
  8873. }
  8874. #u37079 .text {
  8875. position:absolute;
  8876. align-self:center;
  8877. padding:2px 2px 2px 2px;
  8878. box-sizing:border-box;
  8879. width:100%;
  8880. }
  8881. #u37079_text {
  8882. border-width:0px;
  8883. word-wrap:break-word;
  8884. text-transform:none;
  8885. }
  8886. #u37080_div {
  8887. border-width:0px;
  8888. position:absolute;
  8889. left:0px;
  8890. top:0px;
  8891. width:25px;
  8892. height:17px;
  8893. background:inherit;
  8894. background-color:rgba(255, 255, 255, 0);
  8895. border:none;
  8896. border-radius:0px;
  8897. -moz-box-shadow:none;
  8898. -webkit-box-shadow:none;
  8899. box-shadow:none;
  8900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8901. font-weight:400;
  8902. font-style:normal;
  8903. font-size:12px;
  8904. }
  8905. #u37080 {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:2001px;
  8909. top:824px;
  8910. width:25px;
  8911. height:17px;
  8912. display:flex;
  8913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8914. font-weight:400;
  8915. font-style:normal;
  8916. font-size:12px;
  8917. }
  8918. #u37080 .text {
  8919. position:absolute;
  8920. align-self:flex-start;
  8921. padding:0px 0px 0px 0px;
  8922. box-sizing:border-box;
  8923. width:100%;
  8924. }
  8925. #u37080_text {
  8926. border-width:0px;
  8927. white-space:nowrap;
  8928. text-transform:none;
  8929. }
  8930. #u37081_img {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:0px;
  8934. top:0px;
  8935. width:23px;
  8936. height:23px;
  8937. }
  8938. #u37081 {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:525px;
  8942. top:76px;
  8943. width:23px;
  8944. height:23px;
  8945. display:flex;
  8946. }
  8947. #u37081 .text {
  8948. position:absolute;
  8949. align-self:center;
  8950. padding:2px 2px 2px 2px;
  8951. box-sizing:border-box;
  8952. width:100%;
  8953. }
  8954. #u37081_text {
  8955. border-width:0px;
  8956. word-wrap:break-word;
  8957. text-transform:none;
  8958. visibility:hidden;
  8959. }
  8960. #u37082_div {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:0px;
  8964. top:0px;
  8965. width:12px;
  8966. height:12px;
  8967. background:inherit;
  8968. background-color:rgba(255, 255, 255, 0);
  8969. box-sizing:border-box;
  8970. border-width:2px;
  8971. border-style:solid;
  8972. border-color:rgba(51, 51, 51, 1);
  8973. border-right:0px;
  8974. border-bottom:0px;
  8975. border-radius:0px;
  8976. border-top-right-radius:0px;
  8977. border-bottom-left-radius:0px;
  8978. -moz-box-shadow:none;
  8979. -webkit-box-shadow:none;
  8980. box-shadow:none;
  8981. }
  8982. #u37082 {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:42px;
  8986. top:82px;
  8987. width:12px;
  8988. height:12px;
  8989. display:flex;
  8990. -webkit-transform:rotate(315deg);
  8991. -moz-transform:rotate(315deg);
  8992. -ms-transform:rotate(315deg);
  8993. transform:rotate(315deg);
  8994. }
  8995. #u37082 .text {
  8996. position:absolute;
  8997. align-self:center;
  8998. padding:2px 2px 2px 2px;
  8999. box-sizing:border-box;
  9000. width:100%;
  9001. }
  9002. #u37082_text {
  9003. border-width:0px;
  9004. word-wrap:break-word;
  9005. text-transform:none;
  9006. visibility:hidden;
  9007. }
  9008. #u37083_div {
  9009. border-width:0px;
  9010. position:absolute;
  9011. left:0px;
  9012. top:0px;
  9013. width:65px;
  9014. height:22px;
  9015. background:inherit;
  9016. background-color:rgba(255, 255, 255, 0);
  9017. border:none;
  9018. border-radius:0px;
  9019. -moz-box-shadow:none;
  9020. -webkit-box-shadow:none;
  9021. box-shadow:none;
  9022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:16px;
  9026. color:#000000;
  9027. }
  9028. #u37083 {
  9029. border-width:0px;
  9030. position:absolute;
  9031. left:179px;
  9032. top:77px;
  9033. width:65px;
  9034. height:22px;
  9035. display:flex;
  9036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9037. font-weight:400;
  9038. font-style:normal;
  9039. font-size:16px;
  9040. color:#000000;
  9041. }
  9042. #u37083 .text {
  9043. position:absolute;
  9044. align-self:flex-start;
  9045. padding:0px 0px 0px 0px;
  9046. box-sizing:border-box;
  9047. width:100%;
  9048. }
  9049. #u37083_text {
  9050. border-width:0px;
  9051. white-space:nowrap;
  9052. text-transform:none;
  9053. }
  9054. #u37084_img {
  9055. border-width:0px;
  9056. position:absolute;
  9057. left:0px;
  9058. top:0px;
  9059. width:23px;
  9060. height:23px;
  9061. }
  9062. #u37084 {
  9063. border-width:0px;
  9064. position:absolute;
  9065. left:61px;
  9066. top:76px;
  9067. width:23px;
  9068. height:23px;
  9069. display:flex;
  9070. }
  9071. #u37084 .text {
  9072. position:absolute;
  9073. align-self:center;
  9074. padding:2px 2px 2px 2px;
  9075. box-sizing:border-box;
  9076. width:100%;
  9077. }
  9078. #u37084_text {
  9079. border-width:0px;
  9080. word-wrap:break-word;
  9081. text-transform:none;
  9082. visibility:hidden;
  9083. }
  9084. #u37085_img {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:0px;
  9088. top:0px;
  9089. width:23px;
  9090. height:23px;
  9091. }
  9092. #u37085 {
  9093. border-width:0px;
  9094. position:absolute;
  9095. left:986px;
  9096. top:76px;
  9097. width:23px;
  9098. height:23px;
  9099. display:flex;
  9100. }
  9101. #u37085 .text {
  9102. position:absolute;
  9103. align-self:center;
  9104. padding:2px 2px 2px 2px;
  9105. box-sizing:border-box;
  9106. width:100%;
  9107. }
  9108. #u37085_text {
  9109. border-width:0px;
  9110. word-wrap:break-word;
  9111. text-transform:none;
  9112. visibility:hidden;
  9113. }
  9114. #u37086_img {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:0px;
  9118. top:0px;
  9119. width:23px;
  9120. height:23px;
  9121. }
  9122. #u37086 {
  9123. border-width:0px;
  9124. position:absolute;
  9125. left:1444px;
  9126. top:76px;
  9127. width:23px;
  9128. height:23px;
  9129. display:flex;
  9130. }
  9131. #u37086 .text {
  9132. position:absolute;
  9133. align-self:center;
  9134. padding:2px 2px 2px 2px;
  9135. box-sizing:border-box;
  9136. width:100%;
  9137. }
  9138. #u37086_text {
  9139. border-width:0px;
  9140. word-wrap:break-word;
  9141. text-transform:none;
  9142. visibility:hidden;
  9143. }
  9144. #u37087_img {
  9145. border-width:0px;
  9146. position:absolute;
  9147. left:0px;
  9148. top:0px;
  9149. width:23px;
  9150. height:23px;
  9151. }
  9152. #u37087 {
  9153. border-width:0px;
  9154. position:absolute;
  9155. left:1912px;
  9156. top:76px;
  9157. width:23px;
  9158. height:23px;
  9159. display:flex;
  9160. }
  9161. #u37087 .text {
  9162. position:absolute;
  9163. align-self:center;
  9164. padding:2px 2px 2px 2px;
  9165. box-sizing:border-box;
  9166. width:100%;
  9167. }
  9168. #u37087_text {
  9169. border-width:0px;
  9170. word-wrap:break-word;
  9171. text-transform:none;
  9172. visibility:hidden;
  9173. }
  9174. #u37088 {
  9175. border-width:0px;
  9176. position:absolute;
  9177. left:0px;
  9178. top:0px;
  9179. width:0px;
  9180. height:0px;
  9181. }
  9182. #u37089_div {
  9183. border-width:0px;
  9184. position:absolute;
  9185. left:0px;
  9186. top:0px;
  9187. width:375px;
  9188. height:50px;
  9189. background:inherit;
  9190. background-color:rgba(255, 255, 255, 1);
  9191. border:none;
  9192. border-radius:0px;
  9193. -moz-box-shadow:none;
  9194. -webkit-box-shadow:none;
  9195. box-shadow:none;
  9196. }
  9197. #u37089 {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:29px;
  9201. top:105px;
  9202. width:375px;
  9203. height:50px;
  9204. display:flex;
  9205. }
  9206. #u37089 .text {
  9207. position:absolute;
  9208. align-self:center;
  9209. padding:2px 2px 2px 2px;
  9210. box-sizing:border-box;
  9211. width:100%;
  9212. }
  9213. #u37089_text {
  9214. border-width:0px;
  9215. word-wrap:break-word;
  9216. text-transform:none;
  9217. visibility:hidden;
  9218. }
  9219. #u37090 {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:0px;
  9225. height:0px;
  9226. }
  9227. #u37091 {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:0px;
  9231. top:0px;
  9232. width:0px;
  9233. height:0px;
  9234. }
  9235. #u37092_div {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:0px;
  9239. top:0px;
  9240. width:280px;
  9241. height:30px;
  9242. background:inherit;
  9243. background-color:rgba(242, 242, 242, 1);
  9244. border:none;
  9245. border-radius:20px;
  9246. -moz-box-shadow:none;
  9247. -webkit-box-shadow:none;
  9248. box-shadow:none;
  9249. }
  9250. #u37092 {
  9251. border-width:0px;
  9252. position:absolute;
  9253. left:42px;
  9254. top:115px;
  9255. width:280px;
  9256. height:30px;
  9257. display:flex;
  9258. }
  9259. #u37092 .text {
  9260. position:absolute;
  9261. align-self:center;
  9262. padding:2px 2px 2px 2px;
  9263. box-sizing:border-box;
  9264. width:100%;
  9265. }
  9266. #u37092_text {
  9267. border-width:0px;
  9268. word-wrap:break-word;
  9269. text-transform:none;
  9270. visibility:hidden;
  9271. }
  9272. #u37093_input {
  9273. position:absolute;
  9274. left:0px;
  9275. top:0px;
  9276. width:252px;
  9277. height:22px;
  9278. padding:2px 2px 2px 2px;
  9279. font-family:'ArialMT', 'Arial', sans-serif;
  9280. font-weight:400;
  9281. font-style:normal;
  9282. font-size:12px;
  9283. letter-spacing:normal;
  9284. color:#7F7F7F;
  9285. vertical-align:none;
  9286. text-align:left;
  9287. text-transform:none;
  9288. background-color:transparent;
  9289. border-color:transparent;
  9290. }
  9291. #u37093_input.disabled {
  9292. position:absolute;
  9293. left:0px;
  9294. top:0px;
  9295. width:252px;
  9296. height:22px;
  9297. padding:2px 2px 2px 2px;
  9298. font-family:'ArialMT', 'Arial', sans-serif;
  9299. font-weight:400;
  9300. font-style:normal;
  9301. font-size:12px;
  9302. letter-spacing:normal;
  9303. color:#7F7F7F;
  9304. vertical-align:none;
  9305. text-align:left;
  9306. text-transform:none;
  9307. background-color:transparent;
  9308. border-color:transparent;
  9309. }
  9310. #u37093_div {
  9311. border-width:0px;
  9312. position:absolute;
  9313. left:0px;
  9314. top:0px;
  9315. width:252px;
  9316. height:22px;
  9317. background:inherit;
  9318. background-color:rgba(255, 255, 255, 0);
  9319. border:none;
  9320. border-radius:0px;
  9321. -moz-box-shadow:none;
  9322. -webkit-box-shadow:none;
  9323. box-shadow:none;
  9324. font-size:12px;
  9325. color:#7F7F7F;
  9326. }
  9327. #u37093 {
  9328. border-width:0px;
  9329. position:absolute;
  9330. left:56px;
  9331. top:119px;
  9332. width:252px;
  9333. height:22px;
  9334. display:flex;
  9335. font-size:12px;
  9336. color:#7F7F7F;
  9337. }
  9338. #u37093 .text {
  9339. position:absolute;
  9340. align-self:flex-start;
  9341. padding:2px 2px 2px 2px;
  9342. box-sizing:border-box;
  9343. width:100%;
  9344. }
  9345. #u37093_div.disabled {
  9346. border-width:0px;
  9347. position:absolute;
  9348. left:0px;
  9349. top:0px;
  9350. width:252px;
  9351. height:22px;
  9352. background:inherit;
  9353. background-color:rgba(240, 240, 240, 1);
  9354. border:none;
  9355. border-radius:0px;
  9356. -moz-box-shadow:none;
  9357. -webkit-box-shadow:none;
  9358. box-shadow:none;
  9359. font-size:12px;
  9360. color:#7F7F7F;
  9361. }
  9362. #u37093.disabled {
  9363. }
  9364. .u37093_input_option {
  9365. font-size:12px;
  9366. }
  9367. #u37094_div {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:0px;
  9371. top:0px;
  9372. width:64px;
  9373. height:30px;
  9374. background:inherit;
  9375. background-color:rgba(255, 255, 255, 0);
  9376. border:none;
  9377. border-left:0px;
  9378. border-top:0px;
  9379. border-right:0px;
  9380. border-radius:0px;
  9381. border-bottom-right-radius:0px;
  9382. border-bottom-left-radius:0px;
  9383. -moz-box-shadow:none;
  9384. -webkit-box-shadow:none;
  9385. box-shadow:none;
  9386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9387. font-weight:400;
  9388. font-style:normal;
  9389. font-size:12px;
  9390. color:#1890FF;
  9391. line-height:30px;
  9392. }
  9393. #u37094 {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:332px;
  9397. top:115px;
  9398. width:64px;
  9399. height:30px;
  9400. display:flex;
  9401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9402. font-weight:400;
  9403. font-style:normal;
  9404. font-size:12px;
  9405. color:#1890FF;
  9406. line-height:30px;
  9407. }
  9408. #u37094 .text {
  9409. position:absolute;
  9410. align-self:flex-start;
  9411. padding:0px 0px 0px 0px;
  9412. box-sizing:border-box;
  9413. width:100%;
  9414. }
  9415. #u37094_text {
  9416. border-width:0px;
  9417. white-space:nowrap;
  9418. text-transform:none;
  9419. }
  9420. #u37095 {
  9421. border-width:0px;
  9422. position:absolute;
  9423. left:0px;
  9424. top:0px;
  9425. width:0px;
  9426. height:0px;
  9427. }
  9428. #u37096_div {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:0px;
  9432. top:0px;
  9433. width:375px;
  9434. height:41px;
  9435. background:inherit;
  9436. background-color:rgba(255, 255, 255, 1);
  9437. border:none;
  9438. border-radius:0px;
  9439. -moz-box-shadow:none;
  9440. -webkit-box-shadow:none;
  9441. box-shadow:none;
  9442. }
  9443. #u37096 {
  9444. border-width:0px;
  9445. position:absolute;
  9446. left:29px;
  9447. top:155px;
  9448. width:375px;
  9449. height:41px;
  9450. display:flex;
  9451. }
  9452. #u37096 .text {
  9453. position:absolute;
  9454. align-self:center;
  9455. padding:2px 2px 2px 2px;
  9456. box-sizing:border-box;
  9457. width:100%;
  9458. }
  9459. #u37096_text {
  9460. border-width:0px;
  9461. word-wrap:break-word;
  9462. text-transform:none;
  9463. visibility:hidden;
  9464. }
  9465. #u37097_div {
  9466. border-width:0px;
  9467. position:absolute;
  9468. left:0px;
  9469. top:0px;
  9470. width:37px;
  9471. height:40px;
  9472. background:inherit;
  9473. background-color:rgba(255, 255, 255, 0);
  9474. border:none;
  9475. border-left:0px;
  9476. border-top:0px;
  9477. border-right:0px;
  9478. border-radius:0px;
  9479. border-bottom-right-radius:0px;
  9480. border-bottom-left-radius:0px;
  9481. -moz-box-shadow:none;
  9482. -webkit-box-shadow:none;
  9483. box-shadow:none;
  9484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9485. font-weight:400;
  9486. font-style:normal;
  9487. font-size:12px;
  9488. text-align:center;
  9489. }
  9490. #u37097 {
  9491. border-width:0px;
  9492. position:absolute;
  9493. left:110px;
  9494. top:155px;
  9495. width:37px;
  9496. height:40px;
  9497. display:flex;
  9498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9499. font-weight:400;
  9500. font-style:normal;
  9501. font-size:12px;
  9502. text-align:center;
  9503. }
  9504. #u37097 .text {
  9505. position:absolute;
  9506. align-self:center;
  9507. padding:0px 0px 0px 0px;
  9508. box-sizing:border-box;
  9509. width:100%;
  9510. }
  9511. #u37097_text {
  9512. border-width:0px;
  9513. white-space:nowrap;
  9514. text-transform:none;
  9515. }
  9516. #u37098_div {
  9517. border-width:0px;
  9518. position:absolute;
  9519. left:0px;
  9520. top:0px;
  9521. width:37px;
  9522. height:40px;
  9523. background:inherit;
  9524. background-color:rgba(255, 255, 255, 0);
  9525. border:none;
  9526. border-left:0px;
  9527. border-top:0px;
  9528. border-right:0px;
  9529. border-radius:0px;
  9530. border-bottom-right-radius:0px;
  9531. border-bottom-left-radius:0px;
  9532. -moz-box-shadow:none;
  9533. -webkit-box-shadow:none;
  9534. box-shadow:none;
  9535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9536. font-weight:400;
  9537. font-style:normal;
  9538. font-size:12px;
  9539. color:#000000;
  9540. text-align:center;
  9541. }
  9542. #u37098 {
  9543. border-width:0px;
  9544. position:absolute;
  9545. left:176px;
  9546. top:155px;
  9547. width:37px;
  9548. height:40px;
  9549. display:flex;
  9550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9551. font-weight:400;
  9552. font-style:normal;
  9553. font-size:12px;
  9554. color:#000000;
  9555. text-align:center;
  9556. }
  9557. #u37098 .text {
  9558. position:absolute;
  9559. align-self:center;
  9560. padding:0px 0px 0px 0px;
  9561. box-sizing:border-box;
  9562. width:100%;
  9563. }
  9564. #u37098_text {
  9565. border-width:0px;
  9566. white-space:nowrap;
  9567. text-transform:none;
  9568. }
  9569. #u37099_div {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:0px;
  9573. top:0px;
  9574. width:37px;
  9575. height:40px;
  9576. background:inherit;
  9577. background-color:rgba(255, 255, 255, 0);
  9578. border:none;
  9579. border-left:0px;
  9580. border-top:0px;
  9581. border-right:0px;
  9582. border-radius:0px;
  9583. border-bottom-right-radius:0px;
  9584. border-bottom-left-radius:0px;
  9585. -moz-box-shadow:none;
  9586. -webkit-box-shadow:none;
  9587. box-shadow:none;
  9588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9589. font-weight:400;
  9590. font-style:normal;
  9591. font-size:12px;
  9592. color:#000000;
  9593. text-align:center;
  9594. }
  9595. #u37099 {
  9596. border-width:0px;
  9597. position:absolute;
  9598. left:241px;
  9599. top:155px;
  9600. width:37px;
  9601. height:40px;
  9602. display:flex;
  9603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9604. font-weight:400;
  9605. font-style:normal;
  9606. font-size:12px;
  9607. color:#000000;
  9608. text-align:center;
  9609. }
  9610. #u37099 .text {
  9611. position:absolute;
  9612. align-self:center;
  9613. padding:0px 0px 0px 0px;
  9614. box-sizing:border-box;
  9615. width:100%;
  9616. }
  9617. #u37099_text {
  9618. border-width:0px;
  9619. white-space:nowrap;
  9620. text-transform:none;
  9621. }
  9622. #u37100_div {
  9623. border-width:0px;
  9624. position:absolute;
  9625. left:0px;
  9626. top:0px;
  9627. width:37px;
  9628. height:40px;
  9629. background:inherit;
  9630. background-color:rgba(255, 255, 255, 0);
  9631. box-sizing:border-box;
  9632. border-width:2px;
  9633. border-style:solid;
  9634. border-color:rgba(41, 143, 255, 1);
  9635. border-left:0px;
  9636. border-top:0px;
  9637. border-right:0px;
  9638. border-radius:0px;
  9639. border-bottom-right-radius:0px;
  9640. border-bottom-left-radius:0px;
  9641. -moz-box-shadow:none;
  9642. -webkit-box-shadow:none;
  9643. box-shadow:none;
  9644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9645. font-weight:400;
  9646. font-style:normal;
  9647. font-size:12px;
  9648. color:#1890FF;
  9649. text-align:center;
  9650. }
  9651. #u37100 {
  9652. border-width:0px;
  9653. position:absolute;
  9654. left:45px;
  9655. top:155px;
  9656. width:37px;
  9657. height:40px;
  9658. display:flex;
  9659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9660. font-weight:400;
  9661. font-style:normal;
  9662. font-size:12px;
  9663. color:#1890FF;
  9664. text-align:center;
  9665. }
  9666. #u37100 .text {
  9667. position:absolute;
  9668. align-self:center;
  9669. padding:0px 0px 0px 0px;
  9670. box-sizing:border-box;
  9671. width:100%;
  9672. }
  9673. #u37100_text {
  9674. border-width:0px;
  9675. white-space:nowrap;
  9676. text-transform:none;
  9677. }
  9678. #u37101_div {
  9679. border-width:0px;
  9680. position:absolute;
  9681. left:0px;
  9682. top:0px;
  9683. width:11px;
  9684. height:11px;
  9685. background:inherit;
  9686. background-color:rgba(217, 0, 27, 1);
  9687. border:none;
  9688. border-radius:7px;
  9689. -moz-box-shadow:none;
  9690. -webkit-box-shadow:none;
  9691. box-shadow:none;
  9692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9693. font-weight:400;
  9694. font-style:normal;
  9695. font-size:8px;
  9696. color:#FFFFFF;
  9697. text-align:center;
  9698. }
  9699. #u37101 {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:79px;
  9703. top:159px;
  9704. width:11px;
  9705. height:11px;
  9706. display:flex;
  9707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9708. font-weight:400;
  9709. font-style:normal;
  9710. font-size:8px;
  9711. color:#FFFFFF;
  9712. text-align:center;
  9713. }
  9714. #u37101 .text {
  9715. position:absolute;
  9716. align-self:flex-start;
  9717. padding:0px 0px 0px 0px;
  9718. box-sizing:border-box;
  9719. width:100%;
  9720. }
  9721. #u37101_text {
  9722. border-width:0px;
  9723. word-wrap:break-word;
  9724. text-transform:none;
  9725. }
  9726. #u37102_div {
  9727. border-width:0px;
  9728. position:absolute;
  9729. left:0px;
  9730. top:0px;
  9731. width:37px;
  9732. height:40px;
  9733. background:inherit;
  9734. background-color:rgba(255, 255, 255, 0);
  9735. border:none;
  9736. border-left:0px;
  9737. border-top:0px;
  9738. border-right:0px;
  9739. border-radius:0px;
  9740. border-bottom-right-radius:0px;
  9741. border-bottom-left-radius:0px;
  9742. -moz-box-shadow:none;
  9743. -webkit-box-shadow:none;
  9744. box-shadow:none;
  9745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9746. font-weight:400;
  9747. font-style:normal;
  9748. font-size:12px;
  9749. color:#000000;
  9750. text-align:center;
  9751. }
  9752. #u37102 {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:308px;
  9756. top:155px;
  9757. width:37px;
  9758. height:40px;
  9759. display:flex;
  9760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9761. font-weight:400;
  9762. font-style:normal;
  9763. font-size:12px;
  9764. color:#000000;
  9765. text-align:center;
  9766. }
  9767. #u37102 .text {
  9768. position:absolute;
  9769. align-self:center;
  9770. padding:0px 0px 0px 0px;
  9771. box-sizing:border-box;
  9772. width:100%;
  9773. }
  9774. #u37102_text {
  9775. border-width:0px;
  9776. white-space:nowrap;
  9777. text-transform:none;
  9778. }
  9779. #u37103 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:0px;
  9783. top:0px;
  9784. width:0px;
  9785. height:0px;
  9786. }
  9787. #u37104_div {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:0px;
  9791. top:0px;
  9792. width:375px;
  9793. height:50px;
  9794. background:inherit;
  9795. background-color:rgba(255, 255, 255, 1);
  9796. border:none;
  9797. border-radius:0px;
  9798. -moz-box-shadow:none;
  9799. -webkit-box-shadow:none;
  9800. box-shadow:none;
  9801. }
  9802. #u37104 {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:486px;
  9806. top:105px;
  9807. width:375px;
  9808. height:50px;
  9809. display:flex;
  9810. }
  9811. #u37104 .text {
  9812. position:absolute;
  9813. align-self:center;
  9814. padding:2px 2px 2px 2px;
  9815. box-sizing:border-box;
  9816. width:100%;
  9817. }
  9818. #u37104_text {
  9819. border-width:0px;
  9820. word-wrap:break-word;
  9821. text-transform:none;
  9822. visibility:hidden;
  9823. }
  9824. #u37105 {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:0px;
  9828. top:0px;
  9829. width:0px;
  9830. height:0px;
  9831. }
  9832. #u37106 {
  9833. border-width:0px;
  9834. position:absolute;
  9835. left:0px;
  9836. top:0px;
  9837. width:0px;
  9838. height:0px;
  9839. }
  9840. #u37107_div {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:0px;
  9844. top:0px;
  9845. width:280px;
  9846. height:30px;
  9847. background:inherit;
  9848. background-color:rgba(242, 242, 242, 1);
  9849. border:none;
  9850. border-radius:20px;
  9851. -moz-box-shadow:none;
  9852. -webkit-box-shadow:none;
  9853. box-shadow:none;
  9854. }
  9855. #u37107 {
  9856. border-width:0px;
  9857. position:absolute;
  9858. left:499px;
  9859. top:115px;
  9860. width:280px;
  9861. height:30px;
  9862. display:flex;
  9863. }
  9864. #u37107 .text {
  9865. position:absolute;
  9866. align-self:center;
  9867. padding:2px 2px 2px 2px;
  9868. box-sizing:border-box;
  9869. width:100%;
  9870. }
  9871. #u37107_text {
  9872. border-width:0px;
  9873. word-wrap:break-word;
  9874. text-transform:none;
  9875. visibility:hidden;
  9876. }
  9877. #u37108_input {
  9878. position:absolute;
  9879. left:0px;
  9880. top:0px;
  9881. width:252px;
  9882. height:22px;
  9883. padding:2px 2px 2px 2px;
  9884. font-family:'ArialMT', 'Arial', sans-serif;
  9885. font-weight:400;
  9886. font-style:normal;
  9887. font-size:12px;
  9888. letter-spacing:normal;
  9889. color:#7F7F7F;
  9890. vertical-align:none;
  9891. text-align:left;
  9892. text-transform:none;
  9893. background-color:transparent;
  9894. border-color:transparent;
  9895. }
  9896. #u37108_input.disabled {
  9897. position:absolute;
  9898. left:0px;
  9899. top:0px;
  9900. width:252px;
  9901. height:22px;
  9902. padding:2px 2px 2px 2px;
  9903. font-family:'ArialMT', 'Arial', sans-serif;
  9904. font-weight:400;
  9905. font-style:normal;
  9906. font-size:12px;
  9907. letter-spacing:normal;
  9908. color:#7F7F7F;
  9909. vertical-align:none;
  9910. text-align:left;
  9911. text-transform:none;
  9912. background-color:transparent;
  9913. border-color:transparent;
  9914. }
  9915. #u37108_div {
  9916. border-width:0px;
  9917. position:absolute;
  9918. left:0px;
  9919. top:0px;
  9920. width:252px;
  9921. height:22px;
  9922. background:inherit;
  9923. background-color:rgba(255, 255, 255, 0);
  9924. border:none;
  9925. border-radius:0px;
  9926. -moz-box-shadow:none;
  9927. -webkit-box-shadow:none;
  9928. box-shadow:none;
  9929. font-size:12px;
  9930. color:#7F7F7F;
  9931. }
  9932. #u37108 {
  9933. border-width:0px;
  9934. position:absolute;
  9935. left:513px;
  9936. top:119px;
  9937. width:252px;
  9938. height:22px;
  9939. display:flex;
  9940. font-size:12px;
  9941. color:#7F7F7F;
  9942. }
  9943. #u37108 .text {
  9944. position:absolute;
  9945. align-self:flex-start;
  9946. padding:2px 2px 2px 2px;
  9947. box-sizing:border-box;
  9948. width:100%;
  9949. }
  9950. #u37108_div.disabled {
  9951. border-width:0px;
  9952. position:absolute;
  9953. left:0px;
  9954. top:0px;
  9955. width:252px;
  9956. height:22px;
  9957. background:inherit;
  9958. background-color:rgba(240, 240, 240, 1);
  9959. border:none;
  9960. border-radius:0px;
  9961. -moz-box-shadow:none;
  9962. -webkit-box-shadow:none;
  9963. box-shadow:none;
  9964. font-size:12px;
  9965. color:#7F7F7F;
  9966. }
  9967. #u37108.disabled {
  9968. }
  9969. .u37108_input_option {
  9970. font-size:12px;
  9971. }
  9972. #u37109_div {
  9973. border-width:0px;
  9974. position:absolute;
  9975. left:0px;
  9976. top:0px;
  9977. width:64px;
  9978. height:30px;
  9979. background:inherit;
  9980. background-color:rgba(255, 255, 255, 0);
  9981. border:none;
  9982. border-left:0px;
  9983. border-top:0px;
  9984. border-right:0px;
  9985. border-radius:0px;
  9986. border-bottom-right-radius:0px;
  9987. border-bottom-left-radius:0px;
  9988. -moz-box-shadow:none;
  9989. -webkit-box-shadow:none;
  9990. box-shadow:none;
  9991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9992. font-weight:400;
  9993. font-style:normal;
  9994. font-size:12px;
  9995. color:#1890FF;
  9996. line-height:30px;
  9997. }
  9998. #u37109 {
  9999. border-width:0px;
  10000. position:absolute;
  10001. left:789px;
  10002. top:115px;
  10003. width:64px;
  10004. height:30px;
  10005. display:flex;
  10006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10007. font-weight:400;
  10008. font-style:normal;
  10009. font-size:12px;
  10010. color:#1890FF;
  10011. line-height:30px;
  10012. }
  10013. #u37109 .text {
  10014. position:absolute;
  10015. align-self:flex-start;
  10016. padding:0px 0px 0px 0px;
  10017. box-sizing:border-box;
  10018. width:100%;
  10019. }
  10020. #u37109_text {
  10021. border-width:0px;
  10022. white-space:nowrap;
  10023. text-transform:none;
  10024. }
  10025. #u37110 {
  10026. border-width:0px;
  10027. position:absolute;
  10028. left:0px;
  10029. top:0px;
  10030. width:0px;
  10031. height:0px;
  10032. }
  10033. #u37111_div {
  10034. border-width:0px;
  10035. position:absolute;
  10036. left:0px;
  10037. top:0px;
  10038. width:375px;
  10039. height:41px;
  10040. background:inherit;
  10041. background-color:rgba(255, 255, 255, 1);
  10042. border:none;
  10043. border-radius:0px;
  10044. -moz-box-shadow:none;
  10045. -webkit-box-shadow:none;
  10046. box-shadow:none;
  10047. }
  10048. #u37111 {
  10049. border-width:0px;
  10050. position:absolute;
  10051. left:486px;
  10052. top:155px;
  10053. width:375px;
  10054. height:41px;
  10055. display:flex;
  10056. }
  10057. #u37111 .text {
  10058. position:absolute;
  10059. align-self:center;
  10060. padding:2px 2px 2px 2px;
  10061. box-sizing:border-box;
  10062. width:100%;
  10063. }
  10064. #u37111_text {
  10065. border-width:0px;
  10066. word-wrap:break-word;
  10067. text-transform:none;
  10068. visibility:hidden;
  10069. }
  10070. #u37112_div {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:0px;
  10074. top:0px;
  10075. width:37px;
  10076. height:40px;
  10077. background:inherit;
  10078. background-color:rgba(255, 255, 255, 0);
  10079. box-sizing:border-box;
  10080. border-width:2px;
  10081. border-style:solid;
  10082. border-color:rgba(41, 143, 255, 1);
  10083. border-left:0px;
  10084. border-top:0px;
  10085. border-right:0px;
  10086. border-radius:0px;
  10087. border-bottom-right-radius:0px;
  10088. border-bottom-left-radius:0px;
  10089. -moz-box-shadow:none;
  10090. -webkit-box-shadow:none;
  10091. box-shadow:none;
  10092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10093. font-weight:400;
  10094. font-style:normal;
  10095. font-size:12px;
  10096. color:#298FFF;
  10097. text-align:center;
  10098. }
  10099. #u37112 {
  10100. border-width:0px;
  10101. position:absolute;
  10102. left:567px;
  10103. top:155px;
  10104. width:37px;
  10105. height:40px;
  10106. display:flex;
  10107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10108. font-weight:400;
  10109. font-style:normal;
  10110. font-size:12px;
  10111. color:#298FFF;
  10112. text-align:center;
  10113. }
  10114. #u37112 .text {
  10115. position:absolute;
  10116. align-self:center;
  10117. padding:0px 0px 0px 0px;
  10118. box-sizing:border-box;
  10119. width:100%;
  10120. }
  10121. #u37112_text {
  10122. border-width:0px;
  10123. white-space:nowrap;
  10124. text-transform:none;
  10125. }
  10126. #u37113_div {
  10127. border-width:0px;
  10128. position:absolute;
  10129. left:0px;
  10130. top:0px;
  10131. width:37px;
  10132. height:40px;
  10133. background:inherit;
  10134. background-color:rgba(255, 255, 255, 0);
  10135. border:none;
  10136. border-left:0px;
  10137. border-top:0px;
  10138. border-right:0px;
  10139. border-radius:0px;
  10140. border-bottom-right-radius:0px;
  10141. border-bottom-left-radius:0px;
  10142. -moz-box-shadow:none;
  10143. -webkit-box-shadow:none;
  10144. box-shadow:none;
  10145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10146. font-weight:400;
  10147. font-style:normal;
  10148. font-size:12px;
  10149. color:#000000;
  10150. text-align:center;
  10151. }
  10152. #u37113 {
  10153. border-width:0px;
  10154. position:absolute;
  10155. left:633px;
  10156. top:155px;
  10157. width:37px;
  10158. height:40px;
  10159. display:flex;
  10160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10161. font-weight:400;
  10162. font-style:normal;
  10163. font-size:12px;
  10164. color:#000000;
  10165. text-align:center;
  10166. }
  10167. #u37113 .text {
  10168. position:absolute;
  10169. align-self:center;
  10170. padding:0px 0px 0px 0px;
  10171. box-sizing:border-box;
  10172. width:100%;
  10173. }
  10174. #u37113_text {
  10175. border-width:0px;
  10176. white-space:nowrap;
  10177. text-transform:none;
  10178. }
  10179. #u37114_div {
  10180. border-width:0px;
  10181. position:absolute;
  10182. left:0px;
  10183. top:0px;
  10184. width:37px;
  10185. height:40px;
  10186. background:inherit;
  10187. background-color:rgba(255, 255, 255, 0);
  10188. border:none;
  10189. border-left:0px;
  10190. border-top:0px;
  10191. border-right:0px;
  10192. border-radius:0px;
  10193. border-bottom-right-radius:0px;
  10194. border-bottom-left-radius:0px;
  10195. -moz-box-shadow:none;
  10196. -webkit-box-shadow:none;
  10197. box-shadow:none;
  10198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10199. font-weight:400;
  10200. font-style:normal;
  10201. font-size:12px;
  10202. color:#000000;
  10203. text-align:center;
  10204. }
  10205. #u37114 {
  10206. border-width:0px;
  10207. position:absolute;
  10208. left:698px;
  10209. top:155px;
  10210. width:37px;
  10211. height:40px;
  10212. display:flex;
  10213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10214. font-weight:400;
  10215. font-style:normal;
  10216. font-size:12px;
  10217. color:#000000;
  10218. text-align:center;
  10219. }
  10220. #u37114 .text {
  10221. position:absolute;
  10222. align-self:center;
  10223. padding:0px 0px 0px 0px;
  10224. box-sizing:border-box;
  10225. width:100%;
  10226. }
  10227. #u37114_text {
  10228. border-width:0px;
  10229. white-space:nowrap;
  10230. text-transform:none;
  10231. }
  10232. #u37115_div {
  10233. border-width:0px;
  10234. position:absolute;
  10235. left:0px;
  10236. top:0px;
  10237. width:37px;
  10238. height:40px;
  10239. background:inherit;
  10240. background-color:rgba(255, 255, 255, 0);
  10241. border:none;
  10242. border-left:0px;
  10243. border-top:0px;
  10244. border-right:0px;
  10245. border-radius:0px;
  10246. border-bottom-right-radius:0px;
  10247. border-bottom-left-radius:0px;
  10248. -moz-box-shadow:none;
  10249. -webkit-box-shadow:none;
  10250. box-shadow:none;
  10251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10252. font-weight:400;
  10253. font-style:normal;
  10254. font-size:12px;
  10255. text-align:center;
  10256. }
  10257. #u37115 {
  10258. border-width:0px;
  10259. position:absolute;
  10260. left:502px;
  10261. top:155px;
  10262. width:37px;
  10263. height:40px;
  10264. display:flex;
  10265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10266. font-weight:400;
  10267. font-style:normal;
  10268. font-size:12px;
  10269. text-align:center;
  10270. }
  10271. #u37115 .text {
  10272. position:absolute;
  10273. align-self:center;
  10274. padding:0px 0px 0px 0px;
  10275. box-sizing:border-box;
  10276. width:100%;
  10277. }
  10278. #u37115_text {
  10279. border-width:0px;
  10280. white-space:nowrap;
  10281. text-transform:none;
  10282. }
  10283. #u37116_div {
  10284. border-width:0px;
  10285. position:absolute;
  10286. left:0px;
  10287. top:0px;
  10288. width:11px;
  10289. height:11px;
  10290. background:inherit;
  10291. background-color:rgba(217, 0, 27, 1);
  10292. border:none;
  10293. border-radius:7px;
  10294. -moz-box-shadow:none;
  10295. -webkit-box-shadow:none;
  10296. box-shadow:none;
  10297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10298. font-weight:400;
  10299. font-style:normal;
  10300. font-size:8px;
  10301. color:#FFFFFF;
  10302. text-align:center;
  10303. }
  10304. #u37116 {
  10305. border-width:0px;
  10306. position:absolute;
  10307. left:536px;
  10308. top:159px;
  10309. width:11px;
  10310. height:11px;
  10311. display:flex;
  10312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10313. font-weight:400;
  10314. font-style:normal;
  10315. font-size:8px;
  10316. color:#FFFFFF;
  10317. text-align:center;
  10318. }
  10319. #u37116 .text {
  10320. position:absolute;
  10321. align-self:flex-start;
  10322. padding:0px 0px 0px 0px;
  10323. box-sizing:border-box;
  10324. width:100%;
  10325. }
  10326. #u37116_text {
  10327. border-width:0px;
  10328. word-wrap:break-word;
  10329. text-transform:none;
  10330. }
  10331. #u37117_div {
  10332. border-width:0px;
  10333. position:absolute;
  10334. left:0px;
  10335. top:0px;
  10336. width:37px;
  10337. height:40px;
  10338. background:inherit;
  10339. background-color:rgba(255, 255, 255, 0);
  10340. border:none;
  10341. border-left:0px;
  10342. border-top:0px;
  10343. border-right:0px;
  10344. border-radius:0px;
  10345. border-bottom-right-radius:0px;
  10346. border-bottom-left-radius:0px;
  10347. -moz-box-shadow:none;
  10348. -webkit-box-shadow:none;
  10349. box-shadow:none;
  10350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10351. font-weight:400;
  10352. font-style:normal;
  10353. font-size:12px;
  10354. color:#000000;
  10355. text-align:center;
  10356. }
  10357. #u37117 {
  10358. border-width:0px;
  10359. position:absolute;
  10360. left:765px;
  10361. top:155px;
  10362. width:37px;
  10363. height:40px;
  10364. display:flex;
  10365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10366. font-weight:400;
  10367. font-style:normal;
  10368. font-size:12px;
  10369. color:#000000;
  10370. text-align:center;
  10371. }
  10372. #u37117 .text {
  10373. position:absolute;
  10374. align-self:center;
  10375. padding:0px 0px 0px 0px;
  10376. box-sizing:border-box;
  10377. width:100%;
  10378. }
  10379. #u37117_text {
  10380. border-width:0px;
  10381. white-space:nowrap;
  10382. text-transform:none;
  10383. }
  10384. #u37118 {
  10385. border-width:0px;
  10386. position:absolute;
  10387. left:0px;
  10388. top:0px;
  10389. width:0px;
  10390. height:0px;
  10391. }
  10392. #u37119_div {
  10393. border-width:0px;
  10394. position:absolute;
  10395. left:0px;
  10396. top:0px;
  10397. width:375px;
  10398. height:50px;
  10399. background:inherit;
  10400. background-color:rgba(255, 255, 255, 1);
  10401. border:none;
  10402. border-radius:0px;
  10403. -moz-box-shadow:none;
  10404. -webkit-box-shadow:none;
  10405. box-shadow:none;
  10406. }
  10407. #u37119 {
  10408. border-width:0px;
  10409. position:absolute;
  10410. left:947px;
  10411. top:105px;
  10412. width:375px;
  10413. height:50px;
  10414. display:flex;
  10415. }
  10416. #u37119 .text {
  10417. position:absolute;
  10418. align-self:center;
  10419. padding:2px 2px 2px 2px;
  10420. box-sizing:border-box;
  10421. width:100%;
  10422. }
  10423. #u37119_text {
  10424. border-width:0px;
  10425. word-wrap:break-word;
  10426. text-transform:none;
  10427. visibility:hidden;
  10428. }
  10429. #u37120 {
  10430. border-width:0px;
  10431. position:absolute;
  10432. left:0px;
  10433. top:0px;
  10434. width:0px;
  10435. height:0px;
  10436. }
  10437. #u37121 {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:0px;
  10443. height:0px;
  10444. }
  10445. #u37122_div {
  10446. border-width:0px;
  10447. position:absolute;
  10448. left:0px;
  10449. top:0px;
  10450. width:280px;
  10451. height:30px;
  10452. background:inherit;
  10453. background-color:rgba(242, 242, 242, 1);
  10454. border:none;
  10455. border-radius:20px;
  10456. -moz-box-shadow:none;
  10457. -webkit-box-shadow:none;
  10458. box-shadow:none;
  10459. }
  10460. #u37122 {
  10461. border-width:0px;
  10462. position:absolute;
  10463. left:960px;
  10464. top:115px;
  10465. width:280px;
  10466. height:30px;
  10467. display:flex;
  10468. }
  10469. #u37122 .text {
  10470. position:absolute;
  10471. align-self:center;
  10472. padding:2px 2px 2px 2px;
  10473. box-sizing:border-box;
  10474. width:100%;
  10475. }
  10476. #u37122_text {
  10477. border-width:0px;
  10478. word-wrap:break-word;
  10479. text-transform:none;
  10480. visibility:hidden;
  10481. }
  10482. #u37123_input {
  10483. position:absolute;
  10484. left:0px;
  10485. top:0px;
  10486. width:252px;
  10487. height:22px;
  10488. padding:2px 2px 2px 2px;
  10489. font-family:'ArialMT', 'Arial', sans-serif;
  10490. font-weight:400;
  10491. font-style:normal;
  10492. font-size:12px;
  10493. letter-spacing:normal;
  10494. color:#7F7F7F;
  10495. vertical-align:none;
  10496. text-align:left;
  10497. text-transform:none;
  10498. background-color:transparent;
  10499. border-color:transparent;
  10500. }
  10501. #u37123_input.disabled {
  10502. position:absolute;
  10503. left:0px;
  10504. top:0px;
  10505. width:252px;
  10506. height:22px;
  10507. padding:2px 2px 2px 2px;
  10508. font-family:'ArialMT', 'Arial', sans-serif;
  10509. font-weight:400;
  10510. font-style:normal;
  10511. font-size:12px;
  10512. letter-spacing:normal;
  10513. color:#7F7F7F;
  10514. vertical-align:none;
  10515. text-align:left;
  10516. text-transform:none;
  10517. background-color:transparent;
  10518. border-color:transparent;
  10519. }
  10520. #u37123_div {
  10521. border-width:0px;
  10522. position:absolute;
  10523. left:0px;
  10524. top:0px;
  10525. width:252px;
  10526. height:22px;
  10527. background:inherit;
  10528. background-color:rgba(255, 255, 255, 0);
  10529. border:none;
  10530. border-radius:0px;
  10531. -moz-box-shadow:none;
  10532. -webkit-box-shadow:none;
  10533. box-shadow:none;
  10534. font-size:12px;
  10535. color:#7F7F7F;
  10536. }
  10537. #u37123 {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:974px;
  10541. top:119px;
  10542. width:252px;
  10543. height:22px;
  10544. display:flex;
  10545. font-size:12px;
  10546. color:#7F7F7F;
  10547. }
  10548. #u37123 .text {
  10549. position:absolute;
  10550. align-self:flex-start;
  10551. padding:2px 2px 2px 2px;
  10552. box-sizing:border-box;
  10553. width:100%;
  10554. }
  10555. #u37123_div.disabled {
  10556. border-width:0px;
  10557. position:absolute;
  10558. left:0px;
  10559. top:0px;
  10560. width:252px;
  10561. height:22px;
  10562. background:inherit;
  10563. background-color:rgba(240, 240, 240, 1);
  10564. border:none;
  10565. border-radius:0px;
  10566. -moz-box-shadow:none;
  10567. -webkit-box-shadow:none;
  10568. box-shadow:none;
  10569. font-size:12px;
  10570. color:#7F7F7F;
  10571. }
  10572. #u37123.disabled {
  10573. }
  10574. .u37123_input_option {
  10575. font-size:12px;
  10576. }
  10577. #u37124_div {
  10578. border-width:0px;
  10579. position:absolute;
  10580. left:0px;
  10581. top:0px;
  10582. width:64px;
  10583. height:30px;
  10584. background:inherit;
  10585. background-color:rgba(255, 255, 255, 0);
  10586. border:none;
  10587. border-left:0px;
  10588. border-top:0px;
  10589. border-right:0px;
  10590. border-radius:0px;
  10591. border-bottom-right-radius:0px;
  10592. border-bottom-left-radius:0px;
  10593. -moz-box-shadow:none;
  10594. -webkit-box-shadow:none;
  10595. box-shadow:none;
  10596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10597. font-weight:400;
  10598. font-style:normal;
  10599. font-size:12px;
  10600. color:#1890FF;
  10601. line-height:30px;
  10602. }
  10603. #u37124 {
  10604. border-width:0px;
  10605. position:absolute;
  10606. left:1250px;
  10607. top:115px;
  10608. width:64px;
  10609. height:30px;
  10610. display:flex;
  10611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10612. font-weight:400;
  10613. font-style:normal;
  10614. font-size:12px;
  10615. color:#1890FF;
  10616. line-height:30px;
  10617. }
  10618. #u37124 .text {
  10619. position:absolute;
  10620. align-self:flex-start;
  10621. padding:0px 0px 0px 0px;
  10622. box-sizing:border-box;
  10623. width:100%;
  10624. }
  10625. #u37124_text {
  10626. border-width:0px;
  10627. white-space:nowrap;
  10628. text-transform:none;
  10629. }
  10630. #u37125 {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:0px;
  10634. top:0px;
  10635. width:0px;
  10636. height:0px;
  10637. }
  10638. #u37126_div {
  10639. border-width:0px;
  10640. position:absolute;
  10641. left:0px;
  10642. top:0px;
  10643. width:375px;
  10644. height:41px;
  10645. background:inherit;
  10646. background-color:rgba(255, 255, 255, 1);
  10647. border:none;
  10648. border-radius:0px;
  10649. -moz-box-shadow:none;
  10650. -webkit-box-shadow:none;
  10651. box-shadow:none;
  10652. }
  10653. #u37126 {
  10654. border-width:0px;
  10655. position:absolute;
  10656. left:947px;
  10657. top:155px;
  10658. width:375px;
  10659. height:41px;
  10660. display:flex;
  10661. }
  10662. #u37126 .text {
  10663. position:absolute;
  10664. align-self:center;
  10665. padding:2px 2px 2px 2px;
  10666. box-sizing:border-box;
  10667. width:100%;
  10668. }
  10669. #u37126_text {
  10670. border-width:0px;
  10671. word-wrap:break-word;
  10672. text-transform:none;
  10673. visibility:hidden;
  10674. }
  10675. #u37127_div {
  10676. border-width:0px;
  10677. position:absolute;
  10678. left:0px;
  10679. top:0px;
  10680. width:37px;
  10681. height:40px;
  10682. background:inherit;
  10683. background-color:rgba(255, 255, 255, 0);
  10684. border:none;
  10685. border-left:0px;
  10686. border-top:0px;
  10687. border-right:0px;
  10688. border-radius:0px;
  10689. border-bottom-right-radius:0px;
  10690. border-bottom-left-radius:0px;
  10691. -moz-box-shadow:none;
  10692. -webkit-box-shadow:none;
  10693. box-shadow:none;
  10694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10695. font-weight:400;
  10696. font-style:normal;
  10697. font-size:12px;
  10698. text-align:center;
  10699. }
  10700. #u37127 {
  10701. border-width:0px;
  10702. position:absolute;
  10703. left:1028px;
  10704. top:155px;
  10705. width:37px;
  10706. height:40px;
  10707. display:flex;
  10708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10709. font-weight:400;
  10710. font-style:normal;
  10711. font-size:12px;
  10712. text-align:center;
  10713. }
  10714. #u37127 .text {
  10715. position:absolute;
  10716. align-self:center;
  10717. padding:0px 0px 0px 0px;
  10718. box-sizing:border-box;
  10719. width:100%;
  10720. }
  10721. #u37127_text {
  10722. border-width:0px;
  10723. white-space:nowrap;
  10724. text-transform:none;
  10725. }
  10726. #u37128_div {
  10727. border-width:0px;
  10728. position:absolute;
  10729. left:0px;
  10730. top:0px;
  10731. width:37px;
  10732. height:40px;
  10733. background:inherit;
  10734. background-color:rgba(255, 255, 255, 0);
  10735. box-sizing:border-box;
  10736. border-width:2px;
  10737. border-style:solid;
  10738. border-color:rgba(41, 143, 255, 1);
  10739. border-left:0px;
  10740. border-top:0px;
  10741. border-right:0px;
  10742. border-radius:0px;
  10743. border-bottom-right-radius:0px;
  10744. border-bottom-left-radius:0px;
  10745. -moz-box-shadow:none;
  10746. -webkit-box-shadow:none;
  10747. box-shadow:none;
  10748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10749. font-weight:400;
  10750. font-style:normal;
  10751. font-size:12px;
  10752. color:#298FFF;
  10753. text-align:center;
  10754. }
  10755. #u37128 {
  10756. border-width:0px;
  10757. position:absolute;
  10758. left:1094px;
  10759. top:155px;
  10760. width:37px;
  10761. height:40px;
  10762. display:flex;
  10763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10764. font-weight:400;
  10765. font-style:normal;
  10766. font-size:12px;
  10767. color:#298FFF;
  10768. text-align:center;
  10769. }
  10770. #u37128 .text {
  10771. position:absolute;
  10772. align-self:center;
  10773. padding:0px 0px 0px 0px;
  10774. box-sizing:border-box;
  10775. width:100%;
  10776. }
  10777. #u37128_text {
  10778. border-width:0px;
  10779. white-space:nowrap;
  10780. text-transform:none;
  10781. }
  10782. #u37129_div {
  10783. border-width:0px;
  10784. position:absolute;
  10785. left:0px;
  10786. top:0px;
  10787. width:37px;
  10788. height:40px;
  10789. background:inherit;
  10790. background-color:rgba(255, 255, 255, 0);
  10791. border:none;
  10792. border-left:0px;
  10793. border-top:0px;
  10794. border-right:0px;
  10795. border-radius:0px;
  10796. border-bottom-right-radius:0px;
  10797. border-bottom-left-radius:0px;
  10798. -moz-box-shadow:none;
  10799. -webkit-box-shadow:none;
  10800. box-shadow:none;
  10801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10802. font-weight:400;
  10803. font-style:normal;
  10804. font-size:12px;
  10805. color:#000000;
  10806. text-align:center;
  10807. }
  10808. #u37129 {
  10809. border-width:0px;
  10810. position:absolute;
  10811. left:1159px;
  10812. top:155px;
  10813. width:37px;
  10814. height:40px;
  10815. display:flex;
  10816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10817. font-weight:400;
  10818. font-style:normal;
  10819. font-size:12px;
  10820. color:#000000;
  10821. text-align:center;
  10822. }
  10823. #u37129 .text {
  10824. position:absolute;
  10825. align-self:center;
  10826. padding:0px 0px 0px 0px;
  10827. box-sizing:border-box;
  10828. width:100%;
  10829. }
  10830. #u37129_text {
  10831. border-width:0px;
  10832. white-space:nowrap;
  10833. text-transform:none;
  10834. }
  10835. #u37130_div {
  10836. border-width:0px;
  10837. position:absolute;
  10838. left:0px;
  10839. top:0px;
  10840. width:37px;
  10841. height:40px;
  10842. background:inherit;
  10843. background-color:rgba(255, 255, 255, 0);
  10844. border:none;
  10845. border-left:0px;
  10846. border-top:0px;
  10847. border-right:0px;
  10848. border-radius:0px;
  10849. border-bottom-right-radius:0px;
  10850. border-bottom-left-radius:0px;
  10851. -moz-box-shadow:none;
  10852. -webkit-box-shadow:none;
  10853. box-shadow:none;
  10854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10855. font-weight:400;
  10856. font-style:normal;
  10857. font-size:12px;
  10858. text-align:center;
  10859. }
  10860. #u37130 {
  10861. border-width:0px;
  10862. position:absolute;
  10863. left:963px;
  10864. top:155px;
  10865. width:37px;
  10866. height:40px;
  10867. display:flex;
  10868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10869. font-weight:400;
  10870. font-style:normal;
  10871. font-size:12px;
  10872. text-align:center;
  10873. }
  10874. #u37130 .text {
  10875. position:absolute;
  10876. align-self:center;
  10877. padding:0px 0px 0px 0px;
  10878. box-sizing:border-box;
  10879. width:100%;
  10880. }
  10881. #u37130_text {
  10882. border-width:0px;
  10883. white-space:nowrap;
  10884. text-transform:none;
  10885. }
  10886. #u37131_div {
  10887. border-width:0px;
  10888. position:absolute;
  10889. left:0px;
  10890. top:0px;
  10891. width:11px;
  10892. height:11px;
  10893. background:inherit;
  10894. background-color:rgba(217, 0, 27, 1);
  10895. border:none;
  10896. border-radius:7px;
  10897. -moz-box-shadow:none;
  10898. -webkit-box-shadow:none;
  10899. box-shadow:none;
  10900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10901. font-weight:400;
  10902. font-style:normal;
  10903. font-size:8px;
  10904. color:#FFFFFF;
  10905. text-align:center;
  10906. }
  10907. #u37131 {
  10908. border-width:0px;
  10909. position:absolute;
  10910. left:997px;
  10911. top:159px;
  10912. width:11px;
  10913. height:11px;
  10914. display:flex;
  10915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10916. font-weight:400;
  10917. font-style:normal;
  10918. font-size:8px;
  10919. color:#FFFFFF;
  10920. text-align:center;
  10921. }
  10922. #u37131 .text {
  10923. position:absolute;
  10924. align-self:flex-start;
  10925. padding:0px 0px 0px 0px;
  10926. box-sizing:border-box;
  10927. width:100%;
  10928. }
  10929. #u37131_text {
  10930. border-width:0px;
  10931. word-wrap:break-word;
  10932. text-transform:none;
  10933. }
  10934. #u37132_div {
  10935. border-width:0px;
  10936. position:absolute;
  10937. left:0px;
  10938. top:0px;
  10939. width:37px;
  10940. height:40px;
  10941. background:inherit;
  10942. background-color:rgba(255, 255, 255, 0);
  10943. border:none;
  10944. border-left:0px;
  10945. border-top:0px;
  10946. border-right:0px;
  10947. border-radius:0px;
  10948. border-bottom-right-radius:0px;
  10949. border-bottom-left-radius:0px;
  10950. -moz-box-shadow:none;
  10951. -webkit-box-shadow:none;
  10952. box-shadow:none;
  10953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10954. font-weight:400;
  10955. font-style:normal;
  10956. font-size:12px;
  10957. color:#000000;
  10958. text-align:center;
  10959. }
  10960. #u37132 {
  10961. border-width:0px;
  10962. position:absolute;
  10963. left:1226px;
  10964. top:155px;
  10965. width:37px;
  10966. height:40px;
  10967. display:flex;
  10968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10969. font-weight:400;
  10970. font-style:normal;
  10971. font-size:12px;
  10972. color:#000000;
  10973. text-align:center;
  10974. }
  10975. #u37132 .text {
  10976. position:absolute;
  10977. align-self:center;
  10978. padding:0px 0px 0px 0px;
  10979. box-sizing:border-box;
  10980. width:100%;
  10981. }
  10982. #u37132_text {
  10983. border-width:0px;
  10984. white-space:nowrap;
  10985. text-transform:none;
  10986. }
  10987. #u37133 {
  10988. border-width:0px;
  10989. position:absolute;
  10990. left:0px;
  10991. top:0px;
  10992. width:0px;
  10993. height:0px;
  10994. }
  10995. #u37134_div {
  10996. border-width:0px;
  10997. position:absolute;
  10998. left:0px;
  10999. top:0px;
  11000. width:375px;
  11001. height:50px;
  11002. background:inherit;
  11003. background-color:rgba(255, 255, 255, 1);
  11004. border:none;
  11005. border-radius:0px;
  11006. -moz-box-shadow:none;
  11007. -webkit-box-shadow:none;
  11008. box-shadow:none;
  11009. }
  11010. #u37134 {
  11011. border-width:0px;
  11012. position:absolute;
  11013. left:1405px;
  11014. top:105px;
  11015. width:375px;
  11016. height:50px;
  11017. display:flex;
  11018. }
  11019. #u37134 .text {
  11020. position:absolute;
  11021. align-self:center;
  11022. padding:2px 2px 2px 2px;
  11023. box-sizing:border-box;
  11024. width:100%;
  11025. }
  11026. #u37134_text {
  11027. border-width:0px;
  11028. word-wrap:break-word;
  11029. text-transform:none;
  11030. visibility:hidden;
  11031. }
  11032. #u37135 {
  11033. border-width:0px;
  11034. position:absolute;
  11035. left:0px;
  11036. top:0px;
  11037. width:0px;
  11038. height:0px;
  11039. }
  11040. #u37136 {
  11041. border-width:0px;
  11042. position:absolute;
  11043. left:0px;
  11044. top:0px;
  11045. width:0px;
  11046. height:0px;
  11047. }
  11048. #u37137_div {
  11049. border-width:0px;
  11050. position:absolute;
  11051. left:0px;
  11052. top:0px;
  11053. width:280px;
  11054. height:30px;
  11055. background:inherit;
  11056. background-color:rgba(242, 242, 242, 1);
  11057. border:none;
  11058. border-radius:20px;
  11059. -moz-box-shadow:none;
  11060. -webkit-box-shadow:none;
  11061. box-shadow:none;
  11062. }
  11063. #u37137 {
  11064. border-width:0px;
  11065. position:absolute;
  11066. left:1418px;
  11067. top:115px;
  11068. width:280px;
  11069. height:30px;
  11070. display:flex;
  11071. }
  11072. #u37137 .text {
  11073. position:absolute;
  11074. align-self:center;
  11075. padding:2px 2px 2px 2px;
  11076. box-sizing:border-box;
  11077. width:100%;
  11078. }
  11079. #u37137_text {
  11080. border-width:0px;
  11081. word-wrap:break-word;
  11082. text-transform:none;
  11083. visibility:hidden;
  11084. }
  11085. #u37138_input {
  11086. position:absolute;
  11087. left:0px;
  11088. top:0px;
  11089. width:252px;
  11090. height:22px;
  11091. padding:2px 2px 2px 2px;
  11092. font-family:'ArialMT', 'Arial', sans-serif;
  11093. font-weight:400;
  11094. font-style:normal;
  11095. font-size:12px;
  11096. letter-spacing:normal;
  11097. color:#7F7F7F;
  11098. vertical-align:none;
  11099. text-align:left;
  11100. text-transform:none;
  11101. background-color:transparent;
  11102. border-color:transparent;
  11103. }
  11104. #u37138_input.disabled {
  11105. position:absolute;
  11106. left:0px;
  11107. top:0px;
  11108. width:252px;
  11109. height:22px;
  11110. padding:2px 2px 2px 2px;
  11111. font-family:'ArialMT', 'Arial', sans-serif;
  11112. font-weight:400;
  11113. font-style:normal;
  11114. font-size:12px;
  11115. letter-spacing:normal;
  11116. color:#7F7F7F;
  11117. vertical-align:none;
  11118. text-align:left;
  11119. text-transform:none;
  11120. background-color:transparent;
  11121. border-color:transparent;
  11122. }
  11123. #u37138_div {
  11124. border-width:0px;
  11125. position:absolute;
  11126. left:0px;
  11127. top:0px;
  11128. width:252px;
  11129. height:22px;
  11130. background:inherit;
  11131. background-color:rgba(255, 255, 255, 0);
  11132. border:none;
  11133. border-radius:0px;
  11134. -moz-box-shadow:none;
  11135. -webkit-box-shadow:none;
  11136. box-shadow:none;
  11137. font-size:12px;
  11138. color:#7F7F7F;
  11139. }
  11140. #u37138 {
  11141. border-width:0px;
  11142. position:absolute;
  11143. left:1432px;
  11144. top:119px;
  11145. width:252px;
  11146. height:22px;
  11147. display:flex;
  11148. font-size:12px;
  11149. color:#7F7F7F;
  11150. }
  11151. #u37138 .text {
  11152. position:absolute;
  11153. align-self:flex-start;
  11154. padding:2px 2px 2px 2px;
  11155. box-sizing:border-box;
  11156. width:100%;
  11157. }
  11158. #u37138_div.disabled {
  11159. border-width:0px;
  11160. position:absolute;
  11161. left:0px;
  11162. top:0px;
  11163. width:252px;
  11164. height:22px;
  11165. background:inherit;
  11166. background-color:rgba(240, 240, 240, 1);
  11167. border:none;
  11168. border-radius:0px;
  11169. -moz-box-shadow:none;
  11170. -webkit-box-shadow:none;
  11171. box-shadow:none;
  11172. font-size:12px;
  11173. color:#7F7F7F;
  11174. }
  11175. #u37138.disabled {
  11176. }
  11177. .u37138_input_option {
  11178. font-size:12px;
  11179. }
  11180. #u37139_div {
  11181. border-width:0px;
  11182. position:absolute;
  11183. left:0px;
  11184. top:0px;
  11185. width:64px;
  11186. height:30px;
  11187. background:inherit;
  11188. background-color:rgba(255, 255, 255, 0);
  11189. border:none;
  11190. border-left:0px;
  11191. border-top:0px;
  11192. border-right:0px;
  11193. border-radius:0px;
  11194. border-bottom-right-radius:0px;
  11195. border-bottom-left-radius:0px;
  11196. -moz-box-shadow:none;
  11197. -webkit-box-shadow:none;
  11198. box-shadow:none;
  11199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11200. font-weight:400;
  11201. font-style:normal;
  11202. font-size:12px;
  11203. color:#1890FF;
  11204. line-height:30px;
  11205. }
  11206. #u37139 {
  11207. border-width:0px;
  11208. position:absolute;
  11209. left:1708px;
  11210. top:115px;
  11211. width:64px;
  11212. height:30px;
  11213. display:flex;
  11214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11215. font-weight:400;
  11216. font-style:normal;
  11217. font-size:12px;
  11218. color:#1890FF;
  11219. line-height:30px;
  11220. }
  11221. #u37139 .text {
  11222. position:absolute;
  11223. align-self:flex-start;
  11224. padding:0px 0px 0px 0px;
  11225. box-sizing:border-box;
  11226. width:100%;
  11227. }
  11228. #u37139_text {
  11229. border-width:0px;
  11230. white-space:nowrap;
  11231. text-transform:none;
  11232. }
  11233. #u37140 {
  11234. border-width:0px;
  11235. position:absolute;
  11236. left:0px;
  11237. top:0px;
  11238. width:0px;
  11239. height:0px;
  11240. }
  11241. #u37141_div {
  11242. border-width:0px;
  11243. position:absolute;
  11244. left:0px;
  11245. top:0px;
  11246. width:375px;
  11247. height:41px;
  11248. background:inherit;
  11249. background-color:rgba(255, 255, 255, 1);
  11250. border:none;
  11251. border-radius:0px;
  11252. -moz-box-shadow:none;
  11253. -webkit-box-shadow:none;
  11254. box-shadow:none;
  11255. }
  11256. #u37141 {
  11257. border-width:0px;
  11258. position:absolute;
  11259. left:1405px;
  11260. top:155px;
  11261. width:375px;
  11262. height:41px;
  11263. display:flex;
  11264. }
  11265. #u37141 .text {
  11266. position:absolute;
  11267. align-self:center;
  11268. padding:2px 2px 2px 2px;
  11269. box-sizing:border-box;
  11270. width:100%;
  11271. }
  11272. #u37141_text {
  11273. border-width:0px;
  11274. word-wrap:break-word;
  11275. text-transform:none;
  11276. visibility:hidden;
  11277. }
  11278. #u37142_div {
  11279. border-width:0px;
  11280. position:absolute;
  11281. left:0px;
  11282. top:0px;
  11283. width:37px;
  11284. height:40px;
  11285. background:inherit;
  11286. background-color:rgba(255, 255, 255, 0);
  11287. border:none;
  11288. border-left:0px;
  11289. border-top:0px;
  11290. border-right:0px;
  11291. border-radius:0px;
  11292. border-bottom-right-radius:0px;
  11293. border-bottom-left-radius:0px;
  11294. -moz-box-shadow:none;
  11295. -webkit-box-shadow:none;
  11296. box-shadow:none;
  11297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11298. font-weight:400;
  11299. font-style:normal;
  11300. font-size:12px;
  11301. text-align:center;
  11302. }
  11303. #u37142 {
  11304. border-width:0px;
  11305. position:absolute;
  11306. left:1486px;
  11307. top:155px;
  11308. width:37px;
  11309. height:40px;
  11310. display:flex;
  11311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11312. font-weight:400;
  11313. font-style:normal;
  11314. font-size:12px;
  11315. text-align:center;
  11316. }
  11317. #u37142 .text {
  11318. position:absolute;
  11319. align-self:center;
  11320. padding:0px 0px 0px 0px;
  11321. box-sizing:border-box;
  11322. width:100%;
  11323. }
  11324. #u37142_text {
  11325. border-width:0px;
  11326. white-space:nowrap;
  11327. text-transform:none;
  11328. }
  11329. #u37143_div {
  11330. border-width:0px;
  11331. position:absolute;
  11332. left:0px;
  11333. top:0px;
  11334. width:37px;
  11335. height:40px;
  11336. background:inherit;
  11337. background-color:rgba(255, 255, 255, 0);
  11338. border:none;
  11339. border-left:0px;
  11340. border-top:0px;
  11341. border-right:0px;
  11342. border-radius:0px;
  11343. border-bottom-right-radius:0px;
  11344. border-bottom-left-radius:0px;
  11345. -moz-box-shadow:none;
  11346. -webkit-box-shadow:none;
  11347. box-shadow:none;
  11348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11349. font-weight:400;
  11350. font-style:normal;
  11351. font-size:12px;
  11352. text-align:center;
  11353. }
  11354. #u37143 {
  11355. border-width:0px;
  11356. position:absolute;
  11357. left:1552px;
  11358. top:155px;
  11359. width:37px;
  11360. height:40px;
  11361. display:flex;
  11362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11363. font-weight:400;
  11364. font-style:normal;
  11365. font-size:12px;
  11366. text-align:center;
  11367. }
  11368. #u37143 .text {
  11369. position:absolute;
  11370. align-self:center;
  11371. padding:0px 0px 0px 0px;
  11372. box-sizing:border-box;
  11373. width:100%;
  11374. }
  11375. #u37143_text {
  11376. border-width:0px;
  11377. white-space:nowrap;
  11378. text-transform:none;
  11379. }
  11380. #u37144_div {
  11381. border-width:0px;
  11382. position:absolute;
  11383. left:0px;
  11384. top:0px;
  11385. width:37px;
  11386. height:40px;
  11387. background:inherit;
  11388. background-color:rgba(255, 255, 255, 0);
  11389. box-sizing:border-box;
  11390. border-width:2px;
  11391. border-style:solid;
  11392. border-color:rgba(41, 143, 255, 1);
  11393. border-left:0px;
  11394. border-top:0px;
  11395. border-right:0px;
  11396. border-radius:0px;
  11397. border-bottom-right-radius:0px;
  11398. border-bottom-left-radius:0px;
  11399. -moz-box-shadow:none;
  11400. -webkit-box-shadow:none;
  11401. box-shadow:none;
  11402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11403. font-weight:400;
  11404. font-style:normal;
  11405. font-size:12px;
  11406. color:#298FFF;
  11407. text-align:center;
  11408. }
  11409. #u37144 {
  11410. border-width:0px;
  11411. position:absolute;
  11412. left:1617px;
  11413. top:155px;
  11414. width:37px;
  11415. height:40px;
  11416. display:flex;
  11417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11418. font-weight:400;
  11419. font-style:normal;
  11420. font-size:12px;
  11421. color:#298FFF;
  11422. text-align:center;
  11423. }
  11424. #u37144 .text {
  11425. position:absolute;
  11426. align-self:center;
  11427. padding:0px 0px 0px 0px;
  11428. box-sizing:border-box;
  11429. width:100%;
  11430. }
  11431. #u37144_text {
  11432. border-width:0px;
  11433. white-space:nowrap;
  11434. text-transform:none;
  11435. }
  11436. #u37145_div {
  11437. border-width:0px;
  11438. position:absolute;
  11439. left:0px;
  11440. top:0px;
  11441. width:37px;
  11442. height:40px;
  11443. background:inherit;
  11444. background-color:rgba(255, 255, 255, 0);
  11445. border:none;
  11446. border-left:0px;
  11447. border-top:0px;
  11448. border-right:0px;
  11449. border-radius:0px;
  11450. border-bottom-right-radius:0px;
  11451. border-bottom-left-radius:0px;
  11452. -moz-box-shadow:none;
  11453. -webkit-box-shadow:none;
  11454. box-shadow:none;
  11455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11456. font-weight:400;
  11457. font-style:normal;
  11458. font-size:12px;
  11459. text-align:center;
  11460. }
  11461. #u37145 {
  11462. border-width:0px;
  11463. position:absolute;
  11464. left:1421px;
  11465. top:155px;
  11466. width:37px;
  11467. height:40px;
  11468. display:flex;
  11469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11470. font-weight:400;
  11471. font-style:normal;
  11472. font-size:12px;
  11473. text-align:center;
  11474. }
  11475. #u37145 .text {
  11476. position:absolute;
  11477. align-self:center;
  11478. padding:0px 0px 0px 0px;
  11479. box-sizing:border-box;
  11480. width:100%;
  11481. }
  11482. #u37145_text {
  11483. border-width:0px;
  11484. white-space:nowrap;
  11485. text-transform:none;
  11486. }
  11487. #u37146_div {
  11488. border-width:0px;
  11489. position:absolute;
  11490. left:0px;
  11491. top:0px;
  11492. width:11px;
  11493. height:11px;
  11494. background:inherit;
  11495. background-color:rgba(217, 0, 27, 1);
  11496. border:none;
  11497. border-radius:7px;
  11498. -moz-box-shadow:none;
  11499. -webkit-box-shadow:none;
  11500. box-shadow:none;
  11501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11502. font-weight:400;
  11503. font-style:normal;
  11504. font-size:8px;
  11505. color:#FFFFFF;
  11506. text-align:center;
  11507. }
  11508. #u37146 {
  11509. border-width:0px;
  11510. position:absolute;
  11511. left:1455px;
  11512. top:159px;
  11513. width:11px;
  11514. height:11px;
  11515. display:flex;
  11516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11517. font-weight:400;
  11518. font-style:normal;
  11519. font-size:8px;
  11520. color:#FFFFFF;
  11521. text-align:center;
  11522. }
  11523. #u37146 .text {
  11524. position:absolute;
  11525. align-self:flex-start;
  11526. padding:0px 0px 0px 0px;
  11527. box-sizing:border-box;
  11528. width:100%;
  11529. }
  11530. #u37146_text {
  11531. border-width:0px;
  11532. word-wrap:break-word;
  11533. text-transform:none;
  11534. }
  11535. #u37147_div {
  11536. border-width:0px;
  11537. position:absolute;
  11538. left:0px;
  11539. top:0px;
  11540. width:37px;
  11541. height:40px;
  11542. background:inherit;
  11543. background-color:rgba(255, 255, 255, 0);
  11544. border:none;
  11545. border-left:0px;
  11546. border-top:0px;
  11547. border-right:0px;
  11548. border-radius:0px;
  11549. border-bottom-right-radius:0px;
  11550. border-bottom-left-radius:0px;
  11551. -moz-box-shadow:none;
  11552. -webkit-box-shadow:none;
  11553. box-shadow:none;
  11554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11555. font-weight:400;
  11556. font-style:normal;
  11557. font-size:12px;
  11558. color:#000000;
  11559. text-align:center;
  11560. }
  11561. #u37147 {
  11562. border-width:0px;
  11563. position:absolute;
  11564. left:1684px;
  11565. top:155px;
  11566. width:37px;
  11567. height:40px;
  11568. display:flex;
  11569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11570. font-weight:400;
  11571. font-style:normal;
  11572. font-size:12px;
  11573. color:#000000;
  11574. text-align:center;
  11575. }
  11576. #u37147 .text {
  11577. position:absolute;
  11578. align-self:center;
  11579. padding:0px 0px 0px 0px;
  11580. box-sizing:border-box;
  11581. width:100%;
  11582. }
  11583. #u37147_text {
  11584. border-width:0px;
  11585. white-space:nowrap;
  11586. text-transform:none;
  11587. }
  11588. #u37148 {
  11589. border-width:0px;
  11590. position:absolute;
  11591. left:0px;
  11592. top:0px;
  11593. width:0px;
  11594. height:0px;
  11595. }
  11596. #u37149_div {
  11597. border-width:0px;
  11598. position:absolute;
  11599. left:0px;
  11600. top:0px;
  11601. width:375px;
  11602. height:50px;
  11603. background:inherit;
  11604. background-color:rgba(255, 255, 255, 1);
  11605. border:none;
  11606. border-radius:0px;
  11607. -moz-box-shadow:none;
  11608. -webkit-box-shadow:none;
  11609. box-shadow:none;
  11610. }
  11611. #u37149 {
  11612. border-width:0px;
  11613. position:absolute;
  11614. left:1870px;
  11615. top:105px;
  11616. width:375px;
  11617. height:50px;
  11618. display:flex;
  11619. }
  11620. #u37149 .text {
  11621. position:absolute;
  11622. align-self:center;
  11623. padding:2px 2px 2px 2px;
  11624. box-sizing:border-box;
  11625. width:100%;
  11626. }
  11627. #u37149_text {
  11628. border-width:0px;
  11629. word-wrap:break-word;
  11630. text-transform:none;
  11631. visibility:hidden;
  11632. }
  11633. #u37150 {
  11634. border-width:0px;
  11635. position:absolute;
  11636. left:0px;
  11637. top:0px;
  11638. width:0px;
  11639. height:0px;
  11640. }
  11641. #u37151 {
  11642. border-width:0px;
  11643. position:absolute;
  11644. left:0px;
  11645. top:0px;
  11646. width:0px;
  11647. height:0px;
  11648. }
  11649. #u37152_div {
  11650. border-width:0px;
  11651. position:absolute;
  11652. left:0px;
  11653. top:0px;
  11654. width:280px;
  11655. height:30px;
  11656. background:inherit;
  11657. background-color:rgba(242, 242, 242, 1);
  11658. border:none;
  11659. border-radius:20px;
  11660. -moz-box-shadow:none;
  11661. -webkit-box-shadow:none;
  11662. box-shadow:none;
  11663. }
  11664. #u37152 {
  11665. border-width:0px;
  11666. position:absolute;
  11667. left:1883px;
  11668. top:115px;
  11669. width:280px;
  11670. height:30px;
  11671. display:flex;
  11672. }
  11673. #u37152 .text {
  11674. position:absolute;
  11675. align-self:center;
  11676. padding:2px 2px 2px 2px;
  11677. box-sizing:border-box;
  11678. width:100%;
  11679. }
  11680. #u37152_text {
  11681. border-width:0px;
  11682. word-wrap:break-word;
  11683. text-transform:none;
  11684. visibility:hidden;
  11685. }
  11686. #u37153_input {
  11687. position:absolute;
  11688. left:0px;
  11689. top:0px;
  11690. width:252px;
  11691. height:22px;
  11692. padding:2px 2px 2px 2px;
  11693. font-family:'ArialMT', 'Arial', sans-serif;
  11694. font-weight:400;
  11695. font-style:normal;
  11696. font-size:12px;
  11697. letter-spacing:normal;
  11698. color:#7F7F7F;
  11699. vertical-align:none;
  11700. text-align:left;
  11701. text-transform:none;
  11702. background-color:transparent;
  11703. border-color:transparent;
  11704. }
  11705. #u37153_input.disabled {
  11706. position:absolute;
  11707. left:0px;
  11708. top:0px;
  11709. width:252px;
  11710. height:22px;
  11711. padding:2px 2px 2px 2px;
  11712. font-family:'ArialMT', 'Arial', sans-serif;
  11713. font-weight:400;
  11714. font-style:normal;
  11715. font-size:12px;
  11716. letter-spacing:normal;
  11717. color:#7F7F7F;
  11718. vertical-align:none;
  11719. text-align:left;
  11720. text-transform:none;
  11721. background-color:transparent;
  11722. border-color:transparent;
  11723. }
  11724. #u37153_div {
  11725. border-width:0px;
  11726. position:absolute;
  11727. left:0px;
  11728. top:0px;
  11729. width:252px;
  11730. height:22px;
  11731. background:inherit;
  11732. background-color:rgba(255, 255, 255, 0);
  11733. border:none;
  11734. border-radius:0px;
  11735. -moz-box-shadow:none;
  11736. -webkit-box-shadow:none;
  11737. box-shadow:none;
  11738. font-size:12px;
  11739. color:#7F7F7F;
  11740. }
  11741. #u37153 {
  11742. border-width:0px;
  11743. position:absolute;
  11744. left:1897px;
  11745. top:119px;
  11746. width:252px;
  11747. height:22px;
  11748. display:flex;
  11749. font-size:12px;
  11750. color:#7F7F7F;
  11751. }
  11752. #u37153 .text {
  11753. position:absolute;
  11754. align-self:flex-start;
  11755. padding:2px 2px 2px 2px;
  11756. box-sizing:border-box;
  11757. width:100%;
  11758. }
  11759. #u37153_div.disabled {
  11760. border-width:0px;
  11761. position:absolute;
  11762. left:0px;
  11763. top:0px;
  11764. width:252px;
  11765. height:22px;
  11766. background:inherit;
  11767. background-color:rgba(240, 240, 240, 1);
  11768. border:none;
  11769. border-radius:0px;
  11770. -moz-box-shadow:none;
  11771. -webkit-box-shadow:none;
  11772. box-shadow:none;
  11773. font-size:12px;
  11774. color:#7F7F7F;
  11775. }
  11776. #u37153.disabled {
  11777. }
  11778. .u37153_input_option {
  11779. font-size:12px;
  11780. }
  11781. #u37154_div {
  11782. border-width:0px;
  11783. position:absolute;
  11784. left:0px;
  11785. top:0px;
  11786. width:64px;
  11787. height:30px;
  11788. background:inherit;
  11789. background-color:rgba(255, 255, 255, 0);
  11790. border:none;
  11791. border-left:0px;
  11792. border-top:0px;
  11793. border-right:0px;
  11794. border-radius:0px;
  11795. border-bottom-right-radius:0px;
  11796. border-bottom-left-radius:0px;
  11797. -moz-box-shadow:none;
  11798. -webkit-box-shadow:none;
  11799. box-shadow:none;
  11800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11801. font-weight:400;
  11802. font-style:normal;
  11803. font-size:12px;
  11804. color:#1890FF;
  11805. line-height:30px;
  11806. }
  11807. #u37154 {
  11808. border-width:0px;
  11809. position:absolute;
  11810. left:2173px;
  11811. top:115px;
  11812. width:64px;
  11813. height:30px;
  11814. display:flex;
  11815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11816. font-weight:400;
  11817. font-style:normal;
  11818. font-size:12px;
  11819. color:#1890FF;
  11820. line-height:30px;
  11821. }
  11822. #u37154 .text {
  11823. position:absolute;
  11824. align-self:flex-start;
  11825. padding:0px 0px 0px 0px;
  11826. box-sizing:border-box;
  11827. width:100%;
  11828. }
  11829. #u37154_text {
  11830. border-width:0px;
  11831. white-space:nowrap;
  11832. text-transform:none;
  11833. }
  11834. #u37155 {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:0px;
  11838. top:0px;
  11839. width:0px;
  11840. height:0px;
  11841. }
  11842. #u37156_div {
  11843. border-width:0px;
  11844. position:absolute;
  11845. left:0px;
  11846. top:0px;
  11847. width:375px;
  11848. height:41px;
  11849. background:inherit;
  11850. background-color:rgba(255, 255, 255, 1);
  11851. border:none;
  11852. border-radius:0px;
  11853. -moz-box-shadow:none;
  11854. -webkit-box-shadow:none;
  11855. box-shadow:none;
  11856. }
  11857. #u37156 {
  11858. border-width:0px;
  11859. position:absolute;
  11860. left:1870px;
  11861. top:155px;
  11862. width:375px;
  11863. height:41px;
  11864. display:flex;
  11865. }
  11866. #u37156 .text {
  11867. position:absolute;
  11868. align-self:center;
  11869. padding:2px 2px 2px 2px;
  11870. box-sizing:border-box;
  11871. width:100%;
  11872. }
  11873. #u37156_text {
  11874. border-width:0px;
  11875. word-wrap:break-word;
  11876. text-transform:none;
  11877. visibility:hidden;
  11878. }
  11879. #u37157_div {
  11880. border-width:0px;
  11881. position:absolute;
  11882. left:0px;
  11883. top:0px;
  11884. width:37px;
  11885. height:40px;
  11886. background:inherit;
  11887. background-color:rgba(255, 255, 255, 0);
  11888. border:none;
  11889. border-left:0px;
  11890. border-top:0px;
  11891. border-right:0px;
  11892. border-radius:0px;
  11893. border-bottom-right-radius:0px;
  11894. border-bottom-left-radius:0px;
  11895. -moz-box-shadow:none;
  11896. -webkit-box-shadow:none;
  11897. box-shadow:none;
  11898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11899. font-weight:400;
  11900. font-style:normal;
  11901. font-size:12px;
  11902. text-align:center;
  11903. }
  11904. #u37157 {
  11905. border-width:0px;
  11906. position:absolute;
  11907. left:1951px;
  11908. top:155px;
  11909. width:37px;
  11910. height:40px;
  11911. display:flex;
  11912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11913. font-weight:400;
  11914. font-style:normal;
  11915. font-size:12px;
  11916. text-align:center;
  11917. }
  11918. #u37157 .text {
  11919. position:absolute;
  11920. align-self:center;
  11921. padding:0px 0px 0px 0px;
  11922. box-sizing:border-box;
  11923. width:100%;
  11924. }
  11925. #u37157_text {
  11926. border-width:0px;
  11927. white-space:nowrap;
  11928. text-transform:none;
  11929. }
  11930. #u37158_div {
  11931. border-width:0px;
  11932. position:absolute;
  11933. left:0px;
  11934. top:0px;
  11935. width:37px;
  11936. height:40px;
  11937. background:inherit;
  11938. background-color:rgba(255, 255, 255, 0);
  11939. border:none;
  11940. border-left:0px;
  11941. border-top:0px;
  11942. border-right:0px;
  11943. border-radius:0px;
  11944. border-bottom-right-radius:0px;
  11945. border-bottom-left-radius:0px;
  11946. -moz-box-shadow:none;
  11947. -webkit-box-shadow:none;
  11948. box-shadow:none;
  11949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11950. font-weight:400;
  11951. font-style:normal;
  11952. font-size:12px;
  11953. text-align:center;
  11954. }
  11955. #u37158 {
  11956. border-width:0px;
  11957. position:absolute;
  11958. left:2017px;
  11959. top:155px;
  11960. width:37px;
  11961. height:40px;
  11962. display:flex;
  11963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11964. font-weight:400;
  11965. font-style:normal;
  11966. font-size:12px;
  11967. text-align:center;
  11968. }
  11969. #u37158 .text {
  11970. position:absolute;
  11971. align-self:center;
  11972. padding:0px 0px 0px 0px;
  11973. box-sizing:border-box;
  11974. width:100%;
  11975. }
  11976. #u37158_text {
  11977. border-width:0px;
  11978. white-space:nowrap;
  11979. text-transform:none;
  11980. }
  11981. #u37159_div {
  11982. border-width:0px;
  11983. position:absolute;
  11984. left:0px;
  11985. top:0px;
  11986. width:37px;
  11987. height:40px;
  11988. background:inherit;
  11989. background-color:rgba(255, 255, 255, 0);
  11990. border:none;
  11991. border-left:0px;
  11992. border-top:0px;
  11993. border-right:0px;
  11994. border-radius:0px;
  11995. border-bottom-right-radius:0px;
  11996. border-bottom-left-radius:0px;
  11997. -moz-box-shadow:none;
  11998. -webkit-box-shadow:none;
  11999. box-shadow:none;
  12000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12001. font-weight:400;
  12002. font-style:normal;
  12003. font-size:12px;
  12004. text-align:center;
  12005. }
  12006. #u37159 {
  12007. border-width:0px;
  12008. position:absolute;
  12009. left:2082px;
  12010. top:155px;
  12011. width:37px;
  12012. height:40px;
  12013. display:flex;
  12014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12015. font-weight:400;
  12016. font-style:normal;
  12017. font-size:12px;
  12018. text-align:center;
  12019. }
  12020. #u37159 .text {
  12021. position:absolute;
  12022. align-self:center;
  12023. padding:0px 0px 0px 0px;
  12024. box-sizing:border-box;
  12025. width:100%;
  12026. }
  12027. #u37159_text {
  12028. border-width:0px;
  12029. white-space:nowrap;
  12030. text-transform:none;
  12031. }
  12032. #u37160_div {
  12033. border-width:0px;
  12034. position:absolute;
  12035. left:0px;
  12036. top:0px;
  12037. width:37px;
  12038. height:40px;
  12039. background:inherit;
  12040. background-color:rgba(255, 255, 255, 0);
  12041. border:none;
  12042. border-left:0px;
  12043. border-top:0px;
  12044. border-right:0px;
  12045. border-radius:0px;
  12046. border-bottom-right-radius:0px;
  12047. border-bottom-left-radius:0px;
  12048. -moz-box-shadow:none;
  12049. -webkit-box-shadow:none;
  12050. box-shadow:none;
  12051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12052. font-weight:400;
  12053. font-style:normal;
  12054. font-size:12px;
  12055. text-align:center;
  12056. }
  12057. #u37160 {
  12058. border-width:0px;
  12059. position:absolute;
  12060. left:1886px;
  12061. top:155px;
  12062. width:37px;
  12063. height:40px;
  12064. display:flex;
  12065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12066. font-weight:400;
  12067. font-style:normal;
  12068. font-size:12px;
  12069. text-align:center;
  12070. }
  12071. #u37160 .text {
  12072. position:absolute;
  12073. align-self:center;
  12074. padding:0px 0px 0px 0px;
  12075. box-sizing:border-box;
  12076. width:100%;
  12077. }
  12078. #u37160_text {
  12079. border-width:0px;
  12080. white-space:nowrap;
  12081. text-transform:none;
  12082. }
  12083. #u37161_div {
  12084. border-width:0px;
  12085. position:absolute;
  12086. left:0px;
  12087. top:0px;
  12088. width:11px;
  12089. height:11px;
  12090. background:inherit;
  12091. background-color:rgba(217, 0, 27, 1);
  12092. border:none;
  12093. border-radius:7px;
  12094. -moz-box-shadow:none;
  12095. -webkit-box-shadow:none;
  12096. box-shadow:none;
  12097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12098. font-weight:400;
  12099. font-style:normal;
  12100. font-size:8px;
  12101. color:#FFFFFF;
  12102. text-align:center;
  12103. }
  12104. #u37161 {
  12105. border-width:0px;
  12106. position:absolute;
  12107. left:1920px;
  12108. top:159px;
  12109. width:11px;
  12110. height:11px;
  12111. display:flex;
  12112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12113. font-weight:400;
  12114. font-style:normal;
  12115. font-size:8px;
  12116. color:#FFFFFF;
  12117. text-align:center;
  12118. }
  12119. #u37161 .text {
  12120. position:absolute;
  12121. align-self:flex-start;
  12122. padding:0px 0px 0px 0px;
  12123. box-sizing:border-box;
  12124. width:100%;
  12125. }
  12126. #u37161_text {
  12127. border-width:0px;
  12128. word-wrap:break-word;
  12129. text-transform:none;
  12130. }
  12131. #u37162_div {
  12132. border-width:0px;
  12133. position:absolute;
  12134. left:0px;
  12135. top:0px;
  12136. width:37px;
  12137. height:40px;
  12138. background:inherit;
  12139. background-color:rgba(255, 255, 255, 0);
  12140. box-sizing:border-box;
  12141. border-width:2px;
  12142. border-style:solid;
  12143. border-color:rgba(41, 143, 255, 1);
  12144. border-left:0px;
  12145. border-top:0px;
  12146. border-right:0px;
  12147. border-radius:0px;
  12148. border-bottom-right-radius:0px;
  12149. border-bottom-left-radius:0px;
  12150. -moz-box-shadow:none;
  12151. -webkit-box-shadow:none;
  12152. box-shadow:none;
  12153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12154. font-weight:400;
  12155. font-style:normal;
  12156. font-size:12px;
  12157. color:#298FFF;
  12158. text-align:center;
  12159. }
  12160. #u37162 {
  12161. border-width:0px;
  12162. position:absolute;
  12163. left:2149px;
  12164. top:155px;
  12165. width:37px;
  12166. height:40px;
  12167. display:flex;
  12168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12169. font-weight:400;
  12170. font-style:normal;
  12171. font-size:12px;
  12172. color:#298FFF;
  12173. text-align:center;
  12174. }
  12175. #u37162 .text {
  12176. position:absolute;
  12177. align-self:center;
  12178. padding:0px 0px 0px 0px;
  12179. box-sizing:border-box;
  12180. width:100%;
  12181. }
  12182. #u37162_text {
  12183. border-width:0px;
  12184. white-space:nowrap;
  12185. text-transform:none;
  12186. }