styles.css 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2101px;
  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. #u147903_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u147903 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u147903 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u147903_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u147904_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u147904 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u147904 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u147904_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u147905 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u147906_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u147906 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u147906 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u147906_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u147907 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u147908_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u147908 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u147908 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u147908_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u147909_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u147909 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u147909 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u147909_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u147910 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u147911_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u147911 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u147911 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u147911_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u147912_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u147912 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u147912 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u147912_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u147913_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u147913 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u147913 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u147913_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u147914_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u147914 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u147914 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u147914_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u147915_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u147915 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u147915 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u147915_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u147916_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u147916 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u147916 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u147916_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u147917 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u147918_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u147918 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u147918 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u147918_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u147919_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u147919 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u147919 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u147919_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u147920 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u147921_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u147921 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u147921 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u147921_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u147922_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u147922 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u147922 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u147922_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u147923_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u147923 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u147923 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u147923_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u147924 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u147925_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u147925 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u147925 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u147925_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u147926_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u147926 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u147926 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u147926_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u147927 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u147928_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u147928 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u147928 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u147928_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u147929_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u147929 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u147929 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u147929_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u147930_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u147930 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u147930 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u147930_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u147931 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u147932_div {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:375px;
  833. height:773px;
  834. background:inherit;
  835. background-color:rgba(51, 51, 51, 0.498039215686275);
  836. border:none;
  837. border-top:0px;
  838. border-radius:28px;
  839. border-top-left-radius:0px;
  840. border-top-right-radius:0px;
  841. -moz-box-shadow:none;
  842. -webkit-box-shadow:none;
  843. box-shadow:none;
  844. }
  845. #u147932 {
  846. border-width:0px;
  847. position:absolute;
  848. left:1321px;
  849. top:71px;
  850. width:375px;
  851. height:773px;
  852. display:flex;
  853. }
  854. #u147932 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 2px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u147932_text {
  862. border-width:0px;
  863. word-wrap:break-word;
  864. text-transform:none;
  865. visibility:hidden;
  866. }
  867. #u147933_div {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:375px;
  873. height:282px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 0.996078431372549);
  876. border:none;
  877. border-top:0px;
  878. border-radius:28px;
  879. border-top-left-radius:0px;
  880. border-top-right-radius:0px;
  881. -moz-box-shadow:none;
  882. -webkit-box-shadow:none;
  883. box-shadow:none;
  884. }
  885. #u147933 {
  886. border-width:0px;
  887. position:absolute;
  888. left:1321px;
  889. top:562px;
  890. width:375px;
  891. height:282px;
  892. display:flex;
  893. }
  894. #u147933 .text {
  895. position:absolute;
  896. align-self:center;
  897. padding:2px 2px 2px 2px;
  898. box-sizing:border-box;
  899. width:100%;
  900. }
  901. #u147933_text {
  902. border-width:0px;
  903. word-wrap:break-word;
  904. text-transform:none;
  905. visibility:hidden;
  906. }
  907. #u147934_div {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:37px;
  913. height:30px;
  914. background:inherit;
  915. background-color:rgba(255, 255, 255, 0);
  916. border:none;
  917. border-left:0px;
  918. border-top:0px;
  919. border-right:0px;
  920. border-radius:0px;
  921. border-bottom-right-radius:0px;
  922. border-bottom-left-radius:0px;
  923. -moz-box-shadow:none;
  924. -webkit-box-shadow:none;
  925. box-shadow:none;
  926. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  927. font-weight:500;
  928. font-style:normal;
  929. font-size:18px;
  930. line-height:30px;
  931. }
  932. #u147934 {
  933. border-width:0px;
  934. position:absolute;
  935. left:1341px;
  936. top:575px;
  937. width:37px;
  938. height:30px;
  939. display:flex;
  940. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  941. font-weight:500;
  942. font-style:normal;
  943. font-size:18px;
  944. line-height:30px;
  945. }
  946. #u147934 .text {
  947. position:absolute;
  948. align-self:flex-start;
  949. padding:0px 0px 0px 0px;
  950. box-sizing:border-box;
  951. width:100%;
  952. }
  953. #u147934_text {
  954. border-width:0px;
  955. white-space:nowrap;
  956. text-transform:none;
  957. }
  958. #u147935 {
  959. border-width:0px;
  960. position:absolute;
  961. left:0px;
  962. top:0px;
  963. width:0px;
  964. height:0px;
  965. }
  966. #u147936_div {
  967. border-width:0px;
  968. position:absolute;
  969. left:0px;
  970. top:0px;
  971. width:375px;
  972. height:60px;
  973. background:inherit;
  974. background-color:rgba(255, 255, 255, 1);
  975. box-sizing:border-box;
  976. border-width:1px;
  977. border-style:solid;
  978. border-color:rgba(242, 242, 242, 1);
  979. border-radius:20px;
  980. border-top-left-radius:0px;
  981. border-top-right-radius:0px;
  982. -moz-box-shadow:none;
  983. -webkit-box-shadow:none;
  984. box-shadow:none;
  985. }
  986. #u147936 {
  987. border-width:0px;
  988. position:absolute;
  989. left:1321px;
  990. top:784px;
  991. width:375px;
  992. height:60px;
  993. display:flex;
  994. }
  995. #u147936 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u147936_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u147937_div {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:160px;
  1014. height:40px;
  1015. background:inherit;
  1016. background-color:rgba(0, 137, 254, 1);
  1017. border:none;
  1018. border-radius:63px;
  1019. -moz-box-shadow:none;
  1020. -webkit-box-shadow:none;
  1021. box-shadow:none;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:14px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u147937 {
  1029. border-width:0px;
  1030. position:absolute;
  1031. left:1516px;
  1032. top:794px;
  1033. width:160px;
  1034. height:40px;
  1035. display:flex;
  1036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1037. font-weight:400;
  1038. font-style:normal;
  1039. font-size:14px;
  1040. color:#FFFFFF;
  1041. }
  1042. #u147937 .text {
  1043. position:absolute;
  1044. align-self:center;
  1045. padding:2px 2px 2px 2px;
  1046. box-sizing:border-box;
  1047. width:100%;
  1048. }
  1049. #u147937_text {
  1050. border-width:0px;
  1051. word-wrap:break-word;
  1052. text-transform:none;
  1053. }
  1054. #u147938_div {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:160px;
  1060. height:40px;
  1061. background:inherit;
  1062. background-color:rgba(255, 255, 255, 1);
  1063. box-sizing:border-box;
  1064. border-width:1px;
  1065. border-style:solid;
  1066. border-color:rgba(121, 121, 121, 1);
  1067. border-radius:63px;
  1068. -moz-box-shadow:none;
  1069. -webkit-box-shadow:none;
  1070. box-shadow:none;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:14px;
  1075. }
  1076. #u147938 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:1341px;
  1080. top:794px;
  1081. width:160px;
  1082. height:40px;
  1083. display:flex;
  1084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1085. font-weight:400;
  1086. font-style:normal;
  1087. font-size:14px;
  1088. }
  1089. #u147938 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u147938_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. }
  1101. #u147939_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:340px;
  1107. height:92px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 1);
  1110. box-sizing:border-box;
  1111. border-width:1px;
  1112. border-style:solid;
  1113. border-color:rgba(215, 215, 215, 1);
  1114. border-radius:4px;
  1115. -moz-box-shadow:none;
  1116. -webkit-box-shadow:none;
  1117. box-shadow:none;
  1118. }
  1119. #u147939 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:1341px;
  1123. top:615px;
  1124. width:340px;
  1125. height:92px;
  1126. display:flex;
  1127. }
  1128. #u147939 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:2px 2px 2px 2px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u147939_text {
  1136. border-width:0px;
  1137. word-wrap:break-word;
  1138. text-transform:none;
  1139. visibility:hidden;
  1140. }
  1141. #u147940_div {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:127px;
  1147. height:30px;
  1148. background:inherit;
  1149. background-color:rgba(255, 255, 255, 0);
  1150. border:none;
  1151. border-left:0px;
  1152. border-top:0px;
  1153. border-right:0px;
  1154. border-radius:0px;
  1155. border-bottom-right-radius:0px;
  1156. border-bottom-left-radius:0px;
  1157. -moz-box-shadow:none;
  1158. -webkit-box-shadow:none;
  1159. box-shadow:none;
  1160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1161. font-weight:400;
  1162. font-style:normal;
  1163. font-size:14px;
  1164. color:#AAAAAA;
  1165. line-height:30px;
  1166. }
  1167. #u147940 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:1350px;
  1171. top:623px;
  1172. width:127px;
  1173. height:30px;
  1174. display:flex;
  1175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1176. font-weight:400;
  1177. font-style:normal;
  1178. font-size:14px;
  1179. color:#AAAAAA;
  1180. line-height:30px;
  1181. }
  1182. #u147940 .text {
  1183. position:absolute;
  1184. align-self:center;
  1185. padding:0px 0px 0px 0px;
  1186. box-sizing:border-box;
  1187. width:100%;
  1188. }
  1189. #u147940_text {
  1190. border-width:0px;
  1191. white-space:nowrap;
  1192. text-transform:none;
  1193. }
  1194. #u147941_div {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:0px;
  1198. top:0px;
  1199. width:85px;
  1200. height:30px;
  1201. background:inherit;
  1202. background-color:rgba(255, 255, 255, 0);
  1203. border:none;
  1204. border-left:0px;
  1205. border-top:0px;
  1206. border-right:0px;
  1207. border-radius:0px;
  1208. border-bottom-right-radius:0px;
  1209. border-bottom-left-radius:0px;
  1210. -moz-box-shadow:none;
  1211. -webkit-box-shadow:none;
  1212. box-shadow:none;
  1213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1214. font-weight:400;
  1215. font-style:normal;
  1216. font-size:14px;
  1217. line-height:30px;
  1218. }
  1219. #u147941 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:1539px;
  1223. top:717px;
  1224. width:85px;
  1225. height:30px;
  1226. display:flex;
  1227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1228. font-weight:400;
  1229. font-style:normal;
  1230. font-size:14px;
  1231. line-height:30px;
  1232. }
  1233. #u147941 .text {
  1234. position:absolute;
  1235. align-self:flex-start;
  1236. padding:0px 0px 0px 0px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u147941_text {
  1241. border-width:0px;
  1242. white-space:nowrap;
  1243. text-transform:none;
  1244. }
  1245. #u147942_img {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:50px;
  1251. height:31px;
  1252. }
  1253. #u147942 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:1631px;
  1257. top:717px;
  1258. width:50px;
  1259. height:31px;
  1260. display:flex;
  1261. }
  1262. #u147942 .text {
  1263. position:absolute;
  1264. align-self:center;
  1265. padding:2px 2px 2px 2px;
  1266. box-sizing:border-box;
  1267. width:100%;
  1268. }
  1269. #u147942_text {
  1270. border-width:0px;
  1271. word-wrap:break-word;
  1272. text-transform:none;
  1273. visibility:hidden;
  1274. }
  1275. #u147943 {
  1276. border-width:0px;
  1277. position:absolute;
  1278. left:0px;
  1279. top:0px;
  1280. width:0px;
  1281. height:0px;
  1282. }
  1283. #u147944_div {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:0px;
  1287. top:0px;
  1288. width:375px;
  1289. height:773px;
  1290. background:inherit;
  1291. background-color:rgba(51, 51, 51, 0.498039215686275);
  1292. border:none;
  1293. border-top:0px;
  1294. border-radius:28px;
  1295. border-top-left-radius:0px;
  1296. border-top-right-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u147944 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:916px;
  1305. top:74px;
  1306. width:375px;
  1307. height:773px;
  1308. display:flex;
  1309. }
  1310. #u147944 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 2px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u147944_text {
  1318. border-width:0px;
  1319. word-wrap:break-word;
  1320. text-transform:none;
  1321. visibility:hidden;
  1322. }
  1323. #u147945_div {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:375px;
  1329. height:282px;
  1330. background:inherit;
  1331. background-color:rgba(255, 255, 255, 0.996078431372549);
  1332. border:none;
  1333. border-top:0px;
  1334. border-radius:28px;
  1335. border-top-left-radius:0px;
  1336. border-top-right-radius:0px;
  1337. -moz-box-shadow:none;
  1338. -webkit-box-shadow:none;
  1339. box-shadow:none;
  1340. }
  1341. #u147945 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:916px;
  1345. top:565px;
  1346. width:375px;
  1347. height:282px;
  1348. display:flex;
  1349. }
  1350. #u147945 .text {
  1351. position:absolute;
  1352. align-self:center;
  1353. padding:2px 2px 2px 2px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u147945_text {
  1358. border-width:0px;
  1359. word-wrap:break-word;
  1360. text-transform:none;
  1361. visibility:hidden;
  1362. }
  1363. #u147946_div {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:37px;
  1369. height:30px;
  1370. background:inherit;
  1371. background-color:rgba(255, 255, 255, 0);
  1372. border:none;
  1373. border-left:0px;
  1374. border-top:0px;
  1375. border-right:0px;
  1376. border-radius:0px;
  1377. border-bottom-right-radius:0px;
  1378. border-bottom-left-radius:0px;
  1379. -moz-box-shadow:none;
  1380. -webkit-box-shadow:none;
  1381. box-shadow:none;
  1382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1383. font-weight:500;
  1384. font-style:normal;
  1385. font-size:18px;
  1386. line-height:30px;
  1387. }
  1388. #u147946 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:936px;
  1392. top:578px;
  1393. width:37px;
  1394. height:30px;
  1395. display:flex;
  1396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1397. font-weight:500;
  1398. font-style:normal;
  1399. font-size:18px;
  1400. line-height:30px;
  1401. }
  1402. #u147946 .text {
  1403. position:absolute;
  1404. align-self:flex-start;
  1405. padding:0px 0px 0px 0px;
  1406. box-sizing:border-box;
  1407. width:100%;
  1408. }
  1409. #u147946_text {
  1410. border-width:0px;
  1411. white-space:nowrap;
  1412. text-transform:none;
  1413. }
  1414. #u147947 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:0px;
  1420. height:0px;
  1421. }
  1422. #u147948_div {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:375px;
  1428. height:60px;
  1429. background:inherit;
  1430. background-color:rgba(255, 255, 255, 1);
  1431. box-sizing:border-box;
  1432. border-width:1px;
  1433. border-style:solid;
  1434. border-color:rgba(242, 242, 242, 1);
  1435. border-radius:20px;
  1436. border-top-left-radius:0px;
  1437. border-top-right-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. }
  1442. #u147948 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:916px;
  1446. top:787px;
  1447. width:375px;
  1448. height:60px;
  1449. display:flex;
  1450. }
  1451. #u147948 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 2px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u147948_text {
  1459. border-width:0px;
  1460. word-wrap:break-word;
  1461. text-transform:none;
  1462. visibility:hidden;
  1463. }
  1464. #u147949_div {
  1465. border-width:0px;
  1466. position:absolute;
  1467. left:0px;
  1468. top:0px;
  1469. width:160px;
  1470. height:40px;
  1471. background:inherit;
  1472. background-color:rgba(0, 137, 254, 1);
  1473. border:none;
  1474. border-radius:63px;
  1475. -moz-box-shadow:none;
  1476. -webkit-box-shadow:none;
  1477. box-shadow:none;
  1478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1479. font-weight:400;
  1480. font-style:normal;
  1481. font-size:14px;
  1482. color:#FFFFFF;
  1483. }
  1484. #u147949 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:1111px;
  1488. top:797px;
  1489. width:160px;
  1490. height:40px;
  1491. display:flex;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:14px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u147949 .text {
  1499. position:absolute;
  1500. align-self:center;
  1501. padding:2px 2px 2px 2px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u147949_text {
  1506. border-width:0px;
  1507. word-wrap:break-word;
  1508. text-transform:none;
  1509. }
  1510. #u147950_div {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:0px;
  1514. top:0px;
  1515. width:160px;
  1516. height:40px;
  1517. background:inherit;
  1518. background-color:rgba(255, 255, 255, 1);
  1519. box-sizing:border-box;
  1520. border-width:1px;
  1521. border-style:solid;
  1522. border-color:rgba(121, 121, 121, 1);
  1523. border-radius:63px;
  1524. -moz-box-shadow:none;
  1525. -webkit-box-shadow:none;
  1526. box-shadow:none;
  1527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1528. font-weight:400;
  1529. font-style:normal;
  1530. font-size:14px;
  1531. }
  1532. #u147950 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:936px;
  1536. top:797px;
  1537. width:160px;
  1538. height:40px;
  1539. display:flex;
  1540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1541. font-weight:400;
  1542. font-style:normal;
  1543. font-size:14px;
  1544. }
  1545. #u147950 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u147950_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. }
  1557. #u147951_div {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:0px;
  1561. top:0px;
  1562. width:340px;
  1563. height:92px;
  1564. background:inherit;
  1565. background-color:rgba(255, 255, 255, 1);
  1566. box-sizing:border-box;
  1567. border-width:1px;
  1568. border-style:solid;
  1569. border-color:rgba(215, 215, 215, 1);
  1570. border-radius:4px;
  1571. -moz-box-shadow:none;
  1572. -webkit-box-shadow:none;
  1573. box-shadow:none;
  1574. }
  1575. #u147951 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:936px;
  1579. top:618px;
  1580. width:340px;
  1581. height:92px;
  1582. display:flex;
  1583. }
  1584. #u147951 .text {
  1585. position:absolute;
  1586. align-self:center;
  1587. padding:2px 2px 2px 2px;
  1588. box-sizing:border-box;
  1589. width:100%;
  1590. }
  1591. #u147951_text {
  1592. border-width:0px;
  1593. word-wrap:break-word;
  1594. text-transform:none;
  1595. visibility:hidden;
  1596. }
  1597. #u147952_div {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:127px;
  1603. height:30px;
  1604. background:inherit;
  1605. background-color:rgba(255, 255, 255, 0);
  1606. border:none;
  1607. border-left:0px;
  1608. border-top:0px;
  1609. border-right:0px;
  1610. border-radius:0px;
  1611. border-bottom-right-radius:0px;
  1612. border-bottom-left-radius:0px;
  1613. -moz-box-shadow:none;
  1614. -webkit-box-shadow:none;
  1615. box-shadow:none;
  1616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1617. font-weight:400;
  1618. font-style:normal;
  1619. font-size:14px;
  1620. color:#AAAAAA;
  1621. line-height:30px;
  1622. }
  1623. #u147952 {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:945px;
  1627. top:626px;
  1628. width:127px;
  1629. height:30px;
  1630. display:flex;
  1631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1632. font-weight:400;
  1633. font-style:normal;
  1634. font-size:14px;
  1635. color:#AAAAAA;
  1636. line-height:30px;
  1637. }
  1638. #u147952 .text {
  1639. position:absolute;
  1640. align-self:center;
  1641. padding:0px 0px 0px 0px;
  1642. box-sizing:border-box;
  1643. width:100%;
  1644. }
  1645. #u147952_text {
  1646. border-width:0px;
  1647. white-space:nowrap;
  1648. text-transform:none;
  1649. }
  1650. #u147953 {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:0px;
  1656. height:0px;
  1657. }
  1658. #u147954_div {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:375px;
  1664. height:773px;
  1665. background:inherit;
  1666. background-color:rgba(51, 51, 51, 0.498039215686275);
  1667. border:none;
  1668. border-top:0px;
  1669. border-radius:28px;
  1670. border-top-left-radius:0px;
  1671. border-top-right-radius:0px;
  1672. -moz-box-shadow:none;
  1673. -webkit-box-shadow:none;
  1674. box-shadow:none;
  1675. }
  1676. #u147954 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:1726px;
  1680. top:71px;
  1681. width:375px;
  1682. height:773px;
  1683. display:flex;
  1684. }
  1685. #u147954 .text {
  1686. position:absolute;
  1687. align-self:center;
  1688. padding:2px 2px 2px 2px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u147954_text {
  1693. border-width:0px;
  1694. word-wrap:break-word;
  1695. text-transform:none;
  1696. visibility:hidden;
  1697. }
  1698. #u147955_div {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:375px;
  1704. height:615px;
  1705. background:inherit;
  1706. background-color:rgba(255, 255, 255, 0.996078431372549);
  1707. border:none;
  1708. border-top:0px;
  1709. border-radius:28px;
  1710. border-top-left-radius:0px;
  1711. border-top-right-radius:0px;
  1712. -moz-box-shadow:none;
  1713. -webkit-box-shadow:none;
  1714. box-shadow:none;
  1715. }
  1716. #u147955 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:1726px;
  1720. top:229px;
  1721. width:375px;
  1722. height:615px;
  1723. display:flex;
  1724. }
  1725. #u147955 .text {
  1726. position:absolute;
  1727. align-self:center;
  1728. padding:2px 2px 2px 2px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u147955_text {
  1733. border-width:0px;
  1734. word-wrap:break-word;
  1735. text-transform:none;
  1736. visibility:hidden;
  1737. }
  1738. #u147956_div {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:73px;
  1744. height:30px;
  1745. background:inherit;
  1746. background-color:rgba(255, 255, 255, 0);
  1747. border:none;
  1748. border-left:0px;
  1749. border-top:0px;
  1750. border-right:0px;
  1751. border-radius:0px;
  1752. border-bottom-right-radius:0px;
  1753. border-bottom-left-radius:0px;
  1754. -moz-box-shadow:none;
  1755. -webkit-box-shadow:none;
  1756. box-shadow:none;
  1757. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1758. font-weight:500;
  1759. font-style:normal;
  1760. font-size:18px;
  1761. line-height:30px;
  1762. }
  1763. #u147956 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:1746px;
  1767. top:242px;
  1768. width:73px;
  1769. height:30px;
  1770. display:flex;
  1771. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1772. font-weight:500;
  1773. font-style:normal;
  1774. font-size:18px;
  1775. line-height:30px;
  1776. }
  1777. #u147956 .text {
  1778. position:absolute;
  1779. align-self:flex-start;
  1780. padding:0px 0px 0px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u147956_text {
  1785. border-width:0px;
  1786. white-space:nowrap;
  1787. text-transform:none;
  1788. }
  1789. #u147957 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:0px;
  1795. height:0px;
  1796. }
  1797. #u147958_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:375px;
  1803. height:60px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 1);
  1806. box-sizing:border-box;
  1807. border-width:1px;
  1808. border-style:solid;
  1809. border-color:rgba(242, 242, 242, 1);
  1810. border-radius:20px;
  1811. border-top-left-radius:0px;
  1812. border-top-right-radius:0px;
  1813. -moz-box-shadow:none;
  1814. -webkit-box-shadow:none;
  1815. box-shadow:none;
  1816. }
  1817. #u147958 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:1726px;
  1821. top:784px;
  1822. width:375px;
  1823. height:60px;
  1824. display:flex;
  1825. }
  1826. #u147958 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:2px 2px 2px 2px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u147958_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. visibility:hidden;
  1838. }
  1839. #u147959_div {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:160px;
  1845. height:40px;
  1846. background:inherit;
  1847. background-color:rgba(0, 137, 254, 1);
  1848. border:none;
  1849. border-radius:63px;
  1850. -moz-box-shadow:none;
  1851. -webkit-box-shadow:none;
  1852. box-shadow:none;
  1853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1854. font-weight:400;
  1855. font-style:normal;
  1856. font-size:14px;
  1857. color:#FFFFFF;
  1858. }
  1859. #u147959 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:1921px;
  1863. top:794px;
  1864. width:160px;
  1865. height:40px;
  1866. display:flex;
  1867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:14px;
  1871. color:#FFFFFF;
  1872. }
  1873. #u147959 .text {
  1874. position:absolute;
  1875. align-self:center;
  1876. padding:2px 2px 2px 2px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u147959_text {
  1881. border-width:0px;
  1882. word-wrap:break-word;
  1883. text-transform:none;
  1884. }
  1885. #u147960_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:160px;
  1891. height:40px;
  1892. background:inherit;
  1893. background-color:rgba(255, 255, 255, 1);
  1894. box-sizing:border-box;
  1895. border-width:1px;
  1896. border-style:solid;
  1897. border-color:rgba(121, 121, 121, 1);
  1898. border-radius:63px;
  1899. -moz-box-shadow:none;
  1900. -webkit-box-shadow:none;
  1901. box-shadow:none;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. font-size:14px;
  1906. }
  1907. #u147960 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:1746px;
  1911. top:794px;
  1912. width:160px;
  1913. height:40px;
  1914. display:flex;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:14px;
  1919. }
  1920. #u147960 .text {
  1921. position:absolute;
  1922. align-self:center;
  1923. padding:2px 2px 2px 2px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u147960_text {
  1928. border-width:0px;
  1929. word-wrap:break-word;
  1930. text-transform:none;
  1931. }
  1932. #u147961 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:0px;
  1938. height:0px;
  1939. }
  1940. #u147962_div {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:100px;
  1946. height:30px;
  1947. background:inherit;
  1948. background-color:rgba(242, 242, 242, 1);
  1949. box-sizing:border-box;
  1950. border-width:1px;
  1951. border-style:solid;
  1952. border-color:rgba(215, 215, 215, 1);
  1953. border-radius:4px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. text-align:right;
  1961. }
  1962. #u147962 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:1865px;
  1966. top:291px;
  1967. width:100px;
  1968. height:30px;
  1969. display:flex;
  1970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. text-align:right;
  1974. }
  1975. #u147962 .text {
  1976. position:absolute;
  1977. align-self:center;
  1978. padding:2px 10px 2px 10px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u147962_text {
  1983. border-width:0px;
  1984. word-wrap:break-word;
  1985. text-transform:none;
  1986. }
  1987. #u147963_input {
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:77px;
  1992. height:23px;
  1993. padding:2px 2px 2px 2px;
  1994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:13px;
  1998. letter-spacing:normal;
  1999. color:#AAAAAA;
  2000. vertical-align:none;
  2001. text-align:left;
  2002. text-transform:none;
  2003. background-color:transparent;
  2004. border-color:transparent;
  2005. }
  2006. #u147963_input.disabled {
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:77px;
  2011. height:23px;
  2012. padding:2px 2px 2px 2px;
  2013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2014. font-weight:400;
  2015. font-style:normal;
  2016. font-size:13px;
  2017. letter-spacing:normal;
  2018. color:#AAAAAA;
  2019. vertical-align:none;
  2020. text-align:left;
  2021. text-transform:none;
  2022. background-color:transparent;
  2023. border-color:transparent;
  2024. }
  2025. #u147963_div {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:77px;
  2031. height:23px;
  2032. background:inherit;
  2033. background-color:rgba(242, 242, 242, 1);
  2034. border:none;
  2035. border-radius:0px;
  2036. -moz-box-shadow:none;
  2037. -webkit-box-shadow:none;
  2038. box-shadow:none;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. color:#AAAAAA;
  2043. }
  2044. #u147963 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:1867px;
  2048. top:295px;
  2049. width:77px;
  2050. height:23px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. color:#AAAAAA;
  2056. }
  2057. #u147963 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u147963_div.disabled {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:77px;
  2070. height:23px;
  2071. background:inherit;
  2072. background-color:rgba(240, 240, 240, 1);
  2073. border:none;
  2074. border-radius:0px;
  2075. -moz-box-shadow:none;
  2076. -webkit-box-shadow:none;
  2077. box-shadow:none;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. color:#AAAAAA;
  2082. }
  2083. #u147963.disabled {
  2084. }
  2085. #u147964_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:35px;
  2091. height:27px;
  2092. background:inherit;
  2093. background-color:rgba(255, 255, 255, 0);
  2094. border:none;
  2095. border-top:0px;
  2096. border-right:0px;
  2097. border-bottom:0px;
  2098. border-radius:0px;
  2099. border-top-left-radius:0px;
  2100. border-bottom-left-radius:0px;
  2101. -moz-box-shadow:none;
  2102. -webkit-box-shadow:none;
  2103. box-shadow:none;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:12px;
  2108. color:#1890FF;
  2109. }
  2110. #u147964 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:1756px;
  2114. top:361px;
  2115. width:35px;
  2116. height:27px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:12px;
  2122. color:#1890FF;
  2123. }
  2124. #u147964 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:5px 10px 5px 0px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u147964_text {
  2132. border-width:0px;
  2133. white-space:nowrap;
  2134. text-transform:none;
  2135. }
  2136. #u147965 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:0px;
  2142. height:0px;
  2143. }
  2144. #u147966_div {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:100px;
  2150. height:30px;
  2151. background:inherit;
  2152. background-color:rgba(255, 255, 255, 1);
  2153. box-sizing:border-box;
  2154. border-width:1px;
  2155. border-style:solid;
  2156. border-color:rgba(215, 215, 215, 1);
  2157. border-radius:4px;
  2158. -moz-box-shadow:none;
  2159. -webkit-box-shadow:none;
  2160. box-shadow:none;
  2161. font-size:11px;
  2162. }
  2163. #u147966 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:1756px;
  2167. top:291px;
  2168. width:100px;
  2169. height:30px;
  2170. display:flex;
  2171. font-size:11px;
  2172. }
  2173. #u147966 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 2px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u147966_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. visibility:hidden;
  2185. }
  2186. #u147967_input {
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:86px;
  2191. height:23px;
  2192. padding:2px 2px 2px 2px;
  2193. font-family:'ArialMT', 'Arial', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:12px;
  2197. letter-spacing:normal;
  2198. color:#AAAAAA;
  2199. vertical-align:none;
  2200. text-align:left;
  2201. text-transform:none;
  2202. background-color:transparent;
  2203. border-color:transparent;
  2204. }
  2205. #u147967_input.disabled {
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:86px;
  2210. height:23px;
  2211. padding:2px 2px 2px 2px;
  2212. font-family:'ArialMT', 'Arial', sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:12px;
  2216. letter-spacing:normal;
  2217. color:#AAAAAA;
  2218. vertical-align:none;
  2219. text-align:left;
  2220. text-transform:none;
  2221. background-color:transparent;
  2222. border-color:transparent;
  2223. }
  2224. #u147967_div {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:86px;
  2230. height:23px;
  2231. background:inherit;
  2232. background-color:rgba(255, 255, 255, 1);
  2233. border:none;
  2234. border-radius:0px;
  2235. -moz-box-shadow:none;
  2236. -webkit-box-shadow:none;
  2237. box-shadow:none;
  2238. font-size:12px;
  2239. color:#AAAAAA;
  2240. }
  2241. #u147967 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:1761px;
  2245. top:293px;
  2246. width:86px;
  2247. height:23px;
  2248. display:flex;
  2249. font-size:12px;
  2250. color:#AAAAAA;
  2251. }
  2252. #u147967 .text {
  2253. position:absolute;
  2254. align-self:flex-start;
  2255. padding:2px 2px 2px 2px;
  2256. box-sizing:border-box;
  2257. width:100%;
  2258. }
  2259. #u147967_div.disabled {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:86px;
  2265. height:23px;
  2266. background:inherit;
  2267. background-color:rgba(240, 240, 240, 1);
  2268. border:none;
  2269. border-radius:0px;
  2270. -moz-box-shadow:none;
  2271. -webkit-box-shadow:none;
  2272. box-shadow:none;
  2273. font-size:12px;
  2274. color:#AAAAAA;
  2275. }
  2276. #u147967.disabled {
  2277. }
  2278. .u147967_input_option {
  2279. font-size:12px;
  2280. }
  2281. #u147968_div {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:84px;
  2287. height:27px;
  2288. background:inherit;
  2289. background-color:rgba(255, 255, 255, 0);
  2290. border:none;
  2291. border-top:0px;
  2292. border-right:0px;
  2293. border-bottom:0px;
  2294. border-radius:0px;
  2295. border-top-left-radius:0px;
  2296. border-bottom-left-radius:0px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:12px;
  2304. color:#7F7F7F;
  2305. }
  2306. #u147968 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:1973px;
  2310. top:293px;
  2311. width:84px;
  2312. height:27px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:12px;
  2318. color:#7F7F7F;
  2319. }
  2320. #u147968 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:5px 10px 5px 0px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u147968_text {
  2328. border-width:0px;
  2329. white-space:nowrap;
  2330. text-transform:none;
  2331. }
  2332. #u147969 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:0px;
  2336. top:0px;
  2337. width:0px;
  2338. height:0px;
  2339. }
  2340. #u147970_div {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:100px;
  2346. height:30px;
  2347. background:inherit;
  2348. background-color:rgba(255, 255, 255, 1);
  2349. box-sizing:border-box;
  2350. border-width:1px;
  2351. border-style:solid;
  2352. border-color:rgba(215, 215, 215, 1);
  2353. border-radius:4px;
  2354. -moz-box-shadow:none;
  2355. -webkit-box-shadow:none;
  2356. box-shadow:none;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. text-align:right;
  2361. }
  2362. #u147970 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:1865px;
  2366. top:331px;
  2367. width:100px;
  2368. height:30px;
  2369. display:flex;
  2370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2371. font-weight:400;
  2372. font-style:normal;
  2373. text-align:right;
  2374. }
  2375. #u147970 .text {
  2376. position:absolute;
  2377. align-self:center;
  2378. padding:2px 10px 2px 10px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u147970_text {
  2383. border-width:0px;
  2384. word-wrap:break-word;
  2385. text-transform:none;
  2386. }
  2387. #u147971_input {
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:77px;
  2392. height:23px;
  2393. padding:2px 2px 2px 2px;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:13px;
  2398. letter-spacing:normal;
  2399. color:#AAAAAA;
  2400. vertical-align:none;
  2401. text-align:left;
  2402. text-transform:none;
  2403. background-color:transparent;
  2404. border-color:transparent;
  2405. }
  2406. #u147971_input.disabled {
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:77px;
  2411. height:23px;
  2412. padding:2px 2px 2px 2px;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:13px;
  2417. letter-spacing:normal;
  2418. color:#AAAAAA;
  2419. vertical-align:none;
  2420. text-align:left;
  2421. text-transform:none;
  2422. background-color:transparent;
  2423. border-color:transparent;
  2424. }
  2425. #u147971_div {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:77px;
  2431. height:23px;
  2432. background:inherit;
  2433. background-color:rgba(255, 255, 255, 0);
  2434. border:none;
  2435. border-radius:0px;
  2436. -moz-box-shadow:none;
  2437. -webkit-box-shadow:none;
  2438. box-shadow:none;
  2439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. color:#AAAAAA;
  2443. }
  2444. #u147971 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:1867px;
  2448. top:335px;
  2449. width:77px;
  2450. height:23px;
  2451. display:flex;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. color:#AAAAAA;
  2456. }
  2457. #u147971 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 2px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u147971_div.disabled {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:77px;
  2470. height:23px;
  2471. background:inherit;
  2472. background-color:rgba(240, 240, 240, 1);
  2473. border:none;
  2474. border-radius:0px;
  2475. -moz-box-shadow:none;
  2476. -webkit-box-shadow:none;
  2477. box-shadow:none;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. color:#AAAAAA;
  2482. }
  2483. #u147971.disabled {
  2484. }
  2485. #u147972 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:0px;
  2491. height:0px;
  2492. }
  2493. #u147973_div {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:100px;
  2499. height:30px;
  2500. background:inherit;
  2501. background-color:rgba(255, 255, 255, 1);
  2502. box-sizing:border-box;
  2503. border-width:1px;
  2504. border-style:solid;
  2505. border-color:rgba(215, 215, 215, 1);
  2506. border-radius:4px;
  2507. -moz-box-shadow:none;
  2508. -webkit-box-shadow:none;
  2509. box-shadow:none;
  2510. font-size:11px;
  2511. }
  2512. #u147973 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:1756px;
  2516. top:331px;
  2517. width:100px;
  2518. height:30px;
  2519. display:flex;
  2520. font-size:11px;
  2521. }
  2522. #u147973 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:2px 2px 2px 2px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u147973_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. visibility:hidden;
  2534. }
  2535. #u147974_input {
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:86px;
  2540. height:23px;
  2541. padding:2px 2px 2px 2px;
  2542. font-family:'ArialMT', 'Arial', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. font-size:12px;
  2546. letter-spacing:normal;
  2547. color:#AAAAAA;
  2548. vertical-align:none;
  2549. text-align:left;
  2550. text-transform:none;
  2551. background-color:transparent;
  2552. border-color:transparent;
  2553. }
  2554. #u147974_input.disabled {
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:86px;
  2559. height:23px;
  2560. padding:2px 2px 2px 2px;
  2561. font-family:'ArialMT', 'Arial', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:12px;
  2565. letter-spacing:normal;
  2566. color:#AAAAAA;
  2567. vertical-align:none;
  2568. text-align:left;
  2569. text-transform:none;
  2570. background-color:transparent;
  2571. border-color:transparent;
  2572. }
  2573. #u147974_div {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:86px;
  2579. height:23px;
  2580. background:inherit;
  2581. background-color:rgba(255, 255, 255, 1);
  2582. border:none;
  2583. border-radius:0px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. font-size:12px;
  2588. color:#AAAAAA;
  2589. }
  2590. #u147974 {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:1761px;
  2594. top:333px;
  2595. width:86px;
  2596. height:23px;
  2597. display:flex;
  2598. font-size:12px;
  2599. color:#AAAAAA;
  2600. }
  2601. #u147974 .text {
  2602. position:absolute;
  2603. align-self:flex-start;
  2604. padding:2px 2px 2px 2px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u147974_div.disabled {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:86px;
  2614. height:23px;
  2615. background:inherit;
  2616. background-color:rgba(240, 240, 240, 1);
  2617. border:none;
  2618. border-radius:0px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. font-size:12px;
  2623. color:#AAAAAA;
  2624. }
  2625. #u147974.disabled {
  2626. }
  2627. .u147974_input_option {
  2628. font-size:12px;
  2629. }
  2630. #u147975_div {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:91px;
  2636. height:27px;
  2637. background:inherit;
  2638. background-color:rgba(255, 255, 255, 0);
  2639. border:none;
  2640. border-top:0px;
  2641. border-right:0px;
  2642. border-bottom:0px;
  2643. border-radius:0px;
  2644. border-top-left-radius:0px;
  2645. border-bottom-left-radius:0px;
  2646. -moz-box-shadow:none;
  2647. -webkit-box-shadow:none;
  2648. box-shadow:none;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:12px;
  2653. color:#7F7F7F;
  2654. }
  2655. #u147975 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:1973px;
  2659. top:333px;
  2660. width:91px;
  2661. height:27px;
  2662. display:flex;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:#7F7F7F;
  2668. }
  2669. #u147975 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:5px 10px 5px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u147975_text {
  2677. border-width:0px;
  2678. white-space:nowrap;
  2679. text-transform:none;
  2680. }
  2681. #u147976_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:12px;
  2687. height:12px;
  2688. }
  2689. #u147976 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:2068px;
  2693. top:300px;
  2694. width:12px;
  2695. height:12px;
  2696. display:flex;
  2697. }
  2698. #u147976 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 2px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u147976_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u147977_img {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:12px;
  2717. height:12px;
  2718. }
  2719. #u147977 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:2068px;
  2723. top:339px;
  2724. width:12px;
  2725. height:12px;
  2726. display:flex;
  2727. }
  2728. #u147977 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 2px 2px 2px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u147977_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. visibility:hidden;
  2740. }
  2741. #u147978 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:0px;
  2747. height:0px;
  2748. }
  2749. #u147979_div {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:375px;
  2755. height:40px;
  2756. background:inherit;
  2757. background-color:rgba(255, 255, 255, 1);
  2758. box-sizing:border-box;
  2759. border-width:1px;
  2760. border-style:solid;
  2761. border-color:rgba(215, 215, 215, 1);
  2762. border-left:0px;
  2763. border-top:0px;
  2764. border-right:0px;
  2765. border-radius:0px;
  2766. border-bottom-right-radius:0px;
  2767. border-bottom-left-radius:0px;
  2768. -moz-box-shadow:none;
  2769. -webkit-box-shadow:none;
  2770. box-shadow:none;
  2771. }
  2772. #u147979 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:29px;
  2776. top:66px;
  2777. width:375px;
  2778. height:40px;
  2779. display:flex;
  2780. }
  2781. #u147979 .text {
  2782. position:absolute;
  2783. align-self:center;
  2784. padding:2px 2px 2px 2px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u147979_text {
  2789. border-width:0px;
  2790. word-wrap:break-word;
  2791. text-transform:none;
  2792. visibility:hidden;
  2793. }
  2794. #u147980 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:0px;
  2800. height:0px;
  2801. }
  2802. #u147981_div {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:88px;
  2808. height:32px;
  2809. background:inherit;
  2810. background-color:rgba(255, 255, 255, 1);
  2811. box-sizing:border-box;
  2812. border-width:1px;
  2813. border-style:solid;
  2814. border-color:rgba(242, 242, 242, 1);
  2815. border-radius:33px;
  2816. -moz-box-shadow:none;
  2817. -webkit-box-shadow:none;
  2818. box-shadow:none;
  2819. }
  2820. #u147981 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:309px;
  2824. top:71px;
  2825. width:88px;
  2826. height:32px;
  2827. display:flex;
  2828. }
  2829. #u147981 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 2px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u147981_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u147982 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:0px;
  2848. height:0px;
  2849. }
  2850. #u147983_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:18px;
  2856. height:18px;
  2857. }
  2858. #u147983 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:372px;
  2862. top:78px;
  2863. width:18px;
  2864. height:18px;
  2865. display:flex;
  2866. }
  2867. #u147983 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 2px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u147983_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u147984_img {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:6px;
  2886. height:6px;
  2887. }
  2888. #u147984 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:378px;
  2892. top:84px;
  2893. width:6px;
  2894. height:6px;
  2895. display:flex;
  2896. }
  2897. #u147984 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 2px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u147984_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. visibility:hidden;
  2909. }
  2910. #u147985 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:0px;
  2916. height:0px;
  2917. }
  2918. #u147986_img {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:5px;
  2924. height:5px;
  2925. }
  2926. #u147986 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:323px;
  2930. top:85px;
  2931. width:5px;
  2932. height:5px;
  2933. display:flex;
  2934. }
  2935. #u147986 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 2px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u147986_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. visibility:hidden;
  2947. }
  2948. #u147987_img {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:5px;
  2954. height:5px;
  2955. }
  2956. #u147987 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:339px;
  2960. top:85px;
  2961. width:5px;
  2962. height:5px;
  2963. display:flex;
  2964. }
  2965. #u147987 .text {
  2966. position:absolute;
  2967. align-self:center;
  2968. padding:2px 2px 2px 2px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u147987_text {
  2973. border-width:0px;
  2974. word-wrap:break-word;
  2975. text-transform:none;
  2976. visibility:hidden;
  2977. }
  2978. #u147988_img {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:0px;
  2982. top:0px;
  2983. width:7px;
  2984. height:7px;
  2985. }
  2986. #u147988 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:330px;
  2990. top:84px;
  2991. width:7px;
  2992. height:7px;
  2993. display:flex;
  2994. }
  2995. #u147988 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:2px 2px 2px 2px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u147988_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. visibility:hidden;
  3007. }
  3008. #u147989_img {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:19px;
  3014. height:2px;
  3015. }
  3016. #u147989 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:347px;
  3020. top:87px;
  3021. width:18px;
  3022. height:1px;
  3023. display:flex;
  3024. -webkit-transform:rotate(90deg);
  3025. -moz-transform:rotate(90deg);
  3026. -ms-transform:rotate(90deg);
  3027. transform:rotate(90deg);
  3028. }
  3029. #u147989 .text {
  3030. position:absolute;
  3031. align-self:center;
  3032. padding:2px 2px 2px 2px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u147989_text {
  3037. border-width:0px;
  3038. word-wrap:break-word;
  3039. text-transform:none;
  3040. visibility:hidden;
  3041. }
  3042. #u147990_div {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:12px;
  3048. height:12px;
  3049. background:inherit;
  3050. background-color:rgba(255, 255, 255, 0);
  3051. box-sizing:border-box;
  3052. border-width:2px;
  3053. border-style:solid;
  3054. border-color:rgba(51, 51, 51, 1);
  3055. border-right:0px;
  3056. border-bottom:0px;
  3057. border-radius:0px;
  3058. border-top-right-radius:0px;
  3059. border-bottom-left-radius:0px;
  3060. -moz-box-shadow:none;
  3061. -webkit-box-shadow:none;
  3062. box-shadow:none;
  3063. }
  3064. #u147990 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:44px;
  3068. top:80px;
  3069. width:12px;
  3070. height:12px;
  3071. display:flex;
  3072. -webkit-transform:rotate(315deg);
  3073. -moz-transform:rotate(315deg);
  3074. -ms-transform:rotate(315deg);
  3075. transform:rotate(315deg);
  3076. }
  3077. #u147990 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u147990_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. visibility:hidden;
  3089. }
  3090. #u147991_div {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:65px;
  3096. height:22px;
  3097. background:inherit;
  3098. background-color:rgba(255, 255, 255, 0);
  3099. border:none;
  3100. border-radius:0px;
  3101. -moz-box-shadow:none;
  3102. -webkit-box-shadow:none;
  3103. box-shadow:none;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:16px;
  3108. color:#000000;
  3109. }
  3110. #u147991 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:58px;
  3114. top:75px;
  3115. width:65px;
  3116. height:22px;
  3117. display:flex;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:16px;
  3122. color:#000000;
  3123. }
  3124. #u147991 .text {
  3125. position:absolute;
  3126. align-self:flex-start;
  3127. padding:0px 0px 0px 0px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u147991_text {
  3132. border-width:0px;
  3133. white-space:nowrap;
  3134. text-transform:none;
  3135. }
  3136. #u147992 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:0px;
  3142. height:0px;
  3143. }
  3144. #u147993_div {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:375px;
  3150. height:50px;
  3151. background:inherit;
  3152. background-color:rgba(255, 255, 255, 1);
  3153. border:none;
  3154. border-radius:0px;
  3155. -moz-box-shadow:none;
  3156. -webkit-box-shadow:none;
  3157. box-shadow:none;
  3158. }
  3159. #u147993 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:29px;
  3163. top:106px;
  3164. width:375px;
  3165. height:50px;
  3166. display:flex;
  3167. }
  3168. #u147993 .text {
  3169. position:absolute;
  3170. align-self:center;
  3171. padding:2px 2px 2px 2px;
  3172. box-sizing:border-box;
  3173. width:100%;
  3174. }
  3175. #u147993_text {
  3176. border-width:0px;
  3177. word-wrap:break-word;
  3178. text-transform:none;
  3179. visibility:hidden;
  3180. }
  3181. #u147994 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:0px;
  3187. height:0px;
  3188. }
  3189. #u147995 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:0px;
  3195. height:0px;
  3196. }
  3197. #u147996_div {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:135px;
  3203. height:30px;
  3204. background:inherit;
  3205. background-color:rgba(242, 242, 242, 1);
  3206. border:none;
  3207. border-radius:20px;
  3208. -moz-box-shadow:none;
  3209. -webkit-box-shadow:none;
  3210. box-shadow:none;
  3211. }
  3212. #u147996 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:42px;
  3216. top:116px;
  3217. width:135px;
  3218. height:30px;
  3219. display:flex;
  3220. }
  3221. #u147996 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 2px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u147996_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. visibility:hidden;
  3233. }
  3234. #u147997_input {
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:121px;
  3239. height:22px;
  3240. padding:2px 2px 2px 2px;
  3241. font-family:'ArialMT', 'Arial', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. letter-spacing:normal;
  3246. color:#7F7F7F;
  3247. vertical-align:none;
  3248. text-align:left;
  3249. text-transform:none;
  3250. background-color:transparent;
  3251. border-color:transparent;
  3252. }
  3253. #u147997_input.disabled {
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:121px;
  3258. height:22px;
  3259. padding:2px 2px 2px 2px;
  3260. font-family:'ArialMT', 'Arial', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:12px;
  3264. letter-spacing:normal;
  3265. color:#7F7F7F;
  3266. vertical-align:none;
  3267. text-align:left;
  3268. text-transform:none;
  3269. background-color:transparent;
  3270. border-color:transparent;
  3271. }
  3272. #u147997_div {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:121px;
  3278. height:22px;
  3279. background:inherit;
  3280. background-color:rgba(255, 255, 255, 0);
  3281. border:none;
  3282. border-radius:0px;
  3283. -moz-box-shadow:none;
  3284. -webkit-box-shadow:none;
  3285. box-shadow:none;
  3286. font-size:12px;
  3287. color:#7F7F7F;
  3288. }
  3289. #u147997 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:49px;
  3293. top:120px;
  3294. width:121px;
  3295. height:22px;
  3296. display:flex;
  3297. font-size:12px;
  3298. color:#7F7F7F;
  3299. }
  3300. #u147997 .text {
  3301. position:absolute;
  3302. align-self:flex-start;
  3303. padding:2px 2px 2px 2px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u147997_div.disabled {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:121px;
  3313. height:22px;
  3314. background:inherit;
  3315. background-color:rgba(240, 240, 240, 1);
  3316. border:none;
  3317. border-radius:0px;
  3318. -moz-box-shadow:none;
  3319. -webkit-box-shadow:none;
  3320. box-shadow:none;
  3321. font-size:12px;
  3322. color:#7F7F7F;
  3323. }
  3324. #u147997.disabled {
  3325. }
  3326. .u147997_input_option {
  3327. font-size:12px;
  3328. }
  3329. #u147998_div {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:64px;
  3335. height:30px;
  3336. background:inherit;
  3337. background-color:rgba(255, 255, 255, 0);
  3338. border:none;
  3339. border-left:0px;
  3340. border-top:0px;
  3341. border-right:0px;
  3342. border-radius:0px;
  3343. border-bottom-right-radius:0px;
  3344. border-bottom-left-radius:0px;
  3345. -moz-box-shadow:none;
  3346. -webkit-box-shadow:none;
  3347. box-shadow:none;
  3348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3349. font-weight:400;
  3350. font-style:normal;
  3351. font-size:12px;
  3352. color:#1890FF;
  3353. line-height:30px;
  3354. }
  3355. #u147998 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:332px;
  3359. top:116px;
  3360. width:64px;
  3361. height:30px;
  3362. display:flex;
  3363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3364. font-weight:400;
  3365. font-style:normal;
  3366. font-size:12px;
  3367. color:#1890FF;
  3368. line-height:30px;
  3369. }
  3370. #u147998 .text {
  3371. position:absolute;
  3372. align-self:flex-start;
  3373. padding:0px 0px 0px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u147998_text {
  3378. border-width:0px;
  3379. white-space:nowrap;
  3380. text-transform:none;
  3381. }
  3382. #u147999 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:0px;
  3388. height:0px;
  3389. }
  3390. #u148000_div {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:135px;
  3396. height:30px;
  3397. background:inherit;
  3398. background-color:rgba(242, 242, 242, 1);
  3399. border:none;
  3400. border-radius:20px;
  3401. -moz-box-shadow:none;
  3402. -webkit-box-shadow:none;
  3403. box-shadow:none;
  3404. }
  3405. #u148000 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:187px;
  3409. top:116px;
  3410. width:135px;
  3411. height:30px;
  3412. display:flex;
  3413. }
  3414. #u148000 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 2px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u148000_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u148001_input {
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:121px;
  3432. height:22px;
  3433. padding:2px 2px 2px 2px;
  3434. font-family:'ArialMT', 'Arial', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:12px;
  3438. letter-spacing:normal;
  3439. color:#7F7F7F;
  3440. vertical-align:none;
  3441. text-align:left;
  3442. text-transform:none;
  3443. background-color:transparent;
  3444. border-color:transparent;
  3445. }
  3446. #u148001_input.disabled {
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:121px;
  3451. height:22px;
  3452. padding:2px 2px 2px 2px;
  3453. font-family:'ArialMT', 'Arial', sans-serif;
  3454. font-weight:400;
  3455. font-style:normal;
  3456. font-size:12px;
  3457. letter-spacing:normal;
  3458. color:#7F7F7F;
  3459. vertical-align:none;
  3460. text-align:left;
  3461. text-transform:none;
  3462. background-color:transparent;
  3463. border-color:transparent;
  3464. }
  3465. #u148001_div {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:121px;
  3471. height:22px;
  3472. background:inherit;
  3473. background-color:rgba(255, 255, 255, 0);
  3474. border:none;
  3475. border-radius:0px;
  3476. -moz-box-shadow:none;
  3477. -webkit-box-shadow:none;
  3478. box-shadow:none;
  3479. font-size:12px;
  3480. color:#7F7F7F;
  3481. }
  3482. #u148001 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:194px;
  3486. top:120px;
  3487. width:121px;
  3488. height:22px;
  3489. display:flex;
  3490. font-size:12px;
  3491. color:#7F7F7F;
  3492. }
  3493. #u148001 .text {
  3494. position:absolute;
  3495. align-self:flex-start;
  3496. padding:2px 2px 2px 2px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u148001_div.disabled {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:121px;
  3506. height:22px;
  3507. background:inherit;
  3508. background-color:rgba(240, 240, 240, 1);
  3509. border:none;
  3510. border-radius:0px;
  3511. -moz-box-shadow:none;
  3512. -webkit-box-shadow:none;
  3513. box-shadow:none;
  3514. font-size:12px;
  3515. color:#7F7F7F;
  3516. }
  3517. #u148001.disabled {
  3518. }
  3519. .u148001_input_option {
  3520. font-size:12px;
  3521. }
  3522. #u148002 {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:0px;
  3528. height:0px;
  3529. }
  3530. #u148003_div {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:375px;
  3536. height:41px;
  3537. background:inherit;
  3538. background-color:rgba(255, 255, 255, 1);
  3539. border:none;
  3540. border-radius:0px;
  3541. -moz-box-shadow:none;
  3542. -webkit-box-shadow:none;
  3543. box-shadow:none;
  3544. }
  3545. #u148003 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:29px;
  3549. top:156px;
  3550. width:375px;
  3551. height:41px;
  3552. display:flex;
  3553. }
  3554. #u148003 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u148003_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u148004_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:37px;
  3573. height:40px;
  3574. background:inherit;
  3575. background-color:rgba(255, 255, 255, 0);
  3576. border:none;
  3577. border-left:0px;
  3578. border-top:0px;
  3579. border-right:0px;
  3580. border-radius:0px;
  3581. border-bottom-right-radius:0px;
  3582. border-bottom-left-radius:0px;
  3583. -moz-box-shadow:none;
  3584. -webkit-box-shadow:none;
  3585. box-shadow:none;
  3586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:12px;
  3590. text-align:center;
  3591. }
  3592. #u148004 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:111px;
  3596. top:156px;
  3597. width:37px;
  3598. height:40px;
  3599. display:flex;
  3600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:12px;
  3604. text-align:center;
  3605. }
  3606. #u148004 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:0px 0px 0px 0px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u148004_text {
  3614. border-width:0px;
  3615. white-space:nowrap;
  3616. text-transform:none;
  3617. }
  3618. #u148005_div {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:37px;
  3624. height:40px;
  3625. background:inherit;
  3626. background-color:rgba(255, 255, 255, 0);
  3627. box-sizing:border-box;
  3628. border-width:2px;
  3629. border-style:solid;
  3630. border-color:rgba(24, 144, 255, 1);
  3631. border-left:0px;
  3632. border-top:0px;
  3633. border-right:0px;
  3634. border-radius:0px;
  3635. border-bottom-right-radius:0px;
  3636. border-bottom-left-radius:0px;
  3637. -moz-box-shadow:none;
  3638. -webkit-box-shadow:none;
  3639. box-shadow:none;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. color:#1890FF;
  3645. text-align:center;
  3646. }
  3647. #u148005 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:45px;
  3651. top:156px;
  3652. width:37px;
  3653. height:40px;
  3654. display:flex;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:12px;
  3659. color:#1890FF;
  3660. text-align:center;
  3661. }
  3662. #u148005 .text {
  3663. position:absolute;
  3664. align-self:center;
  3665. padding:0px 0px 0px 0px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u148005_text {
  3670. border-width:0px;
  3671. white-space:nowrap;
  3672. text-transform:none;
  3673. }
  3674. #u148006_div {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:11px;
  3680. height:11px;
  3681. background:inherit;
  3682. background-color:rgba(217, 0, 27, 1);
  3683. border:none;
  3684. border-radius:7px;
  3685. -moz-box-shadow:none;
  3686. -webkit-box-shadow:none;
  3687. box-shadow:none;
  3688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3689. font-weight:400;
  3690. font-style:normal;
  3691. font-size:8px;
  3692. color:#FFFFFF;
  3693. text-align:center;
  3694. }
  3695. #u148006 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:79px;
  3699. top:160px;
  3700. width:11px;
  3701. height:11px;
  3702. display:flex;
  3703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3704. font-weight:400;
  3705. font-style:normal;
  3706. font-size:8px;
  3707. color:#FFFFFF;
  3708. text-align:center;
  3709. }
  3710. #u148006 .text {
  3711. position:absolute;
  3712. align-self:flex-start;
  3713. padding:0px 0px 0px 0px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u148006_text {
  3718. border-width:0px;
  3719. word-wrap:break-word;
  3720. text-transform:none;
  3721. }
  3722. #u148007_div {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:37px;
  3728. height:40px;
  3729. background:inherit;
  3730. background-color:rgba(255, 255, 255, 0);
  3731. border:none;
  3732. border-left:0px;
  3733. border-top:0px;
  3734. border-right:0px;
  3735. border-radius:0px;
  3736. border-bottom-right-radius:0px;
  3737. border-bottom-left-radius:0px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:12px;
  3745. text-align:center;
  3746. }
  3747. #u148007 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:178px;
  3751. top:156px;
  3752. width:37px;
  3753. height:40px;
  3754. display:flex;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:12px;
  3759. text-align:center;
  3760. }
  3761. #u148007 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:0px 0px 0px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u148007_text {
  3769. border-width:0px;
  3770. white-space:nowrap;
  3771. text-transform:none;
  3772. }
  3773. #u148008 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:0px;
  3779. height:0px;
  3780. }
  3781. #u148009_img {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:355px;
  3787. height:140px;
  3788. }
  3789. #u148009 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:39px;
  3793. top:207px;
  3794. width:355px;
  3795. height:140px;
  3796. display:flex;
  3797. }
  3798. #u148009 .text {
  3799. position:absolute;
  3800. align-self:center;
  3801. padding:2px 2px 2px 2px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u148009_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. visibility:hidden;
  3810. }
  3811. #u148010_div {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:57px;
  3817. height:30px;
  3818. background:inherit;
  3819. background-color:rgba(255, 255, 255, 0);
  3820. border:none;
  3821. border-left:0px;
  3822. border-top:0px;
  3823. border-right:0px;
  3824. border-radius:0px;
  3825. border-bottom-right-radius:0px;
  3826. border-bottom-left-radius:0px;
  3827. -moz-box-shadow:none;
  3828. -webkit-box-shadow:none;
  3829. box-shadow:none;
  3830. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3831. font-weight:500;
  3832. font-style:normal;
  3833. font-size:14px;
  3834. line-height:30px;
  3835. }
  3836. #u148010 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:56px;
  3840. top:237px;
  3841. width:57px;
  3842. height:30px;
  3843. display:flex;
  3844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3845. font-weight:500;
  3846. font-style:normal;
  3847. font-size:14px;
  3848. line-height:30px;
  3849. }
  3850. #u148010 .text {
  3851. position:absolute;
  3852. align-self:flex-start;
  3853. padding:0px 0px 0px 0px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u148010_text {
  3858. border-width:0px;
  3859. white-space:nowrap;
  3860. text-transform:none;
  3861. }
  3862. #u148011_div {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:325px;
  3868. height:25px;
  3869. background:inherit;
  3870. background-color:rgba(255, 255, 255, 0);
  3871. border:none;
  3872. border-left:0px;
  3873. border-top:0px;
  3874. border-right:0px;
  3875. border-radius:0px;
  3876. border-bottom-right-radius:0px;
  3877. border-bottom-left-radius:0px;
  3878. -moz-box-shadow:none;
  3879. -webkit-box-shadow:none;
  3880. box-shadow:none;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:14px;
  3885. color:#1890FF;
  3886. line-height:25px;
  3887. }
  3888. #u148011 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:56px;
  3892. top:267px;
  3893. width:325px;
  3894. height:25px;
  3895. display:flex;
  3896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3897. font-weight:400;
  3898. font-style:normal;
  3899. font-size:14px;
  3900. color:#1890FF;
  3901. line-height:25px;
  3902. }
  3903. #u148011 .text {
  3904. position:absolute;
  3905. align-self:flex-start;
  3906. padding:0px 0px 0px 0px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u148011_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. }
  3915. #u148012_div {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:8px;
  3921. height:8px;
  3922. background:inherit;
  3923. background-color:rgba(255, 255, 255, 0);
  3924. box-sizing:border-box;
  3925. border-width:1px;
  3926. border-style:solid;
  3927. border-color:rgba(127, 127, 127, 1);
  3928. border-right:0px;
  3929. border-bottom:0px;
  3930. border-radius:0px;
  3931. border-top-right-radius:0px;
  3932. border-bottom-left-radius:0px;
  3933. -moz-box-shadow:none;
  3934. -webkit-box-shadow:none;
  3935. box-shadow:none;
  3936. }
  3937. #u148012 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:370px;
  3941. top:222px;
  3942. width:8px;
  3943. height:8px;
  3944. display:flex;
  3945. -webkit-transform:rotate(135deg);
  3946. -moz-transform:rotate(135deg);
  3947. -ms-transform:rotate(135deg);
  3948. transform:rotate(135deg);
  3949. }
  3950. #u148012 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 2px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u148012_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. visibility:hidden;
  3962. }
  3963. #u148013_div {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:325px;
  3969. height:40px;
  3970. background:inherit;
  3971. background-color:rgba(255, 255, 255, 0);
  3972. border:none;
  3973. border-left:0px;
  3974. border-top:0px;
  3975. border-right:0px;
  3976. border-radius:0px;
  3977. border-bottom-right-radius:0px;
  3978. border-bottom-left-radius:0px;
  3979. -moz-box-shadow:none;
  3980. -webkit-box-shadow:none;
  3981. box-shadow:none;
  3982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:12px;
  3986. line-height:20px;
  3987. }
  3988. #u148013 {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:56px;
  3992. top:292px;
  3993. width:325px;
  3994. height:40px;
  3995. display:flex;
  3996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:12px;
  4000. line-height:20px;
  4001. }
  4002. #u148013 .text {
  4003. position:absolute;
  4004. align-self:flex-start;
  4005. padding:0px 0px 0px 0px;
  4006. box-sizing:border-box;
  4007. width:100%;
  4008. }
  4009. #u148013_text {
  4010. border-width:0px;
  4011. word-wrap:break-word;
  4012. text-transform:none;
  4013. }
  4014. #u148014_div {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:128px;
  4020. height:17px;
  4021. background:inherit;
  4022. background-color:rgba(255, 255, 255, 0);
  4023. border:none;
  4024. border-left:0px;
  4025. border-top:0px;
  4026. border-right:0px;
  4027. border-radius:0px;
  4028. border-bottom-right-radius:0px;
  4029. border-bottom-left-radius:0px;
  4030. -moz-box-shadow:none;
  4031. -webkit-box-shadow:none;
  4032. box-shadow:none;
  4033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:12px;
  4037. color:#AAAAAA;
  4038. }
  4039. #u148014 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:56px;
  4043. top:217px;
  4044. width:128px;
  4045. height:17px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:12px;
  4051. color:#AAAAAA;
  4052. }
  4053. #u148014 .text {
  4054. position:absolute;
  4055. align-self:flex-start;
  4056. padding:0px 0px 0px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u148014_text {
  4061. border-width:0px;
  4062. white-space:nowrap;
  4063. text-transform:none;
  4064. }
  4065. #u148016_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:433px;
  4071. height:865px;
  4072. }
  4073. #u148016 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:464px;
  4077. top:0px;
  4078. width:433px;
  4079. height:865px;
  4080. display:flex;
  4081. }
  4082. #u148016 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 2px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u148016_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. visibility:hidden;
  4094. }
  4095. #u148017_div {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:375px;
  4101. height:40px;
  4102. background:inherit;
  4103. background-color:rgba(255, 255, 255, 1);
  4104. box-sizing:border-box;
  4105. border-width:1px;
  4106. border-style:solid;
  4107. border-color:rgba(215, 215, 215, 1);
  4108. border-left:0px;
  4109. border-top:0px;
  4110. border-right:0px;
  4111. border-radius:0px;
  4112. border-bottom-right-radius:0px;
  4113. border-bottom-left-radius:0px;
  4114. -moz-box-shadow:none;
  4115. -webkit-box-shadow:none;
  4116. box-shadow:none;
  4117. }
  4118. #u148017 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:493px;
  4122. top:67px;
  4123. width:375px;
  4124. height:40px;
  4125. display:flex;
  4126. }
  4127. #u148017 .text {
  4128. position:absolute;
  4129. align-self:center;
  4130. padding:2px 2px 2px 2px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u148017_text {
  4135. border-width:0px;
  4136. word-wrap:break-word;
  4137. text-transform:none;
  4138. visibility:hidden;
  4139. }
  4140. #u148018 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:0px;
  4146. height:0px;
  4147. }
  4148. #u148019_div {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:88px;
  4154. height:32px;
  4155. background:inherit;
  4156. background-color:rgba(255, 255, 255, 1);
  4157. box-sizing:border-box;
  4158. border-width:1px;
  4159. border-style:solid;
  4160. border-color:rgba(242, 242, 242, 1);
  4161. border-radius:33px;
  4162. -moz-box-shadow:none;
  4163. -webkit-box-shadow:none;
  4164. box-shadow:none;
  4165. }
  4166. #u148019 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:773px;
  4170. top:71px;
  4171. width:88px;
  4172. height:32px;
  4173. display:flex;
  4174. }
  4175. #u148019 .text {
  4176. position:absolute;
  4177. align-self:center;
  4178. padding:2px 2px 2px 2px;
  4179. box-sizing:border-box;
  4180. width:100%;
  4181. }
  4182. #u148019_text {
  4183. border-width:0px;
  4184. word-wrap:break-word;
  4185. text-transform:none;
  4186. visibility:hidden;
  4187. }
  4188. #u148020 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:0px;
  4194. height:0px;
  4195. }
  4196. #u148021_img {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:18px;
  4202. height:18px;
  4203. }
  4204. #u148021 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:836px;
  4208. top:78px;
  4209. width:18px;
  4210. height:18px;
  4211. display:flex;
  4212. }
  4213. #u148021 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 2px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u148021_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u148022_img {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:6px;
  4232. height:6px;
  4233. }
  4234. #u148022 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:842px;
  4238. top:84px;
  4239. width:6px;
  4240. height:6px;
  4241. display:flex;
  4242. }
  4243. #u148022 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 2px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u148022_text {
  4251. border-width:0px;
  4252. word-wrap:break-word;
  4253. text-transform:none;
  4254. visibility:hidden;
  4255. }
  4256. #u148023 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:0px;
  4262. height:0px;
  4263. }
  4264. #u148024_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:5px;
  4270. height:5px;
  4271. }
  4272. #u148024 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:787px;
  4276. top:85px;
  4277. width:5px;
  4278. height:5px;
  4279. display:flex;
  4280. }
  4281. #u148024 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 2px 2px 2px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u148024_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. visibility:hidden;
  4293. }
  4294. #u148025_img {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:5px;
  4300. height:5px;
  4301. }
  4302. #u148025 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:803px;
  4306. top:85px;
  4307. width:5px;
  4308. height:5px;
  4309. display:flex;
  4310. }
  4311. #u148025 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 2px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u148025_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. visibility:hidden;
  4323. }
  4324. #u148026_img {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:7px;
  4330. height:7px;
  4331. }
  4332. #u148026 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:794px;
  4336. top:84px;
  4337. width:7px;
  4338. height:7px;
  4339. display:flex;
  4340. }
  4341. #u148026 .text {
  4342. position:absolute;
  4343. align-self:center;
  4344. padding:2px 2px 2px 2px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u148026_text {
  4349. border-width:0px;
  4350. word-wrap:break-word;
  4351. text-transform:none;
  4352. visibility:hidden;
  4353. }
  4354. #u148027_img {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:19px;
  4360. height:2px;
  4361. }
  4362. #u148027 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:811px;
  4366. top:87px;
  4367. width:18px;
  4368. height:1px;
  4369. display:flex;
  4370. -webkit-transform:rotate(90deg);
  4371. -moz-transform:rotate(90deg);
  4372. -ms-transform:rotate(90deg);
  4373. transform:rotate(90deg);
  4374. }
  4375. #u148027 .text {
  4376. position:absolute;
  4377. align-self:center;
  4378. padding:2px 2px 2px 2px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u148027_text {
  4383. border-width:0px;
  4384. word-wrap:break-word;
  4385. text-transform:none;
  4386. visibility:hidden;
  4387. }
  4388. #u148028_img {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:375px;
  4394. height:44px;
  4395. }
  4396. #u148028 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:493px;
  4400. top:24px;
  4401. width:375px;
  4402. height:44px;
  4403. display:flex;
  4404. }
  4405. #u148028 .text {
  4406. position:absolute;
  4407. align-self:center;
  4408. padding:2px 2px 2px 2px;
  4409. box-sizing:border-box;
  4410. width:100%;
  4411. }
  4412. #u148028_text {
  4413. border-width:0px;
  4414. word-wrap:break-word;
  4415. text-transform:none;
  4416. visibility:hidden;
  4417. }
  4418. #u148029_div {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:375px;
  4424. height:50px;
  4425. background:inherit;
  4426. background-color:rgba(255, 255, 255, 1);
  4427. box-sizing:border-box;
  4428. border-width:1px;
  4429. border-style:solid;
  4430. border-color:rgba(242, 242, 242, 1);
  4431. border-radius:26px;
  4432. border-top-left-radius:0px;
  4433. border-top-right-radius:0px;
  4434. -moz-box-shadow:none;
  4435. -webkit-box-shadow:none;
  4436. box-shadow:none;
  4437. }
  4438. #u148029 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:493px;
  4442. top:788px;
  4443. width:375px;
  4444. height:50px;
  4445. display:flex;
  4446. }
  4447. #u148029 .text {
  4448. position:absolute;
  4449. align-self:center;
  4450. padding:2px 2px 2px 2px;
  4451. box-sizing:border-box;
  4452. width:100%;
  4453. }
  4454. #u148029_text {
  4455. border-width:0px;
  4456. word-wrap:break-word;
  4457. text-transform:none;
  4458. visibility:hidden;
  4459. }
  4460. #u148030 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:0px;
  4466. height:0px;
  4467. }
  4468. #u148031_img {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:24px;
  4474. height:24px;
  4475. }
  4476. #u148031 {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:533px;
  4480. top:792px;
  4481. width:24px;
  4482. height:24px;
  4483. display:flex;
  4484. font-size:8px;
  4485. }
  4486. #u148031 .text {
  4487. position:absolute;
  4488. align-self:center;
  4489. padding:2px 2px 2px 2px;
  4490. box-sizing:border-box;
  4491. width:100%;
  4492. }
  4493. #u148031_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. }
  4498. #u148032_div {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:25px;
  4504. height:17px;
  4505. background:inherit;
  4506. background-color:rgba(255, 255, 255, 0);
  4507. border:none;
  4508. border-radius:0px;
  4509. -moz-box-shadow:none;
  4510. -webkit-box-shadow:none;
  4511. box-shadow:none;
  4512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4513. font-weight:400;
  4514. font-style:normal;
  4515. font-size:12px;
  4516. }
  4517. #u148032 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:533px;
  4521. top:817px;
  4522. width:25px;
  4523. height:17px;
  4524. display:flex;
  4525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:12px;
  4529. }
  4530. #u148032 .text {
  4531. position:absolute;
  4532. align-self:flex-start;
  4533. padding:0px 0px 0px 0px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u148032_text {
  4538. border-width:0px;
  4539. white-space:nowrap;
  4540. text-transform:none;
  4541. }
  4542. #u148033 {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:0px;
  4548. height:0px;
  4549. }
  4550. #u148034_img {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:24px;
  4556. height:24px;
  4557. }
  4558. #u148034 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:803px;
  4562. top:794px;
  4563. width:24px;
  4564. height:24px;
  4565. display:flex;
  4566. font-size:8px;
  4567. }
  4568. #u148034 .text {
  4569. position:absolute;
  4570. align-self:center;
  4571. padding:2px 2px 2px 2px;
  4572. box-sizing:border-box;
  4573. width:100%;
  4574. }
  4575. #u148034_text {
  4576. border-width:0px;
  4577. word-wrap:break-word;
  4578. text-transform:none;
  4579. }
  4580. #u148035_div {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:0px;
  4584. top:0px;
  4585. width:25px;
  4586. height:17px;
  4587. background:inherit;
  4588. background-color:rgba(255, 255, 255, 0);
  4589. border:none;
  4590. border-radius:0px;
  4591. -moz-box-shadow:none;
  4592. -webkit-box-shadow:none;
  4593. box-shadow:none;
  4594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. font-size:12px;
  4598. }
  4599. #u148035 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:803px;
  4603. top:819px;
  4604. width:25px;
  4605. height:17px;
  4606. display:flex;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:12px;
  4611. }
  4612. #u148035 .text {
  4613. position:absolute;
  4614. align-self:flex-start;
  4615. padding:0px 0px 0px 0px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u148035_text {
  4620. border-width:0px;
  4621. white-space:nowrap;
  4622. text-transform:none;
  4623. }
  4624. #u148036_div {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:375px;
  4630. height:681px;
  4631. background:inherit;
  4632. background-color:rgba(242, 242, 242, 0.462745098039216);
  4633. border:none;
  4634. border-radius:0px;
  4635. -moz-box-shadow:none;
  4636. -webkit-box-shadow:none;
  4637. box-shadow:none;
  4638. }
  4639. #u148036 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:493px;
  4643. top:107px;
  4644. width:375px;
  4645. height:681px;
  4646. display:flex;
  4647. }
  4648. #u148036 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 2px 2px 2px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u148036_text {
  4656. border-width:0px;
  4657. word-wrap:break-word;
  4658. text-transform:none;
  4659. visibility:hidden;
  4660. }
  4661. #u148037 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:0px;
  4667. height:0px;
  4668. }
  4669. #u148038_img {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:24px;
  4675. height:24px;
  4676. }
  4677. #u148038 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:715px;
  4681. top:792px;
  4682. width:24px;
  4683. height:24px;
  4684. display:flex;
  4685. font-size:8px;
  4686. }
  4687. #u148038 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:2px 2px 2px 2px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u148038_text {
  4695. border-width:0px;
  4696. word-wrap:break-word;
  4697. text-transform:none;
  4698. }
  4699. #u148039_div {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:37px;
  4705. height:17px;
  4706. background:inherit;
  4707. background-color:rgba(255, 255, 255, 0);
  4708. border:none;
  4709. border-radius:0px;
  4710. -moz-box-shadow:none;
  4711. -webkit-box-shadow:none;
  4712. box-shadow:none;
  4713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4714. font-weight:400;
  4715. font-style:normal;
  4716. font-size:12px;
  4717. }
  4718. #u148039 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:709px;
  4722. top:817px;
  4723. width:37px;
  4724. height:17px;
  4725. display:flex;
  4726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4727. font-weight:400;
  4728. font-style:normal;
  4729. font-size:12px;
  4730. }
  4731. #u148039 .text {
  4732. position:absolute;
  4733. align-self:flex-start;
  4734. padding:0px 0px 0px 0px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u148039_text {
  4739. border-width:0px;
  4740. white-space:nowrap;
  4741. text-transform:none;
  4742. }
  4743. #u148040 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:0px;
  4749. height:0px;
  4750. }
  4751. #u148041_img {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:24px;
  4757. height:24px;
  4758. }
  4759. #u148041 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:621px;
  4763. top:792px;
  4764. width:24px;
  4765. height:24px;
  4766. display:flex;
  4767. font-size:8px;
  4768. }
  4769. #u148041 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:2px 2px 2px 2px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u148041_text {
  4777. border-width:0px;
  4778. word-wrap:break-word;
  4779. text-transform:none;
  4780. }
  4781. #u148042_div {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:37px;
  4787. height:17px;
  4788. background:inherit;
  4789. background-color:rgba(255, 255, 255, 0);
  4790. border:none;
  4791. border-radius:0px;
  4792. -moz-box-shadow:none;
  4793. -webkit-box-shadow:none;
  4794. box-shadow:none;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:12px;
  4799. }
  4800. #u148042 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:615px;
  4804. top:817px;
  4805. width:37px;
  4806. height:17px;
  4807. display:flex;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:12px;
  4812. }
  4813. #u148042 .text {
  4814. position:absolute;
  4815. align-self:flex-start;
  4816. padding:0px 0px 0px 0px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u148042_text {
  4821. border-width:0px;
  4822. white-space:nowrap;
  4823. text-transform:none;
  4824. }
  4825. #u148043_div {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:375px;
  4831. height:732px;
  4832. background:inherit;
  4833. background-color:rgba(242, 242, 242, 0.996078431372549);
  4834. border:none;
  4835. border-top:0px;
  4836. border-radius:28px;
  4837. border-top-left-radius:0px;
  4838. border-top-right-radius:0px;
  4839. -moz-box-shadow:none;
  4840. -webkit-box-shadow:none;
  4841. box-shadow:none;
  4842. }
  4843. #u148043 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:493px;
  4847. top:107px;
  4848. width:375px;
  4849. height:732px;
  4850. display:flex;
  4851. }
  4852. #u148043 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 2px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u148043_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u148044 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:0px;
  4871. height:0px;
  4872. }
  4873. #u148045_div {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:88px;
  4879. height:32px;
  4880. background:inherit;
  4881. background-color:rgba(255, 255, 255, 1);
  4882. box-sizing:border-box;
  4883. border-width:1px;
  4884. border-style:solid;
  4885. border-color:rgba(242, 242, 242, 1);
  4886. border-radius:33px;
  4887. -moz-box-shadow:none;
  4888. -webkit-box-shadow:none;
  4889. box-shadow:none;
  4890. }
  4891. #u148045 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:772px;
  4895. top:71px;
  4896. width:88px;
  4897. height:32px;
  4898. display:flex;
  4899. }
  4900. #u148045 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 2px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u148045_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. visibility:hidden;
  4912. }
  4913. #u148046 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:0px;
  4919. height:0px;
  4920. }
  4921. #u148047_img {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:18px;
  4927. height:18px;
  4928. }
  4929. #u148047 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:835px;
  4933. top:78px;
  4934. width:18px;
  4935. height:18px;
  4936. display:flex;
  4937. }
  4938. #u148047 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:2px 2px 2px 2px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u148047_text {
  4946. border-width:0px;
  4947. word-wrap:break-word;
  4948. text-transform:none;
  4949. visibility:hidden;
  4950. }
  4951. #u148048_img {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:6px;
  4957. height:6px;
  4958. }
  4959. #u148048 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:841px;
  4963. top:84px;
  4964. width:6px;
  4965. height:6px;
  4966. display:flex;
  4967. }
  4968. #u148048 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 2px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u148048_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. visibility:hidden;
  4980. }
  4981. #u148049 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:0px;
  4987. height:0px;
  4988. }
  4989. #u148050_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:5px;
  4995. height:5px;
  4996. }
  4997. #u148050 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:786px;
  5001. top:85px;
  5002. width:5px;
  5003. height:5px;
  5004. display:flex;
  5005. }
  5006. #u148050 .text {
  5007. position:absolute;
  5008. align-self:center;
  5009. padding:2px 2px 2px 2px;
  5010. box-sizing:border-box;
  5011. width:100%;
  5012. }
  5013. #u148050_text {
  5014. border-width:0px;
  5015. word-wrap:break-word;
  5016. text-transform:none;
  5017. visibility:hidden;
  5018. }
  5019. #u148051_img {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:5px;
  5025. height:5px;
  5026. }
  5027. #u148051 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:802px;
  5031. top:85px;
  5032. width:5px;
  5033. height:5px;
  5034. display:flex;
  5035. }
  5036. #u148051 .text {
  5037. position:absolute;
  5038. align-self:center;
  5039. padding:2px 2px 2px 2px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u148051_text {
  5044. border-width:0px;
  5045. word-wrap:break-word;
  5046. text-transform:none;
  5047. visibility:hidden;
  5048. }
  5049. #u148052_img {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:7px;
  5055. height:7px;
  5056. }
  5057. #u148052 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:793px;
  5061. top:84px;
  5062. width:7px;
  5063. height:7px;
  5064. display:flex;
  5065. }
  5066. #u148052 .text {
  5067. position:absolute;
  5068. align-self:center;
  5069. padding:2px 2px 2px 2px;
  5070. box-sizing:border-box;
  5071. width:100%;
  5072. }
  5073. #u148052_text {
  5074. border-width:0px;
  5075. word-wrap:break-word;
  5076. text-transform:none;
  5077. visibility:hidden;
  5078. }
  5079. #u148053_img {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:19px;
  5085. height:2px;
  5086. }
  5087. #u148053 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:810px;
  5091. top:87px;
  5092. width:18px;
  5093. height:1px;
  5094. display:flex;
  5095. -webkit-transform:rotate(90deg);
  5096. -moz-transform:rotate(90deg);
  5097. -ms-transform:rotate(90deg);
  5098. transform:rotate(90deg);
  5099. }
  5100. #u148053 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:2px 2px 2px 2px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u148053_text {
  5108. border-width:0px;
  5109. word-wrap:break-word;
  5110. text-transform:none;
  5111. visibility:hidden;
  5112. }
  5113. #u148054_div {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:12px;
  5119. height:12px;
  5120. background:inherit;
  5121. background-color:rgba(255, 255, 255, 0);
  5122. box-sizing:border-box;
  5123. border-width:2px;
  5124. border-style:solid;
  5125. border-color:rgba(51, 51, 51, 1);
  5126. border-right:0px;
  5127. border-bottom:0px;
  5128. border-radius:0px;
  5129. border-top-right-radius:0px;
  5130. border-bottom-left-radius:0px;
  5131. -moz-box-shadow:none;
  5132. -webkit-box-shadow:none;
  5133. box-shadow:none;
  5134. }
  5135. #u148054 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:507px;
  5139. top:81px;
  5140. width:12px;
  5141. height:12px;
  5142. display:flex;
  5143. -webkit-transform:rotate(315deg);
  5144. -moz-transform:rotate(315deg);
  5145. -ms-transform:rotate(315deg);
  5146. transform:rotate(315deg);
  5147. }
  5148. #u148054 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 2px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u148054_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u148055_div {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:33px;
  5167. height:22px;
  5168. background:inherit;
  5169. background-color:rgba(255, 255, 255, 0);
  5170. border:none;
  5171. border-radius:0px;
  5172. -moz-box-shadow:none;
  5173. -webkit-box-shadow:none;
  5174. box-shadow:none;
  5175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. font-size:16px;
  5179. color:#000000;
  5180. }
  5181. #u148055 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:531px;
  5185. top:76px;
  5186. width:33px;
  5187. height:22px;
  5188. display:flex;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:16px;
  5193. color:#000000;
  5194. }
  5195. #u148055 .text {
  5196. position:absolute;
  5197. align-self:flex-start;
  5198. padding:0px 0px 0px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u148055_text {
  5203. border-width:0px;
  5204. white-space:nowrap;
  5205. text-transform:none;
  5206. }
  5207. #u148056 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:0px;
  5213. height:0px;
  5214. }
  5215. #u148057_div {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:375px;
  5221. height:60px;
  5222. background:inherit;
  5223. background-color:rgba(255, 255, 255, 1);
  5224. box-sizing:border-box;
  5225. border-width:1px;
  5226. border-style:solid;
  5227. border-color:rgba(242, 242, 242, 1);
  5228. border-radius:20px;
  5229. border-top-left-radius:0px;
  5230. border-top-right-radius:0px;
  5231. -moz-box-shadow:none;
  5232. -webkit-box-shadow:none;
  5233. box-shadow:none;
  5234. }
  5235. #u148057 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:493px;
  5239. top:779px;
  5240. width:375px;
  5241. height:60px;
  5242. display:flex;
  5243. }
  5244. #u148057 .text {
  5245. position:absolute;
  5246. align-self:center;
  5247. padding:2px 2px 2px 2px;
  5248. box-sizing:border-box;
  5249. width:100%;
  5250. }
  5251. #u148057_text {
  5252. border-width:0px;
  5253. word-wrap:break-word;
  5254. text-transform:none;
  5255. visibility:hidden;
  5256. }
  5257. #u148058_div {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:160px;
  5263. height:40px;
  5264. background:inherit;
  5265. background-color:rgba(0, 137, 254, 1);
  5266. border:none;
  5267. border-radius:63px;
  5268. -moz-box-shadow:none;
  5269. -webkit-box-shadow:none;
  5270. box-shadow:none;
  5271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. font-size:14px;
  5275. color:#FFFFFF;
  5276. }
  5277. #u148058 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:688px;
  5281. top:789px;
  5282. width:160px;
  5283. height:40px;
  5284. display:flex;
  5285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:14px;
  5289. color:#FFFFFF;
  5290. }
  5291. #u148058 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 2px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u148058_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. }
  5303. #u148059_div {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:160px;
  5309. height:40px;
  5310. background:inherit;
  5311. background-color:rgba(255, 255, 255, 1);
  5312. box-sizing:border-box;
  5313. border-width:1px;
  5314. border-style:solid;
  5315. border-color:rgba(121, 121, 121, 1);
  5316. border-radius:63px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:14px;
  5324. }
  5325. #u148059 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:513px;
  5329. top:789px;
  5330. width:160px;
  5331. height:40px;
  5332. display:flex;
  5333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:14px;
  5337. }
  5338. #u148059 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 2px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u148059_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. }
  5350. #u148060 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:0px;
  5356. height:0px;
  5357. }
  5358. #u148061_img {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:355px;
  5364. height:399px;
  5365. }
  5366. #u148061 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:503px;
  5370. top:227px;
  5371. width:355px;
  5372. height:399px;
  5373. display:flex;
  5374. }
  5375. #u148061 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:2px 2px 2px 2px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u148061_text {
  5383. border-width:0px;
  5384. word-wrap:break-word;
  5385. text-transform:none;
  5386. visibility:hidden;
  5387. }
  5388. #u148062 {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:0px;
  5394. height:0px;
  5395. }
  5396. #u148063_div {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:318px;
  5402. height:171px;
  5403. background:inherit;
  5404. background-color:rgba(242, 242, 242, 1);
  5405. border:none;
  5406. border-radius:4px;
  5407. -moz-box-shadow:none;
  5408. -webkit-box-shadow:none;
  5409. box-shadow:none;
  5410. }
  5411. #u148063 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:523px;
  5415. top:271px;
  5416. width:318px;
  5417. height:171px;
  5418. display:flex;
  5419. }
  5420. #u148063 .text {
  5421. position:absolute;
  5422. align-self:center;
  5423. padding:2px 2px 2px 2px;
  5424. box-sizing:border-box;
  5425. width:100%;
  5426. }
  5427. #u148063_text {
  5428. border-width:0px;
  5429. word-wrap:break-word;
  5430. text-transform:none;
  5431. visibility:hidden;
  5432. }
  5433. #u148064_div {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:73px;
  5439. height:125px;
  5440. background:inherit;
  5441. background-color:rgba(255, 255, 255, 0);
  5442. border:none;
  5443. border-left:0px;
  5444. border-top:0px;
  5445. border-right:0px;
  5446. border-radius:0px;
  5447. border-bottom-right-radius:0px;
  5448. border-bottom-left-radius:0px;
  5449. -moz-box-shadow:none;
  5450. -webkit-box-shadow:none;
  5451. box-shadow:none;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:12px;
  5456. color:#7F7F7F;
  5457. line-height:25px;
  5458. }
  5459. #u148064 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:534px;
  5463. top:281px;
  5464. width:73px;
  5465. height:125px;
  5466. display:flex;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:12px;
  5471. color:#7F7F7F;
  5472. line-height:25px;
  5473. }
  5474. #u148064 .text {
  5475. position:absolute;
  5476. align-self:flex-start;
  5477. padding:0px 0px 0px 0px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u148064_text {
  5482. border-width:0px;
  5483. white-space:nowrap;
  5484. text-transform:none;
  5485. }
  5486. #u148065_div {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:166px;
  5492. height:150px;
  5493. background:inherit;
  5494. background-color:rgba(255, 255, 255, 0);
  5495. border:none;
  5496. border-left:0px;
  5497. border-top:0px;
  5498. border-right:0px;
  5499. border-radius:0px;
  5500. border-bottom-right-radius:0px;
  5501. border-bottom-left-radius:0px;
  5502. -moz-box-shadow:none;
  5503. -webkit-box-shadow:none;
  5504. box-shadow:none;
  5505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. font-size:12px;
  5509. text-align:right;
  5510. line-height:25px;
  5511. }
  5512. #u148065 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:664px;
  5516. top:281px;
  5517. width:166px;
  5518. height:150px;
  5519. display:flex;
  5520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:12px;
  5524. text-align:right;
  5525. line-height:25px;
  5526. }
  5527. #u148065 .text {
  5528. position:absolute;
  5529. align-self:flex-start;
  5530. padding:0px 0px 0px 0px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u148065_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. }
  5539. #u148066 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:0px;
  5545. height:0px;
  5546. }
  5547. #u148067_div {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:53px;
  5553. height:30px;
  5554. background:inherit;
  5555. background-color:rgba(255, 255, 255, 0);
  5556. border:none;
  5557. border-left:0px;
  5558. border-top:0px;
  5559. border-right:0px;
  5560. border-radius:0px;
  5561. border-bottom-right-radius:0px;
  5562. border-bottom-left-radius:0px;
  5563. -moz-box-shadow:none;
  5564. -webkit-box-shadow:none;
  5565. box-shadow:none;
  5566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5567. font-weight:400;
  5568. font-style:normal;
  5569. font-size:12px;
  5570. line-height:30px;
  5571. }
  5572. #u148067 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:520px;
  5576. top:237px;
  5577. width:53px;
  5578. height:30px;
  5579. display:flex;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:12px;
  5584. line-height:30px;
  5585. }
  5586. #u148067 .text {
  5587. position:absolute;
  5588. align-self:flex-start;
  5589. padding:0px 0px 0px 0px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u148067_text {
  5594. border-width:0px;
  5595. white-space:nowrap;
  5596. text-transform:none;
  5597. }
  5598. #u148068_div {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:11px;
  5604. height:11px;
  5605. background:inherit;
  5606. background-color:rgba(255, 255, 255, 0);
  5607. box-sizing:border-box;
  5608. border-width:1px;
  5609. border-style:solid;
  5610. border-color:rgba(170, 170, 170, 1);
  5611. border-right:0px;
  5612. border-bottom:0px;
  5613. border-radius:0px;
  5614. border-top-right-radius:0px;
  5615. border-bottom-left-radius:0px;
  5616. -moz-box-shadow:none;
  5617. -webkit-box-shadow:none;
  5618. box-shadow:none;
  5619. }
  5620. #u148068 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:824px;
  5624. top:247px;
  5625. width:11px;
  5626. height:11px;
  5627. display:flex;
  5628. -webkit-transform:rotate(45deg);
  5629. -moz-transform:rotate(45deg);
  5630. -ms-transform:rotate(45deg);
  5631. transform:rotate(45deg);
  5632. }
  5633. #u148068 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 2px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u148068_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. visibility:hidden;
  5645. }
  5646. #u148069_div {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:318px;
  5652. height:51px;
  5653. background:inherit;
  5654. background-color:rgba(255, 255, 255, 0);
  5655. border:none;
  5656. border-left:0px;
  5657. border-top:0px;
  5658. border-right:0px;
  5659. border-radius:0px;
  5660. border-bottom-right-radius:0px;
  5661. border-bottom-left-radius:0px;
  5662. -moz-box-shadow:none;
  5663. -webkit-box-shadow:none;
  5664. box-shadow:none;
  5665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5666. font-weight:400;
  5667. font-style:normal;
  5668. font-size:12px;
  5669. }
  5670. #u148069 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:523px;
  5674. top:452px;
  5675. width:318px;
  5676. height:51px;
  5677. display:flex;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:12px;
  5682. }
  5683. #u148069 .text {
  5684. position:absolute;
  5685. align-self:flex-start;
  5686. padding:0px 0px 0px 0px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u148069_text {
  5691. border-width:0px;
  5692. word-wrap:break-word;
  5693. text-transform:none;
  5694. }
  5695. #u148070_img {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:87px;
  5701. height:71px;
  5702. }
  5703. #u148070 {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:523px;
  5707. top:523px;
  5708. width:87px;
  5709. height:71px;
  5710. display:flex;
  5711. }
  5712. #u148070 .text {
  5713. position:absolute;
  5714. align-self:center;
  5715. padding:2px 2px 2px 2px;
  5716. box-sizing:border-box;
  5717. width:100%;
  5718. }
  5719. #u148070_text {
  5720. border-width:0px;
  5721. word-wrap:break-word;
  5722. text-transform:none;
  5723. visibility:hidden;
  5724. }
  5725. #u148071_img {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:0px;
  5729. top:0px;
  5730. width:87px;
  5731. height:71px;
  5732. }
  5733. #u148071 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:625px;
  5737. top:523px;
  5738. width:87px;
  5739. height:71px;
  5740. display:flex;
  5741. }
  5742. #u148071 .text {
  5743. position:absolute;
  5744. align-self:center;
  5745. padding:2px 2px 2px 2px;
  5746. box-sizing:border-box;
  5747. width:100%;
  5748. }
  5749. #u148071_text {
  5750. border-width:0px;
  5751. word-wrap:break-word;
  5752. text-transform:none;
  5753. visibility:hidden;
  5754. }
  5755. #u148072_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:375px;
  5761. height:110px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 1);
  5764. border:none;
  5765. border-left:0px;
  5766. border-top:0px;
  5767. border-right:0px;
  5768. border-radius:0px;
  5769. border-bottom-right-radius:0px;
  5770. border-bottom-left-radius:0px;
  5771. -moz-box-shadow:none;
  5772. -webkit-box-shadow:none;
  5773. box-shadow:none;
  5774. }
  5775. #u148072 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:493px;
  5779. top:107px;
  5780. width:375px;
  5781. height:110px;
  5782. display:flex;
  5783. }
  5784. #u148072 .text {
  5785. position:absolute;
  5786. align-self:center;
  5787. padding:2px 2px 2px 2px;
  5788. box-sizing:border-box;
  5789. width:100%;
  5790. }
  5791. #u148072_text {
  5792. border-width:0px;
  5793. word-wrap:break-word;
  5794. text-transform:none;
  5795. visibility:hidden;
  5796. }
  5797. #u148073_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:185px;
  5803. height:30px;
  5804. background:inherit;
  5805. background-color:rgba(255, 255, 255, 0);
  5806. border:none;
  5807. border-left:0px;
  5808. border-top:0px;
  5809. border-right:0px;
  5810. border-radius:0px;
  5811. border-bottom-right-radius:0px;
  5812. border-bottom-left-radius:0px;
  5813. -moz-box-shadow:none;
  5814. -webkit-box-shadow:none;
  5815. box-shadow:none;
  5816. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5817. font-weight:500;
  5818. font-style:normal;
  5819. font-size:14px;
  5820. line-height:30px;
  5821. }
  5822. #u148073 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:520px;
  5826. top:117px;
  5827. width:185px;
  5828. height:30px;
  5829. display:flex;
  5830. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5831. font-weight:500;
  5832. font-style:normal;
  5833. font-size:14px;
  5834. line-height:30px;
  5835. }
  5836. #u148073 .text {
  5837. position:absolute;
  5838. align-self:flex-start;
  5839. padding:0px 0px 0px 0px;
  5840. box-sizing:border-box;
  5841. width:100%;
  5842. }
  5843. #u148073_text {
  5844. border-width:0px;
  5845. white-space:nowrap;
  5846. text-transform:none;
  5847. }
  5848. #u148074_div {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:325px;
  5854. height:60px;
  5855. background:inherit;
  5856. background-color:rgba(255, 255, 255, 0);
  5857. border:none;
  5858. border-left:0px;
  5859. border-top:0px;
  5860. border-right:0px;
  5861. border-radius:0px;
  5862. border-bottom-right-radius:0px;
  5863. border-bottom-left-radius:0px;
  5864. -moz-box-shadow:none;
  5865. -webkit-box-shadow:none;
  5866. box-shadow:none;
  5867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. font-size:12px;
  5871. line-height:20px;
  5872. }
  5873. #u148074 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:520px;
  5877. top:147px;
  5878. width:325px;
  5879. height:60px;
  5880. display:flex;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:12px;
  5885. line-height:20px;
  5886. }
  5887. #u148074 .text {
  5888. position:absolute;
  5889. align-self:flex-start;
  5890. padding:0px 0px 0px 0px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u148074_text {
  5895. border-width:0px;
  5896. word-wrap:break-word;
  5897. text-transform:none;
  5898. }