styles.css 105 KB

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