styles.css 74 KB

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