styles.css 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1356px;
  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. #u37580_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u37580 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u37580 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u37580_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u37581_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. #u37581 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u37581 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u37581_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u37582 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u37583_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. #u37583 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u37583 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u37583_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u37584 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u37585_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u37585 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u37585 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u37585_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u37586_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u37586 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u37586 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u37586_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u37587 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u37588_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u37588 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u37588 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u37588_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u37589_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u37589 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u37589 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u37589_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u37590_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u37590 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u37590 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u37590_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u37591_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u37591 {
  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. #u37591 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u37591_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u37592_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u37592 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u37592 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u37592_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u37593_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. #u37593 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u37593 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u37593_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u37594 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u37595_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u37595 {
  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. #u37595 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u37595_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u37596_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. #u37596 {
  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. #u37596 .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. #u37596_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u37597 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u37598_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u37598 {
  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. #u37598 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u37598_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u37599_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. #u37599 {
  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. #u37599 .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. #u37599_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u37600_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. #u37600 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u37600 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u37600_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u37601 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u37602_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u37602 {
  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. #u37602 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u37602_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u37603_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. #u37603 {
  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. #u37603 .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. #u37603_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u37604 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u37605_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u37605 {
  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. #u37605 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u37605_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u37606_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. #u37606 {
  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. #u37606 .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. #u37606_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u37607_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. #u37607 {
  795. border-width:0px;
  796. position:absolute;
  797. left:29px;
  798. top:105px;
  799. width:375px;
  800. height:740px;
  801. display:flex;
  802. }
  803. #u37607 .text {
  804. position:absolute;
  805. align-self:center;
  806. padding:2px 2px 2px 2px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u37607_text {
  811. border-width:0px;
  812. word-wrap:break-word;
  813. text-transform:none;
  814. visibility:hidden;
  815. }
  816. #u37608 {
  817. border-width:0px;
  818. position:absolute;
  819. left:0px;
  820. top:0px;
  821. width:0px;
  822. height:0px;
  823. }
  824. #u37609_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:11px;
  830. height:18px;
  831. }
  832. #u37609 {
  833. border-width:0px;
  834. position:absolute;
  835. left:40px;
  836. top:79px;
  837. width:11px;
  838. height:18px;
  839. display:flex;
  840. }
  841. #u37609 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u37609_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u37610 {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:0px;
  860. height:0px;
  861. }
  862. #u37611_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. #u37611 {
  881. border-width:0px;
  882. position:absolute;
  883. left:309px;
  884. top:71px;
  885. width:88px;
  886. height:32px;
  887. display:flex;
  888. }
  889. #u37611 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u37611_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u37612 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u37613_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:18px;
  916. height:18px;
  917. }
  918. #u37613 {
  919. border-width:0px;
  920. position:absolute;
  921. left:372px;
  922. top:78px;
  923. width:18px;
  924. height:18px;
  925. display:flex;
  926. }
  927. #u37613 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u37613_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u37614_img {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:6px;
  946. height:6px;
  947. }
  948. #u37614 {
  949. border-width:0px;
  950. position:absolute;
  951. left:378px;
  952. top:84px;
  953. width:6px;
  954. height:6px;
  955. display:flex;
  956. }
  957. #u37614 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u37614_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. visibility:hidden;
  969. }
  970. #u37615 {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:0px;
  976. height:0px;
  977. }
  978. #u37616_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:5px;
  984. height:5px;
  985. }
  986. #u37616 {
  987. border-width:0px;
  988. position:absolute;
  989. left:323px;
  990. top:85px;
  991. width:5px;
  992. height:5px;
  993. display:flex;
  994. }
  995. #u37616 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u37616_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u37617_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:5px;
  1014. height:5px;
  1015. }
  1016. #u37617 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:339px;
  1020. top:85px;
  1021. width:5px;
  1022. height:5px;
  1023. display:flex;
  1024. }
  1025. #u37617 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u37617_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u37618_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:7px;
  1044. height:7px;
  1045. }
  1046. #u37618 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:330px;
  1050. top:84px;
  1051. width:7px;
  1052. height:7px;
  1053. display:flex;
  1054. }
  1055. #u37618 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u37618_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u37619_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:19px;
  1074. height:2px;
  1075. }
  1076. #u37619 {
  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. #u37619 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u37619_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u37620_div {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:12px;
  1108. height:12px;
  1109. background:inherit;
  1110. background-color:rgba(255, 255, 255, 0);
  1111. box-sizing:border-box;
  1112. border-width:2px;
  1113. border-style:solid;
  1114. border-color:rgba(51, 51, 51, 1);
  1115. border-right:0px;
  1116. border-bottom:0px;
  1117. border-radius:0px;
  1118. border-top-right-radius:0px;
  1119. border-bottom-left-radius:0px;
  1120. -moz-box-shadow:none;
  1121. -webkit-box-shadow:none;
  1122. box-shadow:none;
  1123. }
  1124. #u37620 {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:42px;
  1128. top:82px;
  1129. width:12px;
  1130. height:12px;
  1131. display:flex;
  1132. -webkit-transform:rotate(315deg);
  1133. -moz-transform:rotate(315deg);
  1134. -ms-transform:rotate(315deg);
  1135. transform:rotate(315deg);
  1136. }
  1137. #u37620 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u37620_text {
  1145. border-width:0px;
  1146. word-wrap:break-word;
  1147. text-transform:none;
  1148. visibility:hidden;
  1149. }
  1150. #u37621_div {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:65px;
  1156. height:22px;
  1157. background:inherit;
  1158. background-color:rgba(255, 255, 255, 0);
  1159. border:none;
  1160. border-radius:0px;
  1161. -moz-box-shadow:none;
  1162. -webkit-box-shadow:none;
  1163. box-shadow:none;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. font-size:16px;
  1168. color:#000000;
  1169. }
  1170. #u37621 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:179px;
  1174. top:77px;
  1175. width:65px;
  1176. height:22px;
  1177. display:flex;
  1178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1179. font-weight:400;
  1180. font-style:normal;
  1181. font-size:16px;
  1182. color:#000000;
  1183. }
  1184. #u37621 .text {
  1185. position:absolute;
  1186. align-self:flex-start;
  1187. padding:0px 0px 0px 0px;
  1188. box-sizing:border-box;
  1189. width:100%;
  1190. }
  1191. #u37621_text {
  1192. border-width:0px;
  1193. white-space:nowrap;
  1194. text-transform:none;
  1195. }
  1196. #u37622_img {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:23px;
  1202. height:23px;
  1203. }
  1204. #u37622 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:61px;
  1208. top:76px;
  1209. width:23px;
  1210. height:23px;
  1211. display:flex;
  1212. }
  1213. #u37622 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u37622_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u37623 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:0px;
  1232. height:0px;
  1233. }
  1234. #u37624_div {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:375px;
  1240. height:50px;
  1241. background:inherit;
  1242. background-color:rgba(255, 255, 255, 1);
  1243. border:none;
  1244. border-radius:0px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. }
  1249. #u37624 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:29px;
  1253. top:105px;
  1254. width:375px;
  1255. height:50px;
  1256. display:flex;
  1257. }
  1258. #u37624 .text {
  1259. position:absolute;
  1260. align-self:center;
  1261. padding:2px 2px 2px 2px;
  1262. box-sizing:border-box;
  1263. width:100%;
  1264. }
  1265. #u37624_text {
  1266. border-width:0px;
  1267. word-wrap:break-word;
  1268. text-transform:none;
  1269. visibility:hidden;
  1270. }
  1271. #u37625 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:0px;
  1277. height:0px;
  1278. }
  1279. #u37626 {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:0px;
  1285. height:0px;
  1286. }
  1287. #u37627_div {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:0px;
  1291. top:0px;
  1292. width:280px;
  1293. height:30px;
  1294. background:inherit;
  1295. background-color:rgba(242, 242, 242, 1);
  1296. border:none;
  1297. border-radius:20px;
  1298. -moz-box-shadow:none;
  1299. -webkit-box-shadow:none;
  1300. box-shadow:none;
  1301. }
  1302. #u37627 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:42px;
  1306. top:115px;
  1307. width:280px;
  1308. height:30px;
  1309. display:flex;
  1310. }
  1311. #u37627 .text {
  1312. position:absolute;
  1313. align-self:center;
  1314. padding:2px 2px 2px 2px;
  1315. box-sizing:border-box;
  1316. width:100%;
  1317. }
  1318. #u37627_text {
  1319. border-width:0px;
  1320. word-wrap:break-word;
  1321. text-transform:none;
  1322. visibility:hidden;
  1323. }
  1324. #u37628_input {
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:252px;
  1329. height:22px;
  1330. padding:2px 2px 2px 2px;
  1331. font-family:'ArialMT', 'Arial', sans-serif;
  1332. font-weight:400;
  1333. font-style:normal;
  1334. font-size:12px;
  1335. letter-spacing:normal;
  1336. color:#7F7F7F;
  1337. vertical-align:none;
  1338. text-align:left;
  1339. text-transform:none;
  1340. background-color:transparent;
  1341. border-color:transparent;
  1342. }
  1343. #u37628_input.disabled {
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:252px;
  1348. height:22px;
  1349. padding:2px 2px 2px 2px;
  1350. font-family:'ArialMT', 'Arial', sans-serif;
  1351. font-weight:400;
  1352. font-style:normal;
  1353. font-size:12px;
  1354. letter-spacing:normal;
  1355. color:#7F7F7F;
  1356. vertical-align:none;
  1357. text-align:left;
  1358. text-transform:none;
  1359. background-color:transparent;
  1360. border-color:transparent;
  1361. }
  1362. #u37628_div {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:0px;
  1366. top:0px;
  1367. width:252px;
  1368. height:22px;
  1369. background:inherit;
  1370. background-color:rgba(255, 255, 255, 0);
  1371. border:none;
  1372. border-radius:0px;
  1373. -moz-box-shadow:none;
  1374. -webkit-box-shadow:none;
  1375. box-shadow:none;
  1376. font-size:12px;
  1377. color:#7F7F7F;
  1378. }
  1379. #u37628 {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:56px;
  1383. top:119px;
  1384. width:252px;
  1385. height:22px;
  1386. display:flex;
  1387. font-size:12px;
  1388. color:#7F7F7F;
  1389. }
  1390. #u37628 .text {
  1391. position:absolute;
  1392. align-self:flex-start;
  1393. padding:2px 2px 2px 2px;
  1394. box-sizing:border-box;
  1395. width:100%;
  1396. }
  1397. #u37628_div.disabled {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:252px;
  1403. height:22px;
  1404. background:inherit;
  1405. background-color:rgba(240, 240, 240, 1);
  1406. border:none;
  1407. border-radius:0px;
  1408. -moz-box-shadow:none;
  1409. -webkit-box-shadow:none;
  1410. box-shadow:none;
  1411. font-size:12px;
  1412. color:#7F7F7F;
  1413. }
  1414. #u37628.disabled {
  1415. }
  1416. .u37628_input_option {
  1417. font-size:12px;
  1418. }
  1419. #u37629_div {
  1420. border-width:0px;
  1421. position:absolute;
  1422. left:0px;
  1423. top:0px;
  1424. width:64px;
  1425. height:30px;
  1426. background:inherit;
  1427. background-color:rgba(255, 255, 255, 0);
  1428. border:none;
  1429. border-left:0px;
  1430. border-top:0px;
  1431. border-right:0px;
  1432. border-radius:0px;
  1433. border-bottom-right-radius:0px;
  1434. border-bottom-left-radius:0px;
  1435. -moz-box-shadow:none;
  1436. -webkit-box-shadow:none;
  1437. box-shadow:none;
  1438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1439. font-weight:400;
  1440. font-style:normal;
  1441. font-size:12px;
  1442. color:#1890FF;
  1443. line-height:30px;
  1444. }
  1445. #u37629 {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:332px;
  1449. top:115px;
  1450. width:64px;
  1451. height:30px;
  1452. display:flex;
  1453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1454. font-weight:400;
  1455. font-style:normal;
  1456. font-size:12px;
  1457. color:#1890FF;
  1458. line-height:30px;
  1459. }
  1460. #u37629 .text {
  1461. position:absolute;
  1462. align-self:flex-start;
  1463. padding:0px 0px 0px 0px;
  1464. box-sizing:border-box;
  1465. width:100%;
  1466. }
  1467. #u37629_text {
  1468. border-width:0px;
  1469. white-space:nowrap;
  1470. text-transform:none;
  1471. }
  1472. #u37630 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:0px;
  1478. height:0px;
  1479. }
  1480. #u37631_div {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:0px;
  1484. top:0px;
  1485. width:375px;
  1486. height:41px;
  1487. background:inherit;
  1488. background-color:rgba(255, 255, 255, 1);
  1489. border:none;
  1490. border-radius:0px;
  1491. -moz-box-shadow:none;
  1492. -webkit-box-shadow:none;
  1493. box-shadow:none;
  1494. }
  1495. #u37631 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:29px;
  1499. top:155px;
  1500. width:375px;
  1501. height:41px;
  1502. display:flex;
  1503. }
  1504. #u37631 .text {
  1505. position:absolute;
  1506. align-self:center;
  1507. padding:2px 2px 2px 2px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u37631_text {
  1512. border-width:0px;
  1513. word-wrap:break-word;
  1514. text-transform:none;
  1515. visibility:hidden;
  1516. }
  1517. #u37632_div {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:37px;
  1523. height:40px;
  1524. background:inherit;
  1525. background-color:rgba(255, 255, 255, 0);
  1526. border:none;
  1527. border-left:0px;
  1528. border-top:0px;
  1529. border-right:0px;
  1530. border-radius:0px;
  1531. border-bottom-right-radius:0px;
  1532. border-bottom-left-radius:0px;
  1533. -moz-box-shadow:none;
  1534. -webkit-box-shadow:none;
  1535. box-shadow:none;
  1536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1537. font-weight:400;
  1538. font-style:normal;
  1539. font-size:12px;
  1540. text-align:center;
  1541. }
  1542. #u37632 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:110px;
  1546. top:155px;
  1547. width:37px;
  1548. height:40px;
  1549. display:flex;
  1550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1551. font-weight:400;
  1552. font-style:normal;
  1553. font-size:12px;
  1554. text-align:center;
  1555. }
  1556. #u37632 .text {
  1557. position:absolute;
  1558. align-self:center;
  1559. padding:0px 0px 0px 0px;
  1560. box-sizing:border-box;
  1561. width:100%;
  1562. }
  1563. #u37632_text {
  1564. border-width:0px;
  1565. white-space:nowrap;
  1566. text-transform:none;
  1567. }
  1568. #u37633_div {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:37px;
  1574. height:40px;
  1575. background:inherit;
  1576. background-color:rgba(255, 255, 255, 0);
  1577. border:none;
  1578. border-left:0px;
  1579. border-top:0px;
  1580. border-right:0px;
  1581. border-radius:0px;
  1582. border-bottom-right-radius:0px;
  1583. border-bottom-left-radius:0px;
  1584. -moz-box-shadow:none;
  1585. -webkit-box-shadow:none;
  1586. box-shadow:none;
  1587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1588. font-weight:400;
  1589. font-style:normal;
  1590. font-size:12px;
  1591. color:#000000;
  1592. text-align:center;
  1593. }
  1594. #u37633 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:176px;
  1598. top:155px;
  1599. width:37px;
  1600. height:40px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:12px;
  1606. color:#000000;
  1607. text-align:center;
  1608. }
  1609. #u37633 .text {
  1610. position:absolute;
  1611. align-self:center;
  1612. padding:0px 0px 0px 0px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u37633_text {
  1617. border-width:0px;
  1618. white-space:nowrap;
  1619. text-transform:none;
  1620. }
  1621. #u37634_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:37px;
  1627. height:40px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 0);
  1630. border:none;
  1631. border-left:0px;
  1632. border-top:0px;
  1633. border-right:0px;
  1634. border-radius:0px;
  1635. border-bottom-right-radius:0px;
  1636. border-bottom-left-radius:0px;
  1637. -moz-box-shadow:none;
  1638. -webkit-box-shadow:none;
  1639. box-shadow:none;
  1640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. font-size:12px;
  1644. color:#000000;
  1645. text-align:center;
  1646. }
  1647. #u37634 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:241px;
  1651. top:155px;
  1652. width:37px;
  1653. height:40px;
  1654. display:flex;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#000000;
  1660. text-align:center;
  1661. }
  1662. #u37634 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:0px 0px 0px 0px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u37634_text {
  1670. border-width:0px;
  1671. white-space:nowrap;
  1672. text-transform:none;
  1673. }
  1674. #u37635_div {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:37px;
  1680. height:40px;
  1681. background:inherit;
  1682. background-color:rgba(255, 255, 255, 0);
  1683. box-sizing:border-box;
  1684. border-width:2px;
  1685. border-style:solid;
  1686. border-color:rgba(41, 143, 255, 1);
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:12px;
  1700. color:#1890FF;
  1701. text-align:center;
  1702. }
  1703. #u37635 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:45px;
  1707. top:155px;
  1708. width:37px;
  1709. height:40px;
  1710. display:flex;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:12px;
  1715. color:#1890FF;
  1716. text-align:center;
  1717. }
  1718. #u37635 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u37635_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u37636_div {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:11px;
  1736. height:11px;
  1737. background:inherit;
  1738. background-color:rgba(217, 0, 27, 1);
  1739. border:none;
  1740. border-radius:7px;
  1741. -moz-box-shadow:none;
  1742. -webkit-box-shadow:none;
  1743. box-shadow:none;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:8px;
  1748. color:#FFFFFF;
  1749. text-align:center;
  1750. }
  1751. #u37636 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:79px;
  1755. top:159px;
  1756. width:11px;
  1757. height:11px;
  1758. display:flex;
  1759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:8px;
  1763. color:#FFFFFF;
  1764. text-align:center;
  1765. }
  1766. #u37636 .text {
  1767. position:absolute;
  1768. align-self:flex-start;
  1769. padding:0px 0px 0px 0px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u37636_text {
  1774. border-width:0px;
  1775. word-wrap:break-word;
  1776. text-transform:none;
  1777. }
  1778. #u37638_img {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:433px;
  1784. height:865px;
  1785. }
  1786. #u37638 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:461px;
  1790. top:0px;
  1791. width:433px;
  1792. height:865px;
  1793. display:flex;
  1794. }
  1795. #u37638 .text {
  1796. position:absolute;
  1797. align-self:center;
  1798. padding:2px 2px 2px 2px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u37638_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. visibility:hidden;
  1807. }
  1808. #u37639_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:375px;
  1814. height:40px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 1);
  1817. border:none;
  1818. border-left:0px;
  1819. border-top:0px;
  1820. border-right:0px;
  1821. border-radius:0px;
  1822. border-bottom-right-radius:0px;
  1823. border-bottom-left-radius:0px;
  1824. -moz-box-shadow:none;
  1825. -webkit-box-shadow:none;
  1826. box-shadow:none;
  1827. }
  1828. #u37639 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:490px;
  1832. top:67px;
  1833. width:375px;
  1834. height:40px;
  1835. display:flex;
  1836. }
  1837. #u37639 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 2px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u37639_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. visibility:hidden;
  1849. }
  1850. #u37640 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:0px;
  1856. height:0px;
  1857. }
  1858. #u37641_div {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:88px;
  1864. height:32px;
  1865. background:inherit;
  1866. background-color:rgba(255, 255, 255, 1);
  1867. box-sizing:border-box;
  1868. border-width:1px;
  1869. border-style:solid;
  1870. border-color:rgba(242, 242, 242, 1);
  1871. border-radius:33px;
  1872. -moz-box-shadow:none;
  1873. -webkit-box-shadow:none;
  1874. box-shadow:none;
  1875. }
  1876. #u37641 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:770px;
  1880. top:71px;
  1881. width:88px;
  1882. height:32px;
  1883. display:flex;
  1884. }
  1885. #u37641 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 2px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u37641_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. visibility:hidden;
  1897. }
  1898. #u37642 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:0px;
  1904. height:0px;
  1905. }
  1906. #u37643_img {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:18px;
  1912. height:18px;
  1913. }
  1914. #u37643 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:833px;
  1918. top:78px;
  1919. width:18px;
  1920. height:18px;
  1921. display:flex;
  1922. }
  1923. #u37643 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 2px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u37643_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. visibility:hidden;
  1935. }
  1936. #u37644_img {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:6px;
  1942. height:6px;
  1943. }
  1944. #u37644 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:839px;
  1948. top:84px;
  1949. width:6px;
  1950. height:6px;
  1951. display:flex;
  1952. }
  1953. #u37644 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 2px 2px 2px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u37644_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. visibility:hidden;
  1965. }
  1966. #u37645 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:0px;
  1972. height:0px;
  1973. }
  1974. #u37646_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:5px;
  1980. height:5px;
  1981. }
  1982. #u37646 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:784px;
  1986. top:85px;
  1987. width:5px;
  1988. height:5px;
  1989. display:flex;
  1990. }
  1991. #u37646 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 2px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u37646_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. visibility:hidden;
  2003. }
  2004. #u37647_img {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:5px;
  2010. height:5px;
  2011. }
  2012. #u37647 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:800px;
  2016. top:85px;
  2017. width:5px;
  2018. height:5px;
  2019. display:flex;
  2020. }
  2021. #u37647 .text {
  2022. position:absolute;
  2023. align-self:center;
  2024. padding:2px 2px 2px 2px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u37647_text {
  2029. border-width:0px;
  2030. word-wrap:break-word;
  2031. text-transform:none;
  2032. visibility:hidden;
  2033. }
  2034. #u37648_img {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:7px;
  2040. height:7px;
  2041. }
  2042. #u37648 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:791px;
  2046. top:84px;
  2047. width:7px;
  2048. height:7px;
  2049. display:flex;
  2050. }
  2051. #u37648 .text {
  2052. position:absolute;
  2053. align-self:center;
  2054. padding:2px 2px 2px 2px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u37648_text {
  2059. border-width:0px;
  2060. word-wrap:break-word;
  2061. text-transform:none;
  2062. visibility:hidden;
  2063. }
  2064. #u37649_img {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:19px;
  2070. height:2px;
  2071. }
  2072. #u37649 {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:808px;
  2076. top:87px;
  2077. width:18px;
  2078. height:1px;
  2079. display:flex;
  2080. -webkit-transform:rotate(90deg);
  2081. -moz-transform:rotate(90deg);
  2082. -ms-transform:rotate(90deg);
  2083. transform:rotate(90deg);
  2084. }
  2085. #u37649 .text {
  2086. position:absolute;
  2087. align-self:center;
  2088. padding:2px 2px 2px 2px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u37649_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. visibility:hidden;
  2097. }
  2098. #u37650_img {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:375px;
  2104. height:44px;
  2105. }
  2106. #u37650 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:490px;
  2110. top:24px;
  2111. width:375px;
  2112. height:44px;
  2113. display:flex;
  2114. }
  2115. #u37650 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u37650_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. visibility:hidden;
  2127. }
  2128. #u37651_div {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:375px;
  2134. height:50px;
  2135. background:inherit;
  2136. background-color:rgba(255, 255, 255, 1);
  2137. box-sizing:border-box;
  2138. border-width:1px;
  2139. border-style:solid;
  2140. border-color:rgba(242, 242, 242, 1);
  2141. border-radius:26px;
  2142. border-top-left-radius:0px;
  2143. border-top-right-radius:0px;
  2144. -moz-box-shadow:none;
  2145. -webkit-box-shadow:none;
  2146. box-shadow:none;
  2147. }
  2148. #u37651 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:490px;
  2152. top:788px;
  2153. width:375px;
  2154. height:50px;
  2155. display:flex;
  2156. }
  2157. #u37651 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:2px 2px 2px 2px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u37651_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. visibility:hidden;
  2169. }
  2170. #u37652 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:0px;
  2176. height:0px;
  2177. }
  2178. #u37653_img {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:24px;
  2184. height:24px;
  2185. }
  2186. #u37653 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:530px;
  2190. top:792px;
  2191. width:24px;
  2192. height:24px;
  2193. display:flex;
  2194. font-size:8px;
  2195. }
  2196. #u37653 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 2px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u37653_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u37654_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:25px;
  2214. height:17px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:12px;
  2226. }
  2227. #u37654 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:530px;
  2231. top:817px;
  2232. width:25px;
  2233. height:17px;
  2234. display:flex;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:12px;
  2239. }
  2240. #u37654 .text {
  2241. position:absolute;
  2242. align-self:flex-start;
  2243. padding:0px 0px 0px 0px;
  2244. box-sizing:border-box;
  2245. width:100%;
  2246. }
  2247. #u37654_text {
  2248. border-width:0px;
  2249. white-space:nowrap;
  2250. text-transform:none;
  2251. }
  2252. #u37655 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:0px;
  2258. height:0px;
  2259. }
  2260. #u37656_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:24px;
  2266. height:24px;
  2267. }
  2268. #u37656 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:800px;
  2272. top:794px;
  2273. width:24px;
  2274. height:24px;
  2275. display:flex;
  2276. font-size:8px;
  2277. }
  2278. #u37656 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:2px 2px 2px 2px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u37656_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. }
  2290. #u37657_div {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:25px;
  2296. height:17px;
  2297. background:inherit;
  2298. background-color:rgba(255, 255, 255, 0);
  2299. border:none;
  2300. border-radius:0px;
  2301. -moz-box-shadow:none;
  2302. -webkit-box-shadow:none;
  2303. box-shadow:none;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. font-size:12px;
  2308. }
  2309. #u37657 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:800px;
  2313. top:819px;
  2314. width:25px;
  2315. height:17px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:12px;
  2321. }
  2322. #u37657 .text {
  2323. position:absolute;
  2324. align-self:flex-start;
  2325. padding:0px 0px 0px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u37657_text {
  2330. border-width:0px;
  2331. white-space:nowrap;
  2332. text-transform:none;
  2333. }
  2334. #u37658_div {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:375px;
  2340. height:681px;
  2341. background:inherit;
  2342. background-color:rgba(242, 242, 242, 0.462745098039216);
  2343. border:none;
  2344. border-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. }
  2349. #u37658 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:490px;
  2353. top:107px;
  2354. width:375px;
  2355. height:681px;
  2356. display:flex;
  2357. }
  2358. #u37658 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 2px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u37658_text {
  2366. border-width:0px;
  2367. word-wrap:break-word;
  2368. text-transform:none;
  2369. visibility:hidden;
  2370. }
  2371. #u37659 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:0px;
  2377. height:0px;
  2378. }
  2379. #u37660_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:24px;
  2385. height:24px;
  2386. }
  2387. #u37660 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:712px;
  2391. top:792px;
  2392. width:24px;
  2393. height:24px;
  2394. display:flex;
  2395. font-size:8px;
  2396. }
  2397. #u37660 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u37660_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. }
  2409. #u37661_div {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:37px;
  2415. height:17px;
  2416. background:inherit;
  2417. background-color:rgba(255, 255, 255, 0);
  2418. border:none;
  2419. border-radius:0px;
  2420. -moz-box-shadow:none;
  2421. -webkit-box-shadow:none;
  2422. box-shadow:none;
  2423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:12px;
  2427. }
  2428. #u37661 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:706px;
  2432. top:817px;
  2433. width:37px;
  2434. height:17px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:12px;
  2440. }
  2441. #u37661 .text {
  2442. position:absolute;
  2443. align-self:flex-start;
  2444. padding:0px 0px 0px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u37661_text {
  2449. border-width:0px;
  2450. white-space:nowrap;
  2451. text-transform:none;
  2452. }
  2453. #u37662 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:0px;
  2459. height:0px;
  2460. }
  2461. #u37663_img {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:24px;
  2467. height:24px;
  2468. }
  2469. #u37663 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:618px;
  2473. top:792px;
  2474. width:24px;
  2475. height:24px;
  2476. display:flex;
  2477. font-size:8px;
  2478. }
  2479. #u37663 .text {
  2480. position:absolute;
  2481. align-self:center;
  2482. padding:2px 2px 2px 2px;
  2483. box-sizing:border-box;
  2484. width:100%;
  2485. }
  2486. #u37663_text {
  2487. border-width:0px;
  2488. word-wrap:break-word;
  2489. text-transform:none;
  2490. }
  2491. #u37664_div {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:37px;
  2497. height:17px;
  2498. background:inherit;
  2499. background-color:rgba(255, 255, 255, 0);
  2500. border:none;
  2501. border-radius:0px;
  2502. -moz-box-shadow:none;
  2503. -webkit-box-shadow:none;
  2504. box-shadow:none;
  2505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:12px;
  2509. }
  2510. #u37664 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:612px;
  2514. top:817px;
  2515. width:37px;
  2516. height:17px;
  2517. display:flex;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:12px;
  2522. }
  2523. #u37664 .text {
  2524. position:absolute;
  2525. align-self:flex-start;
  2526. padding:0px 0px 0px 0px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u37664_text {
  2531. border-width:0px;
  2532. white-space:nowrap;
  2533. text-transform:none;
  2534. }
  2535. #u37665_div {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:375px;
  2541. height:740px;
  2542. background:inherit;
  2543. background-color:rgba(242, 242, 242, 1);
  2544. border:none;
  2545. border-top:0px;
  2546. border-radius:25px;
  2547. border-top-left-radius:0px;
  2548. border-top-right-radius:0px;
  2549. -moz-box-shadow:none;
  2550. -webkit-box-shadow:none;
  2551. box-shadow:none;
  2552. }
  2553. #u37665 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:490px;
  2557. top:105px;
  2558. width:375px;
  2559. height:740px;
  2560. display:flex;
  2561. }
  2562. #u37665 .text {
  2563. position:absolute;
  2564. align-self:center;
  2565. padding:2px 2px 2px 2px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u37665_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. visibility:hidden;
  2574. }
  2575. #u37666 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:0px;
  2581. height:0px;
  2582. }
  2583. #u37667_img {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:11px;
  2589. height:18px;
  2590. }
  2591. #u37667 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:501px;
  2595. top:79px;
  2596. width:11px;
  2597. height:18px;
  2598. display:flex;
  2599. }
  2600. #u37667 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 2px 2px 2px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u37667_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u37668 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:0px;
  2619. height:0px;
  2620. }
  2621. #u37669_div {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:88px;
  2627. height:32px;
  2628. background:inherit;
  2629. background-color:rgba(255, 255, 255, 1);
  2630. box-sizing:border-box;
  2631. border-width:1px;
  2632. border-style:solid;
  2633. border-color:rgba(242, 242, 242, 1);
  2634. border-radius:33px;
  2635. -moz-box-shadow:none;
  2636. -webkit-box-shadow:none;
  2637. box-shadow:none;
  2638. }
  2639. #u37669 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:770px;
  2643. top:71px;
  2644. width:88px;
  2645. height:32px;
  2646. display:flex;
  2647. }
  2648. #u37669 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:2px 2px 2px 2px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u37669_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. visibility:hidden;
  2660. }
  2661. #u37670 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:0px;
  2667. height:0px;
  2668. }
  2669. #u37671_img {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:18px;
  2675. height:18px;
  2676. }
  2677. #u37671 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:833px;
  2681. top:78px;
  2682. width:18px;
  2683. height:18px;
  2684. display:flex;
  2685. }
  2686. #u37671 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:2px 2px 2px 2px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u37671_text {
  2694. border-width:0px;
  2695. word-wrap:break-word;
  2696. text-transform:none;
  2697. visibility:hidden;
  2698. }
  2699. #u37672_img {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:6px;
  2705. height:6px;
  2706. }
  2707. #u37672 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:839px;
  2711. top:84px;
  2712. width:6px;
  2713. height:6px;
  2714. display:flex;
  2715. }
  2716. #u37672 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 2px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u37672_text {
  2724. border-width:0px;
  2725. word-wrap:break-word;
  2726. text-transform:none;
  2727. visibility:hidden;
  2728. }
  2729. #u37673 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:0px;
  2735. height:0px;
  2736. }
  2737. #u37674_img {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:5px;
  2743. height:5px;
  2744. }
  2745. #u37674 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:784px;
  2749. top:85px;
  2750. width:5px;
  2751. height:5px;
  2752. display:flex;
  2753. }
  2754. #u37674 .text {
  2755. position:absolute;
  2756. align-self:center;
  2757. padding:2px 2px 2px 2px;
  2758. box-sizing:border-box;
  2759. width:100%;
  2760. }
  2761. #u37674_text {
  2762. border-width:0px;
  2763. word-wrap:break-word;
  2764. text-transform:none;
  2765. visibility:hidden;
  2766. }
  2767. #u37675_img {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:5px;
  2773. height:5px;
  2774. }
  2775. #u37675 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:800px;
  2779. top:85px;
  2780. width:5px;
  2781. height:5px;
  2782. display:flex;
  2783. }
  2784. #u37675 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u37675_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u37676_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:7px;
  2803. height:7px;
  2804. }
  2805. #u37676 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:791px;
  2809. top:84px;
  2810. width:7px;
  2811. height:7px;
  2812. display:flex;
  2813. }
  2814. #u37676 .text {
  2815. position:absolute;
  2816. align-self:center;
  2817. padding:2px 2px 2px 2px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u37676_text {
  2822. border-width:0px;
  2823. word-wrap:break-word;
  2824. text-transform:none;
  2825. visibility:hidden;
  2826. }
  2827. #u37677_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:19px;
  2833. height:2px;
  2834. }
  2835. #u37677 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:808px;
  2839. top:87px;
  2840. width:18px;
  2841. height:1px;
  2842. display:flex;
  2843. -webkit-transform:rotate(90deg);
  2844. -moz-transform:rotate(90deg);
  2845. -ms-transform:rotate(90deg);
  2846. transform:rotate(90deg);
  2847. }
  2848. #u37677 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 2px 2px 2px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u37677_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. visibility:hidden;
  2860. }
  2861. #u37678_div {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:12px;
  2867. height:12px;
  2868. background:inherit;
  2869. background-color:rgba(255, 255, 255, 0);
  2870. box-sizing:border-box;
  2871. border-width:2px;
  2872. border-style:solid;
  2873. border-color:rgba(51, 51, 51, 1);
  2874. border-right:0px;
  2875. border-bottom:0px;
  2876. border-radius:0px;
  2877. border-top-right-radius:0px;
  2878. border-bottom-left-radius:0px;
  2879. -moz-box-shadow:none;
  2880. -webkit-box-shadow:none;
  2881. box-shadow:none;
  2882. }
  2883. #u37678 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:503px;
  2887. top:82px;
  2888. width:12px;
  2889. height:12px;
  2890. display:flex;
  2891. -webkit-transform:rotate(315deg);
  2892. -moz-transform:rotate(315deg);
  2893. -ms-transform:rotate(315deg);
  2894. transform:rotate(315deg);
  2895. }
  2896. #u37678 .text {
  2897. position:absolute;
  2898. align-self:center;
  2899. padding:2px 2px 2px 2px;
  2900. box-sizing:border-box;
  2901. width:100%;
  2902. }
  2903. #u37678_text {
  2904. border-width:0px;
  2905. word-wrap:break-word;
  2906. text-transform:none;
  2907. visibility:hidden;
  2908. }
  2909. #u37679_div {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:65px;
  2915. height:22px;
  2916. background:inherit;
  2917. background-color:rgba(255, 255, 255, 0);
  2918. border:none;
  2919. border-radius:0px;
  2920. -moz-box-shadow:none;
  2921. -webkit-box-shadow:none;
  2922. box-shadow:none;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:16px;
  2927. color:#000000;
  2928. }
  2929. #u37679 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:640px;
  2933. top:77px;
  2934. width:65px;
  2935. height:22px;
  2936. display:flex;
  2937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:16px;
  2941. color:#000000;
  2942. }
  2943. #u37679 .text {
  2944. position:absolute;
  2945. align-self:flex-start;
  2946. padding:0px 0px 0px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u37679_text {
  2951. border-width:0px;
  2952. white-space:nowrap;
  2953. text-transform:none;
  2954. }
  2955. #u37680_img {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:23px;
  2961. height:23px;
  2962. }
  2963. #u37680 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:522px;
  2967. top:76px;
  2968. width:23px;
  2969. height:23px;
  2970. display:flex;
  2971. }
  2972. #u37680 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 2px 2px 2px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u37680_text {
  2980. border-width:0px;
  2981. word-wrap:break-word;
  2982. text-transform:none;
  2983. visibility:hidden;
  2984. }
  2985. #u37681 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:0px;
  2991. height:0px;
  2992. }
  2993. #u37682_div {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:375px;
  2999. height:50px;
  3000. background:inherit;
  3001. background-color:rgba(255, 255, 255, 1);
  3002. border:none;
  3003. border-radius:0px;
  3004. -moz-box-shadow:none;
  3005. -webkit-box-shadow:none;
  3006. box-shadow:none;
  3007. }
  3008. #u37682 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:490px;
  3012. top:105px;
  3013. width:375px;
  3014. height:50px;
  3015. display:flex;
  3016. }
  3017. #u37682 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 2px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u37682_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u37683 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:0px;
  3036. height:0px;
  3037. }
  3038. #u37684 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:0px;
  3044. height:0px;
  3045. }
  3046. #u37685_div {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:280px;
  3052. height:30px;
  3053. background:inherit;
  3054. background-color:rgba(242, 242, 242, 1);
  3055. border:none;
  3056. border-radius:20px;
  3057. -moz-box-shadow:none;
  3058. -webkit-box-shadow:none;
  3059. box-shadow:none;
  3060. }
  3061. #u37685 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:503px;
  3065. top:115px;
  3066. width:280px;
  3067. height:30px;
  3068. display:flex;
  3069. }
  3070. #u37685 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 2px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u37685_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u37686_input {
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:252px;
  3088. height:22px;
  3089. padding:2px 2px 2px 2px;
  3090. font-family:'ArialMT', 'Arial', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:12px;
  3094. letter-spacing:normal;
  3095. color:#7F7F7F;
  3096. vertical-align:none;
  3097. text-align:left;
  3098. text-transform:none;
  3099. background-color:transparent;
  3100. border-color:transparent;
  3101. }
  3102. #u37686_input.disabled {
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:252px;
  3107. height:22px;
  3108. padding:2px 2px 2px 2px;
  3109. font-family:'ArialMT', 'Arial', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:12px;
  3113. letter-spacing:normal;
  3114. color:#7F7F7F;
  3115. vertical-align:none;
  3116. text-align:left;
  3117. text-transform:none;
  3118. background-color:transparent;
  3119. border-color:transparent;
  3120. }
  3121. #u37686_div {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:252px;
  3127. height:22px;
  3128. background:inherit;
  3129. background-color:rgba(255, 255, 255, 0);
  3130. border:none;
  3131. border-radius:0px;
  3132. -moz-box-shadow:none;
  3133. -webkit-box-shadow:none;
  3134. box-shadow:none;
  3135. font-size:12px;
  3136. color:#7F7F7F;
  3137. }
  3138. #u37686 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:517px;
  3142. top:119px;
  3143. width:252px;
  3144. height:22px;
  3145. display:flex;
  3146. font-size:12px;
  3147. color:#7F7F7F;
  3148. }
  3149. #u37686 .text {
  3150. position:absolute;
  3151. align-self:flex-start;
  3152. padding:2px 2px 2px 2px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u37686_div.disabled {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:252px;
  3162. height:22px;
  3163. background:inherit;
  3164. background-color:rgba(240, 240, 240, 1);
  3165. border:none;
  3166. border-radius:0px;
  3167. -moz-box-shadow:none;
  3168. -webkit-box-shadow:none;
  3169. box-shadow:none;
  3170. font-size:12px;
  3171. color:#7F7F7F;
  3172. }
  3173. #u37686.disabled {
  3174. }
  3175. .u37686_input_option {
  3176. font-size:12px;
  3177. }
  3178. #u37687_div {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:64px;
  3184. height:30px;
  3185. background:inherit;
  3186. background-color:rgba(255, 255, 255, 0);
  3187. border:none;
  3188. border-left:0px;
  3189. border-top:0px;
  3190. border-right:0px;
  3191. border-radius:0px;
  3192. border-bottom-right-radius:0px;
  3193. border-bottom-left-radius:0px;
  3194. -moz-box-shadow:none;
  3195. -webkit-box-shadow:none;
  3196. box-shadow:none;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:12px;
  3201. color:#1890FF;
  3202. line-height:30px;
  3203. }
  3204. #u37687 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:793px;
  3208. top:115px;
  3209. width:64px;
  3210. height:30px;
  3211. display:flex;
  3212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:12px;
  3216. color:#1890FF;
  3217. line-height:30px;
  3218. }
  3219. #u37687 .text {
  3220. position:absolute;
  3221. align-self:flex-start;
  3222. padding:0px 0px 0px 0px;
  3223. box-sizing:border-box;
  3224. width:100%;
  3225. }
  3226. #u37687_text {
  3227. border-width:0px;
  3228. white-space:nowrap;
  3229. text-transform:none;
  3230. }
  3231. #u37688 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:0px;
  3237. height:0px;
  3238. }
  3239. #u37689_div {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:375px;
  3245. height:41px;
  3246. background:inherit;
  3247. background-color:rgba(255, 255, 255, 1);
  3248. border:none;
  3249. border-radius:0px;
  3250. -moz-box-shadow:none;
  3251. -webkit-box-shadow:none;
  3252. box-shadow:none;
  3253. }
  3254. #u37689 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:490px;
  3258. top:155px;
  3259. width:375px;
  3260. height:41px;
  3261. display:flex;
  3262. }
  3263. #u37689 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 2px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u37689_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u37690_div {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:37px;
  3282. height:40px;
  3283. background:inherit;
  3284. background-color:rgba(255, 255, 255, 0);
  3285. box-sizing:border-box;
  3286. border-width:2px;
  3287. border-style:solid;
  3288. border-color:rgba(41, 143, 255, 1);
  3289. border-left:0px;
  3290. border-top:0px;
  3291. border-right:0px;
  3292. border-radius:0px;
  3293. border-bottom-right-radius:0px;
  3294. border-bottom-left-radius:0px;
  3295. -moz-box-shadow:none;
  3296. -webkit-box-shadow:none;
  3297. box-shadow:none;
  3298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3299. font-weight:400;
  3300. font-style:normal;
  3301. font-size:12px;
  3302. color:#1890FF;
  3303. text-align:center;
  3304. }
  3305. #u37690 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:571px;
  3309. top:155px;
  3310. width:37px;
  3311. height:40px;
  3312. display:flex;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:12px;
  3317. color:#1890FF;
  3318. text-align:center;
  3319. }
  3320. #u37690 .text {
  3321. position:absolute;
  3322. align-self:center;
  3323. padding:0px 0px 0px 0px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u37690_text {
  3328. border-width:0px;
  3329. white-space:nowrap;
  3330. text-transform:none;
  3331. }
  3332. #u37691_div {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:37px;
  3338. height:40px;
  3339. background:inherit;
  3340. background-color:rgba(255, 255, 255, 0);
  3341. border:none;
  3342. border-left:0px;
  3343. border-top:0px;
  3344. border-right:0px;
  3345. border-radius:0px;
  3346. border-bottom-right-radius:0px;
  3347. border-bottom-left-radius:0px;
  3348. -moz-box-shadow:none;
  3349. -webkit-box-shadow:none;
  3350. box-shadow:none;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:12px;
  3355. color:#000000;
  3356. text-align:center;
  3357. }
  3358. #u37691 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:637px;
  3362. top:155px;
  3363. width:37px;
  3364. height:40px;
  3365. display:flex;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#000000;
  3371. text-align:center;
  3372. }
  3373. #u37691 .text {
  3374. position:absolute;
  3375. align-self:center;
  3376. padding:0px 0px 0px 0px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u37691_text {
  3381. border-width:0px;
  3382. white-space:nowrap;
  3383. text-transform:none;
  3384. }
  3385. #u37692_div {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:37px;
  3391. height:40px;
  3392. background:inherit;
  3393. background-color:rgba(255, 255, 255, 0);
  3394. border:none;
  3395. border-left:0px;
  3396. border-top:0px;
  3397. border-right:0px;
  3398. border-radius:0px;
  3399. border-bottom-right-radius:0px;
  3400. border-bottom-left-radius:0px;
  3401. -moz-box-shadow:none;
  3402. -webkit-box-shadow:none;
  3403. box-shadow:none;
  3404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:12px;
  3408. color:#000000;
  3409. text-align:center;
  3410. }
  3411. #u37692 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:702px;
  3415. top:155px;
  3416. width:37px;
  3417. height:40px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:12px;
  3423. color:#000000;
  3424. text-align:center;
  3425. }
  3426. #u37692 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:0px 0px 0px 0px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u37692_text {
  3434. border-width:0px;
  3435. white-space:nowrap;
  3436. text-transform:none;
  3437. }
  3438. #u37693_div {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:37px;
  3444. height:40px;
  3445. background:inherit;
  3446. background-color:rgba(255, 255, 255, 0);
  3447. border:none;
  3448. border-left:0px;
  3449. border-top:0px;
  3450. border-right:0px;
  3451. border-radius:0px;
  3452. border-bottom-right-radius:0px;
  3453. border-bottom-left-radius:0px;
  3454. -moz-box-shadow:none;
  3455. -webkit-box-shadow:none;
  3456. box-shadow:none;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:12px;
  3461. text-align:center;
  3462. }
  3463. #u37693 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:506px;
  3467. top:155px;
  3468. width:37px;
  3469. height:40px;
  3470. display:flex;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:12px;
  3475. text-align:center;
  3476. }
  3477. #u37693 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:0px 0px 0px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u37693_text {
  3485. border-width:0px;
  3486. white-space:nowrap;
  3487. text-transform:none;
  3488. }
  3489. #u37694_div {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:11px;
  3495. height:11px;
  3496. background:inherit;
  3497. background-color:rgba(217, 0, 27, 1);
  3498. border:none;
  3499. border-radius:7px;
  3500. -moz-box-shadow:none;
  3501. -webkit-box-shadow:none;
  3502. box-shadow:none;
  3503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3504. font-weight:400;
  3505. font-style:normal;
  3506. font-size:8px;
  3507. color:#FFFFFF;
  3508. text-align:center;
  3509. }
  3510. #u37694 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:540px;
  3514. top:159px;
  3515. width:11px;
  3516. height:11px;
  3517. display:flex;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:8px;
  3522. color:#FFFFFF;
  3523. text-align:center;
  3524. }
  3525. #u37694 .text {
  3526. position:absolute;
  3527. align-self:flex-start;
  3528. padding:0px 0px 0px 0px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u37694_text {
  3533. border-width:0px;
  3534. word-wrap:break-word;
  3535. text-transform:none;
  3536. }
  3537. #u37696_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:433px;
  3543. height:865px;
  3544. }
  3545. #u37696 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:923px;
  3549. top:0px;
  3550. width:433px;
  3551. height:865px;
  3552. display:flex;
  3553. }
  3554. #u37696 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u37696_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u37697_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:375px;
  3573. height:40px;
  3574. background:inherit;
  3575. background-color:rgba(255, 255, 255, 1);
  3576. border:none;
  3577. border-left:0px;
  3578. border-top:0px;
  3579. border-right:0px;
  3580. border-radius:0px;
  3581. border-bottom-right-radius:0px;
  3582. border-bottom-left-radius:0px;
  3583. -moz-box-shadow:none;
  3584. -webkit-box-shadow:none;
  3585. box-shadow:none;
  3586. }
  3587. #u37697 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:952px;
  3591. top:67px;
  3592. width:375px;
  3593. height:40px;
  3594. display:flex;
  3595. }
  3596. #u37697 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 2px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u37697_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. visibility:hidden;
  3608. }
  3609. #u37698 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:0px;
  3615. height:0px;
  3616. }
  3617. #u37699_div {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:88px;
  3623. height:32px;
  3624. background:inherit;
  3625. background-color:rgba(255, 255, 255, 1);
  3626. box-sizing:border-box;
  3627. border-width:1px;
  3628. border-style:solid;
  3629. border-color:rgba(242, 242, 242, 1);
  3630. border-radius:33px;
  3631. -moz-box-shadow:none;
  3632. -webkit-box-shadow:none;
  3633. box-shadow:none;
  3634. }
  3635. #u37699 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:1232px;
  3639. top:71px;
  3640. width:88px;
  3641. height:32px;
  3642. display:flex;
  3643. }
  3644. #u37699 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 2px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u37699_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u37700 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:0px;
  3663. height:0px;
  3664. }
  3665. #u37701_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:18px;
  3671. height:18px;
  3672. }
  3673. #u37701 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:1295px;
  3677. top:78px;
  3678. width:18px;
  3679. height:18px;
  3680. display:flex;
  3681. }
  3682. #u37701 .text {
  3683. position:absolute;
  3684. align-self:center;
  3685. padding:2px 2px 2px 2px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u37701_text {
  3690. border-width:0px;
  3691. word-wrap:break-word;
  3692. text-transform:none;
  3693. visibility:hidden;
  3694. }
  3695. #u37702_img {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:6px;
  3701. height:6px;
  3702. }
  3703. #u37702 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:1301px;
  3707. top:84px;
  3708. width:6px;
  3709. height:6px;
  3710. display:flex;
  3711. }
  3712. #u37702 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u37702_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. visibility:hidden;
  3724. }
  3725. #u37703 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:0px;
  3731. height:0px;
  3732. }
  3733. #u37704_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:5px;
  3739. height:5px;
  3740. }
  3741. #u37704 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:1246px;
  3745. top:85px;
  3746. width:5px;
  3747. height:5px;
  3748. display:flex;
  3749. }
  3750. #u37704 .text {
  3751. position:absolute;
  3752. align-self:center;
  3753. padding:2px 2px 2px 2px;
  3754. box-sizing:border-box;
  3755. width:100%;
  3756. }
  3757. #u37704_text {
  3758. border-width:0px;
  3759. word-wrap:break-word;
  3760. text-transform:none;
  3761. visibility:hidden;
  3762. }
  3763. #u37705_img {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:5px;
  3769. height:5px;
  3770. }
  3771. #u37705 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:1262px;
  3775. top:85px;
  3776. width:5px;
  3777. height:5px;
  3778. display:flex;
  3779. }
  3780. #u37705 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 2px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u37705_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. visibility:hidden;
  3792. }
  3793. #u37706_img {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:7px;
  3799. height:7px;
  3800. }
  3801. #u37706 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:1253px;
  3805. top:84px;
  3806. width:7px;
  3807. height:7px;
  3808. display:flex;
  3809. }
  3810. #u37706 .text {
  3811. position:absolute;
  3812. align-self:center;
  3813. padding:2px 2px 2px 2px;
  3814. box-sizing:border-box;
  3815. width:100%;
  3816. }
  3817. #u37706_text {
  3818. border-width:0px;
  3819. word-wrap:break-word;
  3820. text-transform:none;
  3821. visibility:hidden;
  3822. }
  3823. #u37707_img {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:19px;
  3829. height:2px;
  3830. }
  3831. #u37707 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:1270px;
  3835. top:87px;
  3836. width:18px;
  3837. height:1px;
  3838. display:flex;
  3839. -webkit-transform:rotate(90deg);
  3840. -moz-transform:rotate(90deg);
  3841. -ms-transform:rotate(90deg);
  3842. transform:rotate(90deg);
  3843. }
  3844. #u37707 .text {
  3845. position:absolute;
  3846. align-self:center;
  3847. padding:2px 2px 2px 2px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u37707_text {
  3852. border-width:0px;
  3853. word-wrap:break-word;
  3854. text-transform:none;
  3855. visibility:hidden;
  3856. }
  3857. #u37708_img {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:375px;
  3863. height:44px;
  3864. }
  3865. #u37708 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:952px;
  3869. top:24px;
  3870. width:375px;
  3871. height:44px;
  3872. display:flex;
  3873. }
  3874. #u37708 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 2px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u37708_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u37709_div {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:375px;
  3893. height:50px;
  3894. background:inherit;
  3895. background-color:rgba(255, 255, 255, 1);
  3896. box-sizing:border-box;
  3897. border-width:1px;
  3898. border-style:solid;
  3899. border-color:rgba(242, 242, 242, 1);
  3900. border-radius:26px;
  3901. border-top-left-radius:0px;
  3902. border-top-right-radius:0px;
  3903. -moz-box-shadow:none;
  3904. -webkit-box-shadow:none;
  3905. box-shadow:none;
  3906. }
  3907. #u37709 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:952px;
  3911. top:788px;
  3912. width:375px;
  3913. height:50px;
  3914. display:flex;
  3915. }
  3916. #u37709 .text {
  3917. position:absolute;
  3918. align-self:center;
  3919. padding:2px 2px 2px 2px;
  3920. box-sizing:border-box;
  3921. width:100%;
  3922. }
  3923. #u37709_text {
  3924. border-width:0px;
  3925. word-wrap:break-word;
  3926. text-transform:none;
  3927. visibility:hidden;
  3928. }
  3929. #u37710 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:0px;
  3935. height:0px;
  3936. }
  3937. #u37711_img {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:0px;
  3941. top:0px;
  3942. width:24px;
  3943. height:24px;
  3944. }
  3945. #u37711 {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:992px;
  3949. top:792px;
  3950. width:24px;
  3951. height:24px;
  3952. display:flex;
  3953. font-size:8px;
  3954. }
  3955. #u37711 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 2px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u37711_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. }
  3967. #u37712_div {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:25px;
  3973. height:17px;
  3974. background:inherit;
  3975. background-color:rgba(255, 255, 255, 0);
  3976. border:none;
  3977. border-radius:0px;
  3978. -moz-box-shadow:none;
  3979. -webkit-box-shadow:none;
  3980. box-shadow:none;
  3981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3982. font-weight:400;
  3983. font-style:normal;
  3984. font-size:12px;
  3985. }
  3986. #u37712 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:992px;
  3990. top:817px;
  3991. width:25px;
  3992. height:17px;
  3993. display:flex;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:12px;
  3998. }
  3999. #u37712 .text {
  4000. position:absolute;
  4001. align-self:flex-start;
  4002. padding:0px 0px 0px 0px;
  4003. box-sizing:border-box;
  4004. width:100%;
  4005. }
  4006. #u37712_text {
  4007. border-width:0px;
  4008. white-space:nowrap;
  4009. text-transform:none;
  4010. }
  4011. #u37713 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:0px;
  4017. height:0px;
  4018. }
  4019. #u37714_img {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:24px;
  4025. height:24px;
  4026. }
  4027. #u37714 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:1262px;
  4031. top:794px;
  4032. width:24px;
  4033. height:24px;
  4034. display:flex;
  4035. font-size:8px;
  4036. }
  4037. #u37714 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 2px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u37714_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. }
  4049. #u37715_div {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:25px;
  4055. height:17px;
  4056. background:inherit;
  4057. background-color:rgba(255, 255, 255, 0);
  4058. border:none;
  4059. border-radius:0px;
  4060. -moz-box-shadow:none;
  4061. -webkit-box-shadow:none;
  4062. box-shadow:none;
  4063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4064. font-weight:400;
  4065. font-style:normal;
  4066. font-size:12px;
  4067. }
  4068. #u37715 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:1262px;
  4072. top:819px;
  4073. width:25px;
  4074. height:17px;
  4075. display:flex;
  4076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:12px;
  4080. }
  4081. #u37715 .text {
  4082. position:absolute;
  4083. align-self:flex-start;
  4084. padding:0px 0px 0px 0px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u37715_text {
  4089. border-width:0px;
  4090. white-space:nowrap;
  4091. text-transform:none;
  4092. }
  4093. #u37716_div {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:375px;
  4099. height:681px;
  4100. background:inherit;
  4101. background-color:rgba(242, 242, 242, 0.462745098039216);
  4102. border:none;
  4103. border-radius:0px;
  4104. -moz-box-shadow:none;
  4105. -webkit-box-shadow:none;
  4106. box-shadow:none;
  4107. }
  4108. #u37716 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:952px;
  4112. top:107px;
  4113. width:375px;
  4114. height:681px;
  4115. display:flex;
  4116. }
  4117. #u37716 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 2px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u37716_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u37717 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:0px;
  4136. height:0px;
  4137. }
  4138. #u37718_img {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:24px;
  4144. height:24px;
  4145. }
  4146. #u37718 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:1174px;
  4150. top:792px;
  4151. width:24px;
  4152. height:24px;
  4153. display:flex;
  4154. font-size:8px;
  4155. }
  4156. #u37718 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 2px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u37718_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. }
  4168. #u37719_div {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:37px;
  4174. height:17px;
  4175. background:inherit;
  4176. background-color:rgba(255, 255, 255, 0);
  4177. border:none;
  4178. border-radius:0px;
  4179. -moz-box-shadow:none;
  4180. -webkit-box-shadow:none;
  4181. box-shadow:none;
  4182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4183. font-weight:400;
  4184. font-style:normal;
  4185. font-size:12px;
  4186. }
  4187. #u37719 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:1168px;
  4191. top:817px;
  4192. width:37px;
  4193. height:17px;
  4194. display:flex;
  4195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:12px;
  4199. }
  4200. #u37719 .text {
  4201. position:absolute;
  4202. align-self:flex-start;
  4203. padding:0px 0px 0px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u37719_text {
  4208. border-width:0px;
  4209. white-space:nowrap;
  4210. text-transform:none;
  4211. }
  4212. #u37720 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:0px;
  4218. height:0px;
  4219. }
  4220. #u37721_img {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:24px;
  4226. height:24px;
  4227. }
  4228. #u37721 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:1080px;
  4232. top:792px;
  4233. width:24px;
  4234. height:24px;
  4235. display:flex;
  4236. font-size:8px;
  4237. }
  4238. #u37721 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 2px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u37721_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. }
  4250. #u37722_div {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:37px;
  4256. height:17px;
  4257. background:inherit;
  4258. background-color:rgba(255, 255, 255, 0);
  4259. border:none;
  4260. border-radius:0px;
  4261. -moz-box-shadow:none;
  4262. -webkit-box-shadow:none;
  4263. box-shadow:none;
  4264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:12px;
  4268. }
  4269. #u37722 {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:1074px;
  4273. top:817px;
  4274. width:37px;
  4275. height:17px;
  4276. display:flex;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. font-size:12px;
  4281. }
  4282. #u37722 .text {
  4283. position:absolute;
  4284. align-self:flex-start;
  4285. padding:0px 0px 0px 0px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u37722_text {
  4290. border-width:0px;
  4291. white-space:nowrap;
  4292. text-transform:none;
  4293. }
  4294. #u37723_div {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:375px;
  4300. height:740px;
  4301. background:inherit;
  4302. background-color:rgba(242, 242, 242, 1);
  4303. border:none;
  4304. border-top:0px;
  4305. border-radius:25px;
  4306. border-top-left-radius:0px;
  4307. border-top-right-radius:0px;
  4308. -moz-box-shadow:none;
  4309. -webkit-box-shadow:none;
  4310. box-shadow:none;
  4311. }
  4312. #u37723 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:952px;
  4316. top:105px;
  4317. width:375px;
  4318. height:740px;
  4319. display:flex;
  4320. }
  4321. #u37723 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 2px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u37723_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u37724 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:0px;
  4340. height:0px;
  4341. }
  4342. #u37725_img {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:11px;
  4348. height:18px;
  4349. }
  4350. #u37725 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:963px;
  4354. top:79px;
  4355. width:11px;
  4356. height:18px;
  4357. display:flex;
  4358. }
  4359. #u37725 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u37725_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u37726 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:0px;
  4378. height:0px;
  4379. }
  4380. #u37727_div {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:88px;
  4386. height:32px;
  4387. background:inherit;
  4388. background-color:rgba(255, 255, 255, 1);
  4389. box-sizing:border-box;
  4390. border-width:1px;
  4391. border-style:solid;
  4392. border-color:rgba(242, 242, 242, 1);
  4393. border-radius:33px;
  4394. -moz-box-shadow:none;
  4395. -webkit-box-shadow:none;
  4396. box-shadow:none;
  4397. }
  4398. #u37727 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:1232px;
  4402. top:71px;
  4403. width:88px;
  4404. height:32px;
  4405. display:flex;
  4406. }
  4407. #u37727 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 2px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u37727_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. visibility:hidden;
  4419. }
  4420. #u37728 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:0px;
  4426. height:0px;
  4427. }
  4428. #u37729_img {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:18px;
  4434. height:18px;
  4435. }
  4436. #u37729 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:1295px;
  4440. top:78px;
  4441. width:18px;
  4442. height:18px;
  4443. display:flex;
  4444. }
  4445. #u37729 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 2px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u37729_text {
  4453. border-width:0px;
  4454. word-wrap:break-word;
  4455. text-transform:none;
  4456. visibility:hidden;
  4457. }
  4458. #u37730_img {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:6px;
  4464. height:6px;
  4465. }
  4466. #u37730 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:1301px;
  4470. top:84px;
  4471. width:6px;
  4472. height:6px;
  4473. display:flex;
  4474. }
  4475. #u37730 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 2px 2px 2px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u37730_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. visibility:hidden;
  4487. }
  4488. #u37731 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:0px;
  4494. height:0px;
  4495. }
  4496. #u37732_img {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:5px;
  4502. height:5px;
  4503. }
  4504. #u37732 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:1246px;
  4508. top:85px;
  4509. width:5px;
  4510. height:5px;
  4511. display:flex;
  4512. }
  4513. #u37732 .text {
  4514. position:absolute;
  4515. align-self:center;
  4516. padding:2px 2px 2px 2px;
  4517. box-sizing:border-box;
  4518. width:100%;
  4519. }
  4520. #u37732_text {
  4521. border-width:0px;
  4522. word-wrap:break-word;
  4523. text-transform:none;
  4524. visibility:hidden;
  4525. }
  4526. #u37733_img {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:5px;
  4532. height:5px;
  4533. }
  4534. #u37733 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:1262px;
  4538. top:85px;
  4539. width:5px;
  4540. height:5px;
  4541. display:flex;
  4542. }
  4543. #u37733 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 2px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u37733_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u37734_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:7px;
  4562. height:7px;
  4563. }
  4564. #u37734 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:1253px;
  4568. top:84px;
  4569. width:7px;
  4570. height:7px;
  4571. display:flex;
  4572. }
  4573. #u37734 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u37734_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u37735_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:19px;
  4592. height:2px;
  4593. }
  4594. #u37735 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:1270px;
  4598. top:87px;
  4599. width:18px;
  4600. height:1px;
  4601. display:flex;
  4602. -webkit-transform:rotate(90deg);
  4603. -moz-transform:rotate(90deg);
  4604. -ms-transform:rotate(90deg);
  4605. transform:rotate(90deg);
  4606. }
  4607. #u37735 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u37735_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u37736_div {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:12px;
  4626. height:12px;
  4627. background:inherit;
  4628. background-color:rgba(255, 255, 255, 0);
  4629. box-sizing:border-box;
  4630. border-width:2px;
  4631. border-style:solid;
  4632. border-color:rgba(51, 51, 51, 1);
  4633. border-right:0px;
  4634. border-bottom:0px;
  4635. border-radius:0px;
  4636. border-top-right-radius:0px;
  4637. border-bottom-left-radius:0px;
  4638. -moz-box-shadow:none;
  4639. -webkit-box-shadow:none;
  4640. box-shadow:none;
  4641. }
  4642. #u37736 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:965px;
  4646. top:82px;
  4647. width:12px;
  4648. height:12px;
  4649. display:flex;
  4650. -webkit-transform:rotate(315deg);
  4651. -moz-transform:rotate(315deg);
  4652. -ms-transform:rotate(315deg);
  4653. transform:rotate(315deg);
  4654. }
  4655. #u37736 .text {
  4656. position:absolute;
  4657. align-self:center;
  4658. padding:2px 2px 2px 2px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u37736_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. visibility:hidden;
  4667. }
  4668. #u37737_div {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:65px;
  4674. height:22px;
  4675. background:inherit;
  4676. background-color:rgba(255, 255, 255, 0);
  4677. border:none;
  4678. border-radius:0px;
  4679. -moz-box-shadow:none;
  4680. -webkit-box-shadow:none;
  4681. box-shadow:none;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:16px;
  4686. color:#000000;
  4687. }
  4688. #u37737 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:1102px;
  4692. top:77px;
  4693. width:65px;
  4694. height:22px;
  4695. display:flex;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:16px;
  4700. color:#000000;
  4701. }
  4702. #u37737 .text {
  4703. position:absolute;
  4704. align-self:flex-start;
  4705. padding:0px 0px 0px 0px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u37737_text {
  4710. border-width:0px;
  4711. white-space:nowrap;
  4712. text-transform:none;
  4713. }
  4714. #u37738_img {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:23px;
  4720. height:23px;
  4721. }
  4722. #u37738 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:984px;
  4726. top:76px;
  4727. width:23px;
  4728. height:23px;
  4729. display:flex;
  4730. }
  4731. #u37738 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:2px 2px 2px 2px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u37738_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. visibility:hidden;
  4743. }
  4744. #u37739 {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:0px;
  4750. height:0px;
  4751. }
  4752. #u37740_div {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:375px;
  4758. height:50px;
  4759. background:inherit;
  4760. background-color:rgba(255, 255, 255, 1);
  4761. border:none;
  4762. border-radius:0px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. }
  4767. #u37740 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:952px;
  4771. top:105px;
  4772. width:375px;
  4773. height:50px;
  4774. display:flex;
  4775. }
  4776. #u37740 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 2px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u37740_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. visibility:hidden;
  4788. }
  4789. #u37741 {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:0px;
  4795. height:0px;
  4796. }
  4797. #u37742 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:0px;
  4803. height:0px;
  4804. }
  4805. #u37743_div {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:280px;
  4811. height:30px;
  4812. background:inherit;
  4813. background-color:rgba(242, 242, 242, 1);
  4814. border:none;
  4815. border-radius:20px;
  4816. -moz-box-shadow:none;
  4817. -webkit-box-shadow:none;
  4818. box-shadow:none;
  4819. }
  4820. #u37743 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:965px;
  4824. top:115px;
  4825. width:280px;
  4826. height:30px;
  4827. display:flex;
  4828. }
  4829. #u37743 .text {
  4830. position:absolute;
  4831. align-self:center;
  4832. padding:2px 2px 2px 2px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u37743_text {
  4837. border-width:0px;
  4838. word-wrap:break-word;
  4839. text-transform:none;
  4840. visibility:hidden;
  4841. }
  4842. #u37744_input {
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:252px;
  4847. height:22px;
  4848. padding:2px 2px 2px 2px;
  4849. font-family:'ArialMT', 'Arial', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:12px;
  4853. letter-spacing:normal;
  4854. color:#7F7F7F;
  4855. vertical-align:none;
  4856. text-align:left;
  4857. text-transform:none;
  4858. background-color:transparent;
  4859. border-color:transparent;
  4860. }
  4861. #u37744_input.disabled {
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:252px;
  4866. height:22px;
  4867. padding:2px 2px 2px 2px;
  4868. font-family:'ArialMT', 'Arial', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:12px;
  4872. letter-spacing:normal;
  4873. color:#7F7F7F;
  4874. vertical-align:none;
  4875. text-align:left;
  4876. text-transform:none;
  4877. background-color:transparent;
  4878. border-color:transparent;
  4879. }
  4880. #u37744_div {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:252px;
  4886. height:22px;
  4887. background:inherit;
  4888. background-color:rgba(255, 255, 255, 0);
  4889. border:none;
  4890. border-radius:0px;
  4891. -moz-box-shadow:none;
  4892. -webkit-box-shadow:none;
  4893. box-shadow:none;
  4894. font-size:12px;
  4895. color:#7F7F7F;
  4896. }
  4897. #u37744 {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:979px;
  4901. top:119px;
  4902. width:252px;
  4903. height:22px;
  4904. display:flex;
  4905. font-size:12px;
  4906. color:#7F7F7F;
  4907. }
  4908. #u37744 .text {
  4909. position:absolute;
  4910. align-self:flex-start;
  4911. padding:2px 2px 2px 2px;
  4912. box-sizing:border-box;
  4913. width:100%;
  4914. }
  4915. #u37744_div.disabled {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:252px;
  4921. height:22px;
  4922. background:inherit;
  4923. background-color:rgba(240, 240, 240, 1);
  4924. border:none;
  4925. border-radius:0px;
  4926. -moz-box-shadow:none;
  4927. -webkit-box-shadow:none;
  4928. box-shadow:none;
  4929. font-size:12px;
  4930. color:#7F7F7F;
  4931. }
  4932. #u37744.disabled {
  4933. }
  4934. .u37744_input_option {
  4935. font-size:12px;
  4936. }
  4937. #u37745_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:64px;
  4943. height:30px;
  4944. background:inherit;
  4945. background-color:rgba(255, 255, 255, 0);
  4946. border:none;
  4947. border-left:0px;
  4948. border-top:0px;
  4949. border-right:0px;
  4950. border-radius:0px;
  4951. border-bottom-right-radius:0px;
  4952. border-bottom-left-radius:0px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. font-size:12px;
  4960. color:#1890FF;
  4961. line-height:30px;
  4962. }
  4963. #u37745 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:1255px;
  4967. top:115px;
  4968. width:64px;
  4969. height:30px;
  4970. display:flex;
  4971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:12px;
  4975. color:#1890FF;
  4976. line-height:30px;
  4977. }
  4978. #u37745 .text {
  4979. position:absolute;
  4980. align-self:flex-start;
  4981. padding:0px 0px 0px 0px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u37745_text {
  4986. border-width:0px;
  4987. white-space:nowrap;
  4988. text-transform:none;
  4989. }
  4990. #u37746 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:0px;
  4996. height:0px;
  4997. }
  4998. #u37747_div {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:375px;
  5004. height:41px;
  5005. background:inherit;
  5006. background-color:rgba(255, 255, 255, 1);
  5007. border:none;
  5008. border-radius:0px;
  5009. -moz-box-shadow:none;
  5010. -webkit-box-shadow:none;
  5011. box-shadow:none;
  5012. }
  5013. #u37747 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:952px;
  5017. top:155px;
  5018. width:375px;
  5019. height:41px;
  5020. display:flex;
  5021. }
  5022. #u37747 .text {
  5023. position:absolute;
  5024. align-self:center;
  5025. padding:2px 2px 2px 2px;
  5026. box-sizing:border-box;
  5027. width:100%;
  5028. }
  5029. #u37747_text {
  5030. border-width:0px;
  5031. word-wrap:break-word;
  5032. text-transform:none;
  5033. visibility:hidden;
  5034. }
  5035. #u37748_div {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:37px;
  5041. height:40px;
  5042. background:inherit;
  5043. background-color:rgba(255, 255, 255, 0);
  5044. border:none;
  5045. border-left:0px;
  5046. border-top:0px;
  5047. border-right:0px;
  5048. border-radius:0px;
  5049. border-bottom-right-radius:0px;
  5050. border-bottom-left-radius:0px;
  5051. -moz-box-shadow:none;
  5052. -webkit-box-shadow:none;
  5053. box-shadow:none;
  5054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5055. font-weight:400;
  5056. font-style:normal;
  5057. font-size:12px;
  5058. text-align:center;
  5059. }
  5060. #u37748 {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:1033px;
  5064. top:155px;
  5065. width:37px;
  5066. height:40px;
  5067. display:flex;
  5068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. font-size:12px;
  5072. text-align:center;
  5073. }
  5074. #u37748 .text {
  5075. position:absolute;
  5076. align-self:center;
  5077. padding:0px 0px 0px 0px;
  5078. box-sizing:border-box;
  5079. width:100%;
  5080. }
  5081. #u37748_text {
  5082. border-width:0px;
  5083. white-space:nowrap;
  5084. text-transform:none;
  5085. }
  5086. #u37749_div {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:37px;
  5092. height:40px;
  5093. background:inherit;
  5094. background-color:rgba(255, 255, 255, 0);
  5095. box-sizing:border-box;
  5096. border-width:2px;
  5097. border-style:solid;
  5098. border-color:rgba(41, 143, 255, 1);
  5099. border-left:0px;
  5100. border-top:0px;
  5101. border-right:0px;
  5102. border-radius:0px;
  5103. border-bottom-right-radius:0px;
  5104. border-bottom-left-radius:0px;
  5105. -moz-box-shadow:none;
  5106. -webkit-box-shadow:none;
  5107. box-shadow:none;
  5108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5109. font-weight:400;
  5110. font-style:normal;
  5111. font-size:12px;
  5112. color:#1890FF;
  5113. text-align:center;
  5114. }
  5115. #u37749 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:1099px;
  5119. top:155px;
  5120. width:37px;
  5121. height:40px;
  5122. display:flex;
  5123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:12px;
  5127. color:#1890FF;
  5128. text-align:center;
  5129. }
  5130. #u37749 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:0px 0px 0px 0px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u37749_text {
  5138. border-width:0px;
  5139. white-space:nowrap;
  5140. text-transform:none;
  5141. }
  5142. #u37750_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:37px;
  5148. height:40px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-left:0px;
  5153. border-top:0px;
  5154. border-right:0px;
  5155. border-radius:0px;
  5156. border-bottom-right-radius:0px;
  5157. border-bottom-left-radius:0px;
  5158. -moz-box-shadow:none;
  5159. -webkit-box-shadow:none;
  5160. box-shadow:none;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:12px;
  5165. color:#000000;
  5166. text-align:center;
  5167. }
  5168. #u37750 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:1164px;
  5172. top:155px;
  5173. width:37px;
  5174. height:40px;
  5175. display:flex;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:12px;
  5180. color:#000000;
  5181. text-align:center;
  5182. }
  5183. #u37750 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:0px 0px 0px 0px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u37750_text {
  5191. border-width:0px;
  5192. white-space:nowrap;
  5193. text-transform:none;
  5194. }
  5195. #u37751_div {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:37px;
  5201. height:40px;
  5202. background:inherit;
  5203. background-color:rgba(255, 255, 255, 0);
  5204. border:none;
  5205. border-left:0px;
  5206. border-top:0px;
  5207. border-right:0px;
  5208. border-radius:0px;
  5209. border-bottom-right-radius:0px;
  5210. border-bottom-left-radius:0px;
  5211. -moz-box-shadow:none;
  5212. -webkit-box-shadow:none;
  5213. box-shadow:none;
  5214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:12px;
  5218. text-align:center;
  5219. }
  5220. #u37751 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:968px;
  5224. top:155px;
  5225. width:37px;
  5226. height:40px;
  5227. display:flex;
  5228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:12px;
  5232. text-align:center;
  5233. }
  5234. #u37751 .text {
  5235. position:absolute;
  5236. align-self:center;
  5237. padding:0px 0px 0px 0px;
  5238. box-sizing:border-box;
  5239. width:100%;
  5240. }
  5241. #u37751_text {
  5242. border-width:0px;
  5243. white-space:nowrap;
  5244. text-transform:none;
  5245. }
  5246. #u37752_div {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:11px;
  5252. height:11px;
  5253. background:inherit;
  5254. background-color:rgba(217, 0, 27, 1);
  5255. border:none;
  5256. border-radius:7px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:8px;
  5264. color:#FFFFFF;
  5265. text-align:center;
  5266. }
  5267. #u37752 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:1002px;
  5271. top:159px;
  5272. width:11px;
  5273. height:11px;
  5274. display:flex;
  5275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:8px;
  5279. color:#FFFFFF;
  5280. text-align:center;
  5281. }
  5282. #u37752 .text {
  5283. position:absolute;
  5284. align-self:flex-start;
  5285. padding:0px 0px 0px 0px;
  5286. box-sizing:border-box;
  5287. width:100%;
  5288. }
  5289. #u37752_text {
  5290. border-width:0px;
  5291. word-wrap:break-word;
  5292. text-transform:none;
  5293. }
  5294. #u37753 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:0px;
  5300. height:0px;
  5301. }
  5302. #u37754_img {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:355px;
  5308. height:200px;
  5309. }
  5310. #u37754 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:39px;
  5314. top:206px;
  5315. width:355px;
  5316. height:200px;
  5317. display:flex;
  5318. }
  5319. #u37754 .text {
  5320. position:absolute;
  5321. align-self:center;
  5322. padding:2px 2px 2px 2px;
  5323. box-sizing:border-box;
  5324. width:100%;
  5325. }
  5326. #u37754_text {
  5327. border-width:0px;
  5328. word-wrap:break-word;
  5329. text-transform:none;
  5330. visibility:hidden;
  5331. }
  5332. #u37755_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:155px;
  5338. height:30px;
  5339. background:inherit;
  5340. background-color:rgba(255, 255, 255, 0);
  5341. border:none;
  5342. border-left:0px;
  5343. border-top:0px;
  5344. border-right:0px;
  5345. border-radius:0px;
  5346. border-bottom-right-radius:0px;
  5347. border-bottom-left-radius:0px;
  5348. -moz-box-shadow:none;
  5349. -webkit-box-shadow:none;
  5350. box-shadow:none;
  5351. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5352. font-weight:500;
  5353. font-style:normal;
  5354. font-size:14px;
  5355. line-height:30px;
  5356. }
  5357. #u37755 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:55px;
  5361. top:212px;
  5362. width:155px;
  5363. height:30px;
  5364. display:flex;
  5365. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5366. font-weight:500;
  5367. font-style:normal;
  5368. font-size:14px;
  5369. line-height:30px;
  5370. }
  5371. #u37755 .text {
  5372. position:absolute;
  5373. align-self:flex-start;
  5374. padding:0px 0px 0px 0px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u37755_text {
  5379. border-width:0px;
  5380. white-space:nowrap;
  5381. text-transform:none;
  5382. }
  5383. #u37756_div {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:9px;
  5389. height:9px;
  5390. background:inherit;
  5391. background-color:rgba(255, 255, 255, 0);
  5392. box-sizing:border-box;
  5393. border-width:1px;
  5394. border-style:solid;
  5395. border-color:rgba(127, 127, 127, 1);
  5396. border-right:0px;
  5397. border-bottom:0px;
  5398. border-radius:0px;
  5399. border-top-right-radius:0px;
  5400. border-bottom-left-radius:0px;
  5401. -moz-box-shadow:none;
  5402. -webkit-box-shadow:none;
  5403. box-shadow:none;
  5404. }
  5405. #u37756 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:370px;
  5409. top:220px;
  5410. width:9px;
  5411. height:9px;
  5412. display:flex;
  5413. -webkit-transform:rotate(135deg);
  5414. -moz-transform:rotate(135deg);
  5415. -ms-transform:rotate(135deg);
  5416. transform:rotate(135deg);
  5417. }
  5418. #u37756 .text {
  5419. position:absolute;
  5420. align-self:center;
  5421. padding:2px 2px 2px 2px;
  5422. box-sizing:border-box;
  5423. width:100%;
  5424. }
  5425. #u37756_text {
  5426. border-width:0px;
  5427. word-wrap:break-word;
  5428. text-transform:none;
  5429. visibility:hidden;
  5430. }
  5431. #u37757_div {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:60px;
  5437. height:30px;
  5438. background:inherit;
  5439. background-color:rgba(255, 255, 255, 1);
  5440. box-sizing:border-box;
  5441. border-width:1px;
  5442. border-style:solid;
  5443. border-color:rgba(215, 215, 215, 1);
  5444. border-radius:63px;
  5445. -moz-box-shadow:none;
  5446. -webkit-box-shadow:none;
  5447. box-shadow:none;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:14px;
  5452. color:#555555;
  5453. }
  5454. #u37757 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:314px;
  5458. top:368px;
  5459. width:60px;
  5460. height:30px;
  5461. display:flex;
  5462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:14px;
  5466. color:#555555;
  5467. }
  5468. #u37757 .text {
  5469. position:absolute;
  5470. align-self:center;
  5471. padding:2px 2px 2px 2px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u37757_text {
  5476. border-width:0px;
  5477. word-wrap:break-word;
  5478. text-transform:none;
  5479. }
  5480. #u37758 {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:0px;
  5486. height:0px;
  5487. }
  5488. #u37759_div {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:0px;
  5492. top:0px;
  5493. width:325px;
  5494. height:100px;
  5495. background:inherit;
  5496. background-color:rgba(255, 255, 255, 0);
  5497. border:none;
  5498. border-left:0px;
  5499. border-top:0px;
  5500. border-right:0px;
  5501. border-radius:0px;
  5502. border-bottom-right-radius:0px;
  5503. border-bottom-left-radius:0px;
  5504. -moz-box-shadow:none;
  5505. -webkit-box-shadow:none;
  5506. box-shadow:none;
  5507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. font-size:12px;
  5511. line-height:25px;
  5512. }
  5513. #u37759 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:55px;
  5517. top:271px;
  5518. width:325px;
  5519. height:100px;
  5520. display:flex;
  5521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:12px;
  5525. line-height:25px;
  5526. }
  5527. #u37759 .text {
  5528. position:absolute;
  5529. align-self:flex-start;
  5530. padding:0px 0px 0px 0px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u37759_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. }
  5539. #u37760_img {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:13px;
  5545. height:13px;
  5546. }
  5547. #u37760 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:273px;
  5551. top:279px;
  5552. width:13px;
  5553. height:13px;
  5554. display:flex;
  5555. }
  5556. #u37760 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:2px 2px 2px 2px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u37760_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. visibility:hidden;
  5568. }
  5569. #u37761 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:0px;
  5575. height:0px;
  5576. }
  5577. #u37762_div {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:190px;
  5583. height:25px;
  5584. background:inherit;
  5585. background-color:rgba(255, 255, 255, 0);
  5586. border:none;
  5587. border-radius:0px;
  5588. -moz-box-shadow:none;
  5589. -webkit-box-shadow:none;
  5590. box-shadow:none;
  5591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:10px;
  5595. color:#363636;
  5596. line-height:25px;
  5597. }
  5598. #u37762 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:67px;
  5602. top:236px;
  5603. width:190px;
  5604. height:25px;
  5605. display:flex;
  5606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:10px;
  5610. color:#363636;
  5611. line-height:25px;
  5612. }
  5613. #u37762 .text {
  5614. position:absolute;
  5615. align-self:flex-start;
  5616. padding:0px 0px 0px 0px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u37762_text {
  5621. border-width:0px;
  5622. white-space:nowrap;
  5623. text-transform:none;
  5624. }
  5625. #u37763_img {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:8px;
  5631. height:13px;
  5632. }
  5633. #u37763 {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:55px;
  5637. top:242px;
  5638. width:8px;
  5639. height:13px;
  5640. display:flex;
  5641. }
  5642. #u37763 .text {
  5643. position:absolute;
  5644. align-self:center;
  5645. padding:2px 2px 2px 2px;
  5646. box-sizing:border-box;
  5647. width:100%;
  5648. }
  5649. #u37763_text {
  5650. border-width:0px;
  5651. word-wrap:break-word;
  5652. text-transform:none;
  5653. visibility:hidden;
  5654. }
  5655. #u37764 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:0px;
  5661. height:0px;
  5662. }
  5663. #u37765_div {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:65px;
  5669. height:25px;
  5670. background:inherit;
  5671. background-color:rgba(255, 255, 255, 0);
  5672. border:none;
  5673. border-radius:0px;
  5674. -moz-box-shadow:none;
  5675. -webkit-box-shadow:none;
  5676. box-shadow:none;
  5677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:10px;
  5681. color:#363636;
  5682. line-height:25px;
  5683. }
  5684. #u37765 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:285px;
  5688. top:236px;
  5689. width:65px;
  5690. height:25px;
  5691. display:flex;
  5692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:10px;
  5696. color:#363636;
  5697. line-height:25px;
  5698. }
  5699. #u37765 .text {
  5700. position:absolute;
  5701. align-self:flex-start;
  5702. padding:0px 0px 0px 0px;
  5703. box-sizing:border-box;
  5704. width:100%;
  5705. }
  5706. #u37765_text {
  5707. border-width:0px;
  5708. white-space:nowrap;
  5709. text-transform:none;
  5710. }
  5711. #u37766_img {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:10px;
  5717. height:10px;
  5718. }
  5719. #u37766 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:273px;
  5723. top:244px;
  5724. width:10px;
  5725. height:10px;
  5726. display:flex;
  5727. }
  5728. #u37766 .text {
  5729. position:absolute;
  5730. align-self:center;
  5731. padding:2px 2px 2px 2px;
  5732. box-sizing:border-box;
  5733. width:100%;
  5734. }
  5735. #u37766_text {
  5736. border-width:0px;
  5737. word-wrap:break-word;
  5738. text-transform:none;
  5739. visibility:hidden;
  5740. }
  5741. #u37767 {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:0px;
  5747. height:0px;
  5748. }
  5749. #u37768_img {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:355px;
  5755. height:200px;
  5756. }
  5757. #u37768 {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:501px;
  5761. top:206px;
  5762. width:355px;
  5763. height:200px;
  5764. display:flex;
  5765. }
  5766. #u37768 .text {
  5767. position:absolute;
  5768. align-self:center;
  5769. padding:2px 2px 2px 2px;
  5770. box-sizing:border-box;
  5771. width:100%;
  5772. }
  5773. #u37768_text {
  5774. border-width:0px;
  5775. word-wrap:break-word;
  5776. text-transform:none;
  5777. visibility:hidden;
  5778. }
  5779. #u37769_div {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:155px;
  5785. height:30px;
  5786. background:inherit;
  5787. background-color:rgba(255, 255, 255, 0);
  5788. border:none;
  5789. border-left:0px;
  5790. border-top:0px;
  5791. border-right:0px;
  5792. border-radius:0px;
  5793. border-bottom-right-radius:0px;
  5794. border-bottom-left-radius:0px;
  5795. -moz-box-shadow:none;
  5796. -webkit-box-shadow:none;
  5797. box-shadow:none;
  5798. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5799. font-weight:500;
  5800. font-style:normal;
  5801. font-size:14px;
  5802. line-height:30px;
  5803. }
  5804. #u37769 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:517px;
  5808. top:212px;
  5809. width:155px;
  5810. height:30px;
  5811. display:flex;
  5812. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5813. font-weight:500;
  5814. font-style:normal;
  5815. font-size:14px;
  5816. line-height:30px;
  5817. }
  5818. #u37769 .text {
  5819. position:absolute;
  5820. align-self:flex-start;
  5821. padding:0px 0px 0px 0px;
  5822. box-sizing:border-box;
  5823. width:100%;
  5824. }
  5825. #u37769_text {
  5826. border-width:0px;
  5827. white-space:nowrap;
  5828. text-transform:none;
  5829. }
  5830. #u37770_div {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:9px;
  5836. height:9px;
  5837. background:inherit;
  5838. background-color:rgba(255, 255, 255, 0);
  5839. box-sizing:border-box;
  5840. border-width:1px;
  5841. border-style:solid;
  5842. border-color:rgba(127, 127, 127, 1);
  5843. border-right:0px;
  5844. border-bottom:0px;
  5845. border-radius:0px;
  5846. border-top-right-radius:0px;
  5847. border-bottom-left-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. }
  5852. #u37770 {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:832px;
  5856. top:220px;
  5857. width:9px;
  5858. height:9px;
  5859. display:flex;
  5860. -webkit-transform:rotate(135deg);
  5861. -moz-transform:rotate(135deg);
  5862. -ms-transform:rotate(135deg);
  5863. transform:rotate(135deg);
  5864. }
  5865. #u37770 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 2px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u37770_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. visibility:hidden;
  5877. }
  5878. #u37771_div {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:60px;
  5884. height:30px;
  5885. background:inherit;
  5886. background-color:rgba(255, 255, 255, 1);
  5887. box-sizing:border-box;
  5888. border-width:1px;
  5889. border-style:solid;
  5890. border-color:rgba(215, 215, 215, 1);
  5891. border-radius:63px;
  5892. -moz-box-shadow:none;
  5893. -webkit-box-shadow:none;
  5894. box-shadow:none;
  5895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:14px;
  5899. color:#555555;
  5900. }
  5901. #u37771 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:776px;
  5905. top:368px;
  5906. width:60px;
  5907. height:30px;
  5908. display:flex;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:14px;
  5913. color:#555555;
  5914. }
  5915. #u37771 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 2px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u37771_text {
  5923. border-width:0px;
  5924. word-wrap:break-word;
  5925. text-transform:none;
  5926. }
  5927. #u37772 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:0px;
  5933. height:0px;
  5934. }
  5935. #u37773_div {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:325px;
  5941. height:100px;
  5942. background:inherit;
  5943. background-color:rgba(255, 255, 255, 0);
  5944. border:none;
  5945. border-left:0px;
  5946. border-top:0px;
  5947. border-right:0px;
  5948. border-radius:0px;
  5949. border-bottom-right-radius:0px;
  5950. border-bottom-left-radius:0px;
  5951. -moz-box-shadow:none;
  5952. -webkit-box-shadow:none;
  5953. box-shadow:none;
  5954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:12px;
  5958. line-height:25px;
  5959. }
  5960. #u37773 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:517px;
  5964. top:271px;
  5965. width:325px;
  5966. height:100px;
  5967. display:flex;
  5968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:12px;
  5972. line-height:25px;
  5973. }
  5974. #u37773 .text {
  5975. position:absolute;
  5976. align-self:flex-start;
  5977. padding:0px 0px 0px 0px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u37773_text {
  5982. border-width:0px;
  5983. word-wrap:break-word;
  5984. text-transform:none;
  5985. }
  5986. #u37774_img {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:13px;
  5992. height:13px;
  5993. }
  5994. #u37774 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:735px;
  5998. top:279px;
  5999. width:13px;
  6000. height:13px;
  6001. display:flex;
  6002. }
  6003. #u37774 .text {
  6004. position:absolute;
  6005. align-self:center;
  6006. padding:2px 2px 2px 2px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u37774_text {
  6011. border-width:0px;
  6012. word-wrap:break-word;
  6013. text-transform:none;
  6014. visibility:hidden;
  6015. }
  6016. #u37775 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:0px;
  6022. height:0px;
  6023. }
  6024. #u37776_div {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:190px;
  6030. height:25px;
  6031. background:inherit;
  6032. background-color:rgba(255, 255, 255, 0);
  6033. border:none;
  6034. border-radius:0px;
  6035. -moz-box-shadow:none;
  6036. -webkit-box-shadow:none;
  6037. box-shadow:none;
  6038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:10px;
  6042. color:#363636;
  6043. line-height:25px;
  6044. }
  6045. #u37776 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:529px;
  6049. top:236px;
  6050. width:190px;
  6051. height:25px;
  6052. display:flex;
  6053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:10px;
  6057. color:#363636;
  6058. line-height:25px;
  6059. }
  6060. #u37776 .text {
  6061. position:absolute;
  6062. align-self:flex-start;
  6063. padding:0px 0px 0px 0px;
  6064. box-sizing:border-box;
  6065. width:100%;
  6066. }
  6067. #u37776_text {
  6068. border-width:0px;
  6069. white-space:nowrap;
  6070. text-transform:none;
  6071. }
  6072. #u37777_img {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:8px;
  6078. height:13px;
  6079. }
  6080. #u37777 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:517px;
  6084. top:242px;
  6085. width:8px;
  6086. height:13px;
  6087. display:flex;
  6088. }
  6089. #u37777 .text {
  6090. position:absolute;
  6091. align-self:center;
  6092. padding:2px 2px 2px 2px;
  6093. box-sizing:border-box;
  6094. width:100%;
  6095. }
  6096. #u37777_text {
  6097. border-width:0px;
  6098. word-wrap:break-word;
  6099. text-transform:none;
  6100. visibility:hidden;
  6101. }
  6102. #u37778 {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:0px;
  6108. height:0px;
  6109. }
  6110. #u37779_div {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:65px;
  6116. height:25px;
  6117. background:inherit;
  6118. background-color:rgba(255, 255, 255, 0);
  6119. border:none;
  6120. border-radius:0px;
  6121. -moz-box-shadow:none;
  6122. -webkit-box-shadow:none;
  6123. box-shadow:none;
  6124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6125. font-weight:400;
  6126. font-style:normal;
  6127. font-size:10px;
  6128. color:#363636;
  6129. line-height:25px;
  6130. }
  6131. #u37779 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:747px;
  6135. top:236px;
  6136. width:65px;
  6137. height:25px;
  6138. display:flex;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:10px;
  6143. color:#363636;
  6144. line-height:25px;
  6145. }
  6146. #u37779 .text {
  6147. position:absolute;
  6148. align-self:flex-start;
  6149. padding:0px 0px 0px 0px;
  6150. box-sizing:border-box;
  6151. width:100%;
  6152. }
  6153. #u37779_text {
  6154. border-width:0px;
  6155. white-space:nowrap;
  6156. text-transform:none;
  6157. }
  6158. #u37780_img {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:10px;
  6164. height:10px;
  6165. }
  6166. #u37780 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:735px;
  6170. top:244px;
  6171. width:10px;
  6172. height:10px;
  6173. display:flex;
  6174. }
  6175. #u37780 .text {
  6176. position:absolute;
  6177. align-self:center;
  6178. padding:2px 2px 2px 2px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u37780_text {
  6183. border-width:0px;
  6184. word-wrap:break-word;
  6185. text-transform:none;
  6186. visibility:hidden;
  6187. }
  6188. #u37781 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:0px;
  6194. height:0px;
  6195. }
  6196. #u37782_img {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:355px;
  6202. height:180px;
  6203. }
  6204. #u37782 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:963px;
  6208. top:206px;
  6209. width:355px;
  6210. height:180px;
  6211. display:flex;
  6212. }
  6213. #u37782 .text {
  6214. position:absolute;
  6215. align-self:center;
  6216. padding:2px 2px 2px 2px;
  6217. box-sizing:border-box;
  6218. width:100%;
  6219. }
  6220. #u37782_text {
  6221. border-width:0px;
  6222. word-wrap:break-word;
  6223. text-transform:none;
  6224. visibility:hidden;
  6225. }
  6226. #u37783_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:155px;
  6232. height:30px;
  6233. background:inherit;
  6234. background-color:rgba(255, 255, 255, 0);
  6235. border:none;
  6236. border-left:0px;
  6237. border-top:0px;
  6238. border-right:0px;
  6239. border-radius:0px;
  6240. border-bottom-right-radius:0px;
  6241. border-bottom-left-radius:0px;
  6242. -moz-box-shadow:none;
  6243. -webkit-box-shadow:none;
  6244. box-shadow:none;
  6245. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6246. font-weight:500;
  6247. font-style:normal;
  6248. font-size:14px;
  6249. line-height:30px;
  6250. }
  6251. #u37783 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:979px;
  6255. top:212px;
  6256. width:155px;
  6257. height:30px;
  6258. display:flex;
  6259. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6260. font-weight:500;
  6261. font-style:normal;
  6262. font-size:14px;
  6263. line-height:30px;
  6264. }
  6265. #u37783 .text {
  6266. position:absolute;
  6267. align-self:flex-start;
  6268. padding:0px 0px 0px 0px;
  6269. box-sizing:border-box;
  6270. width:100%;
  6271. }
  6272. #u37783_text {
  6273. border-width:0px;
  6274. white-space:nowrap;
  6275. text-transform:none;
  6276. }
  6277. #u37784_div {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:0px;
  6281. top:0px;
  6282. width:9px;
  6283. height:9px;
  6284. background:inherit;
  6285. background-color:rgba(255, 255, 255, 0);
  6286. box-sizing:border-box;
  6287. border-width:1px;
  6288. border-style:solid;
  6289. border-color:rgba(127, 127, 127, 1);
  6290. border-right:0px;
  6291. border-bottom:0px;
  6292. border-radius:0px;
  6293. border-top-right-radius:0px;
  6294. border-bottom-left-radius:0px;
  6295. -moz-box-shadow:none;
  6296. -webkit-box-shadow:none;
  6297. box-shadow:none;
  6298. }
  6299. #u37784 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:1294px;
  6303. top:220px;
  6304. width:9px;
  6305. height:9px;
  6306. display:flex;
  6307. -webkit-transform:rotate(135deg);
  6308. -moz-transform:rotate(135deg);
  6309. -ms-transform:rotate(135deg);
  6310. transform:rotate(135deg);
  6311. }
  6312. #u37784 .text {
  6313. position:absolute;
  6314. align-self:center;
  6315. padding:2px 2px 2px 2px;
  6316. box-sizing:border-box;
  6317. width:100%;
  6318. }
  6319. #u37784_text {
  6320. border-width:0px;
  6321. word-wrap:break-word;
  6322. text-transform:none;
  6323. visibility:hidden;
  6324. }
  6325. #u37785 {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:0px;
  6331. height:0px;
  6332. }
  6333. #u37786_div {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:325px;
  6339. height:100px;
  6340. background:inherit;
  6341. background-color:rgba(255, 255, 255, 0);
  6342. border:none;
  6343. border-left:0px;
  6344. border-top:0px;
  6345. border-right:0px;
  6346. border-radius:0px;
  6347. border-bottom-right-radius:0px;
  6348. border-bottom-left-radius:0px;
  6349. -moz-box-shadow:none;
  6350. -webkit-box-shadow:none;
  6351. box-shadow:none;
  6352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:12px;
  6356. line-height:25px;
  6357. }
  6358. #u37786 {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:979px;
  6362. top:271px;
  6363. width:325px;
  6364. height:100px;
  6365. display:flex;
  6366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. font-size:12px;
  6370. line-height:25px;
  6371. }
  6372. #u37786 .text {
  6373. position:absolute;
  6374. align-self:flex-start;
  6375. padding:0px 0px 0px 0px;
  6376. box-sizing:border-box;
  6377. width:100%;
  6378. }
  6379. #u37786_text {
  6380. border-width:0px;
  6381. word-wrap:break-word;
  6382. text-transform:none;
  6383. }
  6384. #u37787_img {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:13px;
  6390. height:13px;
  6391. }
  6392. #u37787 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:1197px;
  6396. top:279px;
  6397. width:13px;
  6398. height:13px;
  6399. display:flex;
  6400. }
  6401. #u37787 .text {
  6402. position:absolute;
  6403. align-self:center;
  6404. padding:2px 2px 2px 2px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u37787_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. visibility:hidden;
  6413. }
  6414. #u37788 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:0px;
  6420. height:0px;
  6421. }
  6422. #u37789_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:190px;
  6428. height:25px;
  6429. background:inherit;
  6430. background-color:rgba(255, 255, 255, 0);
  6431. border:none;
  6432. border-radius:0px;
  6433. -moz-box-shadow:none;
  6434. -webkit-box-shadow:none;
  6435. box-shadow:none;
  6436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6437. font-weight:400;
  6438. font-style:normal;
  6439. font-size:10px;
  6440. color:#363636;
  6441. line-height:25px;
  6442. }
  6443. #u37789 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:991px;
  6447. top:236px;
  6448. width:190px;
  6449. height:25px;
  6450. display:flex;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:10px;
  6455. color:#363636;
  6456. line-height:25px;
  6457. }
  6458. #u37789 .text {
  6459. position:absolute;
  6460. align-self:flex-start;
  6461. padding:0px 0px 0px 0px;
  6462. box-sizing:border-box;
  6463. width:100%;
  6464. }
  6465. #u37789_text {
  6466. border-width:0px;
  6467. white-space:nowrap;
  6468. text-transform:none;
  6469. }
  6470. #u37790_img {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:8px;
  6476. height:13px;
  6477. }
  6478. #u37790 {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:979px;
  6482. top:242px;
  6483. width:8px;
  6484. height:13px;
  6485. display:flex;
  6486. }
  6487. #u37790 .text {
  6488. position:absolute;
  6489. align-self:center;
  6490. padding:2px 2px 2px 2px;
  6491. box-sizing:border-box;
  6492. width:100%;
  6493. }
  6494. #u37790_text {
  6495. border-width:0px;
  6496. word-wrap:break-word;
  6497. text-transform:none;
  6498. visibility:hidden;
  6499. }
  6500. #u37791 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:0px;
  6506. height:0px;
  6507. }
  6508. #u37792_div {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:65px;
  6514. height:25px;
  6515. background:inherit;
  6516. background-color:rgba(255, 255, 255, 0);
  6517. border:none;
  6518. border-radius:0px;
  6519. -moz-box-shadow:none;
  6520. -webkit-box-shadow:none;
  6521. box-shadow:none;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:10px;
  6526. color:#363636;
  6527. line-height:25px;
  6528. }
  6529. #u37792 {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:1209px;
  6533. top:236px;
  6534. width:65px;
  6535. height:25px;
  6536. display:flex;
  6537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:10px;
  6541. color:#363636;
  6542. line-height:25px;
  6543. }
  6544. #u37792 .text {
  6545. position:absolute;
  6546. align-self:flex-start;
  6547. padding:0px 0px 0px 0px;
  6548. box-sizing:border-box;
  6549. width:100%;
  6550. }
  6551. #u37792_text {
  6552. border-width:0px;
  6553. white-space:nowrap;
  6554. text-transform:none;
  6555. }
  6556. #u37793_img {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:0px;
  6561. width:10px;
  6562. height:10px;
  6563. }
  6564. #u37793 {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:1197px;
  6568. top:244px;
  6569. width:10px;
  6570. height:10px;
  6571. display:flex;
  6572. }
  6573. #u37793 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 2px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u37793_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. visibility:hidden;
  6585. }