styles.css 100 KB

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