styles.css 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:902px;
  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. #u181538_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u181538 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u181538 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u181538_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u181539_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. #u181539 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u181539 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u181539_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u181540 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u181541_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. #u181541 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u181541 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u181541_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u181542 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u181543_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u181543 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u181543 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u181543_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u181544_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u181544 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u181544 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u181544_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u181545 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u181546_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u181546 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u181546 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u181546_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u181547_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u181547 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u181547 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u181547_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u181548_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u181548 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u181548 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u181548_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u181549_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u181549 {
  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. #u181549 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u181549_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u181550_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u181550 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u181550 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u181550_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u181551_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. #u181551 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u181551 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u181551_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u181552 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u181553_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u181553 {
  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. #u181553 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u181553_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u181554_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. #u181554 {
  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. #u181554 .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. #u181554_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u181555 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u181556_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u181556 {
  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. #u181556 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u181556_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u181557_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. #u181557 {
  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. #u181557 .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. #u181557_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u181558_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. #u181558 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u181558 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u181558_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u181559 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u181560_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u181560 {
  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. #u181560 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u181560_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u181561_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. #u181561 {
  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. #u181561 .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. #u181561_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u181562 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u181563_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u181563 {
  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. #u181563 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u181563_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u181564_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. #u181564 {
  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. #u181564 .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. #u181564_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u181565_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:44px;
  786. }
  787. #u181565 {
  788. border-width:0px;
  789. position:absolute;
  790. left:29px;
  791. top:24px;
  792. width:375px;
  793. height:44px;
  794. display:flex;
  795. }
  796. #u181565 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u181565_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u181566 {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:0px;
  815. height:0px;
  816. }
  817. #u181567_div {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:88px;
  823. height:32px;
  824. background:inherit;
  825. background-color:rgba(255, 255, 255, 1);
  826. box-sizing:border-box;
  827. border-width:1px;
  828. border-style:solid;
  829. border-color:rgba(242, 242, 242, 1);
  830. border-radius:33px;
  831. -moz-box-shadow:none;
  832. -webkit-box-shadow:none;
  833. box-shadow:none;
  834. }
  835. #u181567 {
  836. border-width:0px;
  837. position:absolute;
  838. left:309px;
  839. top:71px;
  840. width:88px;
  841. height:32px;
  842. display:flex;
  843. }
  844. #u181567 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u181567_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u181568 {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:0px;
  863. height:0px;
  864. }
  865. #u181569_img {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:18px;
  871. height:18px;
  872. }
  873. #u181569 {
  874. border-width:0px;
  875. position:absolute;
  876. left:372px;
  877. top:78px;
  878. width:18px;
  879. height:18px;
  880. display:flex;
  881. }
  882. #u181569 .text {
  883. position:absolute;
  884. align-self:center;
  885. padding:2px 2px 2px 2px;
  886. box-sizing:border-box;
  887. width:100%;
  888. }
  889. #u181569_text {
  890. border-width:0px;
  891. word-wrap:break-word;
  892. text-transform:none;
  893. visibility:hidden;
  894. }
  895. #u181570_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:6px;
  901. height:6px;
  902. }
  903. #u181570 {
  904. border-width:0px;
  905. position:absolute;
  906. left:378px;
  907. top:84px;
  908. width:6px;
  909. height:6px;
  910. display:flex;
  911. }
  912. #u181570 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u181570_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u181571 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u181572_img {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:5px;
  939. height:5px;
  940. }
  941. #u181572 {
  942. border-width:0px;
  943. position:absolute;
  944. left:323px;
  945. top:85px;
  946. width:5px;
  947. height:5px;
  948. display:flex;
  949. }
  950. #u181572 .text {
  951. position:absolute;
  952. align-self:center;
  953. padding:2px 2px 2px 2px;
  954. box-sizing:border-box;
  955. width:100%;
  956. }
  957. #u181572_text {
  958. border-width:0px;
  959. word-wrap:break-word;
  960. text-transform:none;
  961. visibility:hidden;
  962. }
  963. #u181573_img {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:5px;
  969. height:5px;
  970. }
  971. #u181573 {
  972. border-width:0px;
  973. position:absolute;
  974. left:339px;
  975. top:85px;
  976. width:5px;
  977. height:5px;
  978. display:flex;
  979. }
  980. #u181573 .text {
  981. position:absolute;
  982. align-self:center;
  983. padding:2px 2px 2px 2px;
  984. box-sizing:border-box;
  985. width:100%;
  986. }
  987. #u181573_text {
  988. border-width:0px;
  989. word-wrap:break-word;
  990. text-transform:none;
  991. visibility:hidden;
  992. }
  993. #u181574_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:7px;
  999. height:7px;
  1000. }
  1001. #u181574 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:330px;
  1005. top:84px;
  1006. width:7px;
  1007. height:7px;
  1008. display:flex;
  1009. }
  1010. #u181574 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u181574_text {
  1018. border-width:0px;
  1019. word-wrap:break-word;
  1020. text-transform:none;
  1021. visibility:hidden;
  1022. }
  1023. #u181575_img {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:19px;
  1029. height:2px;
  1030. }
  1031. #u181575 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:347px;
  1035. top:87px;
  1036. width:18px;
  1037. height:1px;
  1038. display:flex;
  1039. -webkit-transform:rotate(90deg);
  1040. -moz-transform:rotate(90deg);
  1041. -ms-transform:rotate(90deg);
  1042. transform:rotate(90deg);
  1043. }
  1044. #u181575 .text {
  1045. position:absolute;
  1046. align-self:center;
  1047. padding:2px 2px 2px 2px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u181575_text {
  1052. border-width:0px;
  1053. word-wrap:break-word;
  1054. text-transform:none;
  1055. visibility:hidden;
  1056. }
  1057. #u181576_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:65px;
  1063. height:22px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 0);
  1066. border:none;
  1067. border-radius:0px;
  1068. -moz-box-shadow:none;
  1069. -webkit-box-shadow:none;
  1070. box-shadow:none;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:16px;
  1075. color:#000000;
  1076. }
  1077. #u181576 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:174px;
  1081. top:78px;
  1082. width:65px;
  1083. height:22px;
  1084. display:flex;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:16px;
  1089. color:#000000;
  1090. }
  1091. #u181576 .text {
  1092. position:absolute;
  1093. align-self:flex-start;
  1094. padding:0px 0px 0px 0px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u181576_text {
  1099. border-width:0px;
  1100. white-space:nowrap;
  1101. text-transform:none;
  1102. }
  1103. #u181577_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:12px;
  1109. height:12px;
  1110. background:inherit;
  1111. background-color:rgba(255, 255, 255, 0);
  1112. box-sizing:border-box;
  1113. border-width:2px;
  1114. border-style:solid;
  1115. border-color:rgba(51, 51, 51, 1);
  1116. border-right:0px;
  1117. border-bottom:0px;
  1118. border-radius:0px;
  1119. border-top-right-radius:0px;
  1120. border-bottom-left-radius:0px;
  1121. -moz-box-shadow:none;
  1122. -webkit-box-shadow:none;
  1123. box-shadow:none;
  1124. }
  1125. #u181577 {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:46px;
  1129. top:81px;
  1130. width:12px;
  1131. height:12px;
  1132. display:flex;
  1133. -webkit-transform:rotate(315deg);
  1134. -moz-transform:rotate(315deg);
  1135. -ms-transform:rotate(315deg);
  1136. transform:rotate(315deg);
  1137. }
  1138. #u181577 .text {
  1139. position:absolute;
  1140. align-self:center;
  1141. padding:2px 2px 2px 2px;
  1142. box-sizing:border-box;
  1143. width:100%;
  1144. }
  1145. #u181577_text {
  1146. border-width:0px;
  1147. word-wrap:break-word;
  1148. text-transform:none;
  1149. visibility:hidden;
  1150. }
  1151. #u181578_img {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:0px;
  1155. top:0px;
  1156. width:23px;
  1157. height:23px;
  1158. }
  1159. #u181578 {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:73px;
  1163. top:76px;
  1164. width:23px;
  1165. height:23px;
  1166. display:flex;
  1167. }
  1168. #u181578 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:2px 2px 2px 2px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u181578_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. visibility:hidden;
  1180. }
  1181. #u181579_div {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:0px;
  1185. top:0px;
  1186. width:375px;
  1187. height:733px;
  1188. background:inherit;
  1189. background-color:rgba(242, 242, 242, 0.996078431372549);
  1190. border:none;
  1191. border-top:0px;
  1192. border-radius:35px;
  1193. border-top-left-radius:0px;
  1194. border-top-right-radius:0px;
  1195. -moz-box-shadow:none;
  1196. -webkit-box-shadow:none;
  1197. box-shadow:none;
  1198. }
  1199. #u181579 {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:29px;
  1203. top:106px;
  1204. width:375px;
  1205. height:733px;
  1206. display:flex;
  1207. }
  1208. #u181579 .text {
  1209. position:absolute;
  1210. align-self:center;
  1211. padding:2px 2px 2px 2px;
  1212. box-sizing:border-box;
  1213. width:100%;
  1214. }
  1215. #u181579_text {
  1216. border-width:0px;
  1217. word-wrap:break-word;
  1218. text-transform:none;
  1219. visibility:hidden;
  1220. }
  1221. #u181580 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:0px;
  1227. height:0px;
  1228. }
  1229. #u181581_div {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:375px;
  1235. height:50px;
  1236. background:inherit;
  1237. background-color:rgba(255, 255, 255, 1);
  1238. box-sizing:border-box;
  1239. border-width:1px;
  1240. border-style:solid;
  1241. border-color:rgba(242, 242, 242, 1);
  1242. border-radius:26px;
  1243. border-top-left-radius:0px;
  1244. border-top-right-radius:0px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. }
  1249. #u181581 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:29px;
  1253. top:790px;
  1254. width:375px;
  1255. height:50px;
  1256. display:flex;
  1257. }
  1258. #u181581 .text {
  1259. position:absolute;
  1260. align-self:center;
  1261. padding:2px 2px 2px 2px;
  1262. box-sizing:border-box;
  1263. width:100%;
  1264. }
  1265. #u181581_text {
  1266. border-width:0px;
  1267. word-wrap:break-word;
  1268. text-transform:none;
  1269. visibility:hidden;
  1270. }
  1271. #u181582 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:0px;
  1277. height:0px;
  1278. }
  1279. #u181583_div {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:49px;
  1285. height:17px;
  1286. background:inherit;
  1287. background-color:rgba(255, 255, 255, 0);
  1288. border:none;
  1289. border-radius:0px;
  1290. -moz-box-shadow:none;
  1291. -webkit-box-shadow:none;
  1292. box-shadow:none;
  1293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1294. font-weight:400;
  1295. font-style:normal;
  1296. font-size:12px;
  1297. }
  1298. #u181583 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:57px;
  1302. top:819px;
  1303. width:49px;
  1304. height:17px;
  1305. display:flex;
  1306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1307. font-weight:400;
  1308. font-style:normal;
  1309. font-size:12px;
  1310. }
  1311. #u181583 .text {
  1312. position:absolute;
  1313. align-self:flex-start;
  1314. padding:0px 0px 0px 0px;
  1315. box-sizing:border-box;
  1316. width:100%;
  1317. }
  1318. #u181583_text {
  1319. border-width:0px;
  1320. white-space:nowrap;
  1321. text-transform:none;
  1322. }
  1323. #u181584_img {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:24px;
  1329. height:24px;
  1330. }
  1331. #u181584 {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:70px;
  1335. top:795px;
  1336. width:24px;
  1337. height:24px;
  1338. display:flex;
  1339. font-size:8px;
  1340. }
  1341. #u181584 .text {
  1342. position:absolute;
  1343. align-self:center;
  1344. padding:2px 2px 2px 2px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u181584_text {
  1349. border-width:0px;
  1350. word-wrap:break-word;
  1351. text-transform:none;
  1352. }
  1353. #u181585 {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:0px;
  1359. height:0px;
  1360. }
  1361. #u181586_div {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:49px;
  1367. height:17px;
  1368. background:inherit;
  1369. background-color:rgba(255, 255, 255, 0);
  1370. border:none;
  1371. border-radius:0px;
  1372. -moz-box-shadow:none;
  1373. -webkit-box-shadow:none;
  1374. box-shadow:none;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:12px;
  1379. }
  1380. #u181586 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:327px;
  1384. top:819px;
  1385. width:49px;
  1386. height:17px;
  1387. display:flex;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. }
  1393. #u181586 .text {
  1394. position:absolute;
  1395. align-self:flex-start;
  1396. padding:0px 0px 0px 0px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u181586_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u181587_img {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:24px;
  1411. height:24px;
  1412. }
  1413. #u181587 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:340px;
  1417. top:795px;
  1418. width:24px;
  1419. height:24px;
  1420. display:flex;
  1421. font-size:8px;
  1422. }
  1423. #u181587 .text {
  1424. position:absolute;
  1425. align-self:center;
  1426. padding:2px 2px 2px 2px;
  1427. box-sizing:border-box;
  1428. width:100%;
  1429. }
  1430. #u181587_text {
  1431. border-width:0px;
  1432. word-wrap:break-word;
  1433. text-transform:none;
  1434. }
  1435. #u181588 {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:0px;
  1441. height:0px;
  1442. }
  1443. #u181589_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:49px;
  1449. height:17px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border:none;
  1453. border-radius:0px;
  1454. -moz-box-shadow:none;
  1455. -webkit-box-shadow:none;
  1456. box-shadow:none;
  1457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1458. font-weight:400;
  1459. font-style:normal;
  1460. font-size:12px;
  1461. }
  1462. #u181589 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:190px;
  1466. top:819px;
  1467. width:49px;
  1468. height:17px;
  1469. display:flex;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:12px;
  1474. }
  1475. #u181589 .text {
  1476. position:absolute;
  1477. align-self:flex-start;
  1478. padding:0px 0px 0px 0px;
  1479. box-sizing:border-box;
  1480. width:100%;
  1481. }
  1482. #u181589_text {
  1483. border-width:0px;
  1484. white-space:nowrap;
  1485. text-transform:none;
  1486. }
  1487. #u181590_img {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:0px;
  1491. top:0px;
  1492. width:24px;
  1493. height:24px;
  1494. }
  1495. #u181590 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:203px;
  1499. top:794px;
  1500. width:24px;
  1501. height:24px;
  1502. display:flex;
  1503. font-size:8px;
  1504. color:#FFFFFF;
  1505. }
  1506. #u181590 .text {
  1507. position:absolute;
  1508. align-self:center;
  1509. padding:2px 2px 2px 2px;
  1510. box-sizing:border-box;
  1511. width:100%;
  1512. }
  1513. #u181590_text {
  1514. border-width:0px;
  1515. word-wrap:break-word;
  1516. text-transform:none;
  1517. }
  1518. #u181591_div {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:0px;
  1522. top:0px;
  1523. width:375px;
  1524. height:100px;
  1525. background:inherit;
  1526. background-color:rgba(255, 255, 255, 1);
  1527. border:none;
  1528. border-radius:0px;
  1529. -moz-box-shadow:none;
  1530. -webkit-box-shadow:none;
  1531. box-shadow:none;
  1532. }
  1533. #u181591 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:29px;
  1537. top:107px;
  1538. width:375px;
  1539. height:100px;
  1540. display:flex;
  1541. }
  1542. #u181591 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u181591_text {
  1550. border-width:0px;
  1551. word-wrap:break-word;
  1552. text-transform:none;
  1553. visibility:hidden;
  1554. }
  1555. #u181592 {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:0px;
  1559. top:0px;
  1560. width:0px;
  1561. height:0px;
  1562. }
  1563. #u181593_div {
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:0px;
  1567. top:0px;
  1568. width:280px;
  1569. height:30px;
  1570. background:inherit;
  1571. background-color:rgba(242, 242, 242, 1);
  1572. border:none;
  1573. border-radius:20px;
  1574. -moz-box-shadow:none;
  1575. -webkit-box-shadow:none;
  1576. box-shadow:none;
  1577. }
  1578. #u181593 {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:42px;
  1582. top:126px;
  1583. width:280px;
  1584. height:30px;
  1585. display:flex;
  1586. }
  1587. #u181593 .text {
  1588. position:absolute;
  1589. align-self:center;
  1590. padding:2px 2px 2px 2px;
  1591. box-sizing:border-box;
  1592. width:100%;
  1593. }
  1594. #u181593_text {
  1595. border-width:0px;
  1596. word-wrap:break-word;
  1597. text-transform:none;
  1598. visibility:hidden;
  1599. }
  1600. #u181594_input {
  1601. position:absolute;
  1602. left:0px;
  1603. top:0px;
  1604. width:260px;
  1605. height:25px;
  1606. padding:2px 2px 2px 2px;
  1607. font-family:'ArialMT', 'Arial', sans-serif;
  1608. font-weight:400;
  1609. font-style:normal;
  1610. font-size:13px;
  1611. letter-spacing:normal;
  1612. color:#000000;
  1613. vertical-align:none;
  1614. text-align:left;
  1615. text-transform:none;
  1616. background-color:transparent;
  1617. border-color:transparent;
  1618. }
  1619. #u181594_input.disabled {
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:260px;
  1624. height:25px;
  1625. padding:2px 2px 2px 2px;
  1626. font-family:'ArialMT', 'Arial', sans-serif;
  1627. font-weight:400;
  1628. font-style:normal;
  1629. font-size:13px;
  1630. letter-spacing:normal;
  1631. color:#000000;
  1632. vertical-align:none;
  1633. text-align:left;
  1634. text-transform:none;
  1635. background-color:transparent;
  1636. border-color:transparent;
  1637. }
  1638. #u181594_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:260px;
  1644. height:25px;
  1645. background:inherit;
  1646. background-color:rgba(242, 242, 242, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u181594 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:51px;
  1657. top:127px;
  1658. width:260px;
  1659. height:25px;
  1660. display:flex;
  1661. }
  1662. #u181594 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u181594_div.disabled {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:260px;
  1675. height:25px;
  1676. background:inherit;
  1677. background-color:rgba(240, 240, 240, 1);
  1678. border:none;
  1679. border-radius:0px;
  1680. -moz-box-shadow:none;
  1681. -webkit-box-shadow:none;
  1682. box-shadow:none;
  1683. }
  1684. #u181594.disabled {
  1685. }
  1686. #u181595_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:12px;
  1692. height:12px;
  1693. }
  1694. #u181595 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:303px;
  1698. top:135px;
  1699. width:12px;
  1700. height:12px;
  1701. display:flex;
  1702. }
  1703. #u181595 .text {
  1704. position:absolute;
  1705. align-self:center;
  1706. padding:2px 2px 2px 2px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u181595_text {
  1711. border-width:0px;
  1712. word-wrap:break-word;
  1713. text-transform:none;
  1714. visibility:hidden;
  1715. }
  1716. #u181596_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:49px;
  1722. height:30px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 0);
  1725. border:none;
  1726. border-left:0px;
  1727. border-top:0px;
  1728. border-right:0px;
  1729. border-radius:0px;
  1730. border-bottom-right-radius:0px;
  1731. border-bottom-left-radius:0px;
  1732. -moz-box-shadow:none;
  1733. -webkit-box-shadow:none;
  1734. box-shadow:none;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:12px;
  1739. color:#1890FF;
  1740. line-height:30px;
  1741. }
  1742. #u181596 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:341px;
  1746. top:126px;
  1747. width:49px;
  1748. height:30px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:12px;
  1754. color:#1890FF;
  1755. line-height:30px;
  1756. }
  1757. #u181596 .text {
  1758. position:absolute;
  1759. align-self:flex-start;
  1760. padding:0px 0px 0px 0px;
  1761. box-sizing:border-box;
  1762. width:100%;
  1763. }
  1764. #u181596_text {
  1765. border-width:0px;
  1766. white-space:nowrap;
  1767. text-transform:none;
  1768. }
  1769. #u181597 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:0px;
  1775. height:0px;
  1776. }
  1777. #u181598_img {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:355px;
  1783. height:157px;
  1784. }
  1785. #u181598 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:42px;
  1789. top:217px;
  1790. width:355px;
  1791. height:157px;
  1792. display:flex;
  1793. }
  1794. #u181598 .text {
  1795. position:absolute;
  1796. align-self:center;
  1797. padding:2px 2px 2px 2px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u181598_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. visibility:hidden;
  1806. }
  1807. #u181599_div {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:57px;
  1813. height:30px;
  1814. background:inherit;
  1815. background-color:rgba(255, 255, 255, 0);
  1816. border:none;
  1817. border-left:0px;
  1818. border-top:0px;
  1819. border-right:0px;
  1820. border-radius:0px;
  1821. border-bottom-right-radius:0px;
  1822. border-bottom-left-radius:0px;
  1823. -moz-box-shadow:none;
  1824. -webkit-box-shadow:none;
  1825. box-shadow:none;
  1826. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1827. font-weight:500;
  1828. font-style:normal;
  1829. font-size:14px;
  1830. line-height:30px;
  1831. }
  1832. #u181599 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:59px;
  1836. top:224px;
  1837. width:57px;
  1838. height:30px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1841. font-weight:500;
  1842. font-style:normal;
  1843. font-size:14px;
  1844. line-height:30px;
  1845. }
  1846. #u181599 .text {
  1847. position:absolute;
  1848. align-self:flex-start;
  1849. padding:0px 0px 0px 0px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u181599_text {
  1854. border-width:0px;
  1855. white-space:nowrap;
  1856. text-transform:none;
  1857. }
  1858. #u181600_div {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:325px;
  1864. height:100px;
  1865. background:inherit;
  1866. background-color:rgba(255, 255, 255, 0);
  1867. border:none;
  1868. border-left:0px;
  1869. border-top:0px;
  1870. border-right:0px;
  1871. border-radius:0px;
  1872. border-bottom-right-radius:0px;
  1873. border-bottom-left-radius:0px;
  1874. -moz-box-shadow:none;
  1875. -webkit-box-shadow:none;
  1876. box-shadow:none;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:12px;
  1881. line-height:20px;
  1882. }
  1883. #u181600 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:59px;
  1887. top:259px;
  1888. width:325px;
  1889. height:100px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:12px;
  1895. line-height:20px;
  1896. }
  1897. #u181600 .text {
  1898. position:absolute;
  1899. align-self:flex-start;
  1900. padding:0px 0px 0px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u181600_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u181601_div {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:8px;
  1915. height:8px;
  1916. background:inherit;
  1917. background-color:rgba(255, 255, 255, 0);
  1918. box-sizing:border-box;
  1919. border-width:1px;
  1920. border-style:solid;
  1921. border-color:rgba(127, 127, 127, 1);
  1922. border-right:0px;
  1923. border-bottom:0px;
  1924. border-radius:0px;
  1925. border-top-right-radius:0px;
  1926. border-bottom-left-radius:0px;
  1927. -moz-box-shadow:none;
  1928. -webkit-box-shadow:none;
  1929. box-shadow:none;
  1930. }
  1931. #u181601 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:371px;
  1935. top:229px;
  1936. width:8px;
  1937. height:8px;
  1938. display:flex;
  1939. -webkit-transform:rotate(135deg);
  1940. -moz-transform:rotate(135deg);
  1941. -ms-transform:rotate(135deg);
  1942. transform:rotate(135deg);
  1943. }
  1944. #u181601 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:2px 2px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u181601_text {
  1952. border-width:0px;
  1953. word-wrap:break-word;
  1954. text-transform:none;
  1955. visibility:hidden;
  1956. }
  1957. #u181602_div {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:57px;
  1963. height:40px;
  1964. background:inherit;
  1965. background-color:rgba(255, 255, 255, 0);
  1966. border:none;
  1967. border-radius:0px;
  1968. -moz-box-shadow:none;
  1969. -webkit-box-shadow:none;
  1970. box-shadow:none;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. color:#000000;
  1975. }
  1976. #u181602 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:132px;
  1980. top:166px;
  1981. width:57px;
  1982. height:40px;
  1983. display:flex;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. color:#000000;
  1988. }
  1989. #u181602 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:0px 0px 0px 0px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u181602_text {
  1997. border-width:0px;
  1998. white-space:nowrap;
  1999. text-transform:none;
  2000. }
  2001. #u181604_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:433px;
  2007. height:865px;
  2008. }
  2009. #u181604 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:469px;
  2013. top:0px;
  2014. width:433px;
  2015. height:865px;
  2016. display:flex;
  2017. }
  2018. #u181604 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u181604_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. visibility:hidden;
  2030. }
  2031. #u181605_div {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:375px;
  2037. height:40px;
  2038. background:inherit;
  2039. background-color:rgba(255, 255, 255, 1);
  2040. box-sizing:border-box;
  2041. border-width:1px;
  2042. border-style:solid;
  2043. border-color:rgba(215, 215, 215, 1);
  2044. border-left:0px;
  2045. border-top:0px;
  2046. border-right:0px;
  2047. border-radius:0px;
  2048. border-bottom-right-radius:0px;
  2049. border-bottom-left-radius:0px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. }
  2054. #u181605 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:498px;
  2058. top:67px;
  2059. width:375px;
  2060. height:40px;
  2061. display:flex;
  2062. }
  2063. #u181605 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u181605_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. visibility:hidden;
  2075. }
  2076. #u181606 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:0px;
  2082. height:0px;
  2083. }
  2084. #u181607_div {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:88px;
  2090. height:32px;
  2091. background:inherit;
  2092. background-color:rgba(255, 255, 255, 1);
  2093. box-sizing:border-box;
  2094. border-width:1px;
  2095. border-style:solid;
  2096. border-color:rgba(242, 242, 242, 1);
  2097. border-radius:33px;
  2098. -moz-box-shadow:none;
  2099. -webkit-box-shadow:none;
  2100. box-shadow:none;
  2101. }
  2102. #u181607 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:778px;
  2106. top:71px;
  2107. width:88px;
  2108. height:32px;
  2109. display:flex;
  2110. }
  2111. #u181607 .text {
  2112. position:absolute;
  2113. align-self:center;
  2114. padding:2px 2px 2px 2px;
  2115. box-sizing:border-box;
  2116. width:100%;
  2117. }
  2118. #u181607_text {
  2119. border-width:0px;
  2120. word-wrap:break-word;
  2121. text-transform:none;
  2122. visibility:hidden;
  2123. }
  2124. #u181608 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:0px;
  2130. height:0px;
  2131. }
  2132. #u181609_img {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:18px;
  2138. height:18px;
  2139. }
  2140. #u181609 {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:841px;
  2144. top:78px;
  2145. width:18px;
  2146. height:18px;
  2147. display:flex;
  2148. }
  2149. #u181609 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u181609_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u181610_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:6px;
  2168. height:6px;
  2169. }
  2170. #u181610 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:847px;
  2174. top:84px;
  2175. width:6px;
  2176. height:6px;
  2177. display:flex;
  2178. }
  2179. #u181610 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 2px 2px 2px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u181610_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. visibility:hidden;
  2191. }
  2192. #u181611 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:0px;
  2198. height:0px;
  2199. }
  2200. #u181612_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:5px;
  2206. height:5px;
  2207. }
  2208. #u181612 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:792px;
  2212. top:85px;
  2213. width:5px;
  2214. height:5px;
  2215. display:flex;
  2216. }
  2217. #u181612 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 2px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u181612_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. visibility:hidden;
  2229. }
  2230. #u181613_img {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:5px;
  2236. height:5px;
  2237. }
  2238. #u181613 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:808px;
  2242. top:85px;
  2243. width:5px;
  2244. height:5px;
  2245. display:flex;
  2246. }
  2247. #u181613 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 2px 2px 2px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u181613_text {
  2255. border-width:0px;
  2256. word-wrap:break-word;
  2257. text-transform:none;
  2258. visibility:hidden;
  2259. }
  2260. #u181614_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:7px;
  2266. height:7px;
  2267. }
  2268. #u181614 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:799px;
  2272. top:84px;
  2273. width:7px;
  2274. height:7px;
  2275. display:flex;
  2276. }
  2277. #u181614 .text {
  2278. position:absolute;
  2279. align-self:center;
  2280. padding:2px 2px 2px 2px;
  2281. box-sizing:border-box;
  2282. width:100%;
  2283. }
  2284. #u181614_text {
  2285. border-width:0px;
  2286. word-wrap:break-word;
  2287. text-transform:none;
  2288. visibility:hidden;
  2289. }
  2290. #u181615_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:19px;
  2296. height:2px;
  2297. }
  2298. #u181615 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:816px;
  2302. top:87px;
  2303. width:18px;
  2304. height:1px;
  2305. display:flex;
  2306. -webkit-transform:rotate(90deg);
  2307. -moz-transform:rotate(90deg);
  2308. -ms-transform:rotate(90deg);
  2309. transform:rotate(90deg);
  2310. }
  2311. #u181615 .text {
  2312. position:absolute;
  2313. align-self:center;
  2314. padding:2px 2px 2px 2px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u181615_text {
  2319. border-width:0px;
  2320. word-wrap:break-word;
  2321. text-transform:none;
  2322. visibility:hidden;
  2323. }
  2324. #u181616_img {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:375px;
  2330. height:44px;
  2331. }
  2332. #u181616 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:498px;
  2336. top:24px;
  2337. width:375px;
  2338. height:44px;
  2339. display:flex;
  2340. }
  2341. #u181616 .text {
  2342. position:absolute;
  2343. align-self:center;
  2344. padding:2px 2px 2px 2px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u181616_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. visibility:hidden;
  2353. }
  2354. #u181617_div {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:375px;
  2360. height:50px;
  2361. background:inherit;
  2362. background-color:rgba(255, 255, 255, 1);
  2363. box-sizing:border-box;
  2364. border-width:1px;
  2365. border-style:solid;
  2366. border-color:rgba(242, 242, 242, 1);
  2367. border-radius:26px;
  2368. border-top-left-radius:0px;
  2369. border-top-right-radius:0px;
  2370. -moz-box-shadow:none;
  2371. -webkit-box-shadow:none;
  2372. box-shadow:none;
  2373. }
  2374. #u181617 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:498px;
  2378. top:788px;
  2379. width:375px;
  2380. height:50px;
  2381. display:flex;
  2382. }
  2383. #u181617 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:2px 2px 2px 2px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u181617_text {
  2391. border-width:0px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. visibility:hidden;
  2395. }
  2396. #u181618 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:0px;
  2402. height:0px;
  2403. }
  2404. #u181619_img {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:24px;
  2410. height:24px;
  2411. }
  2412. #u181619 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:538px;
  2416. top:792px;
  2417. width:24px;
  2418. height:24px;
  2419. display:flex;
  2420. font-size:8px;
  2421. }
  2422. #u181619 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u181619_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. }
  2434. #u181620_div {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:25px;
  2440. height:17px;
  2441. background:inherit;
  2442. background-color:rgba(255, 255, 255, 0);
  2443. border:none;
  2444. border-radius:0px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:12px;
  2452. }
  2453. #u181620 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:538px;
  2457. top:817px;
  2458. width:25px;
  2459. height:17px;
  2460. display:flex;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. }
  2466. #u181620 .text {
  2467. position:absolute;
  2468. align-self:flex-start;
  2469. padding:0px 0px 0px 0px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u181620_text {
  2474. border-width:0px;
  2475. white-space:nowrap;
  2476. text-transform:none;
  2477. }
  2478. #u181621 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:0px;
  2484. height:0px;
  2485. }
  2486. #u181622_img {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:24px;
  2492. height:24px;
  2493. }
  2494. #u181622 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:808px;
  2498. top:794px;
  2499. width:24px;
  2500. height:24px;
  2501. display:flex;
  2502. font-size:8px;
  2503. }
  2504. #u181622 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u181622_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. }
  2516. #u181623_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:25px;
  2522. height:17px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 0);
  2525. border:none;
  2526. border-radius:0px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. }
  2535. #u181623 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:808px;
  2539. top:819px;
  2540. width:25px;
  2541. height:17px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:12px;
  2547. }
  2548. #u181623 .text {
  2549. position:absolute;
  2550. align-self:flex-start;
  2551. padding:0px 0px 0px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u181623_text {
  2556. border-width:0px;
  2557. white-space:nowrap;
  2558. text-transform:none;
  2559. }
  2560. #u181624_div {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:375px;
  2566. height:681px;
  2567. background:inherit;
  2568. background-color:rgba(242, 242, 242, 0.462745098039216);
  2569. border:none;
  2570. border-radius:0px;
  2571. -moz-box-shadow:none;
  2572. -webkit-box-shadow:none;
  2573. box-shadow:none;
  2574. }
  2575. #u181624 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:498px;
  2579. top:107px;
  2580. width:375px;
  2581. height:681px;
  2582. display:flex;
  2583. }
  2584. #u181624 .text {
  2585. position:absolute;
  2586. align-self:center;
  2587. padding:2px 2px 2px 2px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u181624_text {
  2592. border-width:0px;
  2593. word-wrap:break-word;
  2594. text-transform:none;
  2595. visibility:hidden;
  2596. }
  2597. #u181625 {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:0px;
  2603. height:0px;
  2604. }
  2605. #u181626_img {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:24px;
  2611. height:24px;
  2612. }
  2613. #u181626 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:720px;
  2617. top:792px;
  2618. width:24px;
  2619. height:24px;
  2620. display:flex;
  2621. font-size:8px;
  2622. }
  2623. #u181626 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 2px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u181626_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. }
  2635. #u181627_div {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:37px;
  2641. height:17px;
  2642. background:inherit;
  2643. background-color:rgba(255, 255, 255, 0);
  2644. border:none;
  2645. border-radius:0px;
  2646. -moz-box-shadow:none;
  2647. -webkit-box-shadow:none;
  2648. box-shadow:none;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:12px;
  2653. }
  2654. #u181627 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:714px;
  2658. top:817px;
  2659. width:37px;
  2660. height:17px;
  2661. display:flex;
  2662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:12px;
  2666. }
  2667. #u181627 .text {
  2668. position:absolute;
  2669. align-self:flex-start;
  2670. padding:0px 0px 0px 0px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u181627_text {
  2675. border-width:0px;
  2676. white-space:nowrap;
  2677. text-transform:none;
  2678. }
  2679. #u181628 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:0px;
  2685. height:0px;
  2686. }
  2687. #u181629_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:24px;
  2693. height:24px;
  2694. }
  2695. #u181629 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:626px;
  2699. top:792px;
  2700. width:24px;
  2701. height:24px;
  2702. display:flex;
  2703. font-size:8px;
  2704. }
  2705. #u181629 .text {
  2706. position:absolute;
  2707. align-self:center;
  2708. padding:2px 2px 2px 2px;
  2709. box-sizing:border-box;
  2710. width:100%;
  2711. }
  2712. #u181629_text {
  2713. border-width:0px;
  2714. word-wrap:break-word;
  2715. text-transform:none;
  2716. }
  2717. #u181630_div {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:37px;
  2723. height:17px;
  2724. background:inherit;
  2725. background-color:rgba(255, 255, 255, 0);
  2726. border:none;
  2727. border-radius:0px;
  2728. -moz-box-shadow:none;
  2729. -webkit-box-shadow:none;
  2730. box-shadow:none;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:12px;
  2735. }
  2736. #u181630 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:620px;
  2740. top:817px;
  2741. width:37px;
  2742. height:17px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:12px;
  2748. }
  2749. #u181630 .text {
  2750. position:absolute;
  2751. align-self:flex-start;
  2752. padding:0px 0px 0px 0px;
  2753. box-sizing:border-box;
  2754. width:100%;
  2755. }
  2756. #u181630_text {
  2757. border-width:0px;
  2758. white-space:nowrap;
  2759. text-transform:none;
  2760. }
  2761. #u181631_img {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:0px;
  2765. top:0px;
  2766. width:375px;
  2767. height:44px;
  2768. }
  2769. #u181631 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:498px;
  2773. top:24px;
  2774. width:375px;
  2775. height:44px;
  2776. display:flex;
  2777. }
  2778. #u181631 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 2px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u181631_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u181632 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:0px;
  2797. height:0px;
  2798. }
  2799. #u181633_div {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:88px;
  2805. height:32px;
  2806. background:inherit;
  2807. background-color:rgba(255, 255, 255, 1);
  2808. box-sizing:border-box;
  2809. border-width:1px;
  2810. border-style:solid;
  2811. border-color:rgba(242, 242, 242, 1);
  2812. border-radius:33px;
  2813. -moz-box-shadow:none;
  2814. -webkit-box-shadow:none;
  2815. box-shadow:none;
  2816. }
  2817. #u181633 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:778px;
  2821. top:71px;
  2822. width:88px;
  2823. height:32px;
  2824. display:flex;
  2825. }
  2826. #u181633 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 2px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u181633_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. visibility:hidden;
  2838. }
  2839. #u181634 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:0px;
  2845. height:0px;
  2846. }
  2847. #u181635_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:18px;
  2853. height:18px;
  2854. }
  2855. #u181635 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:841px;
  2859. top:78px;
  2860. width:18px;
  2861. height:18px;
  2862. display:flex;
  2863. }
  2864. #u181635 .text {
  2865. position:absolute;
  2866. align-self:center;
  2867. padding:2px 2px 2px 2px;
  2868. box-sizing:border-box;
  2869. width:100%;
  2870. }
  2871. #u181635_text {
  2872. border-width:0px;
  2873. word-wrap:break-word;
  2874. text-transform:none;
  2875. visibility:hidden;
  2876. }
  2877. #u181636_img {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:6px;
  2883. height:6px;
  2884. }
  2885. #u181636 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:847px;
  2889. top:84px;
  2890. width:6px;
  2891. height:6px;
  2892. display:flex;
  2893. }
  2894. #u181636 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 2px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u181636_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u181637 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:0px;
  2913. height:0px;
  2914. }
  2915. #u181638_img {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:5px;
  2921. height:5px;
  2922. }
  2923. #u181638 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:792px;
  2927. top:85px;
  2928. width:5px;
  2929. height:5px;
  2930. display:flex;
  2931. }
  2932. #u181638 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:2px 2px 2px 2px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u181638_text {
  2940. border-width:0px;
  2941. word-wrap:break-word;
  2942. text-transform:none;
  2943. visibility:hidden;
  2944. }
  2945. #u181639_img {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:5px;
  2951. height:5px;
  2952. }
  2953. #u181639 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:808px;
  2957. top:85px;
  2958. width:5px;
  2959. height:5px;
  2960. display:flex;
  2961. }
  2962. #u181639 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:2px 2px 2px 2px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u181639_text {
  2970. border-width:0px;
  2971. word-wrap:break-word;
  2972. text-transform:none;
  2973. visibility:hidden;
  2974. }
  2975. #u181640_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:7px;
  2981. height:7px;
  2982. }
  2983. #u181640 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:799px;
  2987. top:84px;
  2988. width:7px;
  2989. height:7px;
  2990. display:flex;
  2991. }
  2992. #u181640 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 2px 2px 2px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u181640_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. visibility:hidden;
  3004. }
  3005. #u181641_img {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:19px;
  3011. height:2px;
  3012. }
  3013. #u181641 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:816px;
  3017. top:87px;
  3018. width:18px;
  3019. height:1px;
  3020. display:flex;
  3021. -webkit-transform:rotate(90deg);
  3022. -moz-transform:rotate(90deg);
  3023. -ms-transform:rotate(90deg);
  3024. transform:rotate(90deg);
  3025. }
  3026. #u181641 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 2px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u181641_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u181642_div {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:65px;
  3045. height:22px;
  3046. background:inherit;
  3047. background-color:rgba(255, 255, 255, 0);
  3048. border:none;
  3049. border-radius:0px;
  3050. -moz-box-shadow:none;
  3051. -webkit-box-shadow:none;
  3052. box-shadow:none;
  3053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3054. font-weight:400;
  3055. font-style:normal;
  3056. font-size:16px;
  3057. color:#000000;
  3058. }
  3059. #u181642 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:643px;
  3063. top:78px;
  3064. width:65px;
  3065. height:22px;
  3066. display:flex;
  3067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3068. font-weight:400;
  3069. font-style:normal;
  3070. font-size:16px;
  3071. color:#000000;
  3072. }
  3073. #u181642 .text {
  3074. position:absolute;
  3075. align-self:flex-start;
  3076. padding:0px 0px 0px 0px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u181642_text {
  3081. border-width:0px;
  3082. white-space:nowrap;
  3083. text-transform:none;
  3084. }
  3085. #u181643_div {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:12px;
  3091. height:12px;
  3092. background:inherit;
  3093. background-color:rgba(255, 255, 255, 0);
  3094. box-sizing:border-box;
  3095. border-width:2px;
  3096. border-style:solid;
  3097. border-color:rgba(51, 51, 51, 1);
  3098. border-right:0px;
  3099. border-bottom:0px;
  3100. border-radius:0px;
  3101. border-top-right-radius:0px;
  3102. border-bottom-left-radius:0px;
  3103. -moz-box-shadow:none;
  3104. -webkit-box-shadow:none;
  3105. box-shadow:none;
  3106. }
  3107. #u181643 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:515px;
  3111. top:81px;
  3112. width:12px;
  3113. height:12px;
  3114. display:flex;
  3115. -webkit-transform:rotate(315deg);
  3116. -moz-transform:rotate(315deg);
  3117. -ms-transform:rotate(315deg);
  3118. transform:rotate(315deg);
  3119. }
  3120. #u181643 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:2px 2px 2px 2px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u181643_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. visibility:hidden;
  3132. }
  3133. #u181644_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:23px;
  3139. height:23px;
  3140. }
  3141. #u181644 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:542px;
  3145. top:76px;
  3146. width:23px;
  3147. height:23px;
  3148. display:flex;
  3149. }
  3150. #u181644 .text {
  3151. position:absolute;
  3152. align-self:center;
  3153. padding:2px 2px 2px 2px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u181644_text {
  3158. border-width:0px;
  3159. word-wrap:break-word;
  3160. text-transform:none;
  3161. visibility:hidden;
  3162. }
  3163. #u181645_div {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:375px;
  3169. height:733px;
  3170. background:inherit;
  3171. background-color:rgba(242, 242, 242, 0.996078431372549);
  3172. border:none;
  3173. border-top:0px;
  3174. border-radius:35px;
  3175. border-top-left-radius:0px;
  3176. border-top-right-radius:0px;
  3177. -moz-box-shadow:none;
  3178. -webkit-box-shadow:none;
  3179. box-shadow:none;
  3180. }
  3181. #u181645 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:498px;
  3185. top:106px;
  3186. width:375px;
  3187. height:733px;
  3188. display:flex;
  3189. }
  3190. #u181645 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 2px 2px 2px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u181645_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u181646 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:0px;
  3209. height:0px;
  3210. }
  3211. #u181647_div {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:375px;
  3217. height:50px;
  3218. background:inherit;
  3219. background-color:rgba(255, 255, 255, 1);
  3220. box-sizing:border-box;
  3221. border-width:1px;
  3222. border-style:solid;
  3223. border-color:rgba(242, 242, 242, 1);
  3224. border-radius:26px;
  3225. border-top-left-radius:0px;
  3226. border-top-right-radius:0px;
  3227. -moz-box-shadow:none;
  3228. -webkit-box-shadow:none;
  3229. box-shadow:none;
  3230. }
  3231. #u181647 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:498px;
  3235. top:790px;
  3236. width:375px;
  3237. height:50px;
  3238. display:flex;
  3239. }
  3240. #u181647 .text {
  3241. position:absolute;
  3242. align-self:center;
  3243. padding:2px 2px 2px 2px;
  3244. box-sizing:border-box;
  3245. width:100%;
  3246. }
  3247. #u181647_text {
  3248. border-width:0px;
  3249. word-wrap:break-word;
  3250. text-transform:none;
  3251. visibility:hidden;
  3252. }
  3253. #u181648 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:0px;
  3258. width:0px;
  3259. height:0px;
  3260. }
  3261. #u181649_div {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:49px;
  3267. height:17px;
  3268. background:inherit;
  3269. background-color:rgba(255, 255, 255, 0);
  3270. border:none;
  3271. border-radius:0px;
  3272. -moz-box-shadow:none;
  3273. -webkit-box-shadow:none;
  3274. box-shadow:none;
  3275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3276. font-weight:400;
  3277. font-style:normal;
  3278. font-size:12px;
  3279. }
  3280. #u181649 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:526px;
  3284. top:819px;
  3285. width:49px;
  3286. height:17px;
  3287. display:flex;
  3288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3289. font-weight:400;
  3290. font-style:normal;
  3291. font-size:12px;
  3292. }
  3293. #u181649 .text {
  3294. position:absolute;
  3295. align-self:flex-start;
  3296. padding:0px 0px 0px 0px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u181649_text {
  3301. border-width:0px;
  3302. white-space:nowrap;
  3303. text-transform:none;
  3304. }
  3305. #u181650_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:24px;
  3311. height:24px;
  3312. }
  3313. #u181650 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:539px;
  3317. top:795px;
  3318. width:24px;
  3319. height:24px;
  3320. display:flex;
  3321. font-size:8px;
  3322. }
  3323. #u181650 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u181650_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. }
  3335. #u181651 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:0px;
  3341. height:0px;
  3342. }
  3343. #u181652_div {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:49px;
  3349. height:17px;
  3350. background:inherit;
  3351. background-color:rgba(255, 255, 255, 0);
  3352. border:none;
  3353. border-radius:0px;
  3354. -moz-box-shadow:none;
  3355. -webkit-box-shadow:none;
  3356. box-shadow:none;
  3357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:12px;
  3361. }
  3362. #u181652 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:796px;
  3366. top:819px;
  3367. width:49px;
  3368. height:17px;
  3369. display:flex;
  3370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3371. font-weight:400;
  3372. font-style:normal;
  3373. font-size:12px;
  3374. }
  3375. #u181652 .text {
  3376. position:absolute;
  3377. align-self:flex-start;
  3378. padding:0px 0px 0px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u181652_text {
  3383. border-width:0px;
  3384. white-space:nowrap;
  3385. text-transform:none;
  3386. }
  3387. #u181653_img {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:24px;
  3393. height:24px;
  3394. }
  3395. #u181653 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:809px;
  3399. top:795px;
  3400. width:24px;
  3401. height:24px;
  3402. display:flex;
  3403. font-size:8px;
  3404. }
  3405. #u181653 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 2px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u181653_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. }
  3417. #u181654 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:0px;
  3423. height:0px;
  3424. }
  3425. #u181655_div {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:0px;
  3429. top:0px;
  3430. width:49px;
  3431. height:17px;
  3432. background:inherit;
  3433. background-color:rgba(255, 255, 255, 0);
  3434. border:none;
  3435. border-radius:0px;
  3436. -moz-box-shadow:none;
  3437. -webkit-box-shadow:none;
  3438. box-shadow:none;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. }
  3444. #u181655 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:659px;
  3448. top:819px;
  3449. width:49px;
  3450. height:17px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:12px;
  3456. }
  3457. #u181655 .text {
  3458. position:absolute;
  3459. align-self:flex-start;
  3460. padding:0px 0px 0px 0px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u181655_text {
  3465. border-width:0px;
  3466. white-space:nowrap;
  3467. text-transform:none;
  3468. }
  3469. #u181656_img {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:24px;
  3475. height:24px;
  3476. }
  3477. #u181656 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:672px;
  3481. top:794px;
  3482. width:24px;
  3483. height:24px;
  3484. display:flex;
  3485. font-size:8px;
  3486. color:#FFFFFF;
  3487. }
  3488. #u181656 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 2px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u181656_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. }
  3500. #u181657_div {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:375px;
  3506. height:100px;
  3507. background:inherit;
  3508. background-color:rgba(255, 255, 255, 1);
  3509. border:none;
  3510. border-radius:0px;
  3511. -moz-box-shadow:none;
  3512. -webkit-box-shadow:none;
  3513. box-shadow:none;
  3514. }
  3515. #u181657 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:498px;
  3519. top:107px;
  3520. width:375px;
  3521. height:100px;
  3522. display:flex;
  3523. }
  3524. #u181657 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 2px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u181657_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u181658 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:0px;
  3543. height:0px;
  3544. }
  3545. #u181659_div {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:280px;
  3551. height:30px;
  3552. background:inherit;
  3553. background-color:rgba(242, 242, 242, 1);
  3554. border:none;
  3555. border-radius:20px;
  3556. -moz-box-shadow:none;
  3557. -webkit-box-shadow:none;
  3558. box-shadow:none;
  3559. }
  3560. #u181659 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:511px;
  3564. top:126px;
  3565. width:280px;
  3566. height:30px;
  3567. display:flex;
  3568. }
  3569. #u181659 .text {
  3570. position:absolute;
  3571. align-self:center;
  3572. padding:2px 2px 2px 2px;
  3573. box-sizing:border-box;
  3574. width:100%;
  3575. }
  3576. #u181659_text {
  3577. border-width:0px;
  3578. word-wrap:break-word;
  3579. text-transform:none;
  3580. visibility:hidden;
  3581. }
  3582. #u181660_input {
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:260px;
  3587. height:25px;
  3588. padding:2px 2px 2px 2px;
  3589. font-family:'ArialMT', 'Arial', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:13px;
  3593. letter-spacing:normal;
  3594. color:#000000;
  3595. vertical-align:none;
  3596. text-align:left;
  3597. text-transform:none;
  3598. background-color:transparent;
  3599. border-color:transparent;
  3600. }
  3601. #u181660_input.disabled {
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:260px;
  3606. height:25px;
  3607. padding:2px 2px 2px 2px;
  3608. font-family:'ArialMT', 'Arial', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:13px;
  3612. letter-spacing:normal;
  3613. color:#000000;
  3614. vertical-align:none;
  3615. text-align:left;
  3616. text-transform:none;
  3617. background-color:transparent;
  3618. border-color:transparent;
  3619. }
  3620. #u181660_div {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:260px;
  3626. height:25px;
  3627. background:inherit;
  3628. background-color:rgba(242, 242, 242, 1);
  3629. border:none;
  3630. border-radius:0px;
  3631. -moz-box-shadow:none;
  3632. -webkit-box-shadow:none;
  3633. box-shadow:none;
  3634. }
  3635. #u181660 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:520px;
  3639. top:127px;
  3640. width:260px;
  3641. height:25px;
  3642. display:flex;
  3643. }
  3644. #u181660 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 2px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u181660_div.disabled {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:260px;
  3657. height:25px;
  3658. background:inherit;
  3659. background-color:rgba(240, 240, 240, 1);
  3660. border:none;
  3661. border-radius:0px;
  3662. -moz-box-shadow:none;
  3663. -webkit-box-shadow:none;
  3664. box-shadow:none;
  3665. }
  3666. #u181660.disabled {
  3667. }
  3668. #u181661_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:12px;
  3674. height:12px;
  3675. }
  3676. #u181661 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:772px;
  3680. top:135px;
  3681. width:12px;
  3682. height:12px;
  3683. display:flex;
  3684. }
  3685. #u181661 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 2px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u181661_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u181662_div {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:49px;
  3704. height:30px;
  3705. background:inherit;
  3706. background-color:rgba(255, 255, 255, 0);
  3707. border:none;
  3708. border-left:0px;
  3709. border-top:0px;
  3710. border-right:0px;
  3711. border-radius:0px;
  3712. border-bottom-right-radius:0px;
  3713. border-bottom-left-radius:0px;
  3714. -moz-box-shadow:none;
  3715. -webkit-box-shadow:none;
  3716. box-shadow:none;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. font-size:12px;
  3721. color:#1890FF;
  3722. line-height:30px;
  3723. }
  3724. #u181662 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:810px;
  3728. top:126px;
  3729. width:49px;
  3730. height:30px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:12px;
  3736. color:#1890FF;
  3737. line-height:30px;
  3738. }
  3739. #u181662 .text {
  3740. position:absolute;
  3741. align-self:flex-start;
  3742. padding:0px 0px 0px 0px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u181662_text {
  3747. border-width:0px;
  3748. white-space:nowrap;
  3749. text-transform:none;
  3750. }
  3751. #u181663 {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:0px;
  3757. height:0px;
  3758. }
  3759. #u181664_img {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:355px;
  3765. height:130px;
  3766. }
  3767. #u181664 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:511px;
  3771. top:217px;
  3772. width:355px;
  3773. height:130px;
  3774. display:flex;
  3775. }
  3776. #u181664 .text {
  3777. position:absolute;
  3778. align-self:center;
  3779. padding:2px 2px 2px 2px;
  3780. box-sizing:border-box;
  3781. width:100%;
  3782. }
  3783. #u181664_text {
  3784. border-width:0px;
  3785. word-wrap:break-word;
  3786. text-transform:none;
  3787. visibility:hidden;
  3788. }
  3789. #u181665_div {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:80px;
  3795. height:30px;
  3796. background:inherit;
  3797. background-color:rgba(255, 255, 255, 0);
  3798. border:none;
  3799. border-left:0px;
  3800. border-top:0px;
  3801. border-right:0px;
  3802. border-radius:0px;
  3803. border-bottom-right-radius:0px;
  3804. border-bottom-left-radius:0px;
  3805. -moz-box-shadow:none;
  3806. -webkit-box-shadow:none;
  3807. box-shadow:none;
  3808. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3809. font-weight:500;
  3810. font-style:normal;
  3811. font-size:14px;
  3812. line-height:30px;
  3813. }
  3814. #u181665 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:528px;
  3818. top:224px;
  3819. width:80px;
  3820. height:30px;
  3821. display:flex;
  3822. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3823. font-weight:500;
  3824. font-style:normal;
  3825. font-size:14px;
  3826. line-height:30px;
  3827. }
  3828. #u181665 .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. #u181665_text {
  3836. border-width:0px;
  3837. white-space:nowrap;
  3838. text-transform:none;
  3839. }
  3840. #u181666_div {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:325px;
  3846. height:60px;
  3847. background:inherit;
  3848. background-color:rgba(255, 255, 255, 0);
  3849. border:none;
  3850. border-left:0px;
  3851. border-top:0px;
  3852. border-right:0px;
  3853. border-radius:0px;
  3854. border-bottom-right-radius:0px;
  3855. border-bottom-left-radius:0px;
  3856. -moz-box-shadow:none;
  3857. -webkit-box-shadow:none;
  3858. box-shadow:none;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. line-height:20px;
  3864. }
  3865. #u181666 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:528px;
  3869. top:277px;
  3870. width:325px;
  3871. height:60px;
  3872. display:flex;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:12px;
  3877. line-height:20px;
  3878. }
  3879. #u181666 .text {
  3880. position:absolute;
  3881. align-self:flex-start;
  3882. padding:0px 0px 0px 0px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u181666_text {
  3887. border-width:0px;
  3888. word-wrap:break-word;
  3889. text-transform:none;
  3890. }
  3891. #u181667_div {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:8px;
  3897. height:8px;
  3898. background:inherit;
  3899. background-color:rgba(255, 255, 255, 0);
  3900. box-sizing:border-box;
  3901. border-width:1px;
  3902. border-style:solid;
  3903. border-color:rgba(127, 127, 127, 1);
  3904. border-right:0px;
  3905. border-bottom:0px;
  3906. border-radius:0px;
  3907. border-top-right-radius:0px;
  3908. border-bottom-left-radius:0px;
  3909. -moz-box-shadow:none;
  3910. -webkit-box-shadow:none;
  3911. box-shadow:none;
  3912. }
  3913. #u181667 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:840px;
  3917. top:229px;
  3918. width:8px;
  3919. height:8px;
  3920. display:flex;
  3921. -webkit-transform:rotate(135deg);
  3922. -moz-transform:rotate(135deg);
  3923. -ms-transform:rotate(135deg);
  3924. transform:rotate(135deg);
  3925. }
  3926. #u181667 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 2px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u181667_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u181668_div {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:50px;
  3945. height:14px;
  3946. background:inherit;
  3947. background-color:rgba(242, 242, 242, 1);
  3948. border:none;
  3949. border-radius:9px;
  3950. -moz-box-shadow:none;
  3951. -webkit-box-shadow:none;
  3952. box-shadow:none;
  3953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3954. font-weight:400;
  3955. font-style:normal;
  3956. font-size:10px;
  3957. color:#0000FF;
  3958. text-align:center;
  3959. }
  3960. #u181668 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:528px;
  3964. top:254px;
  3965. width:50px;
  3966. height:14px;
  3967. display:flex;
  3968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3969. font-weight:400;
  3970. font-style:normal;
  3971. font-size:10px;
  3972. color:#0000FF;
  3973. text-align:center;
  3974. }
  3975. #u181668 .text {
  3976. position:absolute;
  3977. align-self:flex-start;
  3978. padding:0px 0px 0px 0px;
  3979. box-sizing:border-box;
  3980. width:100%;
  3981. }
  3982. #u181668_text {
  3983. border-width:0px;
  3984. word-wrap:break-word;
  3985. text-transform:none;
  3986. }
  3987. #u181669_div {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:0px;
  3991. top:0px;
  3992. width:57px;
  3993. height:40px;
  3994. background:inherit;
  3995. background-color:rgba(255, 255, 255, 0);
  3996. border:none;
  3997. border-radius:0px;
  3998. -moz-box-shadow:none;
  3999. -webkit-box-shadow:none;
  4000. box-shadow:none;
  4001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4002. font-weight:400;
  4003. font-style:normal;
  4004. color:#000000;
  4005. }
  4006. #u181669 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:511px;
  4010. top:166px;
  4011. width:57px;
  4012. height:40px;
  4013. display:flex;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. color:#000000;
  4018. }
  4019. #u181669 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:0px 0px 0px 0px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u181669_text {
  4027. border-width:0px;
  4028. white-space:nowrap;
  4029. text-transform:none;
  4030. }
  4031. #u181670_div {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:57px;
  4037. height:40px;
  4038. background:inherit;
  4039. background-color:rgba(255, 255, 255, 0);
  4040. box-sizing:border-box;
  4041. border-width:2px;
  4042. border-style:solid;
  4043. border-color:rgba(24, 144, 255, 1);
  4044. border-left:0px;
  4045. border-top:0px;
  4046. border-right:0px;
  4047. border-radius:0px;
  4048. border-bottom-right-radius:0px;
  4049. border-bottom-left-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. color:#1890FF;
  4057. }
  4058. #u181670 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:601px;
  4062. top:166px;
  4063. width:57px;
  4064. height:40px;
  4065. display:flex;
  4066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. color:#1890FF;
  4070. }
  4071. #u181670 .text {
  4072. position:absolute;
  4073. align-self:center;
  4074. padding:0px 0px 0px 0px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u181670_text {
  4079. border-width:0px;
  4080. white-space:nowrap;
  4081. text-transform:none;
  4082. }
  4083. #u181671_div {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:57px;
  4089. height:40px;
  4090. background:inherit;
  4091. background-color:rgba(255, 255, 255, 0);
  4092. box-sizing:border-box;
  4093. border-width:2px;
  4094. border-style:solid;
  4095. border-color:rgba(24, 144, 255, 1);
  4096. border-left:0px;
  4097. border-top:0px;
  4098. border-right:0px;
  4099. border-radius:0px;
  4100. border-bottom-right-radius:0px;
  4101. border-bottom-left-radius:0px;
  4102. -moz-box-shadow:none;
  4103. -webkit-box-shadow:none;
  4104. box-shadow:none;
  4105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. color:#1890FF;
  4109. }
  4110. #u181671 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:44px;
  4114. top:166px;
  4115. width:57px;
  4116. height:40px;
  4117. display:flex;
  4118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4119. font-weight:400;
  4120. font-style:normal;
  4121. color:#1890FF;
  4122. }
  4123. #u181671 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:0px 0px 0px 0px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u181671_text {
  4131. border-width:0px;
  4132. white-space:nowrap;
  4133. text-transform:none;
  4134. }