styles.css 193 KB

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