styles.css 106 KB

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