styles.css 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1334px;
  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. #u179639_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u179639 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u179639 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u179639_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u179640_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u179640 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u179640 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u179640_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u179641 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u179642_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u179642 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u179642 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u179642_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u179643 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u179644_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u179644 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u179644 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u179644_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u179645_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u179645 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u179645 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u179645_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u179646 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u179647_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u179647 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u179647 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u179647_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u179648_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u179648 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u179648 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u179648_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u179649_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u179649 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u179649 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u179649_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u179650_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u179650 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u179650 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u179650_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u179651_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u179651 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u179651 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u179651_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u179652_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u179652 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u179652 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u179652_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u179653 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u179654_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u179654 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u179654 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u179654_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u179655_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u179655 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u179655 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u179655_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u179656 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u179657_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u179657 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u179657 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u179657_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u179658_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u179658 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u179658 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u179658_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u179659_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u179659 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u179659 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u179659_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u179660 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u179661_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u179661 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u179661 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u179661_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u179662_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u179662 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u179662 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u179662_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u179663 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u179664_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u179664 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u179664 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u179664_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u179665_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u179665 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u179665 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u179665_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u179666_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:739px;
  786. }
  787. #u179666 {
  788. border-width:0px;
  789. position:absolute;
  790. left:29px;
  791. top:106px;
  792. width:375px;
  793. height:739px;
  794. display:flex;
  795. }
  796. #u179666 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u179666_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u179667_img {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:11px;
  815. height:18px;
  816. }
  817. #u179667 {
  818. border-width:0px;
  819. position:absolute;
  820. left:40px;
  821. top:79px;
  822. width:11px;
  823. height:18px;
  824. display:flex;
  825. }
  826. #u179667 .text {
  827. position:absolute;
  828. align-self:center;
  829. padding:2px 2px 2px 2px;
  830. box-sizing:border-box;
  831. width:100%;
  832. }
  833. #u179667_text {
  834. border-width:0px;
  835. word-wrap:break-word;
  836. text-transform:none;
  837. visibility:hidden;
  838. }
  839. #u179668_div {
  840. border-width:0px;
  841. position:absolute;
  842. left:0px;
  843. top:0px;
  844. width:73px;
  845. height:25px;
  846. background:inherit;
  847. background-color:rgba(255, 255, 255, 0);
  848. border:none;
  849. border-radius:0px;
  850. -moz-box-shadow:none;
  851. -webkit-box-shadow:none;
  852. box-shadow:none;
  853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  854. font-weight:400;
  855. font-style:normal;
  856. font-size:18px;
  857. }
  858. #u179668 {
  859. border-width:0px;
  860. position:absolute;
  861. left:180px;
  862. top:75px;
  863. width:73px;
  864. height:25px;
  865. display:flex;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:18px;
  870. }
  871. #u179668 .text {
  872. position:absolute;
  873. align-self:flex-start;
  874. padding:0px 0px 0px 0px;
  875. box-sizing:border-box;
  876. width:100%;
  877. }
  878. #u179668_text {
  879. border-width:0px;
  880. white-space:nowrap;
  881. text-transform:none;
  882. }
  883. #u179669_div {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:375px;
  889. height:50px;
  890. background:inherit;
  891. background-color:rgba(255, 255, 255, 1);
  892. border:none;
  893. border-left:0px;
  894. border-top:0px;
  895. border-right:0px;
  896. border-radius:0px;
  897. border-bottom-right-radius:0px;
  898. border-bottom-left-radius:0px;
  899. -moz-box-shadow:none;
  900. -webkit-box-shadow:none;
  901. box-shadow:none;
  902. }
  903. #u179669 {
  904. border-width:0px;
  905. position:absolute;
  906. left:29px;
  907. top:278px;
  908. width:375px;
  909. height:50px;
  910. display:flex;
  911. }
  912. #u179669 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u179669_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u179670_div {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:64px;
  931. height:30px;
  932. background:inherit;
  933. background-color:rgba(255, 255, 255, 0);
  934. border:none;
  935. border-left:0px;
  936. border-top:0px;
  937. border-right:0px;
  938. border-radius:0px;
  939. border-bottom-right-radius:0px;
  940. border-bottom-left-radius:0px;
  941. -moz-box-shadow:none;
  942. -webkit-box-shadow:none;
  943. box-shadow:none;
  944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  945. font-weight:400;
  946. font-style:normal;
  947. font-size:14px;
  948. line-height:30px;
  949. }
  950. #u179670 {
  951. border-width:0px;
  952. position:absolute;
  953. left:49px;
  954. top:288px;
  955. width:64px;
  956. height:30px;
  957. display:flex;
  958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  959. font-weight:400;
  960. font-style:normal;
  961. font-size:14px;
  962. line-height:30px;
  963. }
  964. #u179670 .text {
  965. position:absolute;
  966. align-self:center;
  967. padding:0px 0px 0px 0px;
  968. box-sizing:border-box;
  969. width:100%;
  970. }
  971. #u179670_text {
  972. border-width:0px;
  973. white-space:nowrap;
  974. text-transform:none;
  975. }
  976. #u179671_div {
  977. border-width:0px;
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:375px;
  982. height:50px;
  983. background:inherit;
  984. background-color:rgba(255, 255, 255, 1);
  985. border:none;
  986. border-left:0px;
  987. border-top:0px;
  988. border-right:0px;
  989. border-radius:0px;
  990. border-bottom-right-radius:0px;
  991. border-bottom-left-radius:0px;
  992. -moz-box-shadow:none;
  993. -webkit-box-shadow:none;
  994. box-shadow:none;
  995. }
  996. #u179671 {
  997. border-width:0px;
  998. position:absolute;
  999. left:29px;
  1000. top:338px;
  1001. width:375px;
  1002. height:50px;
  1003. display:flex;
  1004. }
  1005. #u179671 .text {
  1006. position:absolute;
  1007. align-self:center;
  1008. padding:2px 2px 2px 2px;
  1009. box-sizing:border-box;
  1010. width:100%;
  1011. }
  1012. #u179671_text {
  1013. border-width:0px;
  1014. word-wrap:break-word;
  1015. text-transform:none;
  1016. visibility:hidden;
  1017. }
  1018. #u179672_div {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:50px;
  1024. height:30px;
  1025. background:inherit;
  1026. background-color:rgba(255, 255, 255, 0);
  1027. border:none;
  1028. border-left:0px;
  1029. border-top:0px;
  1030. border-right:0px;
  1031. border-radius:0px;
  1032. border-bottom-right-radius:0px;
  1033. border-bottom-left-radius:0px;
  1034. -moz-box-shadow:none;
  1035. -webkit-box-shadow:none;
  1036. box-shadow:none;
  1037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1038. font-weight:400;
  1039. font-style:normal;
  1040. font-size:14px;
  1041. line-height:30px;
  1042. }
  1043. #u179672 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:49px;
  1047. top:348px;
  1048. width:50px;
  1049. height:30px;
  1050. display:flex;
  1051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1052. font-weight:400;
  1053. font-style:normal;
  1054. font-size:14px;
  1055. line-height:30px;
  1056. }
  1057. #u179672 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:0px 0px 0px 0px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u179672_text {
  1065. border-width:0px;
  1066. white-space:nowrap;
  1067. text-transform:none;
  1068. }
  1069. #u179673_div {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:375px;
  1075. height:50px;
  1076. background:inherit;
  1077. background-color:rgba(255, 255, 255, 1);
  1078. border:none;
  1079. border-left:0px;
  1080. border-top:0px;
  1081. border-right:0px;
  1082. border-radius:0px;
  1083. border-bottom-right-radius:0px;
  1084. border-bottom-left-radius:0px;
  1085. -moz-box-shadow:none;
  1086. -webkit-box-shadow:none;
  1087. box-shadow:none;
  1088. }
  1089. #u179673 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:29px;
  1093. top:389px;
  1094. width:375px;
  1095. height:50px;
  1096. display:flex;
  1097. }
  1098. #u179673 .text {
  1099. position:absolute;
  1100. align-self:center;
  1101. padding:2px 2px 2px 2px;
  1102. box-sizing:border-box;
  1103. width:100%;
  1104. }
  1105. #u179673_text {
  1106. border-width:0px;
  1107. word-wrap:break-word;
  1108. text-transform:none;
  1109. visibility:hidden;
  1110. }
  1111. #u179674_div {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:64px;
  1117. height:30px;
  1118. background:inherit;
  1119. background-color:rgba(255, 255, 255, 0);
  1120. border:none;
  1121. border-left:0px;
  1122. border-top:0px;
  1123. border-right:0px;
  1124. border-radius:0px;
  1125. border-bottom-right-radius:0px;
  1126. border-bottom-left-radius:0px;
  1127. -moz-box-shadow:none;
  1128. -webkit-box-shadow:none;
  1129. box-shadow:none;
  1130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1131. font-weight:400;
  1132. font-style:normal;
  1133. font-size:14px;
  1134. line-height:30px;
  1135. }
  1136. #u179674 {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:49px;
  1140. top:399px;
  1141. width:64px;
  1142. height:30px;
  1143. display:flex;
  1144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1145. font-weight:400;
  1146. font-style:normal;
  1147. font-size:14px;
  1148. line-height:30px;
  1149. }
  1150. #u179674 .text {
  1151. position:absolute;
  1152. align-self:center;
  1153. padding:0px 0px 0px 0px;
  1154. box-sizing:border-box;
  1155. width:100%;
  1156. }
  1157. #u179674_text {
  1158. border-width:0px;
  1159. white-space:nowrap;
  1160. text-transform:none;
  1161. }
  1162. #u179675_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:43px;
  1168. height:30px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-left:0px;
  1173. border-top:0px;
  1174. border-right:0px;
  1175. border-radius:0px;
  1176. border-bottom-right-radius:0px;
  1177. border-bottom-left-radius:0px;
  1178. -moz-box-shadow:none;
  1179. -webkit-box-shadow:none;
  1180. box-shadow:none;
  1181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1182. font-weight:400;
  1183. font-style:normal;
  1184. font-size:14px;
  1185. color:#AAAAAA;
  1186. text-align:right;
  1187. line-height:30px;
  1188. }
  1189. #u179675 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:341px;
  1193. top:348px;
  1194. width:43px;
  1195. height:30px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:14px;
  1201. color:#AAAAAA;
  1202. text-align:right;
  1203. line-height:30px;
  1204. }
  1205. #u179675 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:0px 0px 0px 0px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u179675_text {
  1213. border-width:0px;
  1214. white-space:nowrap;
  1215. text-transform:none;
  1216. }
  1217. #u179676_div {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:0px;
  1221. top:0px;
  1222. width:91px;
  1223. height:30px;
  1224. background:inherit;
  1225. background-color:rgba(255, 255, 255, 0);
  1226. border:none;
  1227. border-left:0px;
  1228. border-top:0px;
  1229. border-right:0px;
  1230. border-radius:0px;
  1231. border-bottom-right-radius:0px;
  1232. border-bottom-left-radius:0px;
  1233. -moz-box-shadow:none;
  1234. -webkit-box-shadow:none;
  1235. box-shadow:none;
  1236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1237. font-weight:400;
  1238. font-style:normal;
  1239. font-size:14px;
  1240. color:#AAAAAA;
  1241. text-align:right;
  1242. line-height:30px;
  1243. }
  1244. #u179676 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:293px;
  1248. top:399px;
  1249. width:91px;
  1250. height:30px;
  1251. display:flex;
  1252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1253. font-weight:400;
  1254. font-style:normal;
  1255. font-size:14px;
  1256. color:#AAAAAA;
  1257. text-align:right;
  1258. line-height:30px;
  1259. }
  1260. #u179676 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u179676_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u179677_div {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:344px;
  1278. height:40px;
  1279. background:inherit;
  1280. background-color:rgba(24, 144, 255, 1);
  1281. border:none;
  1282. border-radius:81px;
  1283. -moz-box-shadow:none;
  1284. -webkit-box-shadow:none;
  1285. box-shadow:none;
  1286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1287. font-weight:400;
  1288. font-style:normal;
  1289. font-size:14px;
  1290. color:#FFFFFF;
  1291. }
  1292. #u179677 {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:49px;
  1296. top:797px;
  1297. width:344px;
  1298. height:40px;
  1299. display:flex;
  1300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1301. font-weight:400;
  1302. font-style:normal;
  1303. font-size:14px;
  1304. color:#FFFFFF;
  1305. }
  1306. #u179677 .text {
  1307. position:absolute;
  1308. align-self:center;
  1309. padding:2px 2px 2px 2px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u179677_text {
  1314. border-width:0px;
  1315. word-wrap:break-word;
  1316. text-transform:none;
  1317. }
  1318. #u179678_div {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:375px;
  1324. height:50px;
  1325. background:inherit;
  1326. background-color:rgba(255, 255, 255, 1);
  1327. border:none;
  1328. border-left:0px;
  1329. border-top:0px;
  1330. border-right:0px;
  1331. border-radius:0px;
  1332. border-bottom-right-radius:0px;
  1333. border-bottom-left-radius:0px;
  1334. -moz-box-shadow:none;
  1335. -webkit-box-shadow:none;
  1336. box-shadow:none;
  1337. }
  1338. #u179678 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:29px;
  1342. top:227px;
  1343. width:375px;
  1344. height:50px;
  1345. display:flex;
  1346. }
  1347. #u179678 .text {
  1348. position:absolute;
  1349. align-self:center;
  1350. padding:2px 2px 2px 2px;
  1351. box-sizing:border-box;
  1352. width:100%;
  1353. }
  1354. #u179678_text {
  1355. border-width:0px;
  1356. word-wrap:break-word;
  1357. text-transform:none;
  1358. visibility:hidden;
  1359. }
  1360. #u179679_div {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:0px;
  1364. top:0px;
  1365. width:64px;
  1366. height:30px;
  1367. background:inherit;
  1368. background-color:rgba(255, 255, 255, 0);
  1369. border:none;
  1370. border-left:0px;
  1371. border-top:0px;
  1372. border-right:0px;
  1373. border-radius:0px;
  1374. border-bottom-right-radius:0px;
  1375. border-bottom-left-radius:0px;
  1376. -moz-box-shadow:none;
  1377. -webkit-box-shadow:none;
  1378. box-shadow:none;
  1379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1380. font-weight:400;
  1381. font-style:normal;
  1382. font-size:14px;
  1383. line-height:30px;
  1384. }
  1385. #u179679 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:49px;
  1389. top:237px;
  1390. width:64px;
  1391. height:30px;
  1392. display:flex;
  1393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1394. font-weight:400;
  1395. font-style:normal;
  1396. font-size:14px;
  1397. line-height:30px;
  1398. }
  1399. #u179679 .text {
  1400. position:absolute;
  1401. align-self:center;
  1402. padding:0px 0px 0px 0px;
  1403. box-sizing:border-box;
  1404. width:100%;
  1405. }
  1406. #u179679_text {
  1407. border-width:0px;
  1408. white-space:nowrap;
  1409. text-transform:none;
  1410. }
  1411. #u179680_div {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:0px;
  1415. top:0px;
  1416. width:60px;
  1417. height:30px;
  1418. background:inherit;
  1419. background-color:rgba(24, 144, 255, 1);
  1420. border:none;
  1421. border-radius:4px;
  1422. -moz-box-shadow:none;
  1423. -webkit-box-shadow:none;
  1424. box-shadow:none;
  1425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. font-size:12px;
  1429. color:#FFFFFF;
  1430. }
  1431. #u179680 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:329px;
  1435. top:237px;
  1436. width:60px;
  1437. height:30px;
  1438. display:flex;
  1439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1440. font-weight:400;
  1441. font-style:normal;
  1442. font-size:12px;
  1443. color:#FFFFFF;
  1444. }
  1445. #u179680 .text {
  1446. position:absolute;
  1447. align-self:center;
  1448. padding:2px 2px 2px 2px;
  1449. box-sizing:border-box;
  1450. width:100%;
  1451. }
  1452. #u179680_text {
  1453. border-width:0px;
  1454. word-wrap:break-word;
  1455. text-transform:none;
  1456. }
  1457. #u179681_div {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:0px;
  1461. top:0px;
  1462. width:60px;
  1463. height:30px;
  1464. background:inherit;
  1465. background-color:rgba(255, 255, 255, 1);
  1466. box-sizing:border-box;
  1467. border-width:1px;
  1468. border-style:solid;
  1469. border-color:rgba(170, 170, 170, 1);
  1470. border-radius:4px;
  1471. -moz-box-shadow:none;
  1472. -webkit-box-shadow:none;
  1473. box-shadow:none;
  1474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1475. font-weight:400;
  1476. font-style:normal;
  1477. font-size:12px;
  1478. }
  1479. #u179681 {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:259px;
  1483. top:237px;
  1484. width:60px;
  1485. height:30px;
  1486. display:flex;
  1487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1488. font-weight:400;
  1489. font-style:normal;
  1490. font-size:12px;
  1491. }
  1492. #u179681 .text {
  1493. position:absolute;
  1494. align-self:center;
  1495. padding:2px 2px 2px 2px;
  1496. box-sizing:border-box;
  1497. width:100%;
  1498. }
  1499. #u179681_text {
  1500. border-width:0px;
  1501. word-wrap:break-word;
  1502. text-transform:none;
  1503. }
  1504. #u179682 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:0px;
  1510. height:0px;
  1511. }
  1512. #u179683_div {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:8px;
  1518. height:8px;
  1519. background:inherit;
  1520. background-color:rgba(255, 255, 255, 0);
  1521. box-sizing:border-box;
  1522. border-width:1px;
  1523. border-style:solid;
  1524. border-color:rgba(127, 127, 127, 1);
  1525. border-right:0px;
  1526. border-bottom:0px;
  1527. border-radius:0px;
  1528. border-top-right-radius:0px;
  1529. border-bottom-left-radius:0px;
  1530. -moz-box-shadow:none;
  1531. -webkit-box-shadow:none;
  1532. box-shadow:none;
  1533. }
  1534. #u179683 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:379px;
  1538. top:299px;
  1539. width:8px;
  1540. height:8px;
  1541. display:flex;
  1542. -webkit-transform:rotate(135deg);
  1543. -moz-transform:rotate(135deg);
  1544. -ms-transform:rotate(135deg);
  1545. transform:rotate(135deg);
  1546. }
  1547. #u179683 .text {
  1548. position:absolute;
  1549. align-self:center;
  1550. padding:2px 2px 2px 2px;
  1551. box-sizing:border-box;
  1552. width:100%;
  1553. }
  1554. #u179683_text {
  1555. border-width:0px;
  1556. word-wrap:break-word;
  1557. text-transform:none;
  1558. visibility:hidden;
  1559. }
  1560. #u179684_div {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:0px;
  1564. top:0px;
  1565. width:43px;
  1566. height:30px;
  1567. background:inherit;
  1568. background-color:rgba(255, 255, 255, 0);
  1569. border:none;
  1570. border-left:0px;
  1571. border-top:0px;
  1572. border-right:0px;
  1573. border-radius:0px;
  1574. border-bottom-right-radius:0px;
  1575. border-bottom-left-radius:0px;
  1576. -moz-box-shadow:none;
  1577. -webkit-box-shadow:none;
  1578. box-shadow:none;
  1579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1580. font-weight:400;
  1581. font-style:normal;
  1582. font-size:14px;
  1583. color:#AAAAAA;
  1584. text-align:right;
  1585. line-height:30px;
  1586. }
  1587. #u179684 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:329px;
  1591. top:288px;
  1592. width:43px;
  1593. height:30px;
  1594. display:flex;
  1595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1596. font-weight:400;
  1597. font-style:normal;
  1598. font-size:14px;
  1599. color:#AAAAAA;
  1600. text-align:right;
  1601. line-height:30px;
  1602. }
  1603. #u179684 .text {
  1604. position:absolute;
  1605. align-self:center;
  1606. padding:0px 0px 0px 0px;
  1607. box-sizing:border-box;
  1608. width:100%;
  1609. }
  1610. #u179684_text {
  1611. border-width:0px;
  1612. white-space:nowrap;
  1613. text-transform:none;
  1614. }
  1615. #u179685_div {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:375px;
  1621. height:50px;
  1622. background:inherit;
  1623. background-color:rgba(255, 255, 255, 1);
  1624. border:none;
  1625. border-left:0px;
  1626. border-top:0px;
  1627. border-right:0px;
  1628. border-radius:0px;
  1629. border-bottom-right-radius:0px;
  1630. border-bottom-left-radius:0px;
  1631. -moz-box-shadow:none;
  1632. -webkit-box-shadow:none;
  1633. box-shadow:none;
  1634. }
  1635. #u179685 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:29px;
  1639. top:116px;
  1640. width:375px;
  1641. height:50px;
  1642. display:flex;
  1643. }
  1644. #u179685 .text {
  1645. position:absolute;
  1646. align-self:center;
  1647. padding:2px 2px 2px 2px;
  1648. box-sizing:border-box;
  1649. width:100%;
  1650. }
  1651. #u179685_text {
  1652. border-width:0px;
  1653. word-wrap:break-word;
  1654. text-transform:none;
  1655. visibility:hidden;
  1656. }
  1657. #u179686_div {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:0px;
  1661. top:0px;
  1662. width:64px;
  1663. height:30px;
  1664. background:inherit;
  1665. background-color:rgba(255, 255, 255, 0);
  1666. border:none;
  1667. border-left:0px;
  1668. border-top:0px;
  1669. border-right:0px;
  1670. border-radius:0px;
  1671. border-bottom-right-radius:0px;
  1672. border-bottom-left-radius:0px;
  1673. -moz-box-shadow:none;
  1674. -webkit-box-shadow:none;
  1675. box-shadow:none;
  1676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1677. font-weight:400;
  1678. font-style:normal;
  1679. font-size:14px;
  1680. line-height:30px;
  1681. }
  1682. #u179686 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:49px;
  1686. top:126px;
  1687. width:64px;
  1688. height:30px;
  1689. display:flex;
  1690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:14px;
  1694. line-height:30px;
  1695. }
  1696. #u179686 .text {
  1697. position:absolute;
  1698. align-self:center;
  1699. padding:0px 0px 0px 0px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u179686_text {
  1704. border-width:0px;
  1705. white-space:nowrap;
  1706. text-transform:none;
  1707. }
  1708. #u179687_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:8px;
  1714. height:8px;
  1715. background:inherit;
  1716. background-color:rgba(255, 255, 255, 0);
  1717. box-sizing:border-box;
  1718. border-width:1px;
  1719. border-style:solid;
  1720. border-color:rgba(127, 127, 127, 1);
  1721. border-right:0px;
  1722. border-bottom:0px;
  1723. border-radius:0px;
  1724. border-top-right-radius:0px;
  1725. border-bottom-left-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. }
  1730. #u179687 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:379px;
  1734. top:137px;
  1735. width:8px;
  1736. height:8px;
  1737. display:flex;
  1738. -webkit-transform:rotate(135deg);
  1739. -moz-transform:rotate(135deg);
  1740. -ms-transform:rotate(135deg);
  1741. transform:rotate(135deg);
  1742. }
  1743. #u179687 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:2px 2px 2px 2px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u179687_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. visibility:hidden;
  1755. }
  1756. #u179688_div {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:113px;
  1762. height:30px;
  1763. background:inherit;
  1764. background-color:rgba(255, 255, 255, 0);
  1765. border:none;
  1766. border-left:0px;
  1767. border-top:0px;
  1768. border-right:0px;
  1769. border-radius:0px;
  1770. border-bottom-right-radius:0px;
  1771. border-bottom-left-radius:0px;
  1772. -moz-box-shadow:none;
  1773. -webkit-box-shadow:none;
  1774. box-shadow:none;
  1775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:14px;
  1779. text-align:right;
  1780. line-height:30px;
  1781. }
  1782. #u179688 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:259px;
  1786. top:126px;
  1787. width:113px;
  1788. height:30px;
  1789. display:flex;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:14px;
  1794. text-align:right;
  1795. line-height:30px;
  1796. }
  1797. #u179688 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:0px 0px 0px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u179688_text {
  1805. border-width:0px;
  1806. white-space:nowrap;
  1807. text-transform:none;
  1808. }
  1809. #u179689 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:0px;
  1815. height:0px;
  1816. }
  1817. #u179690_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:375px;
  1823. height:180px;
  1824. background:inherit;
  1825. background-color:rgba(255, 255, 255, 1);
  1826. border:none;
  1827. border-left:0px;
  1828. border-top:0px;
  1829. border-right:0px;
  1830. border-radius:0px;
  1831. border-bottom-right-radius:0px;
  1832. border-bottom-left-radius:0px;
  1833. -moz-box-shadow:none;
  1834. -webkit-box-shadow:none;
  1835. box-shadow:none;
  1836. }
  1837. #u179690 {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:29px;
  1841. top:500px;
  1842. width:375px;
  1843. height:180px;
  1844. display:flex;
  1845. }
  1846. #u179690 .text {
  1847. position:absolute;
  1848. align-self:center;
  1849. padding:2px 2px 2px 2px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u179690_text {
  1854. border-width:0px;
  1855. word-wrap:break-word;
  1856. text-transform:none;
  1857. visibility:hidden;
  1858. }
  1859. #u179691_div {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:64px;
  1865. height:30px;
  1866. background:inherit;
  1867. background-color:rgba(255, 255, 255, 0);
  1868. border:none;
  1869. border-left:0px;
  1870. border-top:0px;
  1871. border-right:0px;
  1872. border-radius:0px;
  1873. border-bottom-right-radius:0px;
  1874. border-bottom-left-radius:0px;
  1875. -moz-box-shadow:none;
  1876. -webkit-box-shadow:none;
  1877. box-shadow:none;
  1878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1879. font-weight:400;
  1880. font-style:normal;
  1881. font-size:14px;
  1882. line-height:30px;
  1883. }
  1884. #u179691 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:49px;
  1888. top:510px;
  1889. width:64px;
  1890. height:30px;
  1891. display:flex;
  1892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1893. font-weight:400;
  1894. font-style:normal;
  1895. font-size:14px;
  1896. line-height:30px;
  1897. }
  1898. #u179691 .text {
  1899. position:absolute;
  1900. align-self:center;
  1901. padding:0px 0px 0px 0px;
  1902. box-sizing:border-box;
  1903. width:100%;
  1904. }
  1905. #u179691_text {
  1906. border-width:0px;
  1907. white-space:nowrap;
  1908. text-transform:none;
  1909. }
  1910. #u179692_div {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:345px;
  1916. height:30px;
  1917. background:inherit;
  1918. background-color:rgba(255, 255, 255, 0);
  1919. border:none;
  1920. border-left:0px;
  1921. border-top:0px;
  1922. border-right:0px;
  1923. border-radius:0px;
  1924. border-bottom-right-radius:0px;
  1925. border-bottom-left-radius:0px;
  1926. -moz-box-shadow:none;
  1927. -webkit-box-shadow:none;
  1928. box-shadow:none;
  1929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:14px;
  1933. color:#AAAAAA;
  1934. line-height:30px;
  1935. }
  1936. #u179692 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:54px;
  1940. top:540px;
  1941. width:345px;
  1942. height:30px;
  1943. display:flex;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. font-size:14px;
  1948. color:#AAAAAA;
  1949. line-height:30px;
  1950. }
  1951. #u179692 .text {
  1952. position:absolute;
  1953. align-self:flex-start;
  1954. padding:0px 0px 0px 0px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u179692_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. }
  1963. #u179693_div {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:60px;
  1969. height:60px;
  1970. background:inherit;
  1971. background-color:rgba(255, 255, 255, 1);
  1972. box-sizing:border-box;
  1973. border-width:1px;
  1974. border-style:solid;
  1975. border-color:rgba(170, 170, 170, 1);
  1976. border-radius:4px;
  1977. -moz-box-shadow:none;
  1978. -webkit-box-shadow:none;
  1979. box-shadow:none;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:18px;
  1984. }
  1985. #u179693 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:49px;
  1989. top:600px;
  1990. width:60px;
  1991. height:60px;
  1992. display:flex;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:18px;
  1997. }
  1998. #u179693 .text {
  1999. position:absolute;
  2000. align-self:center;
  2001. padding:2px 2px 2px 2px;
  2002. box-sizing:border-box;
  2003. width:100%;
  2004. }
  2005. #u179693_text {
  2006. border-width:0px;
  2007. word-wrap:break-word;
  2008. text-transform:none;
  2009. }
  2010. #u179694_div {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:375px;
  2016. height:50px;
  2017. background:inherit;
  2018. background-color:rgba(255, 255, 255, 1);
  2019. border:none;
  2020. border-left:0px;
  2021. border-top:0px;
  2022. border-right:0px;
  2023. border-radius:0px;
  2024. border-bottom-right-radius:0px;
  2025. border-bottom-left-radius:0px;
  2026. -moz-box-shadow:none;
  2027. -webkit-box-shadow:none;
  2028. box-shadow:none;
  2029. }
  2030. #u179694 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:29px;
  2034. top:440px;
  2035. width:375px;
  2036. height:50px;
  2037. display:flex;
  2038. }
  2039. #u179694 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 2px 2px 2px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u179694_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. visibility:hidden;
  2051. }
  2052. #u179695_div {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:57px;
  2058. height:30px;
  2059. background:inherit;
  2060. background-color:rgba(255, 255, 255, 0);
  2061. border:none;
  2062. border-left:0px;
  2063. border-top:0px;
  2064. border-right:0px;
  2065. border-radius:0px;
  2066. border-bottom-right-radius:0px;
  2067. border-bottom-left-radius:0px;
  2068. -moz-box-shadow:none;
  2069. -webkit-box-shadow:none;
  2070. box-shadow:none;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:14px;
  2075. line-height:30px;
  2076. }
  2077. #u179695 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:49px;
  2081. top:450px;
  2082. width:57px;
  2083. height:30px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:14px;
  2089. line-height:30px;
  2090. }
  2091. #u179695 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:0px 0px 0px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u179695_text {
  2099. border-width:0px;
  2100. white-space:nowrap;
  2101. text-transform:none;
  2102. }
  2103. #u179696 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:0px;
  2108. width:0px;
  2109. height:0px;
  2110. }
  2111. #u179697_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:8px;
  2117. height:8px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. box-sizing:border-box;
  2121. border-width:1px;
  2122. border-style:solid;
  2123. border-color:rgba(127, 127, 127, 1);
  2124. border-right:0px;
  2125. border-bottom:0px;
  2126. border-radius:0px;
  2127. border-top-right-radius:0px;
  2128. border-bottom-left-radius:0px;
  2129. -moz-box-shadow:none;
  2130. -webkit-box-shadow:none;
  2131. box-shadow:none;
  2132. }
  2133. #u179697 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:379px;
  2137. top:461px;
  2138. width:8px;
  2139. height:8px;
  2140. display:flex;
  2141. -webkit-transform:rotate(135deg);
  2142. -moz-transform:rotate(135deg);
  2143. -ms-transform:rotate(135deg);
  2144. transform:rotate(135deg);
  2145. }
  2146. #u179697 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:2px 2px 2px 2px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u179697_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. visibility:hidden;
  2158. }
  2159. #u179698_div {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:43px;
  2165. height:30px;
  2166. background:inherit;
  2167. background-color:rgba(255, 255, 255, 0);
  2168. border:none;
  2169. border-left:0px;
  2170. border-top:0px;
  2171. border-right:0px;
  2172. border-radius:0px;
  2173. border-bottom-right-radius:0px;
  2174. border-bottom-left-radius:0px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:14px;
  2182. color:#AAAAAA;
  2183. text-align:right;
  2184. line-height:30px;
  2185. }
  2186. #u179698 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:329px;
  2190. top:450px;
  2191. width:43px;
  2192. height:30px;
  2193. display:flex;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:14px;
  2198. color:#AAAAAA;
  2199. text-align:right;
  2200. line-height:30px;
  2201. }
  2202. #u179698 .text {
  2203. position:absolute;
  2204. align-self:center;
  2205. padding:0px 0px 0px 0px;
  2206. box-sizing:border-box;
  2207. width:100%;
  2208. }
  2209. #u179698_text {
  2210. border-width:0px;
  2211. white-space:nowrap;
  2212. text-transform:none;
  2213. }
  2214. #u179699_div {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:375px;
  2220. height:50px;
  2221. background:inherit;
  2222. background-color:rgba(255, 255, 255, 1);
  2223. border:none;
  2224. border-left:0px;
  2225. border-top:0px;
  2226. border-right:0px;
  2227. border-radius:0px;
  2228. border-bottom-right-radius:0px;
  2229. border-bottom-left-radius:0px;
  2230. -moz-box-shadow:none;
  2231. -webkit-box-shadow:none;
  2232. box-shadow:none;
  2233. }
  2234. #u179699 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:29px;
  2238. top:167px;
  2239. width:375px;
  2240. height:50px;
  2241. display:flex;
  2242. }
  2243. #u179699 .text {
  2244. position:absolute;
  2245. align-self:center;
  2246. padding:2px 2px 2px 2px;
  2247. box-sizing:border-box;
  2248. width:100%;
  2249. }
  2250. #u179699_text {
  2251. border-width:0px;
  2252. word-wrap:break-word;
  2253. text-transform:none;
  2254. visibility:hidden;
  2255. }
  2256. #u179700_div {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:64px;
  2262. height:30px;
  2263. background:inherit;
  2264. background-color:rgba(255, 255, 255, 0);
  2265. border:none;
  2266. border-left:0px;
  2267. border-top:0px;
  2268. border-right:0px;
  2269. border-radius:0px;
  2270. border-bottom-right-radius:0px;
  2271. border-bottom-left-radius:0px;
  2272. -moz-box-shadow:none;
  2273. -webkit-box-shadow:none;
  2274. box-shadow:none;
  2275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2276. font-weight:400;
  2277. font-style:normal;
  2278. font-size:14px;
  2279. line-height:30px;
  2280. }
  2281. #u179700 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:49px;
  2285. top:177px;
  2286. width:64px;
  2287. height:30px;
  2288. display:flex;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:14px;
  2293. line-height:30px;
  2294. }
  2295. #u179700 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:0px 0px 0px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u179700_text {
  2303. border-width:0px;
  2304. white-space:nowrap;
  2305. text-transform:none;
  2306. }
  2307. #u179701 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:0px;
  2313. height:0px;
  2314. }
  2315. #u179702_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:8px;
  2321. height:8px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. box-sizing:border-box;
  2325. border-width:1px;
  2326. border-style:solid;
  2327. border-color:rgba(127, 127, 127, 1);
  2328. border-right:0px;
  2329. border-bottom:0px;
  2330. border-radius:0px;
  2331. border-top-right-radius:0px;
  2332. border-bottom-left-radius:0px;
  2333. -moz-box-shadow:none;
  2334. -webkit-box-shadow:none;
  2335. box-shadow:none;
  2336. }
  2337. #u179702 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:379px;
  2341. top:188px;
  2342. width:8px;
  2343. height:8px;
  2344. display:flex;
  2345. -webkit-transform:rotate(135deg);
  2346. -moz-transform:rotate(135deg);
  2347. -ms-transform:rotate(135deg);
  2348. transform:rotate(135deg);
  2349. }
  2350. #u179702 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 2px 2px 2px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u179702_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. visibility:hidden;
  2362. }
  2363. #u179703_div {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:43px;
  2369. height:30px;
  2370. background:inherit;
  2371. background-color:rgba(255, 255, 255, 0);
  2372. border:none;
  2373. border-left:0px;
  2374. border-top:0px;
  2375. border-right:0px;
  2376. border-radius:0px;
  2377. border-bottom-right-radius:0px;
  2378. border-bottom-left-radius:0px;
  2379. -moz-box-shadow:none;
  2380. -webkit-box-shadow:none;
  2381. box-shadow:none;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:14px;
  2386. color:#AAAAAA;
  2387. text-align:right;
  2388. line-height:30px;
  2389. }
  2390. #u179703 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:329px;
  2394. top:177px;
  2395. width:43px;
  2396. height:30px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:14px;
  2402. color:#AAAAAA;
  2403. text-align:right;
  2404. line-height:30px;
  2405. }
  2406. #u179703 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:0px 0px 0px 0px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u179703_text {
  2414. border-width:0px;
  2415. white-space:nowrap;
  2416. text-transform:none;
  2417. }
  2418. #u179705_img {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:433px;
  2424. height:865px;
  2425. }
  2426. #u179705 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:452px;
  2430. top:0px;
  2431. width:433px;
  2432. height:865px;
  2433. display:flex;
  2434. }
  2435. #u179705 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 2px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u179705_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. visibility:hidden;
  2447. }
  2448. #u179706_div {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:375px;
  2454. height:40px;
  2455. background:inherit;
  2456. background-color:rgba(255, 255, 255, 1);
  2457. box-sizing:border-box;
  2458. border-width:1px;
  2459. border-style:solid;
  2460. border-color:rgba(215, 215, 215, 1);
  2461. border-left:0px;
  2462. border-top:0px;
  2463. border-right:0px;
  2464. border-radius:0px;
  2465. border-bottom-right-radius:0px;
  2466. border-bottom-left-radius:0px;
  2467. -moz-box-shadow:none;
  2468. -webkit-box-shadow:none;
  2469. box-shadow:none;
  2470. }
  2471. #u179706 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:481px;
  2475. top:67px;
  2476. width:375px;
  2477. height:40px;
  2478. display:flex;
  2479. }
  2480. #u179706 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:2px 2px 2px 2px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u179706_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. visibility:hidden;
  2492. }
  2493. #u179707 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:0px;
  2499. height:0px;
  2500. }
  2501. #u179708_div {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:88px;
  2507. height:32px;
  2508. background:inherit;
  2509. background-color:rgba(255, 255, 255, 1);
  2510. box-sizing:border-box;
  2511. border-width:1px;
  2512. border-style:solid;
  2513. border-color:rgba(242, 242, 242, 1);
  2514. border-radius:33px;
  2515. -moz-box-shadow:none;
  2516. -webkit-box-shadow:none;
  2517. box-shadow:none;
  2518. }
  2519. #u179708 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:761px;
  2523. top:71px;
  2524. width:88px;
  2525. height:32px;
  2526. display:flex;
  2527. }
  2528. #u179708 .text {
  2529. position:absolute;
  2530. align-self:center;
  2531. padding:2px 2px 2px 2px;
  2532. box-sizing:border-box;
  2533. width:100%;
  2534. }
  2535. #u179708_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. visibility:hidden;
  2540. }
  2541. #u179709 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:0px;
  2547. height:0px;
  2548. }
  2549. #u179710_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:18px;
  2555. height:18px;
  2556. }
  2557. #u179710 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:824px;
  2561. top:78px;
  2562. width:18px;
  2563. height:18px;
  2564. display:flex;
  2565. }
  2566. #u179710 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 2px 2px 2px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u179710_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u179711_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:6px;
  2585. height:6px;
  2586. }
  2587. #u179711 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:830px;
  2591. top:84px;
  2592. width:6px;
  2593. height:6px;
  2594. display:flex;
  2595. }
  2596. #u179711 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:2px 2px 2px 2px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u179711_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. visibility:hidden;
  2608. }
  2609. #u179712 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:0px;
  2615. height:0px;
  2616. }
  2617. #u179713_img {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:5px;
  2623. height:5px;
  2624. }
  2625. #u179713 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:775px;
  2629. top:85px;
  2630. width:5px;
  2631. height:5px;
  2632. display:flex;
  2633. }
  2634. #u179713 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 2px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u179713_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u179714_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:5px;
  2653. height:5px;
  2654. }
  2655. #u179714 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:791px;
  2659. top:85px;
  2660. width:5px;
  2661. height:5px;
  2662. display:flex;
  2663. }
  2664. #u179714 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 2px 2px 2px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u179714_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u179715_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:7px;
  2683. height:7px;
  2684. }
  2685. #u179715 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:782px;
  2689. top:84px;
  2690. width:7px;
  2691. height:7px;
  2692. display:flex;
  2693. }
  2694. #u179715 .text {
  2695. position:absolute;
  2696. align-self:center;
  2697. padding:2px 2px 2px 2px;
  2698. box-sizing:border-box;
  2699. width:100%;
  2700. }
  2701. #u179715_text {
  2702. border-width:0px;
  2703. word-wrap:break-word;
  2704. text-transform:none;
  2705. visibility:hidden;
  2706. }
  2707. #u179716_img {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:19px;
  2713. height:2px;
  2714. }
  2715. #u179716 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:799px;
  2719. top:87px;
  2720. width:18px;
  2721. height:1px;
  2722. display:flex;
  2723. -webkit-transform:rotate(90deg);
  2724. -moz-transform:rotate(90deg);
  2725. -ms-transform:rotate(90deg);
  2726. transform:rotate(90deg);
  2727. }
  2728. #u179716 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 2px 2px 2px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u179716_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. visibility:hidden;
  2740. }
  2741. #u179717_img {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:375px;
  2747. height:44px;
  2748. }
  2749. #u179717 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:481px;
  2753. top:24px;
  2754. width:375px;
  2755. height:44px;
  2756. display:flex;
  2757. }
  2758. #u179717 .text {
  2759. position:absolute;
  2760. align-self:center;
  2761. padding:2px 2px 2px 2px;
  2762. box-sizing:border-box;
  2763. width:100%;
  2764. }
  2765. #u179717_text {
  2766. border-width:0px;
  2767. word-wrap:break-word;
  2768. text-transform:none;
  2769. visibility:hidden;
  2770. }
  2771. #u179718_div {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:375px;
  2777. height:50px;
  2778. background:inherit;
  2779. background-color:rgba(255, 255, 255, 1);
  2780. box-sizing:border-box;
  2781. border-width:1px;
  2782. border-style:solid;
  2783. border-color:rgba(242, 242, 242, 1);
  2784. border-radius:26px;
  2785. border-top-left-radius:0px;
  2786. border-top-right-radius:0px;
  2787. -moz-box-shadow:none;
  2788. -webkit-box-shadow:none;
  2789. box-shadow:none;
  2790. }
  2791. #u179718 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:481px;
  2795. top:788px;
  2796. width:375px;
  2797. height:50px;
  2798. display:flex;
  2799. }
  2800. #u179718 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:2px 2px 2px 2px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u179718_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. visibility:hidden;
  2812. }
  2813. #u179719 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:0px;
  2819. height:0px;
  2820. }
  2821. #u179720_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:24px;
  2827. height:24px;
  2828. }
  2829. #u179720 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:521px;
  2833. top:792px;
  2834. width:24px;
  2835. height:24px;
  2836. display:flex;
  2837. font-size:8px;
  2838. }
  2839. #u179720 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:2px 2px 2px 2px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u179720_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. }
  2851. #u179721_div {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:25px;
  2857. height:17px;
  2858. background:inherit;
  2859. background-color:rgba(255, 255, 255, 0);
  2860. border:none;
  2861. border-radius:0px;
  2862. -moz-box-shadow:none;
  2863. -webkit-box-shadow:none;
  2864. box-shadow:none;
  2865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2866. font-weight:400;
  2867. font-style:normal;
  2868. font-size:12px;
  2869. }
  2870. #u179721 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:521px;
  2874. top:817px;
  2875. width:25px;
  2876. height:17px;
  2877. display:flex;
  2878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2879. font-weight:400;
  2880. font-style:normal;
  2881. font-size:12px;
  2882. }
  2883. #u179721 .text {
  2884. position:absolute;
  2885. align-self:flex-start;
  2886. padding:0px 0px 0px 0px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u179721_text {
  2891. border-width:0px;
  2892. white-space:nowrap;
  2893. text-transform:none;
  2894. }
  2895. #u179722 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:0px;
  2901. height:0px;
  2902. }
  2903. #u179723_img {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:24px;
  2909. height:24px;
  2910. }
  2911. #u179723 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:791px;
  2915. top:794px;
  2916. width:24px;
  2917. height:24px;
  2918. display:flex;
  2919. font-size:8px;
  2920. }
  2921. #u179723 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 2px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u179723_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. }
  2933. #u179724_div {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:25px;
  2939. height:17px;
  2940. background:inherit;
  2941. background-color:rgba(255, 255, 255, 0);
  2942. border:none;
  2943. border-radius:0px;
  2944. -moz-box-shadow:none;
  2945. -webkit-box-shadow:none;
  2946. box-shadow:none;
  2947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2948. font-weight:400;
  2949. font-style:normal;
  2950. font-size:12px;
  2951. }
  2952. #u179724 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:791px;
  2956. top:819px;
  2957. width:25px;
  2958. height:17px;
  2959. display:flex;
  2960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:12px;
  2964. }
  2965. #u179724 .text {
  2966. position:absolute;
  2967. align-self:flex-start;
  2968. padding:0px 0px 0px 0px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u179724_text {
  2973. border-width:0px;
  2974. white-space:nowrap;
  2975. text-transform:none;
  2976. }
  2977. #u179725_div {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:375px;
  2983. height:681px;
  2984. background:inherit;
  2985. background-color:rgba(242, 242, 242, 0.462745098039216);
  2986. border:none;
  2987. border-radius:0px;
  2988. -moz-box-shadow:none;
  2989. -webkit-box-shadow:none;
  2990. box-shadow:none;
  2991. }
  2992. #u179725 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:481px;
  2996. top:107px;
  2997. width:375px;
  2998. height:681px;
  2999. display:flex;
  3000. }
  3001. #u179725 .text {
  3002. position:absolute;
  3003. align-self:center;
  3004. padding:2px 2px 2px 2px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u179725_text {
  3009. border-width:0px;
  3010. word-wrap:break-word;
  3011. text-transform:none;
  3012. visibility:hidden;
  3013. }
  3014. #u179726 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:0px;
  3020. height:0px;
  3021. }
  3022. #u179727_img {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:24px;
  3028. height:24px;
  3029. }
  3030. #u179727 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:703px;
  3034. top:792px;
  3035. width:24px;
  3036. height:24px;
  3037. display:flex;
  3038. font-size:8px;
  3039. }
  3040. #u179727 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 2px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u179727_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. }
  3052. #u179728_div {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:37px;
  3058. height:17px;
  3059. background:inherit;
  3060. background-color:rgba(255, 255, 255, 0);
  3061. border:none;
  3062. border-radius:0px;
  3063. -moz-box-shadow:none;
  3064. -webkit-box-shadow:none;
  3065. box-shadow:none;
  3066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3067. font-weight:400;
  3068. font-style:normal;
  3069. font-size:12px;
  3070. }
  3071. #u179728 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:697px;
  3075. top:817px;
  3076. width:37px;
  3077. height:17px;
  3078. display:flex;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. }
  3084. #u179728 .text {
  3085. position:absolute;
  3086. align-self:flex-start;
  3087. padding:0px 0px 0px 0px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u179728_text {
  3092. border-width:0px;
  3093. white-space:nowrap;
  3094. text-transform:none;
  3095. }
  3096. #u179729 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:0px;
  3102. height:0px;
  3103. }
  3104. #u179730_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:24px;
  3110. height:24px;
  3111. }
  3112. #u179730 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:609px;
  3116. top:792px;
  3117. width:24px;
  3118. height:24px;
  3119. display:flex;
  3120. font-size:8px;
  3121. }
  3122. #u179730 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 2px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u179730_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. }
  3134. #u179731_div {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:37px;
  3140. height:17px;
  3141. background:inherit;
  3142. background-color:rgba(255, 255, 255, 0);
  3143. border:none;
  3144. border-radius:0px;
  3145. -moz-box-shadow:none;
  3146. -webkit-box-shadow:none;
  3147. box-shadow:none;
  3148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:12px;
  3152. }
  3153. #u179731 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:603px;
  3157. top:817px;
  3158. width:37px;
  3159. height:17px;
  3160. display:flex;
  3161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3162. font-weight:400;
  3163. font-style:normal;
  3164. font-size:12px;
  3165. }
  3166. #u179731 .text {
  3167. position:absolute;
  3168. align-self:flex-start;
  3169. padding:0px 0px 0px 0px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u179731_text {
  3174. border-width:0px;
  3175. white-space:nowrap;
  3176. text-transform:none;
  3177. }
  3178. #u179732_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:375px;
  3184. height:739px;
  3185. }
  3186. #u179732 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:481px;
  3190. top:106px;
  3191. width:375px;
  3192. height:739px;
  3193. display:flex;
  3194. }
  3195. #u179732 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 2px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u179732_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u179733_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:11px;
  3214. height:18px;
  3215. }
  3216. #u179733 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:492px;
  3220. top:79px;
  3221. width:11px;
  3222. height:18px;
  3223. display:flex;
  3224. }
  3225. #u179733 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 2px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u179733_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u179734_div {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:73px;
  3244. height:25px;
  3245. background:inherit;
  3246. background-color:rgba(255, 255, 255, 0);
  3247. border:none;
  3248. border-radius:0px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:18px;
  3256. }
  3257. #u179734 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:632px;
  3261. top:75px;
  3262. width:73px;
  3263. height:25px;
  3264. display:flex;
  3265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:18px;
  3269. }
  3270. #u179734 .text {
  3271. position:absolute;
  3272. align-self:flex-start;
  3273. padding:0px 0px 0px 0px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u179734_text {
  3278. border-width:0px;
  3279. white-space:nowrap;
  3280. text-transform:none;
  3281. }
  3282. #u179735_div {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:375px;
  3288. height:50px;
  3289. background:inherit;
  3290. background-color:rgba(255, 255, 255, 1);
  3291. border:none;
  3292. border-left:0px;
  3293. border-top:0px;
  3294. border-right:0px;
  3295. border-radius:0px;
  3296. border-bottom-right-radius:0px;
  3297. border-bottom-left-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. }
  3302. #u179735 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:481px;
  3306. top:278px;
  3307. width:375px;
  3308. height:50px;
  3309. display:flex;
  3310. }
  3311. #u179735 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 2px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u179735_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. visibility:hidden;
  3323. }
  3324. #u179736_div {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:64px;
  3330. height:30px;
  3331. background:inherit;
  3332. background-color:rgba(255, 255, 255, 0);
  3333. border:none;
  3334. border-left:0px;
  3335. border-top:0px;
  3336. border-right:0px;
  3337. border-radius:0px;
  3338. border-bottom-right-radius:0px;
  3339. border-bottom-left-radius:0px;
  3340. -moz-box-shadow:none;
  3341. -webkit-box-shadow:none;
  3342. box-shadow:none;
  3343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3344. font-weight:400;
  3345. font-style:normal;
  3346. font-size:14px;
  3347. line-height:30px;
  3348. }
  3349. #u179736 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:501px;
  3353. top:288px;
  3354. width:64px;
  3355. height:30px;
  3356. display:flex;
  3357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:14px;
  3361. line-height:30px;
  3362. }
  3363. #u179736 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:0px 0px 0px 0px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u179736_text {
  3371. border-width:0px;
  3372. white-space:nowrap;
  3373. text-transform:none;
  3374. }
  3375. #u179737_div {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:375px;
  3381. height:50px;
  3382. background:inherit;
  3383. background-color:rgba(255, 255, 255, 1);
  3384. border:none;
  3385. border-left:0px;
  3386. border-top:0px;
  3387. border-right:0px;
  3388. border-radius:0px;
  3389. border-bottom-right-radius:0px;
  3390. border-bottom-left-radius:0px;
  3391. -moz-box-shadow:none;
  3392. -webkit-box-shadow:none;
  3393. box-shadow:none;
  3394. }
  3395. #u179737 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:481px;
  3399. top:338px;
  3400. width:375px;
  3401. height:50px;
  3402. display:flex;
  3403. }
  3404. #u179737 .text {
  3405. position:absolute;
  3406. align-self:center;
  3407. padding:2px 2px 2px 2px;
  3408. box-sizing:border-box;
  3409. width:100%;
  3410. }
  3411. #u179737_text {
  3412. border-width:0px;
  3413. word-wrap:break-word;
  3414. text-transform:none;
  3415. visibility:hidden;
  3416. }
  3417. #u179738_div {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:50px;
  3423. height:30px;
  3424. background:inherit;
  3425. background-color:rgba(255, 255, 255, 0);
  3426. border:none;
  3427. border-left:0px;
  3428. border-top:0px;
  3429. border-right:0px;
  3430. border-radius:0px;
  3431. border-bottom-right-radius:0px;
  3432. border-bottom-left-radius:0px;
  3433. -moz-box-shadow:none;
  3434. -webkit-box-shadow:none;
  3435. box-shadow:none;
  3436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:14px;
  3440. line-height:30px;
  3441. }
  3442. #u179738 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:501px;
  3446. top:348px;
  3447. width:50px;
  3448. height:30px;
  3449. display:flex;
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:14px;
  3454. line-height:30px;
  3455. }
  3456. #u179738 .text {
  3457. position:absolute;
  3458. align-self:center;
  3459. padding:0px 0px 0px 0px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u179738_text {
  3464. border-width:0px;
  3465. white-space:nowrap;
  3466. text-transform:none;
  3467. }
  3468. #u179739_div {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:375px;
  3474. height:50px;
  3475. background:inherit;
  3476. background-color:rgba(255, 255, 255, 1);
  3477. border:none;
  3478. border-left:0px;
  3479. border-top:0px;
  3480. border-right:0px;
  3481. border-radius:0px;
  3482. border-bottom-right-radius:0px;
  3483. border-bottom-left-radius:0px;
  3484. -moz-box-shadow:none;
  3485. -webkit-box-shadow:none;
  3486. box-shadow:none;
  3487. }
  3488. #u179739 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:481px;
  3492. top:389px;
  3493. width:375px;
  3494. height:50px;
  3495. display:flex;
  3496. }
  3497. #u179739 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 2px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u179739_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u179740_div {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:64px;
  3516. height:30px;
  3517. background:inherit;
  3518. background-color:rgba(255, 255, 255, 0);
  3519. border:none;
  3520. border-left:0px;
  3521. border-top:0px;
  3522. border-right:0px;
  3523. border-radius:0px;
  3524. border-bottom-right-radius:0px;
  3525. border-bottom-left-radius:0px;
  3526. -moz-box-shadow:none;
  3527. -webkit-box-shadow:none;
  3528. box-shadow:none;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:14px;
  3533. line-height:30px;
  3534. }
  3535. #u179740 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:501px;
  3539. top:399px;
  3540. width:64px;
  3541. height:30px;
  3542. display:flex;
  3543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3544. font-weight:400;
  3545. font-style:normal;
  3546. font-size:14px;
  3547. line-height:30px;
  3548. }
  3549. #u179740 .text {
  3550. position:absolute;
  3551. align-self:center;
  3552. padding:0px 0px 0px 0px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u179740_text {
  3557. border-width:0px;
  3558. white-space:nowrap;
  3559. text-transform:none;
  3560. }
  3561. #u179741_div {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:43px;
  3567. height:30px;
  3568. background:inherit;
  3569. background-color:rgba(255, 255, 255, 0);
  3570. border:none;
  3571. border-left:0px;
  3572. border-top:0px;
  3573. border-right:0px;
  3574. border-radius:0px;
  3575. border-bottom-right-radius:0px;
  3576. border-bottom-left-radius:0px;
  3577. -moz-box-shadow:none;
  3578. -webkit-box-shadow:none;
  3579. box-shadow:none;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:14px;
  3584. color:#AAAAAA;
  3585. text-align:right;
  3586. line-height:30px;
  3587. }
  3588. #u179741 {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:793px;
  3592. top:348px;
  3593. width:43px;
  3594. height:30px;
  3595. display:flex;
  3596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3597. font-weight:400;
  3598. font-style:normal;
  3599. font-size:14px;
  3600. color:#AAAAAA;
  3601. text-align:right;
  3602. line-height:30px;
  3603. }
  3604. #u179741 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:0px 0px 0px 0px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u179741_text {
  3612. border-width:0px;
  3613. white-space:nowrap;
  3614. text-transform:none;
  3615. }
  3616. #u179742_div {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:91px;
  3622. height:30px;
  3623. background:inherit;
  3624. background-color:rgba(255, 255, 255, 0);
  3625. border:none;
  3626. border-left:0px;
  3627. border-top:0px;
  3628. border-right:0px;
  3629. border-radius:0px;
  3630. border-bottom-right-radius:0px;
  3631. border-bottom-left-radius:0px;
  3632. -moz-box-shadow:none;
  3633. -webkit-box-shadow:none;
  3634. box-shadow:none;
  3635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. font-size:14px;
  3639. color:#AAAAAA;
  3640. text-align:right;
  3641. line-height:30px;
  3642. }
  3643. #u179742 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:745px;
  3647. top:399px;
  3648. width:91px;
  3649. height:30px;
  3650. display:flex;
  3651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:14px;
  3655. color:#AAAAAA;
  3656. text-align:right;
  3657. line-height:30px;
  3658. }
  3659. #u179742 .text {
  3660. position:absolute;
  3661. align-self:center;
  3662. padding:0px 0px 0px 0px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u179742_text {
  3667. border-width:0px;
  3668. white-space:nowrap;
  3669. text-transform:none;
  3670. }
  3671. #u179743_div {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:344px;
  3677. height:40px;
  3678. background:inherit;
  3679. background-color:rgba(24, 144, 255, 1);
  3680. border:none;
  3681. border-radius:81px;
  3682. -moz-box-shadow:none;
  3683. -webkit-box-shadow:none;
  3684. box-shadow:none;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:14px;
  3689. color:#FFFFFF;
  3690. }
  3691. #u179743 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:501px;
  3695. top:797px;
  3696. width:344px;
  3697. height:40px;
  3698. display:flex;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:14px;
  3703. color:#FFFFFF;
  3704. }
  3705. #u179743 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 2px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u179743_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. }
  3717. #u179744_div {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:375px;
  3723. height:50px;
  3724. background:inherit;
  3725. background-color:rgba(255, 255, 255, 1);
  3726. border:none;
  3727. border-left:0px;
  3728. border-top:0px;
  3729. border-right:0px;
  3730. border-radius:0px;
  3731. border-bottom-right-radius:0px;
  3732. border-bottom-left-radius:0px;
  3733. -moz-box-shadow:none;
  3734. -webkit-box-shadow:none;
  3735. box-shadow:none;
  3736. }
  3737. #u179744 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:481px;
  3741. top:227px;
  3742. width:375px;
  3743. height:50px;
  3744. display:flex;
  3745. }
  3746. #u179744 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:2px 2px 2px 2px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u179744_text {
  3754. border-width:0px;
  3755. word-wrap:break-word;
  3756. text-transform:none;
  3757. visibility:hidden;
  3758. }
  3759. #u179745_div {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:64px;
  3765. height:30px;
  3766. background:inherit;
  3767. background-color:rgba(255, 255, 255, 0);
  3768. border:none;
  3769. border-left:0px;
  3770. border-top:0px;
  3771. border-right:0px;
  3772. border-radius:0px;
  3773. border-bottom-right-radius:0px;
  3774. border-bottom-left-radius:0px;
  3775. -moz-box-shadow:none;
  3776. -webkit-box-shadow:none;
  3777. box-shadow:none;
  3778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3779. font-weight:400;
  3780. font-style:normal;
  3781. font-size:14px;
  3782. line-height:30px;
  3783. }
  3784. #u179745 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:501px;
  3788. top:237px;
  3789. width:64px;
  3790. height:30px;
  3791. display:flex;
  3792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3793. font-weight:400;
  3794. font-style:normal;
  3795. font-size:14px;
  3796. line-height:30px;
  3797. }
  3798. #u179745 .text {
  3799. position:absolute;
  3800. align-self:center;
  3801. padding:0px 0px 0px 0px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u179745_text {
  3806. border-width:0px;
  3807. white-space:nowrap;
  3808. text-transform:none;
  3809. }
  3810. #u179746_div {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:60px;
  3816. height:30px;
  3817. background:inherit;
  3818. background-color:rgba(24, 144, 255, 1);
  3819. border:none;
  3820. border-radius:4px;
  3821. -moz-box-shadow:none;
  3822. -webkit-box-shadow:none;
  3823. box-shadow:none;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:12px;
  3828. color:#FFFFFF;
  3829. }
  3830. #u179746 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:711px;
  3834. top:237px;
  3835. width:60px;
  3836. height:30px;
  3837. display:flex;
  3838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:12px;
  3842. color:#FFFFFF;
  3843. }
  3844. #u179746 .text {
  3845. position:absolute;
  3846. align-self:center;
  3847. padding:2px 2px 2px 2px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u179746_text {
  3852. border-width:0px;
  3853. word-wrap:break-word;
  3854. text-transform:none;
  3855. }
  3856. #u179747_div {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:60px;
  3862. height:30px;
  3863. background:inherit;
  3864. background-color:rgba(255, 255, 255, 1);
  3865. box-sizing:border-box;
  3866. border-width:1px;
  3867. border-style:solid;
  3868. border-color:rgba(170, 170, 170, 1);
  3869. border-radius:4px;
  3870. -moz-box-shadow:none;
  3871. -webkit-box-shadow:none;
  3872. box-shadow:none;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:12px;
  3877. }
  3878. #u179747 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:781px;
  3882. top:237px;
  3883. width:60px;
  3884. height:30px;
  3885. display:flex;
  3886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:12px;
  3890. }
  3891. #u179747 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u179747_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. }
  3903. #u179748 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:0px;
  3909. height:0px;
  3910. }
  3911. #u179749_div {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:43px;
  3917. height:30px;
  3918. background:inherit;
  3919. background-color:rgba(255, 255, 255, 0);
  3920. border:none;
  3921. border-left:0px;
  3922. border-top:0px;
  3923. border-right:0px;
  3924. border-radius:0px;
  3925. border-bottom-right-radius:0px;
  3926. border-bottom-left-radius:0px;
  3927. -moz-box-shadow:none;
  3928. -webkit-box-shadow:none;
  3929. box-shadow:none;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:14px;
  3934. color:#AAAAAA;
  3935. text-align:right;
  3936. line-height:30px;
  3937. }
  3938. #u179749 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:793px;
  3942. top:288px;
  3943. width:43px;
  3944. height:30px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:14px;
  3950. color:#AAAAAA;
  3951. text-align:right;
  3952. line-height:30px;
  3953. }
  3954. #u179749 .text {
  3955. position:absolute;
  3956. align-self:center;
  3957. padding:0px 0px 0px 0px;
  3958. box-sizing:border-box;
  3959. width:100%;
  3960. }
  3961. #u179749_text {
  3962. border-width:0px;
  3963. white-space:nowrap;
  3964. text-transform:none;
  3965. }
  3966. #u179750_div {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:375px;
  3972. height:50px;
  3973. background:inherit;
  3974. background-color:rgba(255, 255, 255, 1);
  3975. border:none;
  3976. border-left:0px;
  3977. border-top:0px;
  3978. border-right:0px;
  3979. border-radius:0px;
  3980. border-bottom-right-radius:0px;
  3981. border-bottom-left-radius:0px;
  3982. -moz-box-shadow:none;
  3983. -webkit-box-shadow:none;
  3984. box-shadow:none;
  3985. }
  3986. #u179750 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:481px;
  3990. top:116px;
  3991. width:375px;
  3992. height:50px;
  3993. display:flex;
  3994. }
  3995. #u179750 .text {
  3996. position:absolute;
  3997. align-self:center;
  3998. padding:2px 2px 2px 2px;
  3999. box-sizing:border-box;
  4000. width:100%;
  4001. }
  4002. #u179750_text {
  4003. border-width:0px;
  4004. word-wrap:break-word;
  4005. text-transform:none;
  4006. visibility:hidden;
  4007. }
  4008. #u179751_div {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:64px;
  4014. height:30px;
  4015. background:inherit;
  4016. background-color:rgba(255, 255, 255, 0);
  4017. border:none;
  4018. border-left:0px;
  4019. border-top:0px;
  4020. border-right:0px;
  4021. border-radius:0px;
  4022. border-bottom-right-radius:0px;
  4023. border-bottom-left-radius:0px;
  4024. -moz-box-shadow:none;
  4025. -webkit-box-shadow:none;
  4026. box-shadow:none;
  4027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:14px;
  4031. line-height:30px;
  4032. }
  4033. #u179751 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:501px;
  4037. top:126px;
  4038. width:64px;
  4039. height:30px;
  4040. display:flex;
  4041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:14px;
  4045. line-height:30px;
  4046. }
  4047. #u179751 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:0px 0px 0px 0px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u179751_text {
  4055. border-width:0px;
  4056. white-space:nowrap;
  4057. text-transform:none;
  4058. }
  4059. #u179752_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:8px;
  4065. height:8px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 0);
  4068. box-sizing:border-box;
  4069. border-width:1px;
  4070. border-style:solid;
  4071. border-color:rgba(127, 127, 127, 1);
  4072. border-right:0px;
  4073. border-bottom:0px;
  4074. border-radius:0px;
  4075. border-top-right-radius:0px;
  4076. border-bottom-left-radius:0px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. }
  4081. #u179752 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:831px;
  4085. top:137px;
  4086. width:8px;
  4087. height:8px;
  4088. display:flex;
  4089. -webkit-transform:rotate(135deg);
  4090. -moz-transform:rotate(135deg);
  4091. -ms-transform:rotate(135deg);
  4092. transform:rotate(135deg);
  4093. }
  4094. #u179752 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:2px 2px 2px 2px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u179752_text {
  4102. border-width:0px;
  4103. word-wrap:break-word;
  4104. text-transform:none;
  4105. visibility:hidden;
  4106. }
  4107. #u179753_div {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:0px;
  4112. width:113px;
  4113. height:30px;
  4114. background:inherit;
  4115. background-color:rgba(255, 255, 255, 0);
  4116. border:none;
  4117. border-left:0px;
  4118. border-top:0px;
  4119. border-right:0px;
  4120. border-radius:0px;
  4121. border-bottom-right-radius:0px;
  4122. border-bottom-left-radius:0px;
  4123. -moz-box-shadow:none;
  4124. -webkit-box-shadow:none;
  4125. box-shadow:none;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:14px;
  4130. text-align:right;
  4131. line-height:30px;
  4132. }
  4133. #u179753 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:711px;
  4137. top:126px;
  4138. width:113px;
  4139. height:30px;
  4140. display:flex;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:14px;
  4145. text-align:right;
  4146. line-height:30px;
  4147. }
  4148. #u179753 .text {
  4149. position:absolute;
  4150. align-self:center;
  4151. padding:0px 0px 0px 0px;
  4152. box-sizing:border-box;
  4153. width:100%;
  4154. }
  4155. #u179753_text {
  4156. border-width:0px;
  4157. white-space:nowrap;
  4158. text-transform:none;
  4159. }
  4160. #u179754 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:0px;
  4166. height:0px;
  4167. }
  4168. #u179755_div {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:375px;
  4174. height:180px;
  4175. background:inherit;
  4176. background-color:rgba(255, 255, 255, 1);
  4177. border:none;
  4178. border-left:0px;
  4179. border-top:0px;
  4180. border-right:0px;
  4181. border-radius:0px;
  4182. border-bottom-right-radius:0px;
  4183. border-bottom-left-radius:0px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. }
  4188. #u179755 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:481px;
  4192. top:500px;
  4193. width:375px;
  4194. height:180px;
  4195. display:flex;
  4196. }
  4197. #u179755 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:2px 2px 2px 2px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u179755_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u179756_div {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:64px;
  4216. height:30px;
  4217. background:inherit;
  4218. background-color:rgba(255, 255, 255, 0);
  4219. border:none;
  4220. border-left:0px;
  4221. border-top:0px;
  4222. border-right:0px;
  4223. border-radius:0px;
  4224. border-bottom-right-radius:0px;
  4225. border-bottom-left-radius:0px;
  4226. -moz-box-shadow:none;
  4227. -webkit-box-shadow:none;
  4228. box-shadow:none;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:14px;
  4233. line-height:30px;
  4234. }
  4235. #u179756 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:501px;
  4239. top:510px;
  4240. width:64px;
  4241. height:30px;
  4242. display:flex;
  4243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:14px;
  4247. line-height:30px;
  4248. }
  4249. #u179756 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:0px 0px 0px 0px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u179756_text {
  4257. border-width:0px;
  4258. white-space:nowrap;
  4259. text-transform:none;
  4260. }
  4261. #u179757_div {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:345px;
  4267. height:30px;
  4268. background:inherit;
  4269. background-color:rgba(255, 255, 255, 0);
  4270. border:none;
  4271. border-left:0px;
  4272. border-top:0px;
  4273. border-right:0px;
  4274. border-radius:0px;
  4275. border-bottom-right-radius:0px;
  4276. border-bottom-left-radius:0px;
  4277. -moz-box-shadow:none;
  4278. -webkit-box-shadow:none;
  4279. box-shadow:none;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:14px;
  4284. color:#AAAAAA;
  4285. line-height:30px;
  4286. }
  4287. #u179757 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:506px;
  4291. top:540px;
  4292. width:345px;
  4293. height:30px;
  4294. display:flex;
  4295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:14px;
  4299. color:#AAAAAA;
  4300. line-height:30px;
  4301. }
  4302. #u179757 .text {
  4303. position:absolute;
  4304. align-self:flex-start;
  4305. padding:0px 0px 0px 0px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u179757_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. }
  4314. #u179758_div {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:60px;
  4320. height:60px;
  4321. background:inherit;
  4322. background-color:rgba(255, 255, 255, 1);
  4323. box-sizing:border-box;
  4324. border-width:1px;
  4325. border-style:solid;
  4326. border-color:rgba(170, 170, 170, 1);
  4327. border-radius:4px;
  4328. -moz-box-shadow:none;
  4329. -webkit-box-shadow:none;
  4330. box-shadow:none;
  4331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:18px;
  4335. }
  4336. #u179758 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:501px;
  4340. top:600px;
  4341. width:60px;
  4342. height:60px;
  4343. display:flex;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:18px;
  4348. }
  4349. #u179758 .text {
  4350. position:absolute;
  4351. align-self:center;
  4352. padding:2px 2px 2px 2px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u179758_text {
  4357. border-width:0px;
  4358. word-wrap:break-word;
  4359. text-transform:none;
  4360. }
  4361. #u179759_div {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:375px;
  4367. height:50px;
  4368. background:inherit;
  4369. background-color:rgba(255, 255, 255, 1);
  4370. border:none;
  4371. border-left:0px;
  4372. border-top:0px;
  4373. border-right:0px;
  4374. border-radius:0px;
  4375. border-bottom-right-radius:0px;
  4376. border-bottom-left-radius:0px;
  4377. -moz-box-shadow:none;
  4378. -webkit-box-shadow:none;
  4379. box-shadow:none;
  4380. }
  4381. #u179759 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:481px;
  4385. top:440px;
  4386. width:375px;
  4387. height:50px;
  4388. display:flex;
  4389. }
  4390. #u179759 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:2px 2px 2px 2px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u179759_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. visibility:hidden;
  4402. }
  4403. #u179760_div {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:57px;
  4409. height:30px;
  4410. background:inherit;
  4411. background-color:rgba(255, 255, 255, 0);
  4412. border:none;
  4413. border-left:0px;
  4414. border-top:0px;
  4415. border-right:0px;
  4416. border-radius:0px;
  4417. border-bottom-right-radius:0px;
  4418. border-bottom-left-radius:0px;
  4419. -moz-box-shadow:none;
  4420. -webkit-box-shadow:none;
  4421. box-shadow:none;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:14px;
  4426. line-height:30px;
  4427. }
  4428. #u179760 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:501px;
  4432. top:450px;
  4433. width:57px;
  4434. height:30px;
  4435. display:flex;
  4436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:14px;
  4440. line-height:30px;
  4441. }
  4442. #u179760 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:0px 0px 0px 0px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u179760_text {
  4450. border-width:0px;
  4451. white-space:nowrap;
  4452. text-transform:none;
  4453. }
  4454. #u179761 {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:0px;
  4460. height:0px;
  4461. }
  4462. #u179762_div {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:8px;
  4468. height:8px;
  4469. background:inherit;
  4470. background-color:rgba(255, 255, 255, 0);
  4471. box-sizing:border-box;
  4472. border-width:1px;
  4473. border-style:solid;
  4474. border-color:rgba(127, 127, 127, 1);
  4475. border-right:0px;
  4476. border-bottom:0px;
  4477. border-radius:0px;
  4478. border-top-right-radius:0px;
  4479. border-bottom-left-radius:0px;
  4480. -moz-box-shadow:none;
  4481. -webkit-box-shadow:none;
  4482. box-shadow:none;
  4483. }
  4484. #u179762 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:831px;
  4488. top:461px;
  4489. width:8px;
  4490. height:8px;
  4491. display:flex;
  4492. -webkit-transform:rotate(135deg);
  4493. -moz-transform:rotate(135deg);
  4494. -ms-transform:rotate(135deg);
  4495. transform:rotate(135deg);
  4496. }
  4497. #u179762 .text {
  4498. position:absolute;
  4499. align-self:center;
  4500. padding:2px 2px 2px 2px;
  4501. box-sizing:border-box;
  4502. width:100%;
  4503. }
  4504. #u179762_text {
  4505. border-width:0px;
  4506. word-wrap:break-word;
  4507. text-transform:none;
  4508. visibility:hidden;
  4509. }
  4510. #u179763_div {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:43px;
  4516. height:30px;
  4517. background:inherit;
  4518. background-color:rgba(255, 255, 255, 0);
  4519. border:none;
  4520. border-left:0px;
  4521. border-top:0px;
  4522. border-right:0px;
  4523. border-radius:0px;
  4524. border-bottom-right-radius:0px;
  4525. border-bottom-left-radius:0px;
  4526. -moz-box-shadow:none;
  4527. -webkit-box-shadow:none;
  4528. box-shadow:none;
  4529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:14px;
  4533. color:#AAAAAA;
  4534. text-align:right;
  4535. line-height:30px;
  4536. }
  4537. #u179763 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:781px;
  4541. top:450px;
  4542. width:43px;
  4543. height:30px;
  4544. display:flex;
  4545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4546. font-weight:400;
  4547. font-style:normal;
  4548. font-size:14px;
  4549. color:#AAAAAA;
  4550. text-align:right;
  4551. line-height:30px;
  4552. }
  4553. #u179763 .text {
  4554. position:absolute;
  4555. align-self:center;
  4556. padding:0px 0px 0px 0px;
  4557. box-sizing:border-box;
  4558. width:100%;
  4559. }
  4560. #u179763_text {
  4561. border-width:0px;
  4562. white-space:nowrap;
  4563. text-transform:none;
  4564. }
  4565. #u179764_div {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:375px;
  4571. height:50px;
  4572. background:inherit;
  4573. background-color:rgba(255, 255, 255, 1);
  4574. border:none;
  4575. border-left:0px;
  4576. border-top:0px;
  4577. border-right:0px;
  4578. border-radius:0px;
  4579. border-bottom-right-radius:0px;
  4580. border-bottom-left-radius:0px;
  4581. -moz-box-shadow:none;
  4582. -webkit-box-shadow:none;
  4583. box-shadow:none;
  4584. }
  4585. #u179764 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:481px;
  4589. top:167px;
  4590. width:375px;
  4591. height:50px;
  4592. display:flex;
  4593. }
  4594. #u179764 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:2px 2px 2px 2px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u179764_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. visibility:hidden;
  4606. }
  4607. #u179765_div {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:64px;
  4613. height:30px;
  4614. background:inherit;
  4615. background-color:rgba(255, 255, 255, 0);
  4616. border:none;
  4617. border-left:0px;
  4618. border-top:0px;
  4619. border-right:0px;
  4620. border-radius:0px;
  4621. border-bottom-right-radius:0px;
  4622. border-bottom-left-radius:0px;
  4623. -moz-box-shadow:none;
  4624. -webkit-box-shadow:none;
  4625. box-shadow:none;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:14px;
  4630. line-height:30px;
  4631. }
  4632. #u179765 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:501px;
  4636. top:177px;
  4637. width:64px;
  4638. height:30px;
  4639. display:flex;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:14px;
  4644. line-height:30px;
  4645. }
  4646. #u179765 .text {
  4647. position:absolute;
  4648. align-self:center;
  4649. padding:0px 0px 0px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u179765_text {
  4654. border-width:0px;
  4655. white-space:nowrap;
  4656. text-transform:none;
  4657. }
  4658. #u179766 {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:0px;
  4664. height:0px;
  4665. }
  4666. #u179767_div {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:0px;
  4670. top:0px;
  4671. width:8px;
  4672. height:8px;
  4673. background:inherit;
  4674. background-color:rgba(255, 255, 255, 0);
  4675. box-sizing:border-box;
  4676. border-width:1px;
  4677. border-style:solid;
  4678. border-color:rgba(127, 127, 127, 1);
  4679. border-right:0px;
  4680. border-bottom:0px;
  4681. border-radius:0px;
  4682. border-top-right-radius:0px;
  4683. border-bottom-left-radius:0px;
  4684. -moz-box-shadow:none;
  4685. -webkit-box-shadow:none;
  4686. box-shadow:none;
  4687. }
  4688. #u179767 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:831px;
  4692. top:188px;
  4693. width:8px;
  4694. height:8px;
  4695. display:flex;
  4696. -webkit-transform:rotate(135deg);
  4697. -moz-transform:rotate(135deg);
  4698. -ms-transform:rotate(135deg);
  4699. transform:rotate(135deg);
  4700. }
  4701. #u179767 .text {
  4702. position:absolute;
  4703. align-self:center;
  4704. padding:2px 2px 2px 2px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u179767_text {
  4709. border-width:0px;
  4710. word-wrap:break-word;
  4711. text-transform:none;
  4712. visibility:hidden;
  4713. }
  4714. #u179768_div {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:43px;
  4720. height:30px;
  4721. background:inherit;
  4722. background-color:rgba(255, 255, 255, 0);
  4723. border:none;
  4724. border-left:0px;
  4725. border-top:0px;
  4726. border-right:0px;
  4727. border-radius:0px;
  4728. border-bottom-right-radius:0px;
  4729. border-bottom-left-radius:0px;
  4730. -moz-box-shadow:none;
  4731. -webkit-box-shadow:none;
  4732. box-shadow:none;
  4733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:14px;
  4737. color:#AAAAAA;
  4738. text-align:right;
  4739. line-height:30px;
  4740. }
  4741. #u179768 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:781px;
  4745. top:177px;
  4746. width:43px;
  4747. height:30px;
  4748. display:flex;
  4749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:14px;
  4753. color:#AAAAAA;
  4754. text-align:right;
  4755. line-height:30px;
  4756. }
  4757. #u179768 .text {
  4758. position:absolute;
  4759. align-self:center;
  4760. padding:0px 0px 0px 0px;
  4761. box-sizing:border-box;
  4762. width:100%;
  4763. }
  4764. #u179768_text {
  4765. border-width:0px;
  4766. white-space:nowrap;
  4767. text-transform:none;
  4768. }
  4769. #u179769_div {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:432px;
  4775. height:60px;
  4776. background:inherit;
  4777. background-color:rgba(255, 255, 255, 0);
  4778. border:none;
  4779. border-left:0px;
  4780. border-top:0px;
  4781. border-right:0px;
  4782. border-radius:0px;
  4783. border-bottom-right-radius:0px;
  4784. border-bottom-left-radius:0px;
  4785. -moz-box-shadow:none;
  4786. -webkit-box-shadow:none;
  4787. box-shadow:none;
  4788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4789. font-weight:400;
  4790. font-style:normal;
  4791. font-size:14px;
  4792. color:#D9001B;
  4793. line-height:30px;
  4794. }
  4795. #u179769 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:902px;
  4799. top:288px;
  4800. width:432px;
  4801. height:60px;
  4802. display:flex;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:14px;
  4807. color:#D9001B;
  4808. line-height:30px;
  4809. }
  4810. #u179769 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:0px 0px 0px 0px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u179769_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. }