styles.css 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:892px;
  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. #u177283_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u177283 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u177283 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u177283_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u177284_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. #u177284 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u177284 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u177284_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u177285 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u177286_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. #u177286 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u177286 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u177286_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u177287 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u177288_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u177288 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u177288 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u177288_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u177289_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u177289 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u177289 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u177289_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u177290 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u177291_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u177291 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u177291 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u177291_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u177292_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u177292 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u177292 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u177292_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u177293_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u177293 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u177293 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u177293_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u177294_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u177294 {
  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. #u177294 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u177294_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u177295_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u177295 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u177295 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u177295_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u177296_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. #u177296 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u177296 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u177296_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u177297 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u177298_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u177298 {
  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. #u177298 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u177298_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u177299_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. #u177299 {
  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. #u177299 .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. #u177299_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u177300 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u177301_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u177301 {
  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. #u177301 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u177301_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u177302_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. #u177302 {
  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. #u177302 .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. #u177302_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u177303_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. #u177303 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u177303 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u177303_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u177304 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u177305_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u177305 {
  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. #u177305 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u177305_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u177306_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. #u177306 {
  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. #u177306 .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. #u177306_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u177307 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u177308_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u177308 {
  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. #u177308 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u177308_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u177309_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. #u177309 {
  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. #u177309 .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. #u177309_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u177310_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:877px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-radius:21px;
  790. border-top-left-radius:0px;
  791. border-top-right-radius:0px;
  792. -moz-box-shadow:none;
  793. -webkit-box-shadow:none;
  794. box-shadow:none;
  795. }
  796. #u177310 {
  797. border-width:0px;
  798. position:absolute;
  799. left:29px;
  800. top:107px;
  801. width:375px;
  802. height:877px;
  803. display:flex;
  804. }
  805. #u177310 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u177310_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u177311_img {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:11px;
  824. height:18px;
  825. }
  826. #u177311 {
  827. border-width:0px;
  828. position:absolute;
  829. left:39px;
  830. top:79px;
  831. width:11px;
  832. height:18px;
  833. display:flex;
  834. }
  835. #u177311 .text {
  836. position:absolute;
  837. align-self:center;
  838. padding:2px 2px 2px 2px;
  839. box-sizing:border-box;
  840. width:100%;
  841. }
  842. #u177311_text {
  843. border-width:0px;
  844. word-wrap:break-word;
  845. text-transform:none;
  846. visibility:hidden;
  847. }
  848. #u177312_div {
  849. border-width:0px;
  850. position:absolute;
  851. left:0px;
  852. top:0px;
  853. width:57px;
  854. height:30px;
  855. background:inherit;
  856. background-color:rgba(255, 255, 255, 0);
  857. border:none;
  858. border-left:0px;
  859. border-top:0px;
  860. border-right:0px;
  861. border-radius:0px;
  862. border-bottom-right-radius:0px;
  863. border-bottom-left-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  868. font-weight:500;
  869. font-style:normal;
  870. font-size:14px;
  871. line-height:30px;
  872. }
  873. #u177312 {
  874. border-width:0px;
  875. position:absolute;
  876. left:59px;
  877. top:73px;
  878. width:57px;
  879. height:30px;
  880. display:flex;
  881. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  882. font-weight:500;
  883. font-style:normal;
  884. font-size:14px;
  885. line-height:30px;
  886. }
  887. #u177312 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u177312_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u177313_div {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:375px;
  905. height:50px;
  906. background:inherit;
  907. background-color:rgba(255, 255, 255, 1);
  908. border:none;
  909. border-radius:0px;
  910. -moz-box-shadow:none;
  911. -webkit-box-shadow:none;
  912. box-shadow:none;
  913. }
  914. #u177313 {
  915. border-width:0px;
  916. position:absolute;
  917. left:29px;
  918. top:107px;
  919. width:375px;
  920. height:50px;
  921. display:flex;
  922. }
  923. #u177313 .text {
  924. position:absolute;
  925. align-self:center;
  926. padding:2px 2px 2px 2px;
  927. box-sizing:border-box;
  928. width:100%;
  929. }
  930. #u177313_text {
  931. border-width:0px;
  932. word-wrap:break-word;
  933. text-transform:none;
  934. visibility:hidden;
  935. }
  936. #u177314_div {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:127px;
  942. height:30px;
  943. background:inherit;
  944. background-color:rgba(255, 255, 255, 0);
  945. border:none;
  946. border-left:0px;
  947. border-top:0px;
  948. border-right:0px;
  949. border-radius:0px;
  950. border-bottom-right-radius:0px;
  951. border-bottom-left-radius:0px;
  952. -moz-box-shadow:none;
  953. -webkit-box-shadow:none;
  954. box-shadow:none;
  955. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  956. font-weight:500;
  957. font-style:normal;
  958. font-size:14px;
  959. line-height:30px;
  960. }
  961. #u177314 {
  962. border-width:0px;
  963. position:absolute;
  964. left:49px;
  965. top:117px;
  966. width:127px;
  967. height:30px;
  968. display:flex;
  969. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  970. font-weight:500;
  971. font-style:normal;
  972. font-size:14px;
  973. line-height:30px;
  974. }
  975. #u177314 .text {
  976. position:absolute;
  977. align-self:flex-start;
  978. padding:0px 0px 0px 0px;
  979. box-sizing:border-box;
  980. width:100%;
  981. }
  982. #u177314_text {
  983. border-width:0px;
  984. white-space:nowrap;
  985. text-transform:none;
  986. }
  987. #u177315_img {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:7px;
  993. height:12px;
  994. }
  995. #u177315 {
  996. border-width:0px;
  997. position:absolute;
  998. left:386px;
  999. top:126px;
  1000. width:7px;
  1001. height:12px;
  1002. display:flex;
  1003. -webkit-transform:rotate(270deg);
  1004. -moz-transform:rotate(270deg);
  1005. -ms-transform:rotate(270deg);
  1006. transform:rotate(270deg);
  1007. }
  1008. #u177315 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u177315_text {
  1016. border-width:0px;
  1017. word-wrap:break-word;
  1018. text-transform:none;
  1019. visibility:hidden;
  1020. }
  1021. #u177316_div {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:0px;
  1025. top:0px;
  1026. width:355px;
  1027. height:140px;
  1028. background:inherit;
  1029. background-color:rgba(255, 255, 255, 1);
  1030. border:none;
  1031. border-radius:4px;
  1032. -moz-box-shadow:none;
  1033. -webkit-box-shadow:none;
  1034. box-shadow:none;
  1035. }
  1036. #u177316 {
  1037. border-width:0px;
  1038. position:absolute;
  1039. left:39px;
  1040. top:167px;
  1041. width:355px;
  1042. height:140px;
  1043. display:flex;
  1044. }
  1045. #u177316 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:2px 2px 2px 2px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u177316_text {
  1053. border-width:0px;
  1054. word-wrap:break-word;
  1055. text-transform:none;
  1056. visibility:hidden;
  1057. }
  1058. #u177317_div {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:0px;
  1062. top:0px;
  1063. width:92px;
  1064. height:120px;
  1065. background:inherit;
  1066. background-color:rgba(255, 255, 255, 0);
  1067. border:none;
  1068. border-left:0px;
  1069. border-top:0px;
  1070. border-right:0px;
  1071. border-radius:0px;
  1072. border-bottom-right-radius:0px;
  1073. border-bottom-left-radius:0px;
  1074. -moz-box-shadow:none;
  1075. -webkit-box-shadow:none;
  1076. box-shadow:none;
  1077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1078. font-weight:400;
  1079. font-style:normal;
  1080. font-size:14px;
  1081. line-height:40px;
  1082. }
  1083. #u177317 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:59px;
  1087. top:178px;
  1088. width:92px;
  1089. height:120px;
  1090. display:flex;
  1091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1092. font-weight:400;
  1093. font-style:normal;
  1094. font-size:14px;
  1095. line-height:40px;
  1096. }
  1097. #u177317 .text {
  1098. position:absolute;
  1099. align-self:flex-start;
  1100. padding:0px 0px 0px 0px;
  1101. box-sizing:border-box;
  1102. width:100%;
  1103. }
  1104. #u177317_text {
  1105. border-width:0px;
  1106. white-space:nowrap;
  1107. text-transform:none;
  1108. }
  1109. #u177318_div {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:222px;
  1115. height:120px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 0);
  1118. border:none;
  1119. border-left:0px;
  1120. border-top:0px;
  1121. border-right:0px;
  1122. border-radius:0px;
  1123. border-bottom-right-radius:0px;
  1124. border-bottom-left-radius:0px;
  1125. -moz-box-shadow:none;
  1126. -webkit-box-shadow:none;
  1127. box-shadow:none;
  1128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1129. font-weight:400;
  1130. font-style:normal;
  1131. font-size:14px;
  1132. color:#AAAAAA;
  1133. line-height:40px;
  1134. }
  1135. #u177318 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:161px;
  1139. top:178px;
  1140. width:222px;
  1141. height:120px;
  1142. display:flex;
  1143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1144. font-weight:400;
  1145. font-style:normal;
  1146. font-size:14px;
  1147. color:#AAAAAA;
  1148. line-height:40px;
  1149. }
  1150. #u177318 .text {
  1151. position:absolute;
  1152. align-self:flex-start;
  1153. padding:0px 0px 0px 0px;
  1154. box-sizing:border-box;
  1155. width:100%;
  1156. }
  1157. #u177318_text {
  1158. border-width:0px;
  1159. word-wrap:break-word;
  1160. text-transform:none;
  1161. }
  1162. #u177319 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:0px;
  1168. height:0px;
  1169. }
  1170. #u177320_div {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:355px;
  1176. height:263px;
  1177. background:inherit;
  1178. background-color:rgba(255, 255, 255, 1);
  1179. border:none;
  1180. border-radius:4px;
  1181. -moz-box-shadow:none;
  1182. -webkit-box-shadow:none;
  1183. box-shadow:none;
  1184. }
  1185. #u177320 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:39px;
  1189. top:308px;
  1190. width:355px;
  1191. height:263px;
  1192. display:flex;
  1193. }
  1194. #u177320 .text {
  1195. position:absolute;
  1196. align-self:center;
  1197. padding:2px 2px 2px 2px;
  1198. box-sizing:border-box;
  1199. width:100%;
  1200. }
  1201. #u177320_text {
  1202. border-width:0px;
  1203. word-wrap:break-word;
  1204. text-transform:none;
  1205. visibility:hidden;
  1206. }
  1207. #u177321_div {
  1208. border-width:0px;
  1209. position:absolute;
  1210. left:0px;
  1211. top:0px;
  1212. width:64px;
  1213. height:200px;
  1214. background:inherit;
  1215. background-color:rgba(255, 255, 255, 0);
  1216. border:none;
  1217. border-left:0px;
  1218. border-top:0px;
  1219. border-right:0px;
  1220. border-radius:0px;
  1221. border-bottom-right-radius:0px;
  1222. border-bottom-left-radius:0px;
  1223. -moz-box-shadow:none;
  1224. -webkit-box-shadow:none;
  1225. box-shadow:none;
  1226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1227. font-weight:400;
  1228. font-style:normal;
  1229. font-size:14px;
  1230. line-height:40px;
  1231. }
  1232. #u177321 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:59px;
  1236. top:319px;
  1237. width:64px;
  1238. height:200px;
  1239. display:flex;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:14px;
  1244. line-height:40px;
  1245. }
  1246. #u177321 .text {
  1247. position:absolute;
  1248. align-self:flex-start;
  1249. padding:0px 0px 0px 0px;
  1250. box-sizing:border-box;
  1251. width:100%;
  1252. }
  1253. #u177321_text {
  1254. border-width:0px;
  1255. white-space:nowrap;
  1256. text-transform:none;
  1257. }
  1258. #u177322_div {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:222px;
  1264. height:160px;
  1265. background:inherit;
  1266. background-color:rgba(255, 255, 255, 0);
  1267. border:none;
  1268. border-left:0px;
  1269. border-top:0px;
  1270. border-right:0px;
  1271. border-radius:0px;
  1272. border-bottom-right-radius:0px;
  1273. border-bottom-left-radius:0px;
  1274. -moz-box-shadow:none;
  1275. -webkit-box-shadow:none;
  1276. box-shadow:none;
  1277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1278. font-weight:400;
  1279. font-style:normal;
  1280. font-size:14px;
  1281. color:#AAAAAA;
  1282. line-height:40px;
  1283. }
  1284. #u177322 {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:161px;
  1288. top:319px;
  1289. width:222px;
  1290. height:160px;
  1291. display:flex;
  1292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1293. font-weight:400;
  1294. font-style:normal;
  1295. font-size:14px;
  1296. color:#AAAAAA;
  1297. line-height:40px;
  1298. }
  1299. #u177322 .text {
  1300. position:absolute;
  1301. align-self:flex-start;
  1302. padding:0px 0px 0px 0px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u177322_text {
  1307. border-width:0px;
  1308. word-wrap:break-word;
  1309. text-transform:none;
  1310. }
  1311. #u177323_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:70px;
  1317. height:70px;
  1318. background:inherit;
  1319. background-color:rgba(255, 255, 255, 1);
  1320. box-sizing:border-box;
  1321. border-width:1px;
  1322. border-style:solid;
  1323. border-color:rgba(121, 121, 121, 1);
  1324. border-radius:2px;
  1325. -moz-box-shadow:none;
  1326. -webkit-box-shadow:none;
  1327. box-shadow:none;
  1328. font-size:28px;
  1329. }
  1330. #u177323 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:161px;
  1334. top:488px;
  1335. width:70px;
  1336. height:70px;
  1337. display:flex;
  1338. font-size:28px;
  1339. }
  1340. #u177323 .text {
  1341. position:absolute;
  1342. align-self:center;
  1343. padding:2px 2px 2px 2px;
  1344. box-sizing:border-box;
  1345. width:100%;
  1346. }
  1347. #u177323_text {
  1348. border-width:0px;
  1349. word-wrap:break-word;
  1350. text-transform:none;
  1351. }
  1352. #u177324 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:0px;
  1356. top:0px;
  1357. width:0px;
  1358. height:0px;
  1359. }
  1360. #u177325_div {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:0px;
  1364. top:0px;
  1365. width:355px;
  1366. height:40px;
  1367. background:inherit;
  1368. background-color:rgba(255, 255, 255, 1);
  1369. border:none;
  1370. border-radius:4px;
  1371. -moz-box-shadow:none;
  1372. -webkit-box-shadow:none;
  1373. box-shadow:none;
  1374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1375. font-weight:400;
  1376. font-style:normal;
  1377. font-size:14px;
  1378. color:#555555;
  1379. }
  1380. #u177325 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:39px;
  1384. top:572px;
  1385. width:355px;
  1386. height:40px;
  1387. display:flex;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:14px;
  1392. color:#555555;
  1393. }
  1394. #u177325 .text {
  1395. position:absolute;
  1396. align-self:center;
  1397. padding:2px 2px 2px 2px;
  1398. box-sizing:border-box;
  1399. width:100%;
  1400. }
  1401. #u177325_text {
  1402. border-width:0px;
  1403. word-wrap:break-word;
  1404. text-transform:none;
  1405. visibility:hidden;
  1406. }
  1407. #u177326_div {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:57px;
  1413. height:40px;
  1414. background:inherit;
  1415. background-color:rgba(255, 255, 255, 0);
  1416. border:none;
  1417. border-left:0px;
  1418. border-top:0px;
  1419. border-right:0px;
  1420. border-radius:0px;
  1421. border-bottom-right-radius:0px;
  1422. border-bottom-left-radius:0px;
  1423. -moz-box-shadow:none;
  1424. -webkit-box-shadow:none;
  1425. box-shadow:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. font-size:14px;
  1430. line-height:40px;
  1431. }
  1432. #u177326 {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:59px;
  1436. top:572px;
  1437. width:57px;
  1438. height:40px;
  1439. display:flex;
  1440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1441. font-weight:400;
  1442. font-style:normal;
  1443. font-size:14px;
  1444. line-height:40px;
  1445. }
  1446. #u177326 .text {
  1447. position:absolute;
  1448. align-self:flex-start;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u177326_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u177327_div {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:222px;
  1464. height:40px;
  1465. background:inherit;
  1466. background-color:rgba(255, 255, 255, 0);
  1467. border:none;
  1468. border-left:0px;
  1469. border-top:0px;
  1470. border-right:0px;
  1471. border-radius:0px;
  1472. border-bottom-right-radius:0px;
  1473. border-bottom-left-radius:0px;
  1474. -moz-box-shadow:none;
  1475. -webkit-box-shadow:none;
  1476. box-shadow:none;
  1477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1478. font-weight:400;
  1479. font-style:normal;
  1480. font-size:14px;
  1481. color:#AAAAAA;
  1482. line-height:40px;
  1483. }
  1484. #u177327 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:158px;
  1488. top:572px;
  1489. width:222px;
  1490. height:40px;
  1491. display:flex;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:14px;
  1496. color:#AAAAAA;
  1497. line-height:40px;
  1498. }
  1499. #u177327 .text {
  1500. position:absolute;
  1501. align-self:flex-start;
  1502. padding:0px 0px 0px 0px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u177327_text {
  1507. border-width:0px;
  1508. word-wrap:break-word;
  1509. text-transform:none;
  1510. }
  1511. #u177328_div {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:0px;
  1515. top:0px;
  1516. width:57px;
  1517. height:40px;
  1518. background:inherit;
  1519. background-color:rgba(255, 255, 255, 0);
  1520. border:none;
  1521. border-left:0px;
  1522. border-top:0px;
  1523. border-right:0px;
  1524. border-radius:0px;
  1525. border-bottom-right-radius:0px;
  1526. border-bottom-left-radius:0px;
  1527. -moz-box-shadow:none;
  1528. -webkit-box-shadow:none;
  1529. box-shadow:none;
  1530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1531. font-weight:400;
  1532. font-style:normal;
  1533. font-size:14px;
  1534. color:#298FFF;
  1535. line-height:40px;
  1536. }
  1537. #u177328 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:327px;
  1541. top:572px;
  1542. width:57px;
  1543. height:40px;
  1544. display:flex;
  1545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1546. font-weight:400;
  1547. font-style:normal;
  1548. font-size:14px;
  1549. color:#298FFF;
  1550. line-height:40px;
  1551. }
  1552. #u177328 .text {
  1553. position:absolute;
  1554. align-self:flex-start;
  1555. padding:0px 0px 0px 0px;
  1556. box-sizing:border-box;
  1557. width:100%;
  1558. }
  1559. #u177328_text {
  1560. border-width:0px;
  1561. white-space:nowrap;
  1562. text-transform:none;
  1563. }
  1564. #u177329_div {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:0px;
  1568. top:0px;
  1569. width:375px;
  1570. height:312px;
  1571. background:inherit;
  1572. background-color:rgba(255, 255, 255, 1);
  1573. border:none;
  1574. border-left:0px;
  1575. border-top:0px;
  1576. border-right:0px;
  1577. border-radius:0px;
  1578. border-bottom-right-radius:0px;
  1579. border-bottom-left-radius:0px;
  1580. -moz-box-shadow:none;
  1581. -webkit-box-shadow:none;
  1582. box-shadow:none;
  1583. }
  1584. #u177329 {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:29px;
  1588. top:622px;
  1589. width:375px;
  1590. height:312px;
  1591. display:flex;
  1592. }
  1593. #u177329 .text {
  1594. position:absolute;
  1595. align-self:center;
  1596. padding:2px 2px 2px 2px;
  1597. box-sizing:border-box;
  1598. width:100%;
  1599. }
  1600. #u177329_text {
  1601. border-width:0px;
  1602. word-wrap:break-word;
  1603. text-transform:none;
  1604. visibility:hidden;
  1605. }
  1606. #u177330_div {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:353px;
  1612. height:30px;
  1613. background:inherit;
  1614. background-color:rgba(255, 255, 255, 0);
  1615. border:none;
  1616. border-top:0px;
  1617. border-right:0px;
  1618. border-bottom:0px;
  1619. border-radius:0px;
  1620. border-top-left-radius:0px;
  1621. border-bottom-left-radius:0px;
  1622. -moz-box-shadow:none;
  1623. -webkit-box-shadow:none;
  1624. box-shadow:none;
  1625. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1626. font-weight:500;
  1627. font-style:normal;
  1628. font-size:14px;
  1629. line-height:30px;
  1630. }
  1631. #u177330 {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:42px;
  1635. top:632px;
  1636. width:353px;
  1637. height:30px;
  1638. display:flex;
  1639. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1640. font-weight:500;
  1641. font-style:normal;
  1642. font-size:14px;
  1643. line-height:30px;
  1644. }
  1645. #u177330 .text {
  1646. position:absolute;
  1647. align-self:center;
  1648. padding:5px 10px 5px 0px;
  1649. box-sizing:border-box;
  1650. width:100%;
  1651. }
  1652. #u177330_text {
  1653. border-width:0px;
  1654. word-wrap:break-word;
  1655. text-transform:none;
  1656. }
  1657. #u177331 label {
  1658. left:0px;
  1659. width:100%;
  1660. }
  1661. #u177331_img {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:3px;
  1666. width:12px;
  1667. height:12px;
  1668. }
  1669. #u177331 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:57px;
  1673. top:697px;
  1674. width:100px;
  1675. height:18px;
  1676. display:flex;
  1677. }
  1678. #u177331 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:0px 2px 0px 2px;
  1682. box-sizing:border-box;
  1683. }
  1684. #u177331_img.selected {
  1685. }
  1686. #u177331.selected {
  1687. }
  1688. #u177331_img.disabled {
  1689. }
  1690. #u177331.disabled {
  1691. }
  1692. #u177331_img.selectedDisabled {
  1693. }
  1694. #u177331.selectedDisabled {
  1695. }
  1696. #u177331_text {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:14px;
  1700. top:0px;
  1701. width:84px;
  1702. word-wrap:break-word;
  1703. text-transform:none;
  1704. }
  1705. #u177331_input {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:0px;
  1711. height:0px;
  1712. opacity:0;
  1713. }
  1714. #u177332 label {
  1715. left:0px;
  1716. width:100%;
  1717. }
  1718. #u177332_img {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:0px;
  1722. top:3px;
  1723. width:12px;
  1724. height:12px;
  1725. }
  1726. #u177332 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:157px;
  1730. top:697px;
  1731. width:100px;
  1732. height:18px;
  1733. display:flex;
  1734. }
  1735. #u177332 .text {
  1736. position:absolute;
  1737. align-self:center;
  1738. padding:0px 2px 0px 2px;
  1739. box-sizing:border-box;
  1740. }
  1741. #u177332_img.selected {
  1742. }
  1743. #u177332.selected {
  1744. }
  1745. #u177332_img.disabled {
  1746. }
  1747. #u177332.disabled {
  1748. }
  1749. #u177332_img.selectedDisabled {
  1750. }
  1751. #u177332.selectedDisabled {
  1752. }
  1753. #u177332_text {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:14px;
  1757. top:0px;
  1758. width:84px;
  1759. word-wrap:break-word;
  1760. text-transform:none;
  1761. }
  1762. #u177332_input {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:0px;
  1768. height:0px;
  1769. opacity:0;
  1770. }
  1771. #u177333 label {
  1772. left:0px;
  1773. width:100%;
  1774. }
  1775. #u177333_img {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:3px;
  1780. width:12px;
  1781. height:12px;
  1782. }
  1783. #u177333 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:257px;
  1787. top:697px;
  1788. width:100px;
  1789. height:18px;
  1790. display:flex;
  1791. }
  1792. #u177333 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:0px 2px 0px 2px;
  1796. box-sizing:border-box;
  1797. }
  1798. #u177333_img.selected {
  1799. }
  1800. #u177333.selected {
  1801. }
  1802. #u177333_img.disabled {
  1803. }
  1804. #u177333.disabled {
  1805. }
  1806. #u177333_img.selectedDisabled {
  1807. }
  1808. #u177333.selectedDisabled {
  1809. }
  1810. #u177333_text {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:14px;
  1814. top:0px;
  1815. width:84px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u177333_input {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:0px;
  1825. height:0px;
  1826. opacity:0;
  1827. }
  1828. #u177334 label {
  1829. left:0px;
  1830. width:100%;
  1831. }
  1832. #u177334_img {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:3px;
  1837. width:12px;
  1838. height:12px;
  1839. }
  1840. #u177334 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:57px;
  1844. top:725px;
  1845. width:100px;
  1846. height:18px;
  1847. display:flex;
  1848. }
  1849. #u177334 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:0px 2px 0px 2px;
  1853. box-sizing:border-box;
  1854. }
  1855. #u177334_img.selected {
  1856. }
  1857. #u177334.selected {
  1858. }
  1859. #u177334_img.disabled {
  1860. }
  1861. #u177334.disabled {
  1862. }
  1863. #u177334_img.selectedDisabled {
  1864. }
  1865. #u177334.selectedDisabled {
  1866. }
  1867. #u177334_text {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:14px;
  1871. top:0px;
  1872. width:84px;
  1873. word-wrap:break-word;
  1874. text-transform:none;
  1875. }
  1876. #u177334_input {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:0px;
  1882. height:0px;
  1883. opacity:0;
  1884. }
  1885. #u177335 label {
  1886. left:0px;
  1887. width:100%;
  1888. }
  1889. #u177335_img {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:3px;
  1894. width:12px;
  1895. height:12px;
  1896. }
  1897. #u177335 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:157px;
  1901. top:725px;
  1902. width:100px;
  1903. height:18px;
  1904. display:flex;
  1905. }
  1906. #u177335 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:0px 2px 0px 2px;
  1910. box-sizing:border-box;
  1911. }
  1912. #u177335_img.selected {
  1913. }
  1914. #u177335.selected {
  1915. }
  1916. #u177335_img.disabled {
  1917. }
  1918. #u177335.disabled {
  1919. }
  1920. #u177335_img.selectedDisabled {
  1921. }
  1922. #u177335.selectedDisabled {
  1923. }
  1924. #u177335_text {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:14px;
  1928. top:0px;
  1929. width:84px;
  1930. word-wrap:break-word;
  1931. text-transform:none;
  1932. }
  1933. #u177335_input {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:0px;
  1939. height:0px;
  1940. opacity:0;
  1941. }
  1942. #u177336 label {
  1943. left:0px;
  1944. width:100%;
  1945. }
  1946. #u177336_img {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:3px;
  1951. width:12px;
  1952. height:12px;
  1953. }
  1954. #u177336 {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:257px;
  1958. top:725px;
  1959. width:100px;
  1960. height:18px;
  1961. display:flex;
  1962. }
  1963. #u177336 .text {
  1964. position:absolute;
  1965. align-self:center;
  1966. padding:0px 2px 0px 2px;
  1967. box-sizing:border-box;
  1968. }
  1969. #u177336_img.selected {
  1970. }
  1971. #u177336.selected {
  1972. }
  1973. #u177336_img.disabled {
  1974. }
  1975. #u177336.disabled {
  1976. }
  1977. #u177336_img.selectedDisabled {
  1978. }
  1979. #u177336.selectedDisabled {
  1980. }
  1981. #u177336_text {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:14px;
  1985. top:0px;
  1986. width:84px;
  1987. word-wrap:break-word;
  1988. text-transform:none;
  1989. }
  1990. #u177336_input {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:0px;
  1996. height:0px;
  1997. opacity:0;
  1998. }
  1999. #u177337 label {
  2000. left:0px;
  2001. width:100%;
  2002. }
  2003. #u177337_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:3px;
  2008. width:12px;
  2009. height:12px;
  2010. }
  2011. #u177337 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:354px;
  2015. top:638px;
  2016. width:50px;
  2017. height:18px;
  2018. display:flex;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. }
  2023. #u177337 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:0px 2px 0px 2px;
  2027. box-sizing:border-box;
  2028. }
  2029. #u177337_img.selected {
  2030. }
  2031. #u177337.selected {
  2032. }
  2033. #u177337_img.disabled {
  2034. }
  2035. #u177337.disabled {
  2036. }
  2037. #u177337_img.selectedDisabled {
  2038. }
  2039. #u177337.selectedDisabled {
  2040. }
  2041. #u177337_text {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:14px;
  2045. top:0px;
  2046. width:34px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. }
  2050. #u177337_input {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:0px;
  2056. height:0px;
  2057. opacity:0;
  2058. }
  2059. #u177338 label {
  2060. left:0px;
  2061. width:100%;
  2062. }
  2063. #u177338_img {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:3px;
  2068. width:12px;
  2069. height:12px;
  2070. }
  2071. #u177338 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:42px;
  2075. top:671px;
  2076. width:50px;
  2077. height:18px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. }
  2083. #u177338 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:0px 2px 0px 2px;
  2087. box-sizing:border-box;
  2088. }
  2089. #u177338_img.selected {
  2090. }
  2091. #u177338.selected {
  2092. }
  2093. #u177338_img.disabled {
  2094. }
  2095. #u177338.disabled {
  2096. }
  2097. #u177338_img.selectedDisabled {
  2098. }
  2099. #u177338.selectedDisabled {
  2100. }
  2101. #u177338_text {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:14px;
  2105. top:0px;
  2106. width:34px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. }
  2110. #u177338_input {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:0px;
  2116. height:0px;
  2117. opacity:0;
  2118. }
  2119. #u177339 label {
  2120. left:0px;
  2121. width:100%;
  2122. }
  2123. #u177339_img {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:3px;
  2128. width:12px;
  2129. height:12px;
  2130. }
  2131. #u177339 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:57px;
  2135. top:779px;
  2136. width:100px;
  2137. height:18px;
  2138. display:flex;
  2139. }
  2140. #u177339 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:0px 2px 0px 2px;
  2144. box-sizing:border-box;
  2145. }
  2146. #u177339_img.selected {
  2147. }
  2148. #u177339.selected {
  2149. }
  2150. #u177339_img.disabled {
  2151. }
  2152. #u177339.disabled {
  2153. }
  2154. #u177339_img.selectedDisabled {
  2155. }
  2156. #u177339.selectedDisabled {
  2157. }
  2158. #u177339_text {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:14px;
  2162. top:0px;
  2163. width:84px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u177339_input {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:0px;
  2173. height:0px;
  2174. opacity:0;
  2175. }
  2176. #u177340 label {
  2177. left:0px;
  2178. width:100%;
  2179. }
  2180. #u177340_img {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:3px;
  2185. width:12px;
  2186. height:12px;
  2187. }
  2188. #u177340 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:157px;
  2192. top:779px;
  2193. width:100px;
  2194. height:18px;
  2195. display:flex;
  2196. }
  2197. #u177340 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:0px 2px 0px 2px;
  2201. box-sizing:border-box;
  2202. }
  2203. #u177340_img.selected {
  2204. }
  2205. #u177340.selected {
  2206. }
  2207. #u177340_img.disabled {
  2208. }
  2209. #u177340.disabled {
  2210. }
  2211. #u177340_img.selectedDisabled {
  2212. }
  2213. #u177340.selectedDisabled {
  2214. }
  2215. #u177340_text {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:14px;
  2219. top:0px;
  2220. width:84px;
  2221. word-wrap:break-word;
  2222. text-transform:none;
  2223. }
  2224. #u177340_input {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:0px;
  2230. height:0px;
  2231. opacity:0;
  2232. }
  2233. #u177341 label {
  2234. left:0px;
  2235. width:100%;
  2236. }
  2237. #u177341_img {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:3px;
  2242. width:12px;
  2243. height:12px;
  2244. }
  2245. #u177341 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:257px;
  2249. top:779px;
  2250. width:100px;
  2251. height:18px;
  2252. display:flex;
  2253. }
  2254. #u177341 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:0px 2px 0px 2px;
  2258. box-sizing:border-box;
  2259. }
  2260. #u177341_img.selected {
  2261. }
  2262. #u177341.selected {
  2263. }
  2264. #u177341_img.disabled {
  2265. }
  2266. #u177341.disabled {
  2267. }
  2268. #u177341_img.selectedDisabled {
  2269. }
  2270. #u177341.selectedDisabled {
  2271. }
  2272. #u177341_text {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:14px;
  2276. top:0px;
  2277. width:84px;
  2278. word-wrap:break-word;
  2279. text-transform:none;
  2280. }
  2281. #u177341_input {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:0px;
  2287. height:0px;
  2288. opacity:0;
  2289. }
  2290. #u177342 label {
  2291. left:0px;
  2292. width:100%;
  2293. }
  2294. #u177342_img {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:3px;
  2299. width:12px;
  2300. height:12px;
  2301. }
  2302. #u177342 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:57px;
  2306. top:807px;
  2307. width:100px;
  2308. height:18px;
  2309. display:flex;
  2310. }
  2311. #u177342 .text {
  2312. position:absolute;
  2313. align-self:center;
  2314. padding:0px 2px 0px 2px;
  2315. box-sizing:border-box;
  2316. }
  2317. #u177342_img.selected {
  2318. }
  2319. #u177342.selected {
  2320. }
  2321. #u177342_img.disabled {
  2322. }
  2323. #u177342.disabled {
  2324. }
  2325. #u177342_img.selectedDisabled {
  2326. }
  2327. #u177342.selectedDisabled {
  2328. }
  2329. #u177342_text {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:14px;
  2333. top:0px;
  2334. width:84px;
  2335. word-wrap:break-word;
  2336. text-transform:none;
  2337. }
  2338. #u177342_input {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:0px;
  2344. height:0px;
  2345. opacity:0;
  2346. }
  2347. #u177343 label {
  2348. left:0px;
  2349. width:100%;
  2350. }
  2351. #u177343_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:3px;
  2356. width:12px;
  2357. height:12px;
  2358. }
  2359. #u177343 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:157px;
  2363. top:807px;
  2364. width:100px;
  2365. height:18px;
  2366. display:flex;
  2367. }
  2368. #u177343 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:0px 2px 0px 2px;
  2372. box-sizing:border-box;
  2373. }
  2374. #u177343_img.selected {
  2375. }
  2376. #u177343.selected {
  2377. }
  2378. #u177343_img.disabled {
  2379. }
  2380. #u177343.disabled {
  2381. }
  2382. #u177343_img.selectedDisabled {
  2383. }
  2384. #u177343.selectedDisabled {
  2385. }
  2386. #u177343_text {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:14px;
  2390. top:0px;
  2391. width:84px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. }
  2395. #u177343_input {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:0px;
  2401. height:0px;
  2402. opacity:0;
  2403. }
  2404. #u177344 label {
  2405. left:0px;
  2406. width:100%;
  2407. }
  2408. #u177344_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:3px;
  2413. width:12px;
  2414. height:12px;
  2415. }
  2416. #u177344 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:257px;
  2420. top:807px;
  2421. width:100px;
  2422. height:18px;
  2423. display:flex;
  2424. }
  2425. #u177344 .text {
  2426. position:absolute;
  2427. align-self:center;
  2428. padding:0px 2px 0px 2px;
  2429. box-sizing:border-box;
  2430. }
  2431. #u177344_img.selected {
  2432. }
  2433. #u177344.selected {
  2434. }
  2435. #u177344_img.disabled {
  2436. }
  2437. #u177344.disabled {
  2438. }
  2439. #u177344_img.selectedDisabled {
  2440. }
  2441. #u177344.selectedDisabled {
  2442. }
  2443. #u177344_text {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:14px;
  2447. top:0px;
  2448. width:84px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. }
  2452. #u177344_input {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:0px;
  2458. height:0px;
  2459. opacity:0;
  2460. }
  2461. #u177345 label {
  2462. left:0px;
  2463. width:100%;
  2464. }
  2465. #u177345_img {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:3px;
  2470. width:12px;
  2471. height:12px;
  2472. }
  2473. #u177345 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:42px;
  2477. top:753px;
  2478. width:50px;
  2479. height:18px;
  2480. display:flex;
  2481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2482. font-weight:400;
  2483. font-style:normal;
  2484. }
  2485. #u177345 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:0px 2px 0px 2px;
  2489. box-sizing:border-box;
  2490. }
  2491. #u177345_img.selected {
  2492. }
  2493. #u177345.selected {
  2494. }
  2495. #u177345_img.disabled {
  2496. }
  2497. #u177345.disabled {
  2498. }
  2499. #u177345_img.selectedDisabled {
  2500. }
  2501. #u177345.selectedDisabled {
  2502. }
  2503. #u177345_text {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:14px;
  2507. top:0px;
  2508. width:34px;
  2509. word-wrap:break-word;
  2510. text-transform:none;
  2511. }
  2512. #u177345_input {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:0px;
  2518. height:0px;
  2519. opacity:0;
  2520. }
  2521. #u177346 label {
  2522. left:0px;
  2523. width:100%;
  2524. }
  2525. #u177346_img {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:9px;
  2530. width:12px;
  2531. height:12px;
  2532. }
  2533. #u177346 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:42px;
  2537. top:841px;
  2538. width:170px;
  2539. height:30px;
  2540. display:flex;
  2541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2542. font-weight:400;
  2543. font-style:normal;
  2544. font-size:14px;
  2545. line-height:30px;
  2546. }
  2547. #u177346 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:0px 2px 0px 2px;
  2551. box-sizing:border-box;
  2552. }
  2553. #u177346_img.selected {
  2554. }
  2555. #u177346.selected {
  2556. }
  2557. #u177346_img.disabled {
  2558. }
  2559. #u177346.disabled {
  2560. }
  2561. #u177346_img.selectedDisabled {
  2562. }
  2563. #u177346.selectedDisabled {
  2564. }
  2565. #u177346_text {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:14px;
  2569. top:0px;
  2570. width:154px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. }
  2574. #u177346_input {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:0px;
  2580. height:0px;
  2581. opacity:0;
  2582. }
  2583. #u177348_img {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:433px;
  2589. height:865px;
  2590. }
  2591. #u177348 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:459px;
  2595. top:0px;
  2596. width:433px;
  2597. height:865px;
  2598. display:flex;
  2599. }
  2600. #u177348 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 2px 2px 2px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u177348_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u177349_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:375px;
  2619. height:40px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 1);
  2622. box-sizing:border-box;
  2623. border-width:1px;
  2624. border-style:solid;
  2625. border-color:rgba(215, 215, 215, 1);
  2626. border-left:0px;
  2627. border-top:0px;
  2628. border-right:0px;
  2629. border-radius:0px;
  2630. border-bottom-right-radius:0px;
  2631. border-bottom-left-radius:0px;
  2632. -moz-box-shadow:none;
  2633. -webkit-box-shadow:none;
  2634. box-shadow:none;
  2635. }
  2636. #u177349 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:488px;
  2640. top:67px;
  2641. width:375px;
  2642. height:40px;
  2643. display:flex;
  2644. }
  2645. #u177349 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 2px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u177349_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u177350 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:0px;
  2664. height:0px;
  2665. }
  2666. #u177351_div {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:88px;
  2672. height:32px;
  2673. background:inherit;
  2674. background-color:rgba(255, 255, 255, 1);
  2675. box-sizing:border-box;
  2676. border-width:1px;
  2677. border-style:solid;
  2678. border-color:rgba(242, 242, 242, 1);
  2679. border-radius:33px;
  2680. -moz-box-shadow:none;
  2681. -webkit-box-shadow:none;
  2682. box-shadow:none;
  2683. }
  2684. #u177351 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:768px;
  2688. top:71px;
  2689. width:88px;
  2690. height:32px;
  2691. display:flex;
  2692. }
  2693. #u177351 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 2px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u177351_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u177352 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:0px;
  2712. height:0px;
  2713. }
  2714. #u177353_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:18px;
  2720. height:18px;
  2721. }
  2722. #u177353 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:831px;
  2726. top:78px;
  2727. width:18px;
  2728. height:18px;
  2729. display:flex;
  2730. }
  2731. #u177353 .text {
  2732. position:absolute;
  2733. align-self:center;
  2734. padding:2px 2px 2px 2px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u177353_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. visibility:hidden;
  2743. }
  2744. #u177354_img {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:6px;
  2750. height:6px;
  2751. }
  2752. #u177354 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:837px;
  2756. top:84px;
  2757. width:6px;
  2758. height:6px;
  2759. display:flex;
  2760. }
  2761. #u177354 .text {
  2762. position:absolute;
  2763. align-self:center;
  2764. padding:2px 2px 2px 2px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u177354_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. visibility:hidden;
  2773. }
  2774. #u177355 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:0px;
  2780. height:0px;
  2781. }
  2782. #u177356_img {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:5px;
  2788. height:5px;
  2789. }
  2790. #u177356 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:782px;
  2794. top:85px;
  2795. width:5px;
  2796. height:5px;
  2797. display:flex;
  2798. }
  2799. #u177356 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 2px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u177356_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. visibility:hidden;
  2811. }
  2812. #u177357_img {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:5px;
  2818. height:5px;
  2819. }
  2820. #u177357 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:798px;
  2824. top:85px;
  2825. width:5px;
  2826. height:5px;
  2827. display:flex;
  2828. }
  2829. #u177357 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 2px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u177357_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u177358_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:7px;
  2848. height:7px;
  2849. }
  2850. #u177358 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:789px;
  2854. top:84px;
  2855. width:7px;
  2856. height:7px;
  2857. display:flex;
  2858. }
  2859. #u177358 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 2px 2px 2px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u177358_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. visibility:hidden;
  2871. }
  2872. #u177359_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:19px;
  2878. height:2px;
  2879. }
  2880. #u177359 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:806px;
  2884. top:87px;
  2885. width:18px;
  2886. height:1px;
  2887. display:flex;
  2888. -webkit-transform:rotate(90deg);
  2889. -moz-transform:rotate(90deg);
  2890. -ms-transform:rotate(90deg);
  2891. transform:rotate(90deg);
  2892. }
  2893. #u177359 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:2px 2px 2px 2px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u177359_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. visibility:hidden;
  2905. }
  2906. #u177360_img {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:375px;
  2912. height:44px;
  2913. }
  2914. #u177360 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:488px;
  2918. top:24px;
  2919. width:375px;
  2920. height:44px;
  2921. display:flex;
  2922. }
  2923. #u177360 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:2px 2px 2px 2px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u177360_text {
  2931. border-width:0px;
  2932. word-wrap:break-word;
  2933. text-transform:none;
  2934. visibility:hidden;
  2935. }
  2936. #u177361_div {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:375px;
  2942. height:50px;
  2943. background:inherit;
  2944. background-color:rgba(255, 255, 255, 1);
  2945. box-sizing:border-box;
  2946. border-width:1px;
  2947. border-style:solid;
  2948. border-color:rgba(242, 242, 242, 1);
  2949. border-radius:26px;
  2950. border-top-left-radius:0px;
  2951. border-top-right-radius:0px;
  2952. -moz-box-shadow:none;
  2953. -webkit-box-shadow:none;
  2954. box-shadow:none;
  2955. }
  2956. #u177361 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:488px;
  2960. top:788px;
  2961. width:375px;
  2962. height:50px;
  2963. display:flex;
  2964. }
  2965. #u177361 .text {
  2966. position:absolute;
  2967. align-self:center;
  2968. padding:2px 2px 2px 2px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u177361_text {
  2973. border-width:0px;
  2974. word-wrap:break-word;
  2975. text-transform:none;
  2976. visibility:hidden;
  2977. }
  2978. #u177362 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:0px;
  2982. top:0px;
  2983. width:0px;
  2984. height:0px;
  2985. }
  2986. #u177363_img {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:24px;
  2992. height:24px;
  2993. }
  2994. #u177363 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:528px;
  2998. top:792px;
  2999. width:24px;
  3000. height:24px;
  3001. display:flex;
  3002. font-size:8px;
  3003. }
  3004. #u177363 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 2px 2px 2px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u177363_text {
  3012. border-width:0px;
  3013. word-wrap:break-word;
  3014. text-transform:none;
  3015. }
  3016. #u177364_div {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:25px;
  3022. height:17px;
  3023. background:inherit;
  3024. background-color:rgba(255, 255, 255, 0);
  3025. border:none;
  3026. border-radius:0px;
  3027. -moz-box-shadow:none;
  3028. -webkit-box-shadow:none;
  3029. box-shadow:none;
  3030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:12px;
  3034. }
  3035. #u177364 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:528px;
  3039. top:817px;
  3040. width:25px;
  3041. height:17px;
  3042. display:flex;
  3043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3044. font-weight:400;
  3045. font-style:normal;
  3046. font-size:12px;
  3047. }
  3048. #u177364 .text {
  3049. position:absolute;
  3050. align-self:flex-start;
  3051. padding:0px 0px 0px 0px;
  3052. box-sizing:border-box;
  3053. width:100%;
  3054. }
  3055. #u177364_text {
  3056. border-width:0px;
  3057. white-space:nowrap;
  3058. text-transform:none;
  3059. }
  3060. #u177365 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:0px;
  3066. height:0px;
  3067. }
  3068. #u177366_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:24px;
  3074. height:24px;
  3075. }
  3076. #u177366 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:798px;
  3080. top:794px;
  3081. width:24px;
  3082. height:24px;
  3083. display:flex;
  3084. font-size:8px;
  3085. }
  3086. #u177366 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 2px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u177366_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. }
  3098. #u177367_div {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:25px;
  3104. height:17px;
  3105. background:inherit;
  3106. background-color:rgba(255, 255, 255, 0);
  3107. border:none;
  3108. border-radius:0px;
  3109. -moz-box-shadow:none;
  3110. -webkit-box-shadow:none;
  3111. box-shadow:none;
  3112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3113. font-weight:400;
  3114. font-style:normal;
  3115. font-size:12px;
  3116. }
  3117. #u177367 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:798px;
  3121. top:819px;
  3122. width:25px;
  3123. height:17px;
  3124. display:flex;
  3125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3126. font-weight:400;
  3127. font-style:normal;
  3128. font-size:12px;
  3129. }
  3130. #u177367 .text {
  3131. position:absolute;
  3132. align-self:flex-start;
  3133. padding:0px 0px 0px 0px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u177367_text {
  3138. border-width:0px;
  3139. white-space:nowrap;
  3140. text-transform:none;
  3141. }
  3142. #u177368_div {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:375px;
  3148. height:681px;
  3149. background:inherit;
  3150. background-color:rgba(242, 242, 242, 0.462745098039216);
  3151. border:none;
  3152. border-radius:0px;
  3153. -moz-box-shadow:none;
  3154. -webkit-box-shadow:none;
  3155. box-shadow:none;
  3156. }
  3157. #u177368 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:488px;
  3161. top:107px;
  3162. width:375px;
  3163. height:681px;
  3164. display:flex;
  3165. }
  3166. #u177368 .text {
  3167. position:absolute;
  3168. align-self:center;
  3169. padding:2px 2px 2px 2px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u177368_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. visibility:hidden;
  3178. }
  3179. #u177369 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:0px;
  3185. height:0px;
  3186. }
  3187. #u177370_img {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:24px;
  3193. height:24px;
  3194. }
  3195. #u177370 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:710px;
  3199. top:792px;
  3200. width:24px;
  3201. height:24px;
  3202. display:flex;
  3203. font-size:8px;
  3204. }
  3205. #u177370 .text {
  3206. position:absolute;
  3207. align-self:center;
  3208. padding:2px 2px 2px 2px;
  3209. box-sizing:border-box;
  3210. width:100%;
  3211. }
  3212. #u177370_text {
  3213. border-width:0px;
  3214. word-wrap:break-word;
  3215. text-transform:none;
  3216. }
  3217. #u177371_div {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:37px;
  3223. height:17px;
  3224. background:inherit;
  3225. background-color:rgba(255, 255, 255, 0);
  3226. border:none;
  3227. border-radius:0px;
  3228. -moz-box-shadow:none;
  3229. -webkit-box-shadow:none;
  3230. box-shadow:none;
  3231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3232. font-weight:400;
  3233. font-style:normal;
  3234. font-size:12px;
  3235. }
  3236. #u177371 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:704px;
  3240. top:817px;
  3241. width:37px;
  3242. height:17px;
  3243. display:flex;
  3244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:12px;
  3248. }
  3249. #u177371 .text {
  3250. position:absolute;
  3251. align-self:flex-start;
  3252. padding:0px 0px 0px 0px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u177371_text {
  3257. border-width:0px;
  3258. white-space:nowrap;
  3259. text-transform:none;
  3260. }
  3261. #u177372 {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:0px;
  3267. height:0px;
  3268. }
  3269. #u177373_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:24px;
  3275. height:24px;
  3276. }
  3277. #u177373 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:616px;
  3281. top:792px;
  3282. width:24px;
  3283. height:24px;
  3284. display:flex;
  3285. font-size:8px;
  3286. }
  3287. #u177373 .text {
  3288. position:absolute;
  3289. align-self:center;
  3290. padding:2px 2px 2px 2px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u177373_text {
  3295. border-width:0px;
  3296. word-wrap:break-word;
  3297. text-transform:none;
  3298. }
  3299. #u177374_div {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:37px;
  3305. height:17px;
  3306. background:inherit;
  3307. background-color:rgba(255, 255, 255, 0);
  3308. border:none;
  3309. border-radius:0px;
  3310. -moz-box-shadow:none;
  3311. -webkit-box-shadow:none;
  3312. box-shadow:none;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:12px;
  3317. }
  3318. #u177374 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:610px;
  3322. top:817px;
  3323. width:37px;
  3324. height:17px;
  3325. display:flex;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:12px;
  3330. }
  3331. #u177374 .text {
  3332. position:absolute;
  3333. align-self:flex-start;
  3334. padding:0px 0px 0px 0px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u177374_text {
  3339. border-width:0px;
  3340. white-space:nowrap;
  3341. text-transform:none;
  3342. }
  3343. #u177375_div {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:375px;
  3349. height:734px;
  3350. background:inherit;
  3351. background-color:rgba(242, 242, 242, 1);
  3352. border:none;
  3353. border-radius:21px;
  3354. border-top-left-radius:0px;
  3355. border-top-right-radius:0px;
  3356. -moz-box-shadow:none;
  3357. -webkit-box-shadow:none;
  3358. box-shadow:none;
  3359. }
  3360. #u177375 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:488px;
  3364. top:107px;
  3365. width:375px;
  3366. height:734px;
  3367. display:flex;
  3368. }
  3369. #u177375 .text {
  3370. position:absolute;
  3371. align-self:center;
  3372. padding:2px 2px 2px 2px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u177375_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u177376 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:0px;
  3388. height:0px;
  3389. }
  3390. #u177377_img {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:11px;
  3396. height:18px;
  3397. }
  3398. #u177377 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:498px;
  3402. top:79px;
  3403. width:11px;
  3404. height:18px;
  3405. display:flex;
  3406. }
  3407. #u177377 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 2px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u177377_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u177378_div {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:71px;
  3426. height:30px;
  3427. background:inherit;
  3428. background-color:rgba(255, 255, 255, 0);
  3429. border:none;
  3430. border-left:0px;
  3431. border-top:0px;
  3432. border-right:0px;
  3433. border-radius:0px;
  3434. border-bottom-right-radius:0px;
  3435. border-bottom-left-radius:0px;
  3436. -moz-box-shadow:none;
  3437. -webkit-box-shadow:none;
  3438. box-shadow:none;
  3439. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3440. font-weight:500;
  3441. font-style:normal;
  3442. font-size:14px;
  3443. line-height:30px;
  3444. }
  3445. #u177378 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:518px;
  3449. top:73px;
  3450. width:71px;
  3451. height:30px;
  3452. display:flex;
  3453. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3454. font-weight:500;
  3455. font-style:normal;
  3456. font-size:14px;
  3457. line-height:30px;
  3458. }
  3459. #u177378 .text {
  3460. position:absolute;
  3461. align-self:flex-start;
  3462. padding:0px 0px 0px 0px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u177378_text {
  3467. border-width:0px;
  3468. white-space:nowrap;
  3469. text-transform:none;
  3470. }
  3471. #u177379 {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:0px;
  3477. height:0px;
  3478. }
  3479. #u177380_div {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:355px;
  3485. height:263px;
  3486. background:inherit;
  3487. background-color:rgba(255, 255, 255, 1);
  3488. border:none;
  3489. border-radius:4px;
  3490. -moz-box-shadow:none;
  3491. -webkit-box-shadow:none;
  3492. box-shadow:none;
  3493. }
  3494. #u177380 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:498px;
  3498. top:117px;
  3499. width:355px;
  3500. height:263px;
  3501. display:flex;
  3502. }
  3503. #u177380 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:2px 2px 2px 2px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u177380_text {
  3511. border-width:0px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. visibility:hidden;
  3515. }
  3516. #u177381_div {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:57px;
  3522. height:200px;
  3523. background:inherit;
  3524. background-color:rgba(255, 255, 255, 0);
  3525. border:none;
  3526. border-left:0px;
  3527. border-top:0px;
  3528. border-right:0px;
  3529. border-radius:0px;
  3530. border-bottom-right-radius:0px;
  3531. border-bottom-left-radius:0px;
  3532. -moz-box-shadow:none;
  3533. -webkit-box-shadow:none;
  3534. box-shadow:none;
  3535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:14px;
  3539. line-height:40px;
  3540. }
  3541. #u177381 {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:518px;
  3545. top:128px;
  3546. width:57px;
  3547. height:200px;
  3548. display:flex;
  3549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3550. font-weight:400;
  3551. font-style:normal;
  3552. font-size:14px;
  3553. line-height:40px;
  3554. }
  3555. #u177381 .text {
  3556. position:absolute;
  3557. align-self:flex-start;
  3558. padding:0px 0px 0px 0px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u177381_text {
  3563. border-width:0px;
  3564. white-space:nowrap;
  3565. text-transform:none;
  3566. }
  3567. #u177382_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:222px;
  3573. height:160px;
  3574. background:inherit;
  3575. background-color:rgba(255, 255, 255, 0);
  3576. border:none;
  3577. border-left:0px;
  3578. border-top:0px;
  3579. border-right:0px;
  3580. border-radius:0px;
  3581. border-bottom-right-radius:0px;
  3582. border-bottom-left-radius:0px;
  3583. -moz-box-shadow:none;
  3584. -webkit-box-shadow:none;
  3585. box-shadow:none;
  3586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:14px;
  3590. color:#AAAAAA;
  3591. line-height:40px;
  3592. }
  3593. #u177382 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:620px;
  3597. top:128px;
  3598. width:222px;
  3599. height:160px;
  3600. display:flex;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:14px;
  3605. color:#AAAAAA;
  3606. line-height:40px;
  3607. }
  3608. #u177382 .text {
  3609. position:absolute;
  3610. align-self:flex-start;
  3611. padding:0px 0px 0px 0px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u177382_text {
  3616. border-width:0px;
  3617. word-wrap:break-word;
  3618. text-transform:none;
  3619. }
  3620. #u177383_div {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:70px;
  3626. height:70px;
  3627. background:inherit;
  3628. background-color:rgba(255, 255, 255, 1);
  3629. box-sizing:border-box;
  3630. border-width:1px;
  3631. border-style:solid;
  3632. border-color:rgba(121, 121, 121, 1);
  3633. border-radius:2px;
  3634. -moz-box-shadow:none;
  3635. -webkit-box-shadow:none;
  3636. box-shadow:none;
  3637. font-size:28px;
  3638. }
  3639. #u177383 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:620px;
  3643. top:297px;
  3644. width:70px;
  3645. height:70px;
  3646. display:flex;
  3647. font-size:28px;
  3648. }
  3649. #u177383 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 2px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u177383_text {
  3657. border-width:0px;
  3658. word-wrap:break-word;
  3659. text-transform:none;
  3660. }
  3661. #u177384_img {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:0px;
  3665. top:0px;
  3666. width:14px;
  3667. height:14px;
  3668. }
  3669. #u177384 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:839px;
  3673. top:117px;
  3674. width:14px;
  3675. height:14px;
  3676. display:flex;
  3677. }
  3678. #u177384 .text {
  3679. position:absolute;
  3680. align-self:center;
  3681. padding:2px 2px 2px 2px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u177384_text {
  3686. border-width:0px;
  3687. word-wrap:break-word;
  3688. text-transform:none;
  3689. visibility:hidden;
  3690. }
  3691. #u177385 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:0px;
  3697. height:0px;
  3698. }
  3699. #u177386_div {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:355px;
  3705. height:263px;
  3706. background:inherit;
  3707. background-color:rgba(255, 255, 255, 1);
  3708. border:none;
  3709. border-radius:4px;
  3710. -moz-box-shadow:none;
  3711. -webkit-box-shadow:none;
  3712. box-shadow:none;
  3713. }
  3714. #u177386 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:498px;
  3718. top:390px;
  3719. width:355px;
  3720. height:263px;
  3721. display:flex;
  3722. }
  3723. #u177386 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 2px 2px 2px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u177386_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. visibility:hidden;
  3735. }
  3736. #u177387_div {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:57px;
  3742. height:200px;
  3743. background:inherit;
  3744. background-color:rgba(255, 255, 255, 0);
  3745. border:none;
  3746. border-left:0px;
  3747. border-top:0px;
  3748. border-right:0px;
  3749. border-radius:0px;
  3750. border-bottom-right-radius:0px;
  3751. border-bottom-left-radius:0px;
  3752. -moz-box-shadow:none;
  3753. -webkit-box-shadow:none;
  3754. box-shadow:none;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:14px;
  3759. line-height:40px;
  3760. }
  3761. #u177387 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:518px;
  3765. top:401px;
  3766. width:57px;
  3767. height:200px;
  3768. display:flex;
  3769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:14px;
  3773. line-height:40px;
  3774. }
  3775. #u177387 .text {
  3776. position:absolute;
  3777. align-self:flex-start;
  3778. padding:0px 0px 0px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u177387_text {
  3783. border-width:0px;
  3784. white-space:nowrap;
  3785. text-transform:none;
  3786. }
  3787. #u177388_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:222px;
  3793. height:160px;
  3794. background:inherit;
  3795. background-color:rgba(255, 255, 255, 0);
  3796. border:none;
  3797. border-left:0px;
  3798. border-top:0px;
  3799. border-right:0px;
  3800. border-radius:0px;
  3801. border-bottom-right-radius:0px;
  3802. border-bottom-left-radius:0px;
  3803. -moz-box-shadow:none;
  3804. -webkit-box-shadow:none;
  3805. box-shadow:none;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:14px;
  3810. color:#AAAAAA;
  3811. line-height:40px;
  3812. }
  3813. #u177388 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:620px;
  3817. top:401px;
  3818. width:222px;
  3819. height:160px;
  3820. display:flex;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:14px;
  3825. color:#AAAAAA;
  3826. line-height:40px;
  3827. }
  3828. #u177388 .text {
  3829. position:absolute;
  3830. align-self:flex-start;
  3831. padding:0px 0px 0px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u177388_text {
  3836. border-width:0px;
  3837. word-wrap:break-word;
  3838. text-transform:none;
  3839. }
  3840. #u177389_div {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:70px;
  3846. height:70px;
  3847. background:inherit;
  3848. background-color:rgba(255, 255, 255, 1);
  3849. box-sizing:border-box;
  3850. border-width:1px;
  3851. border-style:solid;
  3852. border-color:rgba(121, 121, 121, 1);
  3853. border-radius:2px;
  3854. -moz-box-shadow:none;
  3855. -webkit-box-shadow:none;
  3856. box-shadow:none;
  3857. font-size:28px;
  3858. }
  3859. #u177389 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:620px;
  3863. top:570px;
  3864. width:70px;
  3865. height:70px;
  3866. display:flex;
  3867. font-size:28px;
  3868. }
  3869. #u177389 .text {
  3870. position:absolute;
  3871. align-self:center;
  3872. padding:2px 2px 2px 2px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u177389_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. }
  3881. #u177390_img {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:0px;
  3885. top:0px;
  3886. width:14px;
  3887. height:14px;
  3888. }
  3889. #u177390 {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:839px;
  3893. top:390px;
  3894. width:14px;
  3895. height:14px;
  3896. display:flex;
  3897. }
  3898. #u177390 .text {
  3899. position:absolute;
  3900. align-self:center;
  3901. padding:2px 2px 2px 2px;
  3902. box-sizing:border-box;
  3903. width:100%;
  3904. }
  3905. #u177390_text {
  3906. border-width:0px;
  3907. word-wrap:break-word;
  3908. text-transform:none;
  3909. visibility:hidden;
  3910. }
  3911. #u177391_div {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:37px;
  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:#298FFF;
  3935. line-height:30px;
  3936. }
  3937. #u177391 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:510px;
  3941. top:665px;
  3942. width:37px;
  3943. height:30px;
  3944. display:flex;
  3945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:14px;
  3949. color:#298FFF;
  3950. line-height:30px;
  3951. }
  3952. #u177391 .text {
  3953. position:absolute;
  3954. align-self:flex-start;
  3955. padding:0px 0px 0px 0px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u177391_text {
  3960. border-width:0px;
  3961. white-space:nowrap;
  3962. text-transform:none;
  3963. }
  3964. #u177392 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:0px;
  3970. height:0px;
  3971. }
  3972. #u177393 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:0px;
  3978. height:0px;
  3979. }
  3980. #u177394_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:376px;
  3986. height:60px;
  3987. background:inherit;
  3988. background-color:rgba(255, 255, 255, 1);
  3989. border:none;
  3990. border-top:0px;
  3991. border-radius:22px;
  3992. border-top-left-radius:0px;
  3993. border-top-right-radius:0px;
  3994. -moz-box-shadow:none;
  3995. -webkit-box-shadow:none;
  3996. box-shadow:none;
  3997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3998. font-weight:400;
  3999. font-style:normal;
  4000. }
  4001. #u177394 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:488px;
  4005. top:781px;
  4006. width:376px;
  4007. height:60px;
  4008. display:flex;
  4009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. }
  4013. #u177394 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:2px 2px 2px 2px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u177394_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. visibility:hidden;
  4025. }
  4026. #u177395_div {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:341px;
  4032. height:40px;
  4033. background:inherit;
  4034. background-color:rgba(41, 143, 255, 1);
  4035. border:none;
  4036. border-radius:45px;
  4037. -moz-box-shadow:none;
  4038. -webkit-box-shadow:none;
  4039. box-shadow:none;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:14px;
  4044. color:#FFFFFF;
  4045. }
  4046. #u177395 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:506px;
  4050. top:791px;
  4051. width:341px;
  4052. height:40px;
  4053. display:flex;
  4054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:14px;
  4058. color:#FFFFFF;
  4059. }
  4060. #u177395 .text {
  4061. position:absolute;
  4062. align-self:center;
  4063. padding:2px 2px 2px 2px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u177395_text {
  4068. border-width:0px;
  4069. word-wrap:break-word;
  4070. text-transform:none;
  4071. }
  4072. #u177396 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:0px;
  4078. height:0px;
  4079. }
  4080. #u177397_div {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:342px;
  4086. height:40px;
  4087. background:inherit;
  4088. background-color:rgba(242, 242, 242, 1);
  4089. border:none;
  4090. border-left:0px;
  4091. border-top:0px;
  4092. border-right:0px;
  4093. border-radius:4px;
  4094. border-bottom-right-radius:0px;
  4095. border-bottom-left-radius:0px;
  4096. -moz-box-shadow:none;
  4097. -webkit-box-shadow:none;
  4098. box-shadow:none;
  4099. }
  4100. #u177397 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:42px;
  4104. top:871px;
  4105. width:342px;
  4106. height:40px;
  4107. display:flex;
  4108. }
  4109. #u177397 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:2px 2px 2px 2px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u177397_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. visibility:hidden;
  4121. }
  4122. #u177398_div {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:67px;
  4128. height:40px;
  4129. background:inherit;
  4130. background-color:rgba(255, 255, 255, 0);
  4131. border:none;
  4132. border-top:0px;
  4133. border-right:0px;
  4134. border-bottom:0px;
  4135. border-radius:0px;
  4136. border-top-left-radius:0px;
  4137. border-bottom-left-radius:0px;
  4138. -moz-box-shadow:none;
  4139. -webkit-box-shadow:none;
  4140. box-shadow:none;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:14px;
  4145. line-height:30px;
  4146. }
  4147. #u177398 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:52px;
  4151. top:871px;
  4152. width:67px;
  4153. height:40px;
  4154. display:flex;
  4155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:14px;
  4159. line-height:30px;
  4160. }
  4161. #u177398 .text {
  4162. position:absolute;
  4163. align-self:center;
  4164. padding:5px 10px 5px 0px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u177398_text {
  4169. border-width:0px;
  4170. white-space:nowrap;
  4171. text-transform:none;
  4172. }
  4173. #u177399_img {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:10px;
  4179. height:16px;
  4180. }
  4181. #u177399 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:366px;
  4185. top:883px;
  4186. width:10px;
  4187. height:16px;
  4188. display:flex;
  4189. -webkit-transform:rotate(180deg);
  4190. -moz-transform:rotate(180deg);
  4191. -ms-transform:rotate(180deg);
  4192. transform:rotate(180deg);
  4193. }
  4194. #u177399 .text {
  4195. position:absolute;
  4196. align-self:center;
  4197. padding:2px 2px 2px 2px;
  4198. box-sizing:border-box;
  4199. width:100%;
  4200. }
  4201. #u177399_text {
  4202. border-width:0px;
  4203. word-wrap:break-word;
  4204. text-transform:none;
  4205. visibility:hidden;
  4206. }
  4207. #u177400_div {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:53px;
  4213. height:40px;
  4214. background:inherit;
  4215. background-color:rgba(255, 255, 255, 0);
  4216. border:none;
  4217. border-top:0px;
  4218. border-right:0px;
  4219. border-bottom:0px;
  4220. border-radius:0px;
  4221. border-top-left-radius:0px;
  4222. border-bottom-left-radius:0px;
  4223. -moz-box-shadow:none;
  4224. -webkit-box-shadow:none;
  4225. box-shadow:none;
  4226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:14px;
  4230. line-height:30px;
  4231. }
  4232. #u177400 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:306px;
  4236. top:871px;
  4237. width:53px;
  4238. height:40px;
  4239. display:flex;
  4240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:14px;
  4244. line-height:30px;
  4245. }
  4246. #u177400 .text {
  4247. position:absolute;
  4248. align-self:center;
  4249. padding:5px 10px 5px 0px;
  4250. box-sizing:border-box;
  4251. width:100%;
  4252. }
  4253. #u177400_text {
  4254. border-width:0px;
  4255. white-space:nowrap;
  4256. text-transform:none;
  4257. }
  4258. #u177401 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:0px;
  4264. height:0px;
  4265. }
  4266. #u177402 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:0px;
  4272. height:0px;
  4273. }
  4274. #u177403_img {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:0px;
  4279. width:376px;
  4280. height:60px;
  4281. }
  4282. #u177403 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:28px;
  4286. top:924px;
  4287. width:376px;
  4288. height:60px;
  4289. display:flex;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. }
  4294. #u177403 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 2px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u177403_text {
  4302. border-width:0px;
  4303. word-wrap:break-word;
  4304. text-transform:none;
  4305. visibility:hidden;
  4306. }
  4307. #u177404_div {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:341px;
  4313. height:40px;
  4314. background:inherit;
  4315. background-color:rgba(41, 143, 255, 1);
  4316. box-sizing:border-box;
  4317. border-width:1px;
  4318. border-style:solid;
  4319. border-color:rgba(121, 121, 121, 1);
  4320. border-radius:45px;
  4321. -moz-box-shadow:none;
  4322. -webkit-box-shadow:none;
  4323. box-shadow:none;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:14px;
  4328. color:#FFFFFF;
  4329. }
  4330. #u177404 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:46px;
  4334. top:934px;
  4335. width:341px;
  4336. height:40px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:14px;
  4342. color:#FFFFFF;
  4343. }
  4344. #u177404 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u177404_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u177405_div {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:595px;
  4362. height:160px;
  4363. background:inherit;
  4364. background-color:rgba(255, 255, 255, 0);
  4365. border:none;
  4366. border-top:0px;
  4367. border-right:0px;
  4368. border-bottom:0px;
  4369. border-radius:0px;
  4370. border-top-left-radius:0px;
  4371. border-bottom-left-radius:0px;
  4372. -moz-box-shadow:none;
  4373. -webkit-box-shadow:none;
  4374. box-shadow:none;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:12px;
  4379. color:#D9001B;
  4380. line-height:30px;
  4381. }
  4382. #u177405 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:46px;
  4386. top:1020px;
  4387. width:595px;
  4388. height:160px;
  4389. display:flex;
  4390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4391. font-weight:400;
  4392. font-style:normal;
  4393. font-size:12px;
  4394. color:#D9001B;
  4395. line-height:30px;
  4396. }
  4397. #u177405 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:5px 10px 5px 0px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u177405_text {
  4405. border-width:0px;
  4406. white-space:nowrap;
  4407. text-transform:none;
  4408. }
  4409. #u177406 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:202px;
  4413. top:854px;
  4414. width:0px;
  4415. height:0px;
  4416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4417. font-weight:400;
  4418. font-style:normal;
  4419. font-size:10px;
  4420. color:#333333;
  4421. }
  4422. #u177406_seg0 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:-5px;
  4427. width:147px;
  4428. height:10px;
  4429. }
  4430. #u177406_seg1 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:137px;
  4434. top:-5px;
  4435. width:10px;
  4436. height:171px;
  4437. }
  4438. #u177406_seg2 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:132px;
  4442. top:154px;
  4443. width:20px;
  4444. height:20px;
  4445. }
  4446. #u177406_text {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:92px;
  4450. top:4px;
  4451. width:100px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. visibility:hidden;
  4455. }