styles.css 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1794px;
  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. #u38968_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u38968 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u38968 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u38968_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u38969_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. #u38969 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u38969 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u38969_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u38970 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u38971_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. #u38971 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u38971 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u38971_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u38972 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u38973_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u38973 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u38973 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u38973_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u38974_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u38974 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u38974 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u38974_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u38975 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u38976_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u38976 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u38976 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u38976_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u38977_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u38977 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u38977 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u38977_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u38978_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u38978 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u38978 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u38978_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u38979_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u38979 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  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. #u38979 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u38979_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u38980_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u38980 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u38980 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u38980_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u38981_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. #u38981 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u38981 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u38981_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u38982 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u38983_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u38983 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u38983 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u38983_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u38984_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. #u38984 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  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. #u38984 .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. #u38984_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u38985 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u38986_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u38986 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u38986 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u38986_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u38987_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. #u38987 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  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. #u38987 .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. #u38987_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u38988_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. #u38988 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u38988 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u38988_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u38989 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u38990_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u38990 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u38990 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u38990_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u38991_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. #u38991 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  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. #u38991 .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. #u38991_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u38992 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u38993_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u38993 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u38993 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u38993_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u38994_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. #u38994 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  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. #u38994 .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. #u38994_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u38995_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  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. #u38995 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u38995 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u38995_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u38996_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:85px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. font-size:14px;
  842. line-height:30px;
  843. }
  844. #u38996 {
  845. border-width:0px;
  846. position:absolute;
  847. left:168px;
  848. top:73px;
  849. width:85px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  853. font-weight:500;
  854. font-style:normal;
  855. font-size:14px;
  856. line-height:30px;
  857. }
  858. #u38996 .text {
  859. position:absolute;
  860. align-self:flex-start;
  861. padding:0px 0px 0px 0px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u38996_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u38997 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u38998_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u38998 {
  887. border-width:0px;
  888. position:absolute;
  889. left:42px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u38998 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u38998_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u38999 {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:0px;
  914. height:0px;
  915. }
  916. #u39000_div {
  917. border-width:0px;
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:375px;
  922. height:60px;
  923. background:inherit;
  924. background-color:rgba(255, 255, 255, 1);
  925. border:none;
  926. border-left:0px;
  927. border-top:0px;
  928. border-right:0px;
  929. border-radius:0px;
  930. border-bottom-right-radius:0px;
  931. border-bottom-left-radius:0px;
  932. -moz-box-shadow:none;
  933. -webkit-box-shadow:none;
  934. box-shadow:none;
  935. }
  936. #u39000 {
  937. border-width:0px;
  938. position:absolute;
  939. left:29px;
  940. top:135px;
  941. width:375px;
  942. height:60px;
  943. display:flex;
  944. }
  945. #u39000 .text {
  946. position:absolute;
  947. align-self:center;
  948. padding:2px 2px 2px 2px;
  949. box-sizing:border-box;
  950. width:100%;
  951. }
  952. #u39000_text {
  953. border-width:0px;
  954. word-wrap:break-word;
  955. text-transform:none;
  956. visibility:hidden;
  957. }
  958. #u39001_img {
  959. border-width:0px;
  960. position:absolute;
  961. left:0px;
  962. top:0px;
  963. width:28px;
  964. height:28px;
  965. }
  966. #u39001 {
  967. border-width:0px;
  968. position:absolute;
  969. left:46px;
  970. top:151px;
  971. width:28px;
  972. height:28px;
  973. display:flex;
  974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  975. font-weight:400;
  976. font-style:normal;
  977. font-size:11px;
  978. }
  979. #u39001 .text {
  980. position:absolute;
  981. align-self:center;
  982. padding:2px 2px 2px 2px;
  983. box-sizing:border-box;
  984. width:100%;
  985. }
  986. #u39001_text {
  987. border-width:0px;
  988. word-wrap:break-word;
  989. text-transform:none;
  990. }
  991. #u39002_div {
  992. border-width:0px;
  993. position:absolute;
  994. left:0px;
  995. top:0px;
  996. width:209px;
  997. height:30px;
  998. background:inherit;
  999. background-color:rgba(255, 255, 255, 0);
  1000. border:none;
  1001. border-left:0px;
  1002. border-top:0px;
  1003. border-right:0px;
  1004. border-radius:0px;
  1005. border-bottom-right-radius:0px;
  1006. border-bottom-left-radius:0px;
  1007. -moz-box-shadow:none;
  1008. -webkit-box-shadow:none;
  1009. box-shadow:none;
  1010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1011. font-weight:400;
  1012. font-style:normal;
  1013. font-size:16px;
  1014. line-height:30px;
  1015. }
  1016. #u39002 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:86px;
  1020. top:150px;
  1021. width:209px;
  1022. height:30px;
  1023. display:flex;
  1024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:16px;
  1028. line-height:30px;
  1029. }
  1030. #u39002 .text {
  1031. position:absolute;
  1032. align-self:flex-start;
  1033. padding:0px 0px 0px 0px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u39002_text {
  1038. border-width:0px;
  1039. white-space:nowrap;
  1040. text-transform:none;
  1041. }
  1042. #u39003_div {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:0px;
  1046. top:0px;
  1047. width:8px;
  1048. height:30px;
  1049. background:inherit;
  1050. background-color:rgba(255, 255, 255, 0);
  1051. border:none;
  1052. border-left:0px;
  1053. border-top:0px;
  1054. border-right:0px;
  1055. border-radius:0px;
  1056. border-bottom-right-radius:0px;
  1057. border-bottom-left-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1062. font-weight:400;
  1063. font-style:normal;
  1064. font-size:12px;
  1065. color:#7F7F7F;
  1066. line-height:30px;
  1067. }
  1068. #u39003 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:386px;
  1072. top:150px;
  1073. width:8px;
  1074. height:30px;
  1075. display:flex;
  1076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1077. font-weight:400;
  1078. font-style:normal;
  1079. font-size:12px;
  1080. color:#7F7F7F;
  1081. line-height:30px;
  1082. }
  1083. #u39003 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:0px 0px 0px 0px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u39003_text {
  1091. border-width:0px;
  1092. white-space:nowrap;
  1093. text-transform:none;
  1094. }
  1095. #u39005_img {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:433px;
  1101. height:865px;
  1102. }
  1103. #u39005 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:455px;
  1107. top:0px;
  1108. width:433px;
  1109. height:865px;
  1110. display:flex;
  1111. }
  1112. #u39005 .text {
  1113. position:absolute;
  1114. align-self:center;
  1115. padding:2px 2px 2px 2px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u39005_text {
  1120. border-width:0px;
  1121. word-wrap:break-word;
  1122. text-transform:none;
  1123. visibility:hidden;
  1124. }
  1125. #u39006_div {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:375px;
  1131. height:40px;
  1132. background:inherit;
  1133. background-color:rgba(255, 255, 255, 1);
  1134. box-sizing:border-box;
  1135. border-width:1px;
  1136. border-style:solid;
  1137. border-color:rgba(215, 215, 215, 1);
  1138. border-left:0px;
  1139. border-top:0px;
  1140. border-right:0px;
  1141. border-radius:0px;
  1142. border-bottom-right-radius:0px;
  1143. border-bottom-left-radius:0px;
  1144. -moz-box-shadow:none;
  1145. -webkit-box-shadow:none;
  1146. box-shadow:none;
  1147. }
  1148. #u39006 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:484px;
  1152. top:67px;
  1153. width:375px;
  1154. height:40px;
  1155. display:flex;
  1156. }
  1157. #u39006 .text {
  1158. position:absolute;
  1159. align-self:center;
  1160. padding:2px 2px 2px 2px;
  1161. box-sizing:border-box;
  1162. width:100%;
  1163. }
  1164. #u39006_text {
  1165. border-width:0px;
  1166. word-wrap:break-word;
  1167. text-transform:none;
  1168. visibility:hidden;
  1169. }
  1170. #u39007 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:0px;
  1176. height:0px;
  1177. }
  1178. #u39008_div {
  1179. border-width:0px;
  1180. position:absolute;
  1181. left:0px;
  1182. top:0px;
  1183. width:88px;
  1184. height:32px;
  1185. background:inherit;
  1186. background-color:rgba(255, 255, 255, 1);
  1187. box-sizing:border-box;
  1188. border-width:1px;
  1189. border-style:solid;
  1190. border-color:rgba(242, 242, 242, 1);
  1191. border-radius:33px;
  1192. -moz-box-shadow:none;
  1193. -webkit-box-shadow:none;
  1194. box-shadow:none;
  1195. }
  1196. #u39008 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:764px;
  1200. top:71px;
  1201. width:88px;
  1202. height:32px;
  1203. display:flex;
  1204. }
  1205. #u39008 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u39008_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u39009 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u39010_img {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:18px;
  1232. height:18px;
  1233. }
  1234. #u39010 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:827px;
  1238. top:78px;
  1239. width:18px;
  1240. height:18px;
  1241. display:flex;
  1242. }
  1243. #u39010 .text {
  1244. position:absolute;
  1245. align-self:center;
  1246. padding:2px 2px 2px 2px;
  1247. box-sizing:border-box;
  1248. width:100%;
  1249. }
  1250. #u39010_text {
  1251. border-width:0px;
  1252. word-wrap:break-word;
  1253. text-transform:none;
  1254. visibility:hidden;
  1255. }
  1256. #u39011_img {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:0px;
  1260. top:0px;
  1261. width:6px;
  1262. height:6px;
  1263. }
  1264. #u39011 {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:833px;
  1268. top:84px;
  1269. width:6px;
  1270. height:6px;
  1271. display:flex;
  1272. }
  1273. #u39011 .text {
  1274. position:absolute;
  1275. align-self:center;
  1276. padding:2px 2px 2px 2px;
  1277. box-sizing:border-box;
  1278. width:100%;
  1279. }
  1280. #u39011_text {
  1281. border-width:0px;
  1282. word-wrap:break-word;
  1283. text-transform:none;
  1284. visibility:hidden;
  1285. }
  1286. #u39012 {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:0px;
  1292. height:0px;
  1293. }
  1294. #u39013_img {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:5px;
  1300. height:5px;
  1301. }
  1302. #u39013 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:778px;
  1306. top:85px;
  1307. width:5px;
  1308. height:5px;
  1309. display:flex;
  1310. }
  1311. #u39013 .text {
  1312. position:absolute;
  1313. align-self:center;
  1314. padding:2px 2px 2px 2px;
  1315. box-sizing:border-box;
  1316. width:100%;
  1317. }
  1318. #u39013_text {
  1319. border-width:0px;
  1320. word-wrap:break-word;
  1321. text-transform:none;
  1322. visibility:hidden;
  1323. }
  1324. #u39014_img {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:5px;
  1330. height:5px;
  1331. }
  1332. #u39014 {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:794px;
  1336. top:85px;
  1337. width:5px;
  1338. height:5px;
  1339. display:flex;
  1340. }
  1341. #u39014 .text {
  1342. position:absolute;
  1343. align-self:center;
  1344. padding:2px 2px 2px 2px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u39014_text {
  1349. border-width:0px;
  1350. word-wrap:break-word;
  1351. text-transform:none;
  1352. visibility:hidden;
  1353. }
  1354. #u39015_img {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:0px;
  1358. top:0px;
  1359. width:7px;
  1360. height:7px;
  1361. }
  1362. #u39015 {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:785px;
  1366. top:84px;
  1367. width:7px;
  1368. height:7px;
  1369. display:flex;
  1370. }
  1371. #u39015 .text {
  1372. position:absolute;
  1373. align-self:center;
  1374. padding:2px 2px 2px 2px;
  1375. box-sizing:border-box;
  1376. width:100%;
  1377. }
  1378. #u39015_text {
  1379. border-width:0px;
  1380. word-wrap:break-word;
  1381. text-transform:none;
  1382. visibility:hidden;
  1383. }
  1384. #u39016_img {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:19px;
  1390. height:2px;
  1391. }
  1392. #u39016 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:802px;
  1396. top:87px;
  1397. width:18px;
  1398. height:1px;
  1399. display:flex;
  1400. -webkit-transform:rotate(90deg);
  1401. -moz-transform:rotate(90deg);
  1402. -ms-transform:rotate(90deg);
  1403. transform:rotate(90deg);
  1404. }
  1405. #u39016 .text {
  1406. position:absolute;
  1407. align-self:center;
  1408. padding:2px 2px 2px 2px;
  1409. box-sizing:border-box;
  1410. width:100%;
  1411. }
  1412. #u39016_text {
  1413. border-width:0px;
  1414. word-wrap:break-word;
  1415. text-transform:none;
  1416. visibility:hidden;
  1417. }
  1418. #u39017_img {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:0px;
  1422. top:0px;
  1423. width:375px;
  1424. height:44px;
  1425. }
  1426. #u39017 {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:484px;
  1430. top:24px;
  1431. width:375px;
  1432. height:44px;
  1433. display:flex;
  1434. }
  1435. #u39017 .text {
  1436. position:absolute;
  1437. align-self:center;
  1438. padding:2px 2px 2px 2px;
  1439. box-sizing:border-box;
  1440. width:100%;
  1441. }
  1442. #u39017_text {
  1443. border-width:0px;
  1444. word-wrap:break-word;
  1445. text-transform:none;
  1446. visibility:hidden;
  1447. }
  1448. #u39018_div {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:375px;
  1454. height:50px;
  1455. background:inherit;
  1456. background-color:rgba(255, 255, 255, 1);
  1457. box-sizing:border-box;
  1458. border-width:1px;
  1459. border-style:solid;
  1460. border-color:rgba(242, 242, 242, 1);
  1461. border-radius:26px;
  1462. border-top-left-radius:0px;
  1463. border-top-right-radius:0px;
  1464. -moz-box-shadow:none;
  1465. -webkit-box-shadow:none;
  1466. box-shadow:none;
  1467. }
  1468. #u39018 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:484px;
  1472. top:788px;
  1473. width:375px;
  1474. height:50px;
  1475. display:flex;
  1476. }
  1477. #u39018 .text {
  1478. position:absolute;
  1479. align-self:center;
  1480. padding:2px 2px 2px 2px;
  1481. box-sizing:border-box;
  1482. width:100%;
  1483. }
  1484. #u39018_text {
  1485. border-width:0px;
  1486. word-wrap:break-word;
  1487. text-transform:none;
  1488. visibility:hidden;
  1489. }
  1490. #u39019 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:0px;
  1496. height:0px;
  1497. }
  1498. #u39020_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:24px;
  1504. height:24px;
  1505. }
  1506. #u39020 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:524px;
  1510. top:792px;
  1511. width:24px;
  1512. height:24px;
  1513. display:flex;
  1514. font-size:8px;
  1515. }
  1516. #u39020 .text {
  1517. position:absolute;
  1518. align-self:center;
  1519. padding:2px 2px 2px 2px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u39020_text {
  1524. border-width:0px;
  1525. word-wrap:break-word;
  1526. text-transform:none;
  1527. }
  1528. #u39021_div {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:25px;
  1534. height:17px;
  1535. background:inherit;
  1536. background-color:rgba(255, 255, 255, 0);
  1537. border:none;
  1538. border-radius:0px;
  1539. -moz-box-shadow:none;
  1540. -webkit-box-shadow:none;
  1541. box-shadow:none;
  1542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1543. font-weight:400;
  1544. font-style:normal;
  1545. font-size:12px;
  1546. }
  1547. #u39021 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:524px;
  1551. top:817px;
  1552. width:25px;
  1553. height:17px;
  1554. display:flex;
  1555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1556. font-weight:400;
  1557. font-style:normal;
  1558. font-size:12px;
  1559. }
  1560. #u39021 .text {
  1561. position:absolute;
  1562. align-self:flex-start;
  1563. padding:0px 0px 0px 0px;
  1564. box-sizing:border-box;
  1565. width:100%;
  1566. }
  1567. #u39021_text {
  1568. border-width:0px;
  1569. white-space:nowrap;
  1570. text-transform:none;
  1571. }
  1572. #u39022 {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:0px;
  1578. height:0px;
  1579. }
  1580. #u39023_img {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:24px;
  1586. height:24px;
  1587. }
  1588. #u39023 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:794px;
  1592. top:794px;
  1593. width:24px;
  1594. height:24px;
  1595. display:flex;
  1596. font-size:8px;
  1597. }
  1598. #u39023 .text {
  1599. position:absolute;
  1600. align-self:center;
  1601. padding:2px 2px 2px 2px;
  1602. box-sizing:border-box;
  1603. width:100%;
  1604. }
  1605. #u39023_text {
  1606. border-width:0px;
  1607. word-wrap:break-word;
  1608. text-transform:none;
  1609. }
  1610. #u39024_div {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:0px;
  1614. top:0px;
  1615. width:25px;
  1616. height:17px;
  1617. background:inherit;
  1618. background-color:rgba(255, 255, 255, 0);
  1619. border:none;
  1620. border-radius:0px;
  1621. -moz-box-shadow:none;
  1622. -webkit-box-shadow:none;
  1623. box-shadow:none;
  1624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1625. font-weight:400;
  1626. font-style:normal;
  1627. font-size:12px;
  1628. }
  1629. #u39024 {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:794px;
  1633. top:819px;
  1634. width:25px;
  1635. height:17px;
  1636. display:flex;
  1637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1638. font-weight:400;
  1639. font-style:normal;
  1640. font-size:12px;
  1641. }
  1642. #u39024 .text {
  1643. position:absolute;
  1644. align-self:flex-start;
  1645. padding:0px 0px 0px 0px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u39024_text {
  1650. border-width:0px;
  1651. white-space:nowrap;
  1652. text-transform:none;
  1653. }
  1654. #u39025_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:375px;
  1660. height:681px;
  1661. background:inherit;
  1662. background-color:rgba(242, 242, 242, 0.462745098039216);
  1663. border:none;
  1664. border-radius:0px;
  1665. -moz-box-shadow:none;
  1666. -webkit-box-shadow:none;
  1667. box-shadow:none;
  1668. }
  1669. #u39025 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:484px;
  1673. top:107px;
  1674. width:375px;
  1675. height:681px;
  1676. display:flex;
  1677. }
  1678. #u39025 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 2px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u39025_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. visibility:hidden;
  1690. }
  1691. #u39026 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:0px;
  1697. height:0px;
  1698. }
  1699. #u39027_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:24px;
  1705. height:24px;
  1706. }
  1707. #u39027 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:706px;
  1711. top:792px;
  1712. width:24px;
  1713. height:24px;
  1714. display:flex;
  1715. font-size:8px;
  1716. }
  1717. #u39027 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 2px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u39027_text {
  1725. border-width:0px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. }
  1729. #u39028_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:37px;
  1735. height:17px;
  1736. background:inherit;
  1737. background-color:rgba(255, 255, 255, 0);
  1738. border:none;
  1739. border-radius:0px;
  1740. -moz-box-shadow:none;
  1741. -webkit-box-shadow:none;
  1742. box-shadow:none;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:12px;
  1747. }
  1748. #u39028 {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:700px;
  1752. top:817px;
  1753. width:37px;
  1754. height:17px;
  1755. display:flex;
  1756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. font-size:12px;
  1760. }
  1761. #u39028 .text {
  1762. position:absolute;
  1763. align-self:flex-start;
  1764. padding:0px 0px 0px 0px;
  1765. box-sizing:border-box;
  1766. width:100%;
  1767. }
  1768. #u39028_text {
  1769. border-width:0px;
  1770. white-space:nowrap;
  1771. text-transform:none;
  1772. }
  1773. #u39029 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:0px;
  1779. height:0px;
  1780. }
  1781. #u39030_img {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:24px;
  1787. height:24px;
  1788. }
  1789. #u39030 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:612px;
  1793. top:792px;
  1794. width:24px;
  1795. height:24px;
  1796. display:flex;
  1797. font-size:8px;
  1798. }
  1799. #u39030 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 2px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u39030_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u39031_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:37px;
  1817. height:17px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 0);
  1820. border:none;
  1821. border-radius:0px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:12px;
  1829. }
  1830. #u39031 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:606px;
  1834. top:817px;
  1835. width:37px;
  1836. height:17px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:12px;
  1842. }
  1843. #u39031 .text {
  1844. position:absolute;
  1845. align-self:flex-start;
  1846. padding:0px 0px 0px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u39031_text {
  1851. border-width:0px;
  1852. white-space:nowrap;
  1853. text-transform:none;
  1854. }
  1855. #u39032_div {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:375px;
  1861. height:735px;
  1862. background:inherit;
  1863. background-color:rgba(242, 242, 242, 1);
  1864. border:none;
  1865. border-top:0px;
  1866. border-radius:25px;
  1867. border-top-left-radius:0px;
  1868. border-top-right-radius:0px;
  1869. -moz-box-shadow:none;
  1870. -webkit-box-shadow:none;
  1871. box-shadow:none;
  1872. }
  1873. #u39032 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:484px;
  1877. top:105px;
  1878. width:375px;
  1879. height:735px;
  1880. display:flex;
  1881. }
  1882. #u39032 .text {
  1883. position:absolute;
  1884. align-self:center;
  1885. padding:2px 2px 2px 2px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u39032_text {
  1890. border-width:0px;
  1891. word-wrap:break-word;
  1892. text-transform:none;
  1893. visibility:hidden;
  1894. }
  1895. #u39033_div {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:85px;
  1901. height:30px;
  1902. background:inherit;
  1903. background-color:rgba(255, 255, 255, 0);
  1904. border:none;
  1905. border-left:0px;
  1906. border-top:0px;
  1907. border-right:0px;
  1908. border-radius:0px;
  1909. border-bottom-right-radius:0px;
  1910. border-bottom-left-radius:0px;
  1911. -moz-box-shadow:none;
  1912. -webkit-box-shadow:none;
  1913. box-shadow:none;
  1914. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1915. font-weight:500;
  1916. font-style:normal;
  1917. font-size:14px;
  1918. line-height:30px;
  1919. }
  1920. #u39033 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:623px;
  1924. top:73px;
  1925. width:85px;
  1926. height:30px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1929. font-weight:500;
  1930. font-style:normal;
  1931. font-size:14px;
  1932. line-height:30px;
  1933. }
  1934. #u39033 .text {
  1935. position:absolute;
  1936. align-self:flex-start;
  1937. padding:0px 0px 0px 0px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u39033_text {
  1942. border-width:0px;
  1943. white-space:nowrap;
  1944. text-transform:none;
  1945. }
  1946. #u39034 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:0px;
  1952. height:0px;
  1953. }
  1954. #u39035_img {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:0px;
  1958. top:0px;
  1959. width:11px;
  1960. height:18px;
  1961. }
  1962. #u39035 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:497px;
  1966. top:79px;
  1967. width:11px;
  1968. height:18px;
  1969. display:flex;
  1970. }
  1971. #u39035 .text {
  1972. position:absolute;
  1973. align-self:center;
  1974. padding:2px 2px 2px 2px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u39035_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. visibility:hidden;
  1983. }
  1984. #u39036 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:0px;
  1990. height:0px;
  1991. }
  1992. #u39037_div {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:375px;
  1998. height:60px;
  1999. background:inherit;
  2000. background-color:rgba(255, 255, 255, 1);
  2001. border:none;
  2002. border-left:0px;
  2003. border-top:0px;
  2004. border-right:0px;
  2005. border-radius:0px;
  2006. border-bottom-right-radius:0px;
  2007. border-bottom-left-radius:0px;
  2008. -moz-box-shadow:none;
  2009. -webkit-box-shadow:none;
  2010. box-shadow:none;
  2011. }
  2012. #u39037 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:29px;
  2016. top:196px;
  2017. width:375px;
  2018. height:60px;
  2019. display:flex;
  2020. }
  2021. #u39037 .text {
  2022. position:absolute;
  2023. align-self:center;
  2024. padding:2px 2px 2px 2px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u39037_text {
  2029. border-width:0px;
  2030. word-wrap:break-word;
  2031. text-transform:none;
  2032. visibility:hidden;
  2033. }
  2034. #u39038_img {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:28px;
  2040. height:28px;
  2041. }
  2042. #u39038 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:46px;
  2046. top:212px;
  2047. width:28px;
  2048. height:28px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:11px;
  2054. }
  2055. #u39038 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u39038_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. }
  2067. #u39039_div {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:260px;
  2073. height:30px;
  2074. background:inherit;
  2075. background-color:rgba(255, 255, 255, 0);
  2076. border:none;
  2077. border-left:0px;
  2078. border-top:0px;
  2079. border-right:0px;
  2080. border-radius:0px;
  2081. border-bottom-right-radius:0px;
  2082. border-bottom-left-radius:0px;
  2083. -moz-box-shadow:none;
  2084. -webkit-box-shadow:none;
  2085. box-shadow:none;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:16px;
  2090. line-height:30px;
  2091. }
  2092. #u39039 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:85px;
  2096. top:211px;
  2097. width:260px;
  2098. height:30px;
  2099. display:flex;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:16px;
  2104. line-height:30px;
  2105. }
  2106. #u39039 .text {
  2107. position:absolute;
  2108. align-self:flex-start;
  2109. padding:0px 0px 0px 0px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u39039_text {
  2114. border-width:0px;
  2115. white-space:nowrap;
  2116. text-transform:none;
  2117. }
  2118. #u39040_div {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:8px;
  2124. height:30px;
  2125. background:inherit;
  2126. background-color:rgba(255, 255, 255, 0);
  2127. border:none;
  2128. border-left:0px;
  2129. border-top:0px;
  2130. border-right:0px;
  2131. border-radius:0px;
  2132. border-bottom-right-radius:0px;
  2133. border-bottom-left-radius:0px;
  2134. -moz-box-shadow:none;
  2135. -webkit-box-shadow:none;
  2136. box-shadow:none;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:12px;
  2141. color:#7F7F7F;
  2142. line-height:30px;
  2143. }
  2144. #u39040 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:386px;
  2148. top:212px;
  2149. width:8px;
  2150. height:30px;
  2151. display:flex;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:12px;
  2156. color:#7F7F7F;
  2157. line-height:30px;
  2158. }
  2159. #u39040 .text {
  2160. position:absolute;
  2161. align-self:flex-start;
  2162. padding:0px 0px 0px 0px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u39040_text {
  2167. border-width:0px;
  2168. white-space:nowrap;
  2169. text-transform:none;
  2170. }
  2171. #u39041_div {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:160px;
  2177. height:40px;
  2178. background:inherit;
  2179. background-color:rgba(255, 255, 255, 1);
  2180. box-sizing:border-box;
  2181. border-width:1px;
  2182. border-style:solid;
  2183. border-color:rgba(24, 144, 255, 1);
  2184. border-radius:45px;
  2185. -moz-box-shadow:none;
  2186. -webkit-box-shadow:none;
  2187. box-shadow:none;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:14px;
  2192. color:#1890FF;
  2193. }
  2194. #u39041 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:509px;
  2198. top:789px;
  2199. width:160px;
  2200. height:40px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:14px;
  2206. color:#1890FF;
  2207. }
  2208. #u39041 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u39041_text {
  2216. border-width:0px;
  2217. word-wrap:break-word;
  2218. text-transform:none;
  2219. }
  2220. #u39042_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:160px;
  2226. height:40px;
  2227. background:inherit;
  2228. background-color:rgba(0, 137, 254, 1);
  2229. border:none;
  2230. border-radius:45px;
  2231. -moz-box-shadow:none;
  2232. -webkit-box-shadow:none;
  2233. box-shadow:none;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:14px;
  2238. color:#FFFFFF;
  2239. }
  2240. #u39042 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:679px;
  2244. top:789px;
  2245. width:160px;
  2246. height:40px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:14px;
  2252. color:#FFFFFF;
  2253. }
  2254. #u39042 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 2px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u39042_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. }
  2266. #u39043 {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:0px;
  2272. height:0px;
  2273. }
  2274. #u39044_div {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:300px;
  2280. height:179px;
  2281. background:inherit;
  2282. background-color:rgba(255, 255, 255, 1);
  2283. border:none;
  2284. border-radius:10px;
  2285. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2286. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2287. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2288. }
  2289. #u39044 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:528px;
  2293. top:383px;
  2294. width:300px;
  2295. height:179px;
  2296. display:flex;
  2297. }
  2298. #u39044 .text {
  2299. position:absolute;
  2300. align-self:center;
  2301. padding:2px 2px 2px 2px;
  2302. box-sizing:border-box;
  2303. width:100%;
  2304. }
  2305. #u39044_text {
  2306. border-width:0px;
  2307. word-wrap:break-word;
  2308. text-transform:none;
  2309. visibility:hidden;
  2310. }
  2311. #u39045_div {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:217px;
  2317. height:30px;
  2318. background:inherit;
  2319. background-color:rgba(255, 255, 255, 0);
  2320. border:none;
  2321. border-left:0px;
  2322. border-top:0px;
  2323. border-right:0px;
  2324. border-radius:0px;
  2325. border-bottom-right-radius:0px;
  2326. border-bottom-left-radius:0px;
  2327. -moz-box-shadow:none;
  2328. -webkit-box-shadow:none;
  2329. box-shadow:none;
  2330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:18px;
  2334. text-align:center;
  2335. line-height:30px;
  2336. }
  2337. #u39045 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:570px;
  2341. top:401px;
  2342. width:217px;
  2343. height:30px;
  2344. display:flex;
  2345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2346. font-weight:400;
  2347. font-style:normal;
  2348. font-size:18px;
  2349. text-align:center;
  2350. line-height:30px;
  2351. }
  2352. #u39045 .text {
  2353. position:absolute;
  2354. align-self:flex-start;
  2355. padding:0px 0px 0px 0px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u39045_text {
  2360. border-width:0px;
  2361. white-space:nowrap;
  2362. text-transform:none;
  2363. }
  2364. #u39046_div {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:260px;
  2370. height:52px;
  2371. background:inherit;
  2372. background-color:rgba(255, 255, 255, 0);
  2373. border:none;
  2374. border-left:0px;
  2375. border-top:0px;
  2376. border-right:0px;
  2377. border-radius:0px;
  2378. border-bottom-right-radius:0px;
  2379. border-bottom-left-radius:0px;
  2380. -moz-box-shadow:none;
  2381. -webkit-box-shadow:none;
  2382. box-shadow:none;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. color:#7F7F7F;
  2388. line-height:26px;
  2389. }
  2390. #u39046 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:551px;
  2394. top:441px;
  2395. width:260px;
  2396. height:52px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:14px;
  2402. color:#7F7F7F;
  2403. line-height:26px;
  2404. }
  2405. #u39046 .text {
  2406. position:absolute;
  2407. align-self:flex-start;
  2408. padding:0px 0px 0px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u39046_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. }
  2417. #u39047_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:301px;
  2423. height:2px;
  2424. }
  2425. #u39047 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:528px;
  2429. top:513px;
  2430. width:300px;
  2431. height:1px;
  2432. display:flex;
  2433. }
  2434. #u39047 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 2px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u39047_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u39048_div {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:41px;
  2453. height:30px;
  2454. background:inherit;
  2455. background-color:rgba(255, 255, 255, 0);
  2456. border:none;
  2457. border-left:0px;
  2458. border-top:0px;
  2459. border-right:0px;
  2460. border-radius:0px;
  2461. border-bottom-right-radius:0px;
  2462. border-bottom-left-radius:0px;
  2463. -moz-box-shadow:none;
  2464. -webkit-box-shadow:none;
  2465. box-shadow:none;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:18px;
  2470. color:#1890FF;
  2471. text-align:center;
  2472. line-height:30px;
  2473. }
  2474. #u39048 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:744px;
  2478. top:523px;
  2479. width:41px;
  2480. height:30px;
  2481. display:flex;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:18px;
  2486. color:#1890FF;
  2487. text-align:center;
  2488. line-height:30px;
  2489. }
  2490. #u39048 .text {
  2491. position:absolute;
  2492. align-self:flex-start;
  2493. padding:0px 0px 0px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u39048_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. }
  2502. #u39049_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:41px;
  2508. height:30px;
  2509. background:inherit;
  2510. background-color:rgba(255, 255, 255, 0);
  2511. border:none;
  2512. border-left:0px;
  2513. border-top:0px;
  2514. border-right:0px;
  2515. border-radius:0px;
  2516. border-bottom-right-radius:0px;
  2517. border-bottom-left-radius:0px;
  2518. -moz-box-shadow:none;
  2519. -webkit-box-shadow:none;
  2520. box-shadow:none;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:18px;
  2525. color:#1890FF;
  2526. text-align:center;
  2527. line-height:30px;
  2528. }
  2529. #u39049 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:574px;
  2533. top:523px;
  2534. width:41px;
  2535. height:30px;
  2536. display:flex;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:18px;
  2541. color:#1890FF;
  2542. text-align:center;
  2543. line-height:30px;
  2544. }
  2545. #u39049 .text {
  2546. position:absolute;
  2547. align-self:flex-start;
  2548. padding:0px 0px 0px 0px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u39049_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. }
  2557. #u39050_img {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:2px;
  2563. height:49px;
  2564. }
  2565. #u39050 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:677px;
  2569. top:514px;
  2570. width:1px;
  2571. height:48px;
  2572. display:flex;
  2573. }
  2574. #u39050 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 2px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u39050_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u39051 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:0px;
  2593. height:0px;
  2594. }
  2595. #u39052_div {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:300px;
  2601. height:179px;
  2602. background:inherit;
  2603. background-color:rgba(255, 255, 255, 1);
  2604. border:none;
  2605. border-radius:10px;
  2606. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2607. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2608. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2609. }
  2610. #u39052 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:439px;
  2614. top:896px;
  2615. width:300px;
  2616. height:179px;
  2617. display:flex;
  2618. }
  2619. #u39052 .text {
  2620. position:absolute;
  2621. align-self:center;
  2622. padding:2px 2px 2px 2px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u39052_text {
  2627. border-width:0px;
  2628. word-wrap:break-word;
  2629. text-transform:none;
  2630. visibility:hidden;
  2631. }
  2632. #u39053_div {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:227px;
  2638. height:30px;
  2639. background:inherit;
  2640. background-color:rgba(255, 255, 255, 0);
  2641. border:none;
  2642. border-left:0px;
  2643. border-top:0px;
  2644. border-right:0px;
  2645. border-radius:0px;
  2646. border-bottom-right-radius:0px;
  2647. border-bottom-left-radius:0px;
  2648. -moz-box-shadow:none;
  2649. -webkit-box-shadow:none;
  2650. box-shadow:none;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:18px;
  2655. text-align:center;
  2656. line-height:30px;
  2657. }
  2658. #u39053 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:479px;
  2662. top:914px;
  2663. width:227px;
  2664. height:30px;
  2665. display:flex;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:18px;
  2670. text-align:center;
  2671. line-height:30px;
  2672. }
  2673. #u39053 .text {
  2674. position:absolute;
  2675. align-self:flex-start;
  2676. padding:0px 0px 0px 0px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u39053_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. }
  2685. #u39054_div {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:260px;
  2691. height:52px;
  2692. background:inherit;
  2693. background-color:rgba(255, 255, 255, 0);
  2694. border:none;
  2695. border-left:0px;
  2696. border-top:0px;
  2697. border-right:0px;
  2698. border-radius:0px;
  2699. border-bottom-right-radius:0px;
  2700. border-bottom-left-radius:0px;
  2701. -moz-box-shadow:none;
  2702. -webkit-box-shadow:none;
  2703. box-shadow:none;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:14px;
  2708. color:#7F7F7F;
  2709. line-height:26px;
  2710. }
  2711. #u39054 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:462px;
  2715. top:960px;
  2716. width:260px;
  2717. height:52px;
  2718. display:flex;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:14px;
  2723. color:#7F7F7F;
  2724. line-height:26px;
  2725. }
  2726. #u39054 .text {
  2727. position:absolute;
  2728. align-self:flex-start;
  2729. padding:0px 0px 0px 0px;
  2730. box-sizing:border-box;
  2731. width:100%;
  2732. }
  2733. #u39054_text {
  2734. border-width:0px;
  2735. word-wrap:break-word;
  2736. text-transform:none;
  2737. }
  2738. #u39055_img {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:301px;
  2744. height:2px;
  2745. }
  2746. #u39055 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:439px;
  2750. top:1026px;
  2751. width:300px;
  2752. height:1px;
  2753. display:flex;
  2754. }
  2755. #u39055 .text {
  2756. position:absolute;
  2757. align-self:center;
  2758. padding:2px 2px 2px 2px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u39055_text {
  2763. border-width:0px;
  2764. word-wrap:break-word;
  2765. text-transform:none;
  2766. visibility:hidden;
  2767. }
  2768. #u39056_div {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:41px;
  2774. height:30px;
  2775. background:inherit;
  2776. background-color:rgba(255, 255, 255, 0);
  2777. border:none;
  2778. border-left:0px;
  2779. border-top:0px;
  2780. border-right:0px;
  2781. border-radius:0px;
  2782. border-bottom-right-radius:0px;
  2783. border-bottom-left-radius:0px;
  2784. -moz-box-shadow:none;
  2785. -webkit-box-shadow:none;
  2786. box-shadow:none;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:18px;
  2791. color:#1890FF;
  2792. text-align:center;
  2793. line-height:30px;
  2794. }
  2795. #u39056 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:655px;
  2799. top:1036px;
  2800. width:41px;
  2801. height:30px;
  2802. display:flex;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:18px;
  2807. color:#1890FF;
  2808. text-align:center;
  2809. line-height:30px;
  2810. }
  2811. #u39056 .text {
  2812. position:absolute;
  2813. align-self:flex-start;
  2814. padding:0px 0px 0px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u39056_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. }
  2823. #u39057_div {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:41px;
  2829. height:30px;
  2830. background:inherit;
  2831. background-color:rgba(255, 255, 255, 0);
  2832. border:none;
  2833. border-left:0px;
  2834. border-top:0px;
  2835. border-right:0px;
  2836. border-radius:0px;
  2837. border-bottom-right-radius:0px;
  2838. border-bottom-left-radius:0px;
  2839. -moz-box-shadow:none;
  2840. -webkit-box-shadow:none;
  2841. box-shadow:none;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:18px;
  2846. color:#1890FF;
  2847. text-align:center;
  2848. line-height:30px;
  2849. }
  2850. #u39057 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:485px;
  2854. top:1036px;
  2855. width:41px;
  2856. height:30px;
  2857. display:flex;
  2858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:18px;
  2862. color:#1890FF;
  2863. text-align:center;
  2864. line-height:30px;
  2865. }
  2866. #u39057 .text {
  2867. position:absolute;
  2868. align-self:flex-start;
  2869. padding:0px 0px 0px 0px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u39057_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. }
  2878. #u39058_img {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:2px;
  2884. height:49px;
  2885. }
  2886. #u39058 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:588px;
  2890. top:1027px;
  2891. width:1px;
  2892. height:48px;
  2893. display:flex;
  2894. }
  2895. #u39058 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 2px 2px 2px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u39058_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. visibility:hidden;
  2907. }
  2908. #u39059 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:589px;
  2912. top:829px;
  2913. width:0px;
  2914. height:0px;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. color:#0089FE;
  2919. }
  2920. #u39059_seg0 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:-5px;
  2924. top:0px;
  2925. width:10px;
  2926. height:72px;
  2927. }
  2928. #u39059_seg1 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:-9px;
  2932. top:-6px;
  2933. width:18px;
  2934. height:18px;
  2935. }
  2936. #u39059_seg2 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:-16px;
  2940. top:50px;
  2941. width:32px;
  2942. height:32px;
  2943. }
  2944. #u39059_text {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:-50px;
  2948. top:26px;
  2949. width:100px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. visibility:hidden;
  2953. }
  2954. #u39060_div {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:330px;
  2960. height:40px;
  2961. background:inherit;
  2962. background-color:rgba(0, 137, 254, 1);
  2963. border:none;
  2964. border-radius:45px;
  2965. -moz-box-shadow:none;
  2966. -webkit-box-shadow:none;
  2967. box-shadow:none;
  2968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2969. font-weight:400;
  2970. font-style:normal;
  2971. font-size:14px;
  2972. color:#FFFFFF;
  2973. }
  2974. #u39060 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:48px;
  2978. top:789px;
  2979. width:330px;
  2980. height:40px;
  2981. display:flex;
  2982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:14px;
  2986. color:#FFFFFF;
  2987. }
  2988. #u39060 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 2px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u39060_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. }
  3000. #u39061_div {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:97px;
  3006. height:30px;
  3007. background:inherit;
  3008. background-color:rgba(255, 255, 255, 0);
  3009. border:none;
  3010. border-left:0px;
  3011. border-top:0px;
  3012. border-right:0px;
  3013. border-radius:0px;
  3014. border-bottom-right-radius:0px;
  3015. border-bottom-left-radius:0px;
  3016. -moz-box-shadow:none;
  3017. -webkit-box-shadow:none;
  3018. box-shadow:none;
  3019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:12px;
  3023. line-height:30px;
  3024. }
  3025. #u39061 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:46px;
  3029. top:105px;
  3030. width:97px;
  3031. height:30px;
  3032. display:flex;
  3033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:12px;
  3037. line-height:30px;
  3038. }
  3039. #u39061 .text {
  3040. position:absolute;
  3041. align-self:flex-start;
  3042. padding:0px 0px 0px 0px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u39061_text {
  3047. border-width:0px;
  3048. white-space:nowrap;
  3049. text-transform:none;
  3050. }
  3051. #u39062_div {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:97px;
  3057. height:30px;
  3058. background:inherit;
  3059. background-color:rgba(255, 255, 255, 0);
  3060. border:none;
  3061. border-left:0px;
  3062. border-top:0px;
  3063. border-right:0px;
  3064. border-radius:0px;
  3065. border-bottom-right-radius:0px;
  3066. border-bottom-left-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:12px;
  3074. line-height:30px;
  3075. }
  3076. #u39062 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:46px;
  3080. top:256px;
  3081. width:97px;
  3082. height:30px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. line-height:30px;
  3089. }
  3090. #u39062 .text {
  3091. position:absolute;
  3092. align-self:flex-start;
  3093. padding:0px 0px 0px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u39062_text {
  3098. border-width:0px;
  3099. white-space:nowrap;
  3100. text-transform:none;
  3101. }
  3102. #u39063 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:0px;
  3108. height:0px;
  3109. }
  3110. #u39064_div {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:375px;
  3116. height:80px;
  3117. background:inherit;
  3118. background-color:rgba(255, 255, 255, 1);
  3119. border:none;
  3120. border-left:0px;
  3121. border-top:0px;
  3122. border-right:0px;
  3123. border-radius:0px;
  3124. border-bottom-right-radius:0px;
  3125. border-bottom-left-radius:0px;
  3126. -moz-box-shadow:none;
  3127. -webkit-box-shadow:none;
  3128. box-shadow:none;
  3129. }
  3130. #u39064 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:29px;
  3134. top:285px;
  3135. width:375px;
  3136. height:80px;
  3137. display:flex;
  3138. }
  3139. #u39064 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 2px 2px 2px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u39064_text {
  3147. border-width:0px;
  3148. word-wrap:break-word;
  3149. text-transform:none;
  3150. visibility:hidden;
  3151. }
  3152. #u39065_img {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:40px;
  3158. height:40px;
  3159. }
  3160. #u39065 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:46px;
  3164. top:301px;
  3165. width:40px;
  3166. height:40px;
  3167. display:flex;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. }
  3172. #u39065 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 2px 2px 2px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u39065_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. }
  3184. #u39066_div {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:33px;
  3190. height:30px;
  3191. background:inherit;
  3192. background-color:rgba(255, 255, 255, 0);
  3193. border:none;
  3194. border-left:0px;
  3195. border-top:0px;
  3196. border-right:0px;
  3197. border-radius:0px;
  3198. border-bottom-right-radius:0px;
  3199. border-bottom-left-radius:0px;
  3200. -moz-box-shadow:none;
  3201. -webkit-box-shadow:none;
  3202. box-shadow:none;
  3203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:16px;
  3207. line-height:30px;
  3208. }
  3209. #u39066 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:106px;
  3213. top:300px;
  3214. width:33px;
  3215. height:30px;
  3216. display:flex;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:16px;
  3221. line-height:30px;
  3222. }
  3223. #u39066 .text {
  3224. position:absolute;
  3225. align-self:flex-start;
  3226. padding:0px 0px 0px 0px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u39066_text {
  3231. border-width:0px;
  3232. white-space:nowrap;
  3233. text-transform:none;
  3234. }
  3235. #u39067_div {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:50px;
  3241. height:22px;
  3242. background:inherit;
  3243. background-color:rgba(255, 255, 255, 1);
  3244. box-sizing:border-box;
  3245. border-width:1px;
  3246. border-style:solid;
  3247. border-color:rgba(127, 127, 127, 1);
  3248. border-radius:40px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:11px;
  3256. }
  3257. #u39067 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:344px;
  3261. top:299px;
  3262. width:50px;
  3263. height:22px;
  3264. display:flex;
  3265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:11px;
  3269. }
  3270. #u39067 .text {
  3271. position:absolute;
  3272. align-self:center;
  3273. padding:2px 2px 2px 2px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u39067_text {
  3278. border-width:0px;
  3279. word-wrap:break-word;
  3280. text-transform:none;
  3281. }
  3282. #u39068_div {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:117px;
  3288. height:25px;
  3289. background:inherit;
  3290. background-color:rgba(255, 255, 255, 0);
  3291. border:none;
  3292. border-left:0px;
  3293. border-top:0px;
  3294. border-right:0px;
  3295. border-radius:0px;
  3296. border-bottom-right-radius:0px;
  3297. border-bottom-left-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:10px;
  3305. line-height:25px;
  3306. }
  3307. #u39068 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:106px;
  3311. top:326px;
  3312. width:117px;
  3313. height:25px;
  3314. display:flex;
  3315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:10px;
  3319. line-height:25px;
  3320. }
  3321. #u39068 .text {
  3322. position:absolute;
  3323. align-self:flex-start;
  3324. padding:0px 0px 0px 0px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u39068_text {
  3329. border-width:0px;
  3330. white-space:nowrap;
  3331. text-transform:none;
  3332. }
  3333. #u39069 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:0px;
  3339. height:0px;
  3340. }
  3341. #u39070_div {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:375px;
  3347. height:80px;
  3348. background:inherit;
  3349. background-color:rgba(255, 255, 255, 1);
  3350. border:none;
  3351. border-left:0px;
  3352. border-top:0px;
  3353. border-right:0px;
  3354. border-radius:0px;
  3355. border-bottom-right-radius:0px;
  3356. border-bottom-left-radius:0px;
  3357. -moz-box-shadow:none;
  3358. -webkit-box-shadow:none;
  3359. box-shadow:none;
  3360. }
  3361. #u39070 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:29px;
  3365. top:366px;
  3366. width:375px;
  3367. height:80px;
  3368. display:flex;
  3369. }
  3370. #u39070 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 2px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u39070_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u39071_img {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:40px;
  3389. height:40px;
  3390. }
  3391. #u39071 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:46px;
  3395. top:382px;
  3396. width:40px;
  3397. height:40px;
  3398. display:flex;
  3399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3400. font-weight:400;
  3401. font-style:normal;
  3402. }
  3403. #u39071 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 2px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u39071_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. }
  3415. #u39072_div {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:33px;
  3421. height:30px;
  3422. background:inherit;
  3423. background-color:rgba(255, 255, 255, 0);
  3424. border:none;
  3425. border-left:0px;
  3426. border-top:0px;
  3427. border-right:0px;
  3428. border-radius:0px;
  3429. border-bottom-right-radius:0px;
  3430. border-bottom-left-radius:0px;
  3431. -moz-box-shadow:none;
  3432. -webkit-box-shadow:none;
  3433. box-shadow:none;
  3434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:16px;
  3438. line-height:30px;
  3439. }
  3440. #u39072 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:106px;
  3444. top:381px;
  3445. width:33px;
  3446. height:30px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:16px;
  3452. line-height:30px;
  3453. }
  3454. #u39072 .text {
  3455. position:absolute;
  3456. align-self:flex-start;
  3457. padding:0px 0px 0px 0px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u39072_text {
  3462. border-width:0px;
  3463. white-space:nowrap;
  3464. text-transform:none;
  3465. }
  3466. #u39073_div {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:50px;
  3472. height:22px;
  3473. background:inherit;
  3474. background-color:rgba(255, 255, 255, 1);
  3475. box-sizing:border-box;
  3476. border-width:1px;
  3477. border-style:solid;
  3478. border-color:rgba(127, 127, 127, 1);
  3479. border-radius:40px;
  3480. -moz-box-shadow:none;
  3481. -webkit-box-shadow:none;
  3482. box-shadow:none;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:11px;
  3487. }
  3488. #u39073 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:344px;
  3492. top:380px;
  3493. width:50px;
  3494. height:22px;
  3495. display:flex;
  3496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3497. font-weight:400;
  3498. font-style:normal;
  3499. font-size:11px;
  3500. }
  3501. #u39073 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 2px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u39073_text {
  3509. border-width:0px;
  3510. word-wrap:break-word;
  3511. text-transform:none;
  3512. }
  3513. #u39074_div {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:117px;
  3519. height:25px;
  3520. background:inherit;
  3521. background-color:rgba(255, 255, 255, 0);
  3522. border:none;
  3523. border-left:0px;
  3524. border-top:0px;
  3525. border-right:0px;
  3526. border-radius:0px;
  3527. border-bottom-right-radius:0px;
  3528. border-bottom-left-radius:0px;
  3529. -moz-box-shadow:none;
  3530. -webkit-box-shadow:none;
  3531. box-shadow:none;
  3532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:10px;
  3536. line-height:25px;
  3537. }
  3538. #u39074 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:106px;
  3542. top:407px;
  3543. width:117px;
  3544. height:25px;
  3545. display:flex;
  3546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3547. font-weight:400;
  3548. font-style:normal;
  3549. font-size:10px;
  3550. line-height:25px;
  3551. }
  3552. #u39074 .text {
  3553. position:absolute;
  3554. align-self:flex-start;
  3555. padding:0px 0px 0px 0px;
  3556. box-sizing:border-box;
  3557. width:100%;
  3558. }
  3559. #u39074_text {
  3560. border-width:0px;
  3561. white-space:nowrap;
  3562. text-transform:none;
  3563. }
  3564. #u39075 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:0px;
  3570. height:0px;
  3571. }
  3572. #u39076_div {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:375px;
  3578. height:80px;
  3579. background:inherit;
  3580. background-color:rgba(255, 255, 255, 1);
  3581. border:none;
  3582. border-left:0px;
  3583. border-top:0px;
  3584. border-right:0px;
  3585. border-radius:0px;
  3586. border-bottom-right-radius:0px;
  3587. border-bottom-left-radius:0px;
  3588. -moz-box-shadow:none;
  3589. -webkit-box-shadow:none;
  3590. box-shadow:none;
  3591. }
  3592. #u39076 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:29px;
  3596. top:447px;
  3597. width:375px;
  3598. height:80px;
  3599. display:flex;
  3600. }
  3601. #u39076 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 2px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u39076_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. visibility:hidden;
  3613. }
  3614. #u39077_img {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:40px;
  3620. height:40px;
  3621. }
  3622. #u39077 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:46px;
  3626. top:463px;
  3627. width:40px;
  3628. height:40px;
  3629. display:flex;
  3630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. }
  3634. #u39077 .text {
  3635. position:absolute;
  3636. align-self:center;
  3637. padding:2px 2px 2px 2px;
  3638. box-sizing:border-box;
  3639. width:100%;
  3640. }
  3641. #u39077_text {
  3642. border-width:0px;
  3643. word-wrap:break-word;
  3644. text-transform:none;
  3645. }
  3646. #u39078_div {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:33px;
  3652. height:30px;
  3653. background:inherit;
  3654. background-color:rgba(255, 255, 255, 0);
  3655. border:none;
  3656. border-left:0px;
  3657. border-top:0px;
  3658. border-right:0px;
  3659. border-radius:0px;
  3660. border-bottom-right-radius:0px;
  3661. border-bottom-left-radius:0px;
  3662. -moz-box-shadow:none;
  3663. -webkit-box-shadow:none;
  3664. box-shadow:none;
  3665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3666. font-weight:400;
  3667. font-style:normal;
  3668. font-size:16px;
  3669. line-height:30px;
  3670. }
  3671. #u39078 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:106px;
  3675. top:462px;
  3676. width:33px;
  3677. height:30px;
  3678. display:flex;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:16px;
  3683. line-height:30px;
  3684. }
  3685. #u39078 .text {
  3686. position:absolute;
  3687. align-self:flex-start;
  3688. padding:0px 0px 0px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u39078_text {
  3693. border-width:0px;
  3694. white-space:nowrap;
  3695. text-transform:none;
  3696. }
  3697. #u39079_div {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:50px;
  3703. height:22px;
  3704. background:inherit;
  3705. background-color:rgba(255, 255, 255, 1);
  3706. box-sizing:border-box;
  3707. border-width:1px;
  3708. border-style:solid;
  3709. border-color:rgba(127, 127, 127, 1);
  3710. border-radius:40px;
  3711. -moz-box-shadow:none;
  3712. -webkit-box-shadow:none;
  3713. box-shadow:none;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:11px;
  3718. }
  3719. #u39079 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:344px;
  3723. top:461px;
  3724. width:50px;
  3725. height:22px;
  3726. display:flex;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:11px;
  3731. }
  3732. #u39079 .text {
  3733. position:absolute;
  3734. align-self:center;
  3735. padding:2px 2px 2px 2px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u39079_text {
  3740. border-width:0px;
  3741. word-wrap:break-word;
  3742. text-transform:none;
  3743. }
  3744. #u39080_div {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:0px;
  3748. top:0px;
  3749. width:117px;
  3750. height:25px;
  3751. background:inherit;
  3752. background-color:rgba(255, 255, 255, 0);
  3753. border:none;
  3754. border-left:0px;
  3755. border-top:0px;
  3756. border-right:0px;
  3757. border-radius:0px;
  3758. border-bottom-right-radius:0px;
  3759. border-bottom-left-radius:0px;
  3760. -moz-box-shadow:none;
  3761. -webkit-box-shadow:none;
  3762. box-shadow:none;
  3763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:10px;
  3767. line-height:25px;
  3768. }
  3769. #u39080 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:106px;
  3773. top:488px;
  3774. width:117px;
  3775. height:25px;
  3776. display:flex;
  3777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:10px;
  3781. line-height:25px;
  3782. }
  3783. #u39080 .text {
  3784. position:absolute;
  3785. align-self:flex-start;
  3786. padding:0px 0px 0px 0px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u39080_text {
  3791. border-width:0px;
  3792. white-space:nowrap;
  3793. text-transform:none;
  3794. }
  3795. #u39081 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:0px;
  3801. height:0px;
  3802. }
  3803. #u39082_div {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:375px;
  3809. height:60px;
  3810. background:inherit;
  3811. background-color:rgba(255, 255, 255, 1);
  3812. border:none;
  3813. border-left:0px;
  3814. border-top:0px;
  3815. border-right:0px;
  3816. border-radius:0px;
  3817. border-bottom-right-radius:0px;
  3818. border-bottom-left-radius:0px;
  3819. -moz-box-shadow:none;
  3820. -webkit-box-shadow:none;
  3821. box-shadow:none;
  3822. }
  3823. #u39082 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:484px;
  3827. top:105px;
  3828. width:375px;
  3829. height:60px;
  3830. display:flex;
  3831. }
  3832. #u39082 .text {
  3833. position:absolute;
  3834. align-self:center;
  3835. padding:2px 2px 2px 2px;
  3836. box-sizing:border-box;
  3837. width:100%;
  3838. }
  3839. #u39082_text {
  3840. border-width:0px;
  3841. word-wrap:break-word;
  3842. text-transform:none;
  3843. visibility:hidden;
  3844. }
  3845. #u39083_div {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:0px;
  3849. top:0px;
  3850. width:286px;
  3851. height:30px;
  3852. background:inherit;
  3853. background-color:rgba(255, 255, 255, 0);
  3854. border:none;
  3855. border-left:0px;
  3856. border-top:0px;
  3857. border-right:0px;
  3858. border-radius:0px;
  3859. border-bottom-right-radius:0px;
  3860. border-bottom-left-radius:0px;
  3861. -moz-box-shadow:none;
  3862. -webkit-box-shadow:none;
  3863. box-shadow:none;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. line-height:30px;
  3868. }
  3869. #u39083 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:497px;
  3873. top:120px;
  3874. width:286px;
  3875. height:30px;
  3876. display:flex;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. line-height:30px;
  3881. }
  3882. #u39083 .text {
  3883. position:absolute;
  3884. align-self:flex-start;
  3885. padding:0px 0px 0px 0px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u39083_text {
  3890. border-width:0px;
  3891. white-space:nowrap;
  3892. text-transform:none;
  3893. }
  3894. #u39084 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:0px;
  3900. height:0px;
  3901. }
  3902. #u39085_div {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:375px;
  3908. height:80px;
  3909. background:inherit;
  3910. background-color:rgba(255, 255, 255, 1);
  3911. border:none;
  3912. border-left:0px;
  3913. border-top:0px;
  3914. border-right:0px;
  3915. border-radius:0px;
  3916. border-bottom-right-radius:0px;
  3917. border-bottom-left-radius:0px;
  3918. -moz-box-shadow:none;
  3919. -webkit-box-shadow:none;
  3920. box-shadow:none;
  3921. }
  3922. #u39085 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:484px;
  3926. top:175px;
  3927. width:375px;
  3928. height:80px;
  3929. display:flex;
  3930. }
  3931. #u39085 .text {
  3932. position:absolute;
  3933. align-self:center;
  3934. padding:2px 2px 2px 2px;
  3935. box-sizing:border-box;
  3936. width:100%;
  3937. }
  3938. #u39085_text {
  3939. border-width:0px;
  3940. word-wrap:break-word;
  3941. text-transform:none;
  3942. visibility:hidden;
  3943. }
  3944. #u39086_img {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:40px;
  3950. height:40px;
  3951. }
  3952. #u39086 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:501px;
  3956. top:191px;
  3957. width:40px;
  3958. height:40px;
  3959. display:flex;
  3960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. }
  3964. #u39086 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 2px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u39086_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. }
  3976. #u39087_div {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:33px;
  3982. height:30px;
  3983. background:inherit;
  3984. background-color:rgba(255, 255, 255, 0);
  3985. border:none;
  3986. border-left:0px;
  3987. border-top:0px;
  3988. border-right:0px;
  3989. border-radius:0px;
  3990. border-bottom-right-radius:0px;
  3991. border-bottom-left-radius:0px;
  3992. -moz-box-shadow:none;
  3993. -webkit-box-shadow:none;
  3994. box-shadow:none;
  3995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3996. font-weight:400;
  3997. font-style:normal;
  3998. font-size:16px;
  3999. line-height:30px;
  4000. }
  4001. #u39087 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:561px;
  4005. top:190px;
  4006. width:33px;
  4007. height:30px;
  4008. display:flex;
  4009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:16px;
  4013. line-height:30px;
  4014. }
  4015. #u39087 .text {
  4016. position:absolute;
  4017. align-self:flex-start;
  4018. padding:0px 0px 0px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u39087_text {
  4023. border-width:0px;
  4024. white-space:nowrap;
  4025. text-transform:none;
  4026. }
  4027. #u39088_div {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:50px;
  4033. height:22px;
  4034. background:inherit;
  4035. background-color:rgba(255, 255, 255, 1);
  4036. box-sizing:border-box;
  4037. border-width:1px;
  4038. border-style:solid;
  4039. border-color:rgba(127, 127, 127, 1);
  4040. border-radius:40px;
  4041. -moz-box-shadow:none;
  4042. -webkit-box-shadow:none;
  4043. box-shadow:none;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:11px;
  4048. }
  4049. #u39088 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:799px;
  4053. top:189px;
  4054. width:50px;
  4055. height:22px;
  4056. display:flex;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:11px;
  4061. }
  4062. #u39088 .text {
  4063. position:absolute;
  4064. align-self:center;
  4065. padding:2px 2px 2px 2px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u39088_text {
  4070. border-width:0px;
  4071. word-wrap:break-word;
  4072. text-transform:none;
  4073. }
  4074. #u39089_div {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:117px;
  4080. height:25px;
  4081. background:inherit;
  4082. background-color:rgba(255, 255, 255, 0);
  4083. border:none;
  4084. border-left:0px;
  4085. border-top:0px;
  4086. border-right:0px;
  4087. border-radius:0px;
  4088. border-bottom-right-radius:0px;
  4089. border-bottom-left-radius:0px;
  4090. -moz-box-shadow:none;
  4091. -webkit-box-shadow:none;
  4092. box-shadow:none;
  4093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. font-size:10px;
  4097. line-height:25px;
  4098. }
  4099. #u39089 {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:561px;
  4103. top:216px;
  4104. width:117px;
  4105. height:25px;
  4106. display:flex;
  4107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:10px;
  4111. line-height:25px;
  4112. }
  4113. #u39089 .text {
  4114. position:absolute;
  4115. align-self:flex-start;
  4116. padding:0px 0px 0px 0px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u39089_text {
  4121. border-width:0px;
  4122. white-space:nowrap;
  4123. text-transform:none;
  4124. }
  4125. #u39090 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:0px;
  4131. height:0px;
  4132. }
  4133. #u39091_div {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:375px;
  4139. height:80px;
  4140. background:inherit;
  4141. background-color:rgba(255, 255, 255, 1);
  4142. border:none;
  4143. border-left:0px;
  4144. border-top:0px;
  4145. border-right:0px;
  4146. border-radius:0px;
  4147. border-bottom-right-radius:0px;
  4148. border-bottom-left-radius:0px;
  4149. -moz-box-shadow:none;
  4150. -webkit-box-shadow:none;
  4151. box-shadow:none;
  4152. }
  4153. #u39091 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:484px;
  4157. top:256px;
  4158. width:375px;
  4159. height:80px;
  4160. display:flex;
  4161. }
  4162. #u39091 .text {
  4163. position:absolute;
  4164. align-self:center;
  4165. padding:2px 2px 2px 2px;
  4166. box-sizing:border-box;
  4167. width:100%;
  4168. }
  4169. #u39091_text {
  4170. border-width:0px;
  4171. word-wrap:break-word;
  4172. text-transform:none;
  4173. visibility:hidden;
  4174. }
  4175. #u39092_img {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:40px;
  4181. height:40px;
  4182. }
  4183. #u39092 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:501px;
  4187. top:272px;
  4188. width:40px;
  4189. height:40px;
  4190. display:flex;
  4191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4192. font-weight:400;
  4193. font-style:normal;
  4194. }
  4195. #u39092 .text {
  4196. position:absolute;
  4197. align-self:center;
  4198. padding:2px 2px 2px 2px;
  4199. box-sizing:border-box;
  4200. width:100%;
  4201. }
  4202. #u39092_text {
  4203. border-width:0px;
  4204. word-wrap:break-word;
  4205. text-transform:none;
  4206. }
  4207. #u39093_div {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:33px;
  4213. height:30px;
  4214. background:inherit;
  4215. background-color:rgba(255, 255, 255, 0);
  4216. border:none;
  4217. border-left:0px;
  4218. border-top:0px;
  4219. border-right:0px;
  4220. border-radius:0px;
  4221. border-bottom-right-radius:0px;
  4222. border-bottom-left-radius:0px;
  4223. -moz-box-shadow:none;
  4224. -webkit-box-shadow:none;
  4225. box-shadow:none;
  4226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:16px;
  4230. line-height:30px;
  4231. }
  4232. #u39093 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:561px;
  4236. top:271px;
  4237. width:33px;
  4238. height:30px;
  4239. display:flex;
  4240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:16px;
  4244. line-height:30px;
  4245. }
  4246. #u39093 .text {
  4247. position:absolute;
  4248. align-self:flex-start;
  4249. padding:0px 0px 0px 0px;
  4250. box-sizing:border-box;
  4251. width:100%;
  4252. }
  4253. #u39093_text {
  4254. border-width:0px;
  4255. white-space:nowrap;
  4256. text-transform:none;
  4257. }
  4258. #u39094_div {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:50px;
  4264. height:22px;
  4265. background:inherit;
  4266. background-color:rgba(255, 255, 255, 1);
  4267. box-sizing:border-box;
  4268. border-width:1px;
  4269. border-style:solid;
  4270. border-color:rgba(127, 127, 127, 1);
  4271. border-radius:40px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:11px;
  4279. }
  4280. #u39094 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:799px;
  4284. top:270px;
  4285. width:50px;
  4286. height:22px;
  4287. display:flex;
  4288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:11px;
  4292. }
  4293. #u39094 .text {
  4294. position:absolute;
  4295. align-self:center;
  4296. padding:2px 2px 2px 2px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u39094_text {
  4301. border-width:0px;
  4302. word-wrap:break-word;
  4303. text-transform:none;
  4304. }
  4305. #u39095_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:117px;
  4311. height:25px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 0);
  4314. border:none;
  4315. border-left:0px;
  4316. border-top:0px;
  4317. border-right:0px;
  4318. border-radius:0px;
  4319. border-bottom-right-radius:0px;
  4320. border-bottom-left-radius:0px;
  4321. -moz-box-shadow:none;
  4322. -webkit-box-shadow:none;
  4323. box-shadow:none;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:10px;
  4328. line-height:25px;
  4329. }
  4330. #u39095 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:561px;
  4334. top:297px;
  4335. width:117px;
  4336. height:25px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:10px;
  4342. line-height:25px;
  4343. }
  4344. #u39095 .text {
  4345. position:absolute;
  4346. align-self:flex-start;
  4347. padding:0px 0px 0px 0px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u39095_text {
  4352. border-width:0px;
  4353. white-space:nowrap;
  4354. text-transform:none;
  4355. }
  4356. #u39096 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:824px;
  4360. top:189px;
  4361. width:0px;
  4362. height:0px;
  4363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. color:#0089FE;
  4367. }
  4368. #u39096_seg0 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:-5px;
  4372. top:-24px;
  4373. width:10px;
  4374. height:24px;
  4375. }
  4376. #u39096_seg1 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:-151px;
  4380. top:-24px;
  4381. width:156px;
  4382. height:10px;
  4383. }
  4384. #u39096_seg2 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:-151px;
  4388. top:-24px;
  4389. width:10px;
  4390. height:218px;
  4391. }
  4392. #u39096_seg3 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:-9px;
  4396. top:-12px;
  4397. width:18px;
  4398. height:18px;
  4399. }
  4400. #u39096_seg4 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:-162px;
  4404. top:177px;
  4405. width:32px;
  4406. height:32px;
  4407. }
  4408. #u39096_text {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:-196px;
  4412. top:-3px;
  4413. width:100px;
  4414. word-wrap:break-word;
  4415. text-transform:none;
  4416. visibility:hidden;
  4417. }
  4418. #u39097 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:0px;
  4424. height:0px;
  4425. }
  4426. #u39099_img {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:433px;
  4432. height:865px;
  4433. }
  4434. #u39099 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:908px;
  4438. top:0px;
  4439. width:433px;
  4440. height:865px;
  4441. display:flex;
  4442. }
  4443. #u39099 .text {
  4444. position:absolute;
  4445. align-self:center;
  4446. padding:2px 2px 2px 2px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u39099_text {
  4451. border-width:0px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. visibility:hidden;
  4455. }
  4456. #u39100_div {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:375px;
  4462. height:40px;
  4463. background:inherit;
  4464. background-color:rgba(255, 255, 255, 1);
  4465. box-sizing:border-box;
  4466. border-width:1px;
  4467. border-style:solid;
  4468. border-color:rgba(215, 215, 215, 1);
  4469. border-left:0px;
  4470. border-top:0px;
  4471. border-right:0px;
  4472. border-radius:0px;
  4473. border-bottom-right-radius:0px;
  4474. border-bottom-left-radius:0px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. }
  4479. #u39100 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:937px;
  4483. top:67px;
  4484. width:375px;
  4485. height:40px;
  4486. display:flex;
  4487. }
  4488. #u39100 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:2px 2px 2px 2px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u39100_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }
  4501. #u39101 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:0px;
  4507. height:0px;
  4508. }
  4509. #u39102_div {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:88px;
  4515. height:32px;
  4516. background:inherit;
  4517. background-color:rgba(255, 255, 255, 1);
  4518. box-sizing:border-box;
  4519. border-width:1px;
  4520. border-style:solid;
  4521. border-color:rgba(242, 242, 242, 1);
  4522. border-radius:33px;
  4523. -moz-box-shadow:none;
  4524. -webkit-box-shadow:none;
  4525. box-shadow:none;
  4526. }
  4527. #u39102 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:1217px;
  4531. top:71px;
  4532. width:88px;
  4533. height:32px;
  4534. display:flex;
  4535. }
  4536. #u39102 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:2px 2px 2px 2px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u39102_text {
  4544. border-width:0px;
  4545. word-wrap:break-word;
  4546. text-transform:none;
  4547. visibility:hidden;
  4548. }
  4549. #u39103 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:0px;
  4555. height:0px;
  4556. }
  4557. #u39104_img {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:18px;
  4563. height:18px;
  4564. }
  4565. #u39104 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:1280px;
  4569. top:78px;
  4570. width:18px;
  4571. height:18px;
  4572. display:flex;
  4573. }
  4574. #u39104 .text {
  4575. position:absolute;
  4576. align-self:center;
  4577. padding:2px 2px 2px 2px;
  4578. box-sizing:border-box;
  4579. width:100%;
  4580. }
  4581. #u39104_text {
  4582. border-width:0px;
  4583. word-wrap:break-word;
  4584. text-transform:none;
  4585. visibility:hidden;
  4586. }
  4587. #u39105_img {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:6px;
  4593. height:6px;
  4594. }
  4595. #u39105 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:1286px;
  4599. top:84px;
  4600. width:6px;
  4601. height:6px;
  4602. display:flex;
  4603. }
  4604. #u39105 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 2px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u39105_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u39106 {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:0px;
  4623. height:0px;
  4624. }
  4625. #u39107_img {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:5px;
  4631. height:5px;
  4632. }
  4633. #u39107 {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:1231px;
  4637. top:85px;
  4638. width:5px;
  4639. height:5px;
  4640. display:flex;
  4641. }
  4642. #u39107 .text {
  4643. position:absolute;
  4644. align-self:center;
  4645. padding:2px 2px 2px 2px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u39107_text {
  4650. border-width:0px;
  4651. word-wrap:break-word;
  4652. text-transform:none;
  4653. visibility:hidden;
  4654. }
  4655. #u39108_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:5px;
  4661. height:5px;
  4662. }
  4663. #u39108 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:1247px;
  4667. top:85px;
  4668. width:5px;
  4669. height:5px;
  4670. display:flex;
  4671. }
  4672. #u39108 .text {
  4673. position:absolute;
  4674. align-self:center;
  4675. padding:2px 2px 2px 2px;
  4676. box-sizing:border-box;
  4677. width:100%;
  4678. }
  4679. #u39108_text {
  4680. border-width:0px;
  4681. word-wrap:break-word;
  4682. text-transform:none;
  4683. visibility:hidden;
  4684. }
  4685. #u39109_img {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:7px;
  4691. height:7px;
  4692. }
  4693. #u39109 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:1238px;
  4697. top:84px;
  4698. width:7px;
  4699. height:7px;
  4700. display:flex;
  4701. }
  4702. #u39109 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:2px 2px 2px 2px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u39109_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. visibility:hidden;
  4714. }
  4715. #u39110_img {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:19px;
  4721. height:2px;
  4722. }
  4723. #u39110 {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:1255px;
  4727. top:87px;
  4728. width:18px;
  4729. height:1px;
  4730. display:flex;
  4731. -webkit-transform:rotate(90deg);
  4732. -moz-transform:rotate(90deg);
  4733. -ms-transform:rotate(90deg);
  4734. transform:rotate(90deg);
  4735. }
  4736. #u39110 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:2px 2px 2px 2px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u39110_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. visibility:hidden;
  4748. }
  4749. #u39111_img {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:375px;
  4755. height:44px;
  4756. }
  4757. #u39111 {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:937px;
  4761. top:24px;
  4762. width:375px;
  4763. height:44px;
  4764. display:flex;
  4765. }
  4766. #u39111 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 2px 2px 2px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u39111_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u39112_div {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:375px;
  4785. height:50px;
  4786. background:inherit;
  4787. background-color:rgba(255, 255, 255, 1);
  4788. box-sizing:border-box;
  4789. border-width:1px;
  4790. border-style:solid;
  4791. border-color:rgba(242, 242, 242, 1);
  4792. border-radius:26px;
  4793. border-top-left-radius:0px;
  4794. border-top-right-radius:0px;
  4795. -moz-box-shadow:none;
  4796. -webkit-box-shadow:none;
  4797. box-shadow:none;
  4798. }
  4799. #u39112 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:937px;
  4803. top:788px;
  4804. width:375px;
  4805. height:50px;
  4806. display:flex;
  4807. }
  4808. #u39112 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 2px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u39112_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u39113 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:0px;
  4827. height:0px;
  4828. }
  4829. #u39114_img {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:24px;
  4835. height:24px;
  4836. }
  4837. #u39114 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:977px;
  4841. top:792px;
  4842. width:24px;
  4843. height:24px;
  4844. display:flex;
  4845. font-size:8px;
  4846. }
  4847. #u39114 .text {
  4848. position:absolute;
  4849. align-self:center;
  4850. padding:2px 2px 2px 2px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u39114_text {
  4855. border-width:0px;
  4856. word-wrap:break-word;
  4857. text-transform:none;
  4858. }
  4859. #u39115_div {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:25px;
  4865. height:17px;
  4866. background:inherit;
  4867. background-color:rgba(255, 255, 255, 0);
  4868. border:none;
  4869. border-radius:0px;
  4870. -moz-box-shadow:none;
  4871. -webkit-box-shadow:none;
  4872. box-shadow:none;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:12px;
  4877. }
  4878. #u39115 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:977px;
  4882. top:817px;
  4883. width:25px;
  4884. height:17px;
  4885. display:flex;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:12px;
  4890. }
  4891. #u39115 .text {
  4892. position:absolute;
  4893. align-self:flex-start;
  4894. padding:0px 0px 0px 0px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u39115_text {
  4899. border-width:0px;
  4900. white-space:nowrap;
  4901. text-transform:none;
  4902. }
  4903. #u39116 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:0px;
  4909. height:0px;
  4910. }
  4911. #u39117_img {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:0px;
  4915. top:0px;
  4916. width:24px;
  4917. height:24px;
  4918. }
  4919. #u39117 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:1247px;
  4923. top:794px;
  4924. width:24px;
  4925. height:24px;
  4926. display:flex;
  4927. font-size:8px;
  4928. }
  4929. #u39117 .text {
  4930. position:absolute;
  4931. align-self:center;
  4932. padding:2px 2px 2px 2px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u39117_text {
  4937. border-width:0px;
  4938. word-wrap:break-word;
  4939. text-transform:none;
  4940. }
  4941. #u39118_div {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:25px;
  4947. height:17px;
  4948. background:inherit;
  4949. background-color:rgba(255, 255, 255, 0);
  4950. border:none;
  4951. border-radius:0px;
  4952. -moz-box-shadow:none;
  4953. -webkit-box-shadow:none;
  4954. box-shadow:none;
  4955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:12px;
  4959. }
  4960. #u39118 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:1247px;
  4964. top:819px;
  4965. width:25px;
  4966. height:17px;
  4967. display:flex;
  4968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:12px;
  4972. }
  4973. #u39118 .text {
  4974. position:absolute;
  4975. align-self:flex-start;
  4976. padding:0px 0px 0px 0px;
  4977. box-sizing:border-box;
  4978. width:100%;
  4979. }
  4980. #u39118_text {
  4981. border-width:0px;
  4982. white-space:nowrap;
  4983. text-transform:none;
  4984. }
  4985. #u39119_div {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:375px;
  4991. height:681px;
  4992. background:inherit;
  4993. background-color:rgba(242, 242, 242, 0.462745098039216);
  4994. border:none;
  4995. border-radius:0px;
  4996. -moz-box-shadow:none;
  4997. -webkit-box-shadow:none;
  4998. box-shadow:none;
  4999. }
  5000. #u39119 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:937px;
  5004. top:107px;
  5005. width:375px;
  5006. height:681px;
  5007. display:flex;
  5008. }
  5009. #u39119 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:2px 2px 2px 2px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u39119_text {
  5017. border-width:0px;
  5018. word-wrap:break-word;
  5019. text-transform:none;
  5020. visibility:hidden;
  5021. }
  5022. #u39120 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:0px;
  5028. height:0px;
  5029. }
  5030. #u39121_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:24px;
  5036. height:24px;
  5037. }
  5038. #u39121 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:1159px;
  5042. top:792px;
  5043. width:24px;
  5044. height:24px;
  5045. display:flex;
  5046. font-size:8px;
  5047. }
  5048. #u39121 .text {
  5049. position:absolute;
  5050. align-self:center;
  5051. padding:2px 2px 2px 2px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u39121_text {
  5056. border-width:0px;
  5057. word-wrap:break-word;
  5058. text-transform:none;
  5059. }
  5060. #u39122_div {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:37px;
  5066. height:17px;
  5067. background:inherit;
  5068. background-color:rgba(255, 255, 255, 0);
  5069. border:none;
  5070. border-radius:0px;
  5071. -moz-box-shadow:none;
  5072. -webkit-box-shadow:none;
  5073. box-shadow:none;
  5074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5075. font-weight:400;
  5076. font-style:normal;
  5077. font-size:12px;
  5078. }
  5079. #u39122 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:1153px;
  5083. top:817px;
  5084. width:37px;
  5085. height:17px;
  5086. display:flex;
  5087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:12px;
  5091. }
  5092. #u39122 .text {
  5093. position:absolute;
  5094. align-self:flex-start;
  5095. padding:0px 0px 0px 0px;
  5096. box-sizing:border-box;
  5097. width:100%;
  5098. }
  5099. #u39122_text {
  5100. border-width:0px;
  5101. white-space:nowrap;
  5102. text-transform:none;
  5103. }
  5104. #u39123 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:0px;
  5110. height:0px;
  5111. }
  5112. #u39124_img {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:24px;
  5118. height:24px;
  5119. }
  5120. #u39124 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:1065px;
  5124. top:792px;
  5125. width:24px;
  5126. height:24px;
  5127. display:flex;
  5128. font-size:8px;
  5129. }
  5130. #u39124 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:2px 2px 2px 2px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u39124_text {
  5138. border-width:0px;
  5139. word-wrap:break-word;
  5140. text-transform:none;
  5141. }
  5142. #u39125_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:37px;
  5148. height:17px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:12px;
  5160. }
  5161. #u39125 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:1059px;
  5165. top:817px;
  5166. width:37px;
  5167. height:17px;
  5168. display:flex;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:12px;
  5173. }
  5174. #u39125 .text {
  5175. position:absolute;
  5176. align-self:flex-start;
  5177. padding:0px 0px 0px 0px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u39125_text {
  5182. border-width:0px;
  5183. white-space:nowrap;
  5184. text-transform:none;
  5185. }
  5186. #u39126_div {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:375px;
  5192. height:735px;
  5193. background:inherit;
  5194. background-color:rgba(242, 242, 242, 1);
  5195. border:none;
  5196. border-top:0px;
  5197. border-radius:25px;
  5198. border-top-left-radius:0px;
  5199. border-top-right-radius:0px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. }
  5204. #u39126 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:937px;
  5208. top:105px;
  5209. width:375px;
  5210. height:735px;
  5211. display:flex;
  5212. }
  5213. #u39126 .text {
  5214. position:absolute;
  5215. align-self:center;
  5216. padding:2px 2px 2px 2px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u39126_text {
  5221. border-width:0px;
  5222. word-wrap:break-word;
  5223. text-transform:none;
  5224. visibility:hidden;
  5225. }
  5226. #u39127_div {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:57px;
  5232. height:30px;
  5233. background:inherit;
  5234. background-color:rgba(255, 255, 255, 0);
  5235. border:none;
  5236. border-left:0px;
  5237. border-top:0px;
  5238. border-right:0px;
  5239. border-radius:0px;
  5240. border-bottom-right-radius:0px;
  5241. border-bottom-left-radius:0px;
  5242. -moz-box-shadow:none;
  5243. -webkit-box-shadow:none;
  5244. box-shadow:none;
  5245. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5246. font-weight:500;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. line-height:30px;
  5250. }
  5251. #u39127 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:1089px;
  5255. top:73px;
  5256. width:57px;
  5257. height:30px;
  5258. display:flex;
  5259. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5260. font-weight:500;
  5261. font-style:normal;
  5262. font-size:14px;
  5263. line-height:30px;
  5264. }
  5265. #u39127 .text {
  5266. position:absolute;
  5267. align-self:flex-start;
  5268. padding:0px 0px 0px 0px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u39127_text {
  5273. border-width:0px;
  5274. white-space:nowrap;
  5275. text-transform:none;
  5276. }
  5277. #u39128 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:0px;
  5283. height:0px;
  5284. }
  5285. #u39129_img {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:11px;
  5291. height:18px;
  5292. }
  5293. #u39129 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:950px;
  5297. top:79px;
  5298. width:11px;
  5299. height:18px;
  5300. display:flex;
  5301. }
  5302. #u39129 .text {
  5303. position:absolute;
  5304. align-self:center;
  5305. padding:2px 2px 2px 2px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u39129_text {
  5310. border-width:0px;
  5311. word-wrap:break-word;
  5312. text-transform:none;
  5313. visibility:hidden;
  5314. }
  5315. #u39130 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:0px;
  5321. height:0px;
  5322. }
  5323. #u39131_div {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:375px;
  5329. height:110px;
  5330. background:inherit;
  5331. background-color:rgba(255, 255, 255, 1);
  5332. border:none;
  5333. border-left:0px;
  5334. border-top:0px;
  5335. border-right:0px;
  5336. border-radius:0px;
  5337. border-bottom-right-radius:0px;
  5338. border-bottom-left-radius:0px;
  5339. -moz-box-shadow:none;
  5340. -webkit-box-shadow:none;
  5341. box-shadow:none;
  5342. }
  5343. #u39131 {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:937px;
  5347. top:106px;
  5348. width:375px;
  5349. height:110px;
  5350. display:flex;
  5351. }
  5352. #u39131 .text {
  5353. position:absolute;
  5354. align-self:center;
  5355. padding:2px 2px 2px 2px;
  5356. box-sizing:border-box;
  5357. width:100%;
  5358. }
  5359. #u39131_text {
  5360. border-width:0px;
  5361. word-wrap:break-word;
  5362. text-transform:none;
  5363. visibility:hidden;
  5364. }
  5365. #u39132_img {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:40px;
  5371. height:40px;
  5372. }
  5373. #u39132 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:954px;
  5377. top:132px;
  5378. width:40px;
  5379. height:40px;
  5380. display:flex;
  5381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5382. font-weight:400;
  5383. font-style:normal;
  5384. }
  5385. #u39132 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 2px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u39132_text {
  5393. border-width:0px;
  5394. word-wrap:break-word;
  5395. text-transform:none;
  5396. }
  5397. #u39133_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:33px;
  5403. height:30px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 0);
  5406. border:none;
  5407. border-left:0px;
  5408. border-top:0px;
  5409. border-right:0px;
  5410. border-radius:0px;
  5411. border-bottom-right-radius:0px;
  5412. border-bottom-left-radius:0px;
  5413. -moz-box-shadow:none;
  5414. -webkit-box-shadow:none;
  5415. box-shadow:none;
  5416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. font-size:16px;
  5420. line-height:30px;
  5421. }
  5422. #u39133 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:1014px;
  5426. top:127px;
  5427. width:33px;
  5428. height:30px;
  5429. display:flex;
  5430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5431. font-weight:400;
  5432. font-style:normal;
  5433. font-size:16px;
  5434. line-height:30px;
  5435. }
  5436. #u39133 .text {
  5437. position:absolute;
  5438. align-self:flex-start;
  5439. padding:0px 0px 0px 0px;
  5440. box-sizing:border-box;
  5441. width:100%;
  5442. }
  5443. #u39133_text {
  5444. border-width:0px;
  5445. white-space:nowrap;
  5446. text-transform:none;
  5447. }
  5448. #u39134_div {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:117px;
  5454. height:25px;
  5455. background:inherit;
  5456. background-color:rgba(255, 255, 255, 0);
  5457. border:none;
  5458. border-left:0px;
  5459. border-top:0px;
  5460. border-right:0px;
  5461. border-radius:0px;
  5462. border-bottom-right-radius:0px;
  5463. border-bottom-left-radius:0px;
  5464. -moz-box-shadow:none;
  5465. -webkit-box-shadow:none;
  5466. box-shadow:none;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:10px;
  5471. line-height:25px;
  5472. }
  5473. #u39134 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:1014px;
  5477. top:157px;
  5478. width:117px;
  5479. height:25px;
  5480. display:flex;
  5481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:10px;
  5485. line-height:25px;
  5486. }
  5487. #u39134 .text {
  5488. position:absolute;
  5489. align-self:flex-start;
  5490. padding:0px 0px 0px 0px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u39134_text {
  5495. border-width:0px;
  5496. white-space:nowrap;
  5497. text-transform:none;
  5498. }
  5499. #u39135_div {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:151px;
  5505. height:25px;
  5506. background:inherit;
  5507. background-color:rgba(255, 255, 255, 0);
  5508. border:none;
  5509. border-left:0px;
  5510. border-top:0px;
  5511. border-right:0px;
  5512. border-radius:0px;
  5513. border-bottom-right-radius:0px;
  5514. border-bottom-left-radius:0px;
  5515. -moz-box-shadow:none;
  5516. -webkit-box-shadow:none;
  5517. box-shadow:none;
  5518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:10px;
  5522. line-height:25px;
  5523. }
  5524. #u39135 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:1014px;
  5528. top:182px;
  5529. width:151px;
  5530. height:25px;
  5531. display:flex;
  5532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. font-size:10px;
  5536. line-height:25px;
  5537. }
  5538. #u39135 .text {
  5539. position:absolute;
  5540. align-self:flex-start;
  5541. padding:0px 0px 0px 0px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u39135_text {
  5546. border-width:0px;
  5547. white-space:nowrap;
  5548. text-transform:none;
  5549. }
  5550. #u39136 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:0px;
  5556. height:0px;
  5557. }
  5558. #u39137_div {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:375px;
  5564. height:80px;
  5565. background:inherit;
  5566. background-color:rgba(255, 255, 255, 1);
  5567. border:none;
  5568. border-left:0px;
  5569. border-top:0px;
  5570. border-right:0px;
  5571. border-radius:0px;
  5572. border-bottom-right-radius:0px;
  5573. border-bottom-left-radius:0px;
  5574. -moz-box-shadow:none;
  5575. -webkit-box-shadow:none;
  5576. box-shadow:none;
  5577. }
  5578. #u39137 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:937px;
  5582. top:256px;
  5583. width:375px;
  5584. height:80px;
  5585. display:flex;
  5586. }
  5587. #u39137 .text {
  5588. position:absolute;
  5589. align-self:center;
  5590. padding:2px 2px 2px 2px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u39137_text {
  5595. border-width:0px;
  5596. word-wrap:break-word;
  5597. text-transform:none;
  5598. visibility:hidden;
  5599. }
  5600. #u39138_div {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:129px;
  5606. height:30px;
  5607. background:inherit;
  5608. background-color:rgba(255, 255, 255, 0);
  5609. border:none;
  5610. border-left:0px;
  5611. border-top:0px;
  5612. border-right:0px;
  5613. border-radius:0px;
  5614. border-bottom-right-radius:0px;
  5615. border-bottom-left-radius:0px;
  5616. -moz-box-shadow:none;
  5617. -webkit-box-shadow:none;
  5618. box-shadow:none;
  5619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:16px;
  5623. line-height:30px;
  5624. }
  5625. #u39138 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:957px;
  5629. top:269px;
  5630. width:129px;
  5631. height:30px;
  5632. display:flex;
  5633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:16px;
  5637. line-height:30px;
  5638. }
  5639. #u39138 .text {
  5640. position:absolute;
  5641. align-self:flex-start;
  5642. padding:0px 0px 0px 0px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u39138_text {
  5647. border-width:0px;
  5648. white-space:nowrap;
  5649. text-transform:none;
  5650. }
  5651. #u39139_div {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:37px;
  5657. height:25px;
  5658. background:inherit;
  5659. background-color:rgba(255, 255, 255, 0);
  5660. border:none;
  5661. border-left:0px;
  5662. border-top:0px;
  5663. border-right:0px;
  5664. border-radius:0px;
  5665. border-bottom-right-radius:0px;
  5666. border-bottom-left-radius:0px;
  5667. -moz-box-shadow:none;
  5668. -webkit-box-shadow:none;
  5669. box-shadow:none;
  5670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5671. font-weight:400;
  5672. font-style:normal;
  5673. font-size:12px;
  5674. color:#7F7F7F;
  5675. line-height:25px;
  5676. }
  5677. #u39139 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:957px;
  5681. top:299px;
  5682. width:37px;
  5683. height:25px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:12px;
  5689. color:#7F7F7F;
  5690. line-height:25px;
  5691. }
  5692. #u39139 .text {
  5693. position:absolute;
  5694. align-self:flex-start;
  5695. padding:0px 0px 0px 0px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u39139_text {
  5700. border-width:0px;
  5701. white-space:nowrap;
  5702. text-transform:none;
  5703. }
  5704. #u39140_div {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:50px;
  5710. height:22px;
  5711. background:inherit;
  5712. background-color:rgba(255, 255, 255, 1);
  5713. box-sizing:border-box;
  5714. border-width:1px;
  5715. border-style:solid;
  5716. border-color:rgba(127, 127, 127, 1);
  5717. border-radius:40px;
  5718. -moz-box-shadow:none;
  5719. -webkit-box-shadow:none;
  5720. box-shadow:none;
  5721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:11px;
  5725. }
  5726. #u39140 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:1252px;
  5730. top:273px;
  5731. width:50px;
  5732. height:22px;
  5733. display:flex;
  5734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:11px;
  5738. }
  5739. #u39140 .text {
  5740. position:absolute;
  5741. align-self:center;
  5742. padding:2px 2px 2px 2px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u39140_text {
  5747. border-width:0px;
  5748. word-wrap:break-word;
  5749. text-transform:none;
  5750. }
  5751. #u39141_div {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:339px;
  5757. height:40px;
  5758. background:inherit;
  5759. background-color:rgba(255, 255, 255, 1);
  5760. box-sizing:border-box;
  5761. border-width:1px;
  5762. border-style:solid;
  5763. border-color:rgba(24, 144, 255, 1);
  5764. border-radius:45px;
  5765. -moz-box-shadow:none;
  5766. -webkit-box-shadow:none;
  5767. box-shadow:none;
  5768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. color:#1890FF;
  5773. }
  5774. #u39141 {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:955px;
  5778. top:790px;
  5779. width:339px;
  5780. height:40px;
  5781. display:flex;
  5782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:14px;
  5786. color:#1890FF;
  5787. }
  5788. #u39141 .text {
  5789. position:absolute;
  5790. align-self:center;
  5791. padding:2px 2px 2px 2px;
  5792. box-sizing:border-box;
  5793. width:100%;
  5794. }
  5795. #u39141_text {
  5796. border-width:0px;
  5797. word-wrap:break-word;
  5798. text-transform:none;
  5799. }
  5800. #u39142_div {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:73px;
  5806. height:40px;
  5807. background:inherit;
  5808. background-color:rgba(255, 255, 255, 0);
  5809. border:none;
  5810. border-left:0px;
  5811. border-top:0px;
  5812. border-right:0px;
  5813. border-radius:0px;
  5814. border-bottom-right-radius:0px;
  5815. border-bottom-left-radius:0px;
  5816. -moz-box-shadow:none;
  5817. -webkit-box-shadow:none;
  5818. box-shadow:none;
  5819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. font-size:12px;
  5823. color:#7F7F7F;
  5824. line-height:25px;
  5825. }
  5826. #u39142 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:957px;
  5830. top:216px;
  5831. width:73px;
  5832. height:40px;
  5833. display:flex;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:12px;
  5838. color:#7F7F7F;
  5839. line-height:25px;
  5840. }
  5841. #u39142 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:0px 0px 0px 0px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u39142_text {
  5849. border-width:0px;
  5850. white-space:nowrap;
  5851. text-transform:none;
  5852. }
  5853. #u39143 {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:0px;
  5859. height:0px;
  5860. }
  5861. #u39144_div {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:375px;
  5867. height:80px;
  5868. background:inherit;
  5869. background-color:rgba(255, 255, 255, 1);
  5870. border:none;
  5871. border-left:0px;
  5872. border-top:0px;
  5873. border-right:0px;
  5874. border-radius:0px;
  5875. border-bottom-right-radius:0px;
  5876. border-bottom-left-radius:0px;
  5877. -moz-box-shadow:none;
  5878. -webkit-box-shadow:none;
  5879. box-shadow:none;
  5880. }
  5881. #u39144 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:937px;
  5885. top:337px;
  5886. width:375px;
  5887. height:80px;
  5888. display:flex;
  5889. }
  5890. #u39144 .text {
  5891. position:absolute;
  5892. align-self:center;
  5893. padding:2px 2px 2px 2px;
  5894. box-sizing:border-box;
  5895. width:100%;
  5896. }
  5897. #u39144_text {
  5898. border-width:0px;
  5899. word-wrap:break-word;
  5900. text-transform:none;
  5901. visibility:hidden;
  5902. }
  5903. #u39145_div {
  5904. border-width:0px;
  5905. position:absolute;
  5906. left:0px;
  5907. top:0px;
  5908. width:129px;
  5909. height:30px;
  5910. background:inherit;
  5911. background-color:rgba(255, 255, 255, 0);
  5912. border:none;
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:16px;
  5926. line-height:30px;
  5927. }
  5928. #u39145 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:957px;
  5932. top:350px;
  5933. width:129px;
  5934. height:30px;
  5935. display:flex;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:16px;
  5940. line-height:30px;
  5941. }
  5942. #u39145 .text {
  5943. position:absolute;
  5944. align-self:flex-start;
  5945. padding:0px 0px 0px 0px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u39145_text {
  5950. border-width:0px;
  5951. white-space:nowrap;
  5952. text-transform:none;
  5953. }
  5954. #u39146_div {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:49px;
  5960. height:25px;
  5961. background:inherit;
  5962. background-color:rgba(255, 255, 255, 0);
  5963. border:none;
  5964. border-left:0px;
  5965. border-top:0px;
  5966. border-right:0px;
  5967. border-radius:0px;
  5968. border-bottom-right-radius:0px;
  5969. border-bottom-left-radius:0px;
  5970. -moz-box-shadow:none;
  5971. -webkit-box-shadow:none;
  5972. box-shadow:none;
  5973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5974. font-weight:400;
  5975. font-style:normal;
  5976. font-size:12px;
  5977. color:#7F7F7F;
  5978. line-height:25px;
  5979. }
  5980. #u39146 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:957px;
  5984. top:380px;
  5985. width:49px;
  5986. height:25px;
  5987. display:flex;
  5988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:12px;
  5992. color:#7F7F7F;
  5993. line-height:25px;
  5994. }
  5995. #u39146 .text {
  5996. position:absolute;
  5997. align-self:flex-start;
  5998. padding:0px 0px 0px 0px;
  5999. box-sizing:border-box;
  6000. width:100%;
  6001. }
  6002. #u39146_text {
  6003. border-width:0px;
  6004. white-space:nowrap;
  6005. text-transform:none;
  6006. }
  6007. #u39147_div {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:0px;
  6011. top:0px;
  6012. width:50px;
  6013. height:22px;
  6014. background:inherit;
  6015. background-color:rgba(255, 255, 255, 1);
  6016. box-sizing:border-box;
  6017. border-width:1px;
  6018. border-style:solid;
  6019. border-color:rgba(127, 127, 127, 1);
  6020. border-radius:40px;
  6021. -moz-box-shadow:none;
  6022. -webkit-box-shadow:none;
  6023. box-shadow:none;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:11px;
  6028. }
  6029. #u39147 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:1252px;
  6033. top:354px;
  6034. width:50px;
  6035. height:22px;
  6036. display:flex;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:11px;
  6041. }
  6042. #u39147 .text {
  6043. position:absolute;
  6044. align-self:center;
  6045. padding:2px 2px 2px 2px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u39147_text {
  6050. border-width:0px;
  6051. word-wrap:break-word;
  6052. text-transform:none;
  6053. }
  6054. #u39148_div {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:47px;
  6060. height:40px;
  6061. background:inherit;
  6062. background-color:rgba(255, 255, 255, 0);
  6063. border:none;
  6064. border-left:0px;
  6065. border-top:0px;
  6066. border-right:0px;
  6067. border-radius:0px;
  6068. border-bottom-right-radius:0px;
  6069. border-bottom-left-radius:0px;
  6070. -moz-box-shadow:none;
  6071. -webkit-box-shadow:none;
  6072. box-shadow:none;
  6073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6074. font-weight:400;
  6075. font-style:normal;
  6076. font-size:10px;
  6077. color:#1890FF;
  6078. line-height:25px;
  6079. }
  6080. #u39148 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:1246px;
  6084. top:216px;
  6085. width:47px;
  6086. height:40px;
  6087. display:flex;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:10px;
  6092. color:#1890FF;
  6093. line-height:25px;
  6094. }
  6095. #u39148 .text {
  6096. position:absolute;
  6097. align-self:center;
  6098. padding:0px 0px 0px 0px;
  6099. box-sizing:border-box;
  6100. width:100%;
  6101. }
  6102. #u39148_text {
  6103. border-width:0px;
  6104. white-space:nowrap;
  6105. text-transform:none;
  6106. }
  6107. #u39149 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:0px;
  6113. height:0px;
  6114. }
  6115. #u39151_img {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:433px;
  6121. height:865px;
  6122. }
  6123. #u39151 {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:1361px;
  6127. top:0px;
  6128. width:433px;
  6129. height:865px;
  6130. display:flex;
  6131. }
  6132. #u39151 .text {
  6133. position:absolute;
  6134. align-self:center;
  6135. padding:2px 2px 2px 2px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u39151_text {
  6140. border-width:0px;
  6141. word-wrap:break-word;
  6142. text-transform:none;
  6143. visibility:hidden;
  6144. }
  6145. #u39152_div {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:375px;
  6151. height:40px;
  6152. background:inherit;
  6153. background-color:rgba(255, 255, 255, 1);
  6154. box-sizing:border-box;
  6155. border-width:1px;
  6156. border-style:solid;
  6157. border-color:rgba(215, 215, 215, 1);
  6158. border-left:0px;
  6159. border-top:0px;
  6160. border-right:0px;
  6161. border-radius:0px;
  6162. border-bottom-right-radius:0px;
  6163. border-bottom-left-radius:0px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. }
  6168. #u39152 {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:1390px;
  6172. top:67px;
  6173. width:375px;
  6174. height:40px;
  6175. display:flex;
  6176. }
  6177. #u39152 .text {
  6178. position:absolute;
  6179. align-self:center;
  6180. padding:2px 2px 2px 2px;
  6181. box-sizing:border-box;
  6182. width:100%;
  6183. }
  6184. #u39152_text {
  6185. border-width:0px;
  6186. word-wrap:break-word;
  6187. text-transform:none;
  6188. visibility:hidden;
  6189. }
  6190. #u39153 {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:0px;
  6196. height:0px;
  6197. }
  6198. #u39154_div {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:88px;
  6204. height:32px;
  6205. background:inherit;
  6206. background-color:rgba(255, 255, 255, 1);
  6207. box-sizing:border-box;
  6208. border-width:1px;
  6209. border-style:solid;
  6210. border-color:rgba(242, 242, 242, 1);
  6211. border-radius:33px;
  6212. -moz-box-shadow:none;
  6213. -webkit-box-shadow:none;
  6214. box-shadow:none;
  6215. }
  6216. #u39154 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:1670px;
  6220. top:71px;
  6221. width:88px;
  6222. height:32px;
  6223. display:flex;
  6224. }
  6225. #u39154 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 2px 2px 2px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u39154_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u39155 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:0px;
  6244. height:0px;
  6245. }
  6246. #u39156_img {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:18px;
  6252. height:18px;
  6253. }
  6254. #u39156 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:1733px;
  6258. top:78px;
  6259. width:18px;
  6260. height:18px;
  6261. display:flex;
  6262. }
  6263. #u39156 .text {
  6264. position:absolute;
  6265. align-self:center;
  6266. padding:2px 2px 2px 2px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u39156_text {
  6271. border-width:0px;
  6272. word-wrap:break-word;
  6273. text-transform:none;
  6274. visibility:hidden;
  6275. }
  6276. #u39157_img {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:6px;
  6282. height:6px;
  6283. }
  6284. #u39157 {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:1739px;
  6288. top:84px;
  6289. width:6px;
  6290. height:6px;
  6291. display:flex;
  6292. }
  6293. #u39157 .text {
  6294. position:absolute;
  6295. align-self:center;
  6296. padding:2px 2px 2px 2px;
  6297. box-sizing:border-box;
  6298. width:100%;
  6299. }
  6300. #u39157_text {
  6301. border-width:0px;
  6302. word-wrap:break-word;
  6303. text-transform:none;
  6304. visibility:hidden;
  6305. }
  6306. #u39158 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:0px;
  6312. height:0px;
  6313. }
  6314. #u39159_img {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:5px;
  6320. height:5px;
  6321. }
  6322. #u39159 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:1684px;
  6326. top:85px;
  6327. width:5px;
  6328. height:5px;
  6329. display:flex;
  6330. }
  6331. #u39159 .text {
  6332. position:absolute;
  6333. align-self:center;
  6334. padding:2px 2px 2px 2px;
  6335. box-sizing:border-box;
  6336. width:100%;
  6337. }
  6338. #u39159_text {
  6339. border-width:0px;
  6340. word-wrap:break-word;
  6341. text-transform:none;
  6342. visibility:hidden;
  6343. }
  6344. #u39160_img {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:5px;
  6350. height:5px;
  6351. }
  6352. #u39160 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:1700px;
  6356. top:85px;
  6357. width:5px;
  6358. height:5px;
  6359. display:flex;
  6360. }
  6361. #u39160 .text {
  6362. position:absolute;
  6363. align-self:center;
  6364. padding:2px 2px 2px 2px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u39160_text {
  6369. border-width:0px;
  6370. word-wrap:break-word;
  6371. text-transform:none;
  6372. visibility:hidden;
  6373. }
  6374. #u39161_img {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:7px;
  6380. height:7px;
  6381. }
  6382. #u39161 {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:1691px;
  6386. top:84px;
  6387. width:7px;
  6388. height:7px;
  6389. display:flex;
  6390. }
  6391. #u39161 .text {
  6392. position:absolute;
  6393. align-self:center;
  6394. padding:2px 2px 2px 2px;
  6395. box-sizing:border-box;
  6396. width:100%;
  6397. }
  6398. #u39161_text {
  6399. border-width:0px;
  6400. word-wrap:break-word;
  6401. text-transform:none;
  6402. visibility:hidden;
  6403. }
  6404. #u39162_img {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:19px;
  6410. height:2px;
  6411. }
  6412. #u39162 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:1708px;
  6416. top:87px;
  6417. width:18px;
  6418. height:1px;
  6419. display:flex;
  6420. -webkit-transform:rotate(90deg);
  6421. -moz-transform:rotate(90deg);
  6422. -ms-transform:rotate(90deg);
  6423. transform:rotate(90deg);
  6424. }
  6425. #u39162 .text {
  6426. position:absolute;
  6427. align-self:center;
  6428. padding:2px 2px 2px 2px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u39162_text {
  6433. border-width:0px;
  6434. word-wrap:break-word;
  6435. text-transform:none;
  6436. visibility:hidden;
  6437. }
  6438. #u39163_img {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:375px;
  6444. height:44px;
  6445. }
  6446. #u39163 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:1390px;
  6450. top:24px;
  6451. width:375px;
  6452. height:44px;
  6453. display:flex;
  6454. }
  6455. #u39163 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u39163_text {
  6463. border-width:0px;
  6464. word-wrap:break-word;
  6465. text-transform:none;
  6466. visibility:hidden;
  6467. }
  6468. #u39164_div {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:375px;
  6474. height:50px;
  6475. background:inherit;
  6476. background-color:rgba(255, 255, 255, 1);
  6477. box-sizing:border-box;
  6478. border-width:1px;
  6479. border-style:solid;
  6480. border-color:rgba(242, 242, 242, 1);
  6481. border-radius:26px;
  6482. border-top-left-radius:0px;
  6483. border-top-right-radius:0px;
  6484. -moz-box-shadow:none;
  6485. -webkit-box-shadow:none;
  6486. box-shadow:none;
  6487. }
  6488. #u39164 {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:1390px;
  6492. top:788px;
  6493. width:375px;
  6494. height:50px;
  6495. display:flex;
  6496. }
  6497. #u39164 .text {
  6498. position:absolute;
  6499. align-self:center;
  6500. padding:2px 2px 2px 2px;
  6501. box-sizing:border-box;
  6502. width:100%;
  6503. }
  6504. #u39164_text {
  6505. border-width:0px;
  6506. word-wrap:break-word;
  6507. text-transform:none;
  6508. visibility:hidden;
  6509. }
  6510. #u39165 {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:0px;
  6516. height:0px;
  6517. }
  6518. #u39166_img {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:0px;
  6522. top:0px;
  6523. width:24px;
  6524. height:24px;
  6525. }
  6526. #u39166 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:1430px;
  6530. top:792px;
  6531. width:24px;
  6532. height:24px;
  6533. display:flex;
  6534. font-size:8px;
  6535. }
  6536. #u39166 .text {
  6537. position:absolute;
  6538. align-self:center;
  6539. padding:2px 2px 2px 2px;
  6540. box-sizing:border-box;
  6541. width:100%;
  6542. }
  6543. #u39166_text {
  6544. border-width:0px;
  6545. word-wrap:break-word;
  6546. text-transform:none;
  6547. }
  6548. #u39167_div {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:25px;
  6554. height:17px;
  6555. background:inherit;
  6556. background-color:rgba(255, 255, 255, 0);
  6557. border:none;
  6558. border-radius:0px;
  6559. -moz-box-shadow:none;
  6560. -webkit-box-shadow:none;
  6561. box-shadow:none;
  6562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:12px;
  6566. }
  6567. #u39167 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:1430px;
  6571. top:817px;
  6572. width:25px;
  6573. height:17px;
  6574. display:flex;
  6575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:12px;
  6579. }
  6580. #u39167 .text {
  6581. position:absolute;
  6582. align-self:flex-start;
  6583. padding:0px 0px 0px 0px;
  6584. box-sizing:border-box;
  6585. width:100%;
  6586. }
  6587. #u39167_text {
  6588. border-width:0px;
  6589. white-space:nowrap;
  6590. text-transform:none;
  6591. }
  6592. #u39168 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:0px;
  6598. height:0px;
  6599. }
  6600. #u39169_img {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:24px;
  6606. height:24px;
  6607. }
  6608. #u39169 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:1700px;
  6612. top:794px;
  6613. width:24px;
  6614. height:24px;
  6615. display:flex;
  6616. font-size:8px;
  6617. }
  6618. #u39169 .text {
  6619. position:absolute;
  6620. align-self:center;
  6621. padding:2px 2px 2px 2px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u39169_text {
  6626. border-width:0px;
  6627. word-wrap:break-word;
  6628. text-transform:none;
  6629. }
  6630. #u39170_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:25px;
  6636. height:17px;
  6637. background:inherit;
  6638. background-color:rgba(255, 255, 255, 0);
  6639. border:none;
  6640. border-radius:0px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. font-size:12px;
  6648. }
  6649. #u39170 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:1700px;
  6653. top:819px;
  6654. width:25px;
  6655. height:17px;
  6656. display:flex;
  6657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. font-size:12px;
  6661. }
  6662. #u39170 .text {
  6663. position:absolute;
  6664. align-self:flex-start;
  6665. padding:0px 0px 0px 0px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u39170_text {
  6670. border-width:0px;
  6671. white-space:nowrap;
  6672. text-transform:none;
  6673. }
  6674. #u39171_div {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:375px;
  6680. height:681px;
  6681. background:inherit;
  6682. background-color:rgba(242, 242, 242, 0.462745098039216);
  6683. border:none;
  6684. border-radius:0px;
  6685. -moz-box-shadow:none;
  6686. -webkit-box-shadow:none;
  6687. box-shadow:none;
  6688. }
  6689. #u39171 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:1390px;
  6693. top:107px;
  6694. width:375px;
  6695. height:681px;
  6696. display:flex;
  6697. }
  6698. #u39171 .text {
  6699. position:absolute;
  6700. align-self:center;
  6701. padding:2px 2px 2px 2px;
  6702. box-sizing:border-box;
  6703. width:100%;
  6704. }
  6705. #u39171_text {
  6706. border-width:0px;
  6707. word-wrap:break-word;
  6708. text-transform:none;
  6709. visibility:hidden;
  6710. }
  6711. #u39172 {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:0px;
  6717. height:0px;
  6718. }
  6719. #u39173_img {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:24px;
  6725. height:24px;
  6726. }
  6727. #u39173 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:1612px;
  6731. top:792px;
  6732. width:24px;
  6733. height:24px;
  6734. display:flex;
  6735. font-size:8px;
  6736. }
  6737. #u39173 .text {
  6738. position:absolute;
  6739. align-self:center;
  6740. padding:2px 2px 2px 2px;
  6741. box-sizing:border-box;
  6742. width:100%;
  6743. }
  6744. #u39173_text {
  6745. border-width:0px;
  6746. word-wrap:break-word;
  6747. text-transform:none;
  6748. }
  6749. #u39174_div {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:37px;
  6755. height:17px;
  6756. background:inherit;
  6757. background-color:rgba(255, 255, 255, 0);
  6758. border:none;
  6759. border-radius:0px;
  6760. -moz-box-shadow:none;
  6761. -webkit-box-shadow:none;
  6762. box-shadow:none;
  6763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:12px;
  6767. }
  6768. #u39174 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:1606px;
  6772. top:817px;
  6773. width:37px;
  6774. height:17px;
  6775. display:flex;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:12px;
  6780. }
  6781. #u39174 .text {
  6782. position:absolute;
  6783. align-self:flex-start;
  6784. padding:0px 0px 0px 0px;
  6785. box-sizing:border-box;
  6786. width:100%;
  6787. }
  6788. #u39174_text {
  6789. border-width:0px;
  6790. white-space:nowrap;
  6791. text-transform:none;
  6792. }
  6793. #u39175 {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:0px;
  6799. height:0px;
  6800. }
  6801. #u39176_img {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:24px;
  6807. height:24px;
  6808. }
  6809. #u39176 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:1518px;
  6813. top:792px;
  6814. width:24px;
  6815. height:24px;
  6816. display:flex;
  6817. font-size:8px;
  6818. }
  6819. #u39176 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 2px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u39176_text {
  6827. border-width:0px;
  6828. word-wrap:break-word;
  6829. text-transform:none;
  6830. }
  6831. #u39177_div {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:37px;
  6837. height:17px;
  6838. background:inherit;
  6839. background-color:rgba(255, 255, 255, 0);
  6840. border:none;
  6841. border-radius:0px;
  6842. -moz-box-shadow:none;
  6843. -webkit-box-shadow:none;
  6844. box-shadow:none;
  6845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:12px;
  6849. }
  6850. #u39177 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:1512px;
  6854. top:817px;
  6855. width:37px;
  6856. height:17px;
  6857. display:flex;
  6858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:12px;
  6862. }
  6863. #u39177 .text {
  6864. position:absolute;
  6865. align-self:flex-start;
  6866. padding:0px 0px 0px 0px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u39177_text {
  6871. border-width:0px;
  6872. white-space:nowrap;
  6873. text-transform:none;
  6874. }
  6875. #u39178_div {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:0px;
  6879. top:0px;
  6880. width:375px;
  6881. height:735px;
  6882. background:inherit;
  6883. background-color:rgba(242, 242, 242, 1);
  6884. border:none;
  6885. border-top:0px;
  6886. border-radius:25px;
  6887. border-top-left-radius:0px;
  6888. border-top-right-radius:0px;
  6889. -moz-box-shadow:none;
  6890. -webkit-box-shadow:none;
  6891. box-shadow:none;
  6892. }
  6893. #u39178 {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:1390px;
  6897. top:105px;
  6898. width:375px;
  6899. height:735px;
  6900. display:flex;
  6901. }
  6902. #u39178 .text {
  6903. position:absolute;
  6904. align-self:center;
  6905. padding:2px 2px 2px 2px;
  6906. box-sizing:border-box;
  6907. width:100%;
  6908. }
  6909. #u39178_text {
  6910. border-width:0px;
  6911. word-wrap:break-word;
  6912. text-transform:none;
  6913. visibility:hidden;
  6914. }
  6915. #u39179_div {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:85px;
  6921. height:30px;
  6922. background:inherit;
  6923. background-color:rgba(255, 255, 255, 0);
  6924. border:none;
  6925. border-left:0px;
  6926. border-top:0px;
  6927. border-right:0px;
  6928. border-radius:0px;
  6929. border-bottom-right-radius:0px;
  6930. border-bottom-left-radius:0px;
  6931. -moz-box-shadow:none;
  6932. -webkit-box-shadow:none;
  6933. box-shadow:none;
  6934. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6935. font-weight:500;
  6936. font-style:normal;
  6937. font-size:14px;
  6938. line-height:30px;
  6939. }
  6940. #u39179 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:1435px;
  6944. top:73px;
  6945. width:85px;
  6946. height:30px;
  6947. display:flex;
  6948. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6949. font-weight:500;
  6950. font-style:normal;
  6951. font-size:14px;
  6952. line-height:30px;
  6953. }
  6954. #u39179 .text {
  6955. position:absolute;
  6956. align-self:flex-start;
  6957. padding:0px 0px 0px 0px;
  6958. box-sizing:border-box;
  6959. width:100%;
  6960. }
  6961. #u39179_text {
  6962. border-width:0px;
  6963. white-space:nowrap;
  6964. text-transform:none;
  6965. }
  6966. #u39180 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:0px;
  6972. height:0px;
  6973. }
  6974. #u39181_img {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:11px;
  6980. height:18px;
  6981. }
  6982. #u39181 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:1403px;
  6986. top:79px;
  6987. width:11px;
  6988. height:18px;
  6989. display:flex;
  6990. }
  6991. #u39181 .text {
  6992. position:absolute;
  6993. align-self:center;
  6994. padding:2px 2px 2px 2px;
  6995. box-sizing:border-box;
  6996. width:100%;
  6997. }
  6998. #u39181_text {
  6999. border-width:0px;
  7000. word-wrap:break-word;
  7001. text-transform:none;
  7002. visibility:hidden;
  7003. }
  7004. #u39182 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:0px;
  7008. top:0px;
  7009. width:0px;
  7010. height:0px;
  7011. }
  7012. #u39183_div {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:0px;
  7016. top:0px;
  7017. width:375px;
  7018. height:80px;
  7019. background:inherit;
  7020. background-color:rgba(255, 255, 255, 1);
  7021. border:none;
  7022. border-left:0px;
  7023. border-top:0px;
  7024. border-right:0px;
  7025. border-radius:0px;
  7026. border-bottom-right-radius:0px;
  7027. border-bottom-left-radius:0px;
  7028. -moz-box-shadow:none;
  7029. -webkit-box-shadow:none;
  7030. box-shadow:none;
  7031. }
  7032. #u39183 {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:1390px;
  7036. top:105px;
  7037. width:375px;
  7038. height:80px;
  7039. display:flex;
  7040. }
  7041. #u39183 .text {
  7042. position:absolute;
  7043. align-self:center;
  7044. padding:2px 2px 2px 2px;
  7045. box-sizing:border-box;
  7046. width:100%;
  7047. }
  7048. #u39183_text {
  7049. border-width:0px;
  7050. word-wrap:break-word;
  7051. text-transform:none;
  7052. visibility:hidden;
  7053. }
  7054. #u39184_div {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:0px;
  7058. top:0px;
  7059. width:129px;
  7060. height:30px;
  7061. background:inherit;
  7062. background-color:rgba(255, 255, 255, 0);
  7063. border:none;
  7064. border-left:0px;
  7065. border-top:0px;
  7066. border-right:0px;
  7067. border-radius:0px;
  7068. border-bottom-right-radius:0px;
  7069. border-bottom-left-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:16px;
  7077. line-height:30px;
  7078. }
  7079. #u39184 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:1417px;
  7083. top:144px;
  7084. width:129px;
  7085. height:30px;
  7086. display:flex;
  7087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:16px;
  7091. line-height:30px;
  7092. }
  7093. #u39184 .text {
  7094. position:absolute;
  7095. align-self:flex-start;
  7096. padding:0px 0px 0px 0px;
  7097. box-sizing:border-box;
  7098. width:100%;
  7099. }
  7100. #u39184_text {
  7101. border-width:0px;
  7102. white-space:nowrap;
  7103. text-transform:none;
  7104. }
  7105. #u39185_div {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:0px;
  7109. top:0px;
  7110. width:49px;
  7111. height:25px;
  7112. background:inherit;
  7113. background-color:rgba(255, 255, 255, 0);
  7114. border:none;
  7115. border-left:0px;
  7116. border-top:0px;
  7117. border-right:0px;
  7118. border-radius:0px;
  7119. border-bottom-right-radius:0px;
  7120. border-bottom-left-radius:0px;
  7121. -moz-box-shadow:none;
  7122. -webkit-box-shadow:none;
  7123. box-shadow:none;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:12px;
  7128. color:#7F7F7F;
  7129. line-height:25px;
  7130. }
  7131. #u39185 {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:1417px;
  7135. top:119px;
  7136. width:49px;
  7137. height:25px;
  7138. display:flex;
  7139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7140. font-weight:400;
  7141. font-style:normal;
  7142. font-size:12px;
  7143. color:#7F7F7F;
  7144. line-height:25px;
  7145. }
  7146. #u39185 .text {
  7147. position:absolute;
  7148. align-self:flex-start;
  7149. padding:0px 0px 0px 0px;
  7150. box-sizing:border-box;
  7151. width:100%;
  7152. }
  7153. #u39185_text {
  7154. border-width:0px;
  7155. white-space:nowrap;
  7156. text-transform:none;
  7157. }
  7158. #u39186 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:0px;
  7164. height:0px;
  7165. }
  7166. #u39187_img {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:7px;
  7172. height:11px;
  7173. }
  7174. #u39187 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:1744px;
  7178. top:156px;
  7179. width:7px;
  7180. height:11px;
  7181. display:flex;
  7182. -webkit-transform:rotate(180deg);
  7183. -moz-transform:rotate(180deg);
  7184. -ms-transform:rotate(180deg);
  7185. transform:rotate(180deg);
  7186. }
  7187. #u39187 .text {
  7188. position:absolute;
  7189. align-self:center;
  7190. padding:2px 2px 2px 2px;
  7191. box-sizing:border-box;
  7192. width:100%;
  7193. }
  7194. #u39187_text {
  7195. border-width:0px;
  7196. word-wrap:break-word;
  7197. text-transform:none;
  7198. visibility:hidden;
  7199. }
  7200. #u39188 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:0px;
  7206. height:0px;
  7207. }
  7208. #u39189_div {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:375px;
  7214. height:80px;
  7215. background:inherit;
  7216. background-color:rgba(255, 255, 255, 1);
  7217. border:none;
  7218. border-left:0px;
  7219. border-top:0px;
  7220. border-right:0px;
  7221. border-radius:0px;
  7222. border-bottom-right-radius:0px;
  7223. border-bottom-left-radius:0px;
  7224. -moz-box-shadow:none;
  7225. -webkit-box-shadow:none;
  7226. box-shadow:none;
  7227. }
  7228. #u39189 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:1390px;
  7232. top:186px;
  7233. width:375px;
  7234. height:80px;
  7235. display:flex;
  7236. }
  7237. #u39189 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:2px 2px 2px 2px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u39189_text {
  7245. border-width:0px;
  7246. word-wrap:break-word;
  7247. text-transform:none;
  7248. visibility:hidden;
  7249. }
  7250. #u39190_div {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:49px;
  7256. height:30px;
  7257. background:inherit;
  7258. background-color:rgba(255, 255, 255, 0);
  7259. border:none;
  7260. border-left:0px;
  7261. border-top:0px;
  7262. border-right:0px;
  7263. border-radius:0px;
  7264. border-bottom-right-radius:0px;
  7265. border-bottom-left-radius:0px;
  7266. -moz-box-shadow:none;
  7267. -webkit-box-shadow:none;
  7268. box-shadow:none;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:16px;
  7273. line-height:30px;
  7274. }
  7275. #u39190 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:1417px;
  7279. top:225px;
  7280. width:49px;
  7281. height:30px;
  7282. display:flex;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:16px;
  7287. line-height:30px;
  7288. }
  7289. #u39190 .text {
  7290. position:absolute;
  7291. align-self:flex-start;
  7292. padding:0px 0px 0px 0px;
  7293. box-sizing:border-box;
  7294. width:100%;
  7295. }
  7296. #u39190_text {
  7297. border-width:0px;
  7298. white-space:nowrap;
  7299. text-transform:none;
  7300. }
  7301. #u39191_div {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:49px;
  7307. height:25px;
  7308. background:inherit;
  7309. background-color:rgba(255, 255, 255, 0);
  7310. border:none;
  7311. border-left:0px;
  7312. border-top:0px;
  7313. border-right:0px;
  7314. border-radius:0px;
  7315. border-bottom-right-radius:0px;
  7316. border-bottom-left-radius:0px;
  7317. -moz-box-shadow:none;
  7318. -webkit-box-shadow:none;
  7319. box-shadow:none;
  7320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7321. font-weight:400;
  7322. font-style:normal;
  7323. font-size:12px;
  7324. color:#7F7F7F;
  7325. line-height:25px;
  7326. }
  7327. #u39191 {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:1417px;
  7331. top:200px;
  7332. width:49px;
  7333. height:25px;
  7334. display:flex;
  7335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7336. font-weight:400;
  7337. font-style:normal;
  7338. font-size:12px;
  7339. color:#7F7F7F;
  7340. line-height:25px;
  7341. }
  7342. #u39191 .text {
  7343. position:absolute;
  7344. align-self:flex-start;
  7345. padding:0px 0px 0px 0px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u39191_text {
  7350. border-width:0px;
  7351. white-space:nowrap;
  7352. text-transform:none;
  7353. }
  7354. #u39192 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:0px;
  7358. top:0px;
  7359. width:0px;
  7360. height:0px;
  7361. }
  7362. #u39193_img {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:0px;
  7366. top:0px;
  7367. width:7px;
  7368. height:11px;
  7369. }
  7370. #u39193 {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:1744px;
  7374. top:236px;
  7375. width:7px;
  7376. height:11px;
  7377. display:flex;
  7378. -webkit-transform:rotate(180deg);
  7379. -moz-transform:rotate(180deg);
  7380. -ms-transform:rotate(180deg);
  7381. transform:rotate(180deg);
  7382. }
  7383. #u39193 .text {
  7384. position:absolute;
  7385. align-self:center;
  7386. padding:2px 2px 2px 2px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u39193_text {
  7391. border-width:0px;
  7392. word-wrap:break-word;
  7393. text-transform:none;
  7394. visibility:hidden;
  7395. }
  7396. #u39194_div {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:160px;
  7402. height:40px;
  7403. background:inherit;
  7404. background-color:rgba(255, 255, 255, 1);
  7405. box-sizing:border-box;
  7406. border-width:1px;
  7407. border-style:solid;
  7408. border-color:rgba(24, 144, 255, 1);
  7409. border-radius:45px;
  7410. -moz-box-shadow:none;
  7411. -webkit-box-shadow:none;
  7412. box-shadow:none;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:14px;
  7417. color:#1890FF;
  7418. }
  7419. #u39194 {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:1411px;
  7423. top:281px;
  7424. width:160px;
  7425. height:40px;
  7426. display:flex;
  7427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:14px;
  7431. color:#1890FF;
  7432. }
  7433. #u39194 .text {
  7434. position:absolute;
  7435. align-self:center;
  7436. padding:2px 2px 2px 2px;
  7437. box-sizing:border-box;
  7438. width:100%;
  7439. }
  7440. #u39194_text {
  7441. border-width:0px;
  7442. word-wrap:break-word;
  7443. text-transform:none;
  7444. }
  7445. #u39195_div {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:160px;
  7451. height:40px;
  7452. background:inherit;
  7453. background-color:rgba(0, 137, 254, 1);
  7454. border:none;
  7455. border-radius:45px;
  7456. -moz-box-shadow:none;
  7457. -webkit-box-shadow:none;
  7458. box-shadow:none;
  7459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. font-size:14px;
  7463. color:#FFFFFF;
  7464. }
  7465. #u39195 {
  7466. border-width:0px;
  7467. position:absolute;
  7468. left:1591px;
  7469. top:281px;
  7470. width:160px;
  7471. height:40px;
  7472. display:flex;
  7473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7474. font-weight:400;
  7475. font-style:normal;
  7476. font-size:14px;
  7477. color:#FFFFFF;
  7478. }
  7479. #u39195 .text {
  7480. position:absolute;
  7481. align-self:center;
  7482. padding:2px 2px 2px 2px;
  7483. box-sizing:border-box;
  7484. width:100%;
  7485. }
  7486. #u39195_text {
  7487. border-width:0px;
  7488. word-wrap:break-word;
  7489. text-transform:none;
  7490. }
  7491. #u39196_div {
  7492. border-width:0px;
  7493. position:absolute;
  7494. left:0px;
  7495. top:0px;
  7496. width:334px;
  7497. height:100px;
  7498. background:inherit;
  7499. background-color:rgba(255, 255, 255, 0);
  7500. border:none;
  7501. border-left:0px;
  7502. border-top:0px;
  7503. border-right:0px;
  7504. border-radius:0px;
  7505. border-bottom-right-radius:0px;
  7506. border-bottom-left-radius:0px;
  7507. -moz-box-shadow:none;
  7508. -webkit-box-shadow:none;
  7509. box-shadow:none;
  7510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7511. font-weight:400;
  7512. font-style:normal;
  7513. font-size:12px;
  7514. color:#D9001B;
  7515. line-height:25px;
  7516. }
  7517. #u39196 {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:1409px;
  7521. top:333px;
  7522. width:334px;
  7523. height:100px;
  7524. display:flex;
  7525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7526. font-weight:400;
  7527. font-style:normal;
  7528. font-size:12px;
  7529. color:#D9001B;
  7530. line-height:25px;
  7531. }
  7532. #u39196 .text {
  7533. position:absolute;
  7534. align-self:flex-start;
  7535. padding:0px 0px 0px 0px;
  7536. box-sizing:border-box;
  7537. width:100%;
  7538. }
  7539. #u39196_text {
  7540. border-width:0px;
  7541. word-wrap:break-word;
  7542. text-transform:none;
  7543. }
  7544. #u39197_div {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:299px;
  7550. height:50px;
  7551. background:inherit;
  7552. background-color:rgba(255, 255, 255, 0);
  7553. border:none;
  7554. border-left:0px;
  7555. border-top:0px;
  7556. border-right:0px;
  7557. border-radius:0px;
  7558. border-bottom-right-radius:0px;
  7559. border-bottom-left-radius:0px;
  7560. -moz-box-shadow:none;
  7561. -webkit-box-shadow:none;
  7562. box-shadow:none;
  7563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7564. font-weight:400;
  7565. font-style:normal;
  7566. font-size:12px;
  7567. color:#D9001B;
  7568. line-height:25px;
  7569. }
  7570. #u39197 {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:512px;
  7574. top:582px;
  7575. width:299px;
  7576. height:50px;
  7577. display:flex;
  7578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7579. font-weight:400;
  7580. font-style:normal;
  7581. font-size:12px;
  7582. color:#D9001B;
  7583. line-height:25px;
  7584. }
  7585. #u39197 .text {
  7586. position:absolute;
  7587. align-self:flex-start;
  7588. padding:0px 0px 0px 0px;
  7589. box-sizing:border-box;
  7590. width:100%;
  7591. }
  7592. #u39197_text {
  7593. border-width:0px;
  7594. word-wrap:break-word;
  7595. text-transform:none;
  7596. }