styles.css 180 KB

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