styles.css 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:806px;
  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. #u153046_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u153046 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u153046 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u153046_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u153047_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. #u153047 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u153047 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u153047_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u153048 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u153049_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. #u153049 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u153049 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u153049_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u153050 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u153051_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u153051 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u153051 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u153051_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u153052_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u153052 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u153052 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u153052_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u153053 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u153054_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u153054 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u153054 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u153054_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u153055_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u153055 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u153055 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u153055_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u153056_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u153056 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u153056 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u153056_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u153057_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u153057 {
  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. #u153057 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u153057_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u153058_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u153058 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u153058 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u153058_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u153059_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. #u153059 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u153059 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u153059_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u153060 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u153061_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u153061 {
  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. #u153061 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u153061_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u153062_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. #u153062 {
  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. #u153062 .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. #u153062_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u153063 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u153064_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u153064 {
  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. #u153064 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u153064_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u153065_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. #u153065 {
  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. #u153065 .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. #u153065_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u153066_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. #u153066 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u153066 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u153066_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u153067 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u153068_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u153068 {
  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. #u153068 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u153068_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u153069_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. #u153069 {
  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. #u153069 .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. #u153069_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u153070 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u153071_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u153071 {
  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. #u153071 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u153071_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u153072_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. #u153072 {
  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. #u153072 .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. #u153072_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u153073_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:828px;
  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. #u153073 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:828px;
  804. display:flex;
  805. }
  806. #u153073 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u153073_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u153074_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:41px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. box-sizing:border-box;
  829. border-width:1px;
  830. border-style:solid;
  831. border-color:rgba(215, 215, 215, 1);
  832. border-left:0px;
  833. border-top:0px;
  834. border-right:0px;
  835. border-radius:0px;
  836. border-bottom-right-radius:0px;
  837. border-bottom-left-radius:0px;
  838. -moz-box-shadow:none;
  839. -webkit-box-shadow:none;
  840. box-shadow:none;
  841. }
  842. #u153074 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:67px;
  847. width:375px;
  848. height:41px;
  849. display:flex;
  850. }
  851. #u153074 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u153074_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u153075_div {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:375px;
  870. height:115px;
  871. background:inherit;
  872. background-color:rgba(255, 255, 255, 1);
  873. box-sizing:border-box;
  874. border-width:1px;
  875. border-style:solid;
  876. border-color:rgba(215, 215, 215, 1);
  877. border-left:0px;
  878. border-top:0px;
  879. border-right:0px;
  880. border-radius:0px;
  881. border-bottom-right-radius:0px;
  882. border-bottom-left-radius:0px;
  883. -moz-box-shadow:none;
  884. -webkit-box-shadow:none;
  885. box-shadow:none;
  886. }
  887. #u153075 {
  888. border-width:0px;
  889. position:absolute;
  890. left:29px;
  891. top:108px;
  892. width:375px;
  893. height:115px;
  894. display:flex;
  895. }
  896. #u153075 .text {
  897. position:absolute;
  898. align-self:center;
  899. padding:2px 2px 2px 2px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u153075_text {
  904. border-width:0px;
  905. word-wrap:break-word;
  906. text-transform:none;
  907. visibility:hidden;
  908. }
  909. #u153076_img {
  910. border-width:0px;
  911. position:absolute;
  912. left:0px;
  913. top:0px;
  914. width:375px;
  915. height:44px;
  916. }
  917. #u153076 {
  918. border-width:0px;
  919. position:absolute;
  920. left:29px;
  921. top:24px;
  922. width:375px;
  923. height:44px;
  924. display:flex;
  925. }
  926. #u153076 .text {
  927. position:absolute;
  928. align-self:center;
  929. padding:2px 2px 2px 2px;
  930. box-sizing:border-box;
  931. width:100%;
  932. }
  933. #u153076_text {
  934. border-width:0px;
  935. word-wrap:break-word;
  936. text-transform:none;
  937. visibility:hidden;
  938. }
  939. #u153077 {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:0px;
  945. height:0px;
  946. }
  947. #u153078_div {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:88px;
  953. height:32px;
  954. background:inherit;
  955. background-color:rgba(255, 255, 255, 1);
  956. box-sizing:border-box;
  957. border-width:1px;
  958. border-style:solid;
  959. border-color:rgba(242, 242, 242, 1);
  960. border-radius:33px;
  961. -moz-box-shadow:none;
  962. -webkit-box-shadow:none;
  963. box-shadow:none;
  964. }
  965. #u153078 {
  966. border-width:0px;
  967. position:absolute;
  968. left:309px;
  969. top:71px;
  970. width:88px;
  971. height:32px;
  972. display:flex;
  973. }
  974. #u153078 .text {
  975. position:absolute;
  976. align-self:center;
  977. padding:2px 2px 2px 2px;
  978. box-sizing:border-box;
  979. width:100%;
  980. }
  981. #u153078_text {
  982. border-width:0px;
  983. word-wrap:break-word;
  984. text-transform:none;
  985. visibility:hidden;
  986. }
  987. #u153079 {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:0px;
  993. height:0px;
  994. }
  995. #u153080_img {
  996. border-width:0px;
  997. position:absolute;
  998. left:0px;
  999. top:0px;
  1000. width:18px;
  1001. height:18px;
  1002. }
  1003. #u153080 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:372px;
  1007. top:78px;
  1008. width:18px;
  1009. height:18px;
  1010. display:flex;
  1011. }
  1012. #u153080 .text {
  1013. position:absolute;
  1014. align-self:center;
  1015. padding:2px 2px 2px 2px;
  1016. box-sizing:border-box;
  1017. width:100%;
  1018. }
  1019. #u153080_text {
  1020. border-width:0px;
  1021. word-wrap:break-word;
  1022. text-transform:none;
  1023. visibility:hidden;
  1024. }
  1025. #u153081_img {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:6px;
  1031. height:6px;
  1032. }
  1033. #u153081 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:378px;
  1037. top:84px;
  1038. width:6px;
  1039. height:6px;
  1040. display:flex;
  1041. }
  1042. #u153081 .text {
  1043. position:absolute;
  1044. align-self:center;
  1045. padding:2px 2px 2px 2px;
  1046. box-sizing:border-box;
  1047. width:100%;
  1048. }
  1049. #u153081_text {
  1050. border-width:0px;
  1051. word-wrap:break-word;
  1052. text-transform:none;
  1053. visibility:hidden;
  1054. }
  1055. #u153082 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:0px;
  1061. height:0px;
  1062. }
  1063. #u153083_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:5px;
  1069. height:5px;
  1070. }
  1071. #u153083 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:323px;
  1075. top:85px;
  1076. width:5px;
  1077. height:5px;
  1078. display:flex;
  1079. }
  1080. #u153083 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u153083_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u153084_img {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:5px;
  1099. height:5px;
  1100. }
  1101. #u153084 {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:339px;
  1105. top:85px;
  1106. width:5px;
  1107. height:5px;
  1108. display:flex;
  1109. }
  1110. #u153084 .text {
  1111. position:absolute;
  1112. align-self:center;
  1113. padding:2px 2px 2px 2px;
  1114. box-sizing:border-box;
  1115. width:100%;
  1116. }
  1117. #u153084_text {
  1118. border-width:0px;
  1119. word-wrap:break-word;
  1120. text-transform:none;
  1121. visibility:hidden;
  1122. }
  1123. #u153085_img {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:7px;
  1129. height:7px;
  1130. }
  1131. #u153085 {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:330px;
  1135. top:84px;
  1136. width:7px;
  1137. height:7px;
  1138. display:flex;
  1139. }
  1140. #u153085 .text {
  1141. position:absolute;
  1142. align-self:center;
  1143. padding:2px 2px 2px 2px;
  1144. box-sizing:border-box;
  1145. width:100%;
  1146. }
  1147. #u153085_text {
  1148. border-width:0px;
  1149. word-wrap:break-word;
  1150. text-transform:none;
  1151. visibility:hidden;
  1152. }
  1153. #u153086_img {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:0px;
  1157. top:0px;
  1158. width:19px;
  1159. height:2px;
  1160. }
  1161. #u153086 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:347px;
  1165. top:87px;
  1166. width:18px;
  1167. height:1px;
  1168. display:flex;
  1169. -webkit-transform:rotate(90deg);
  1170. -moz-transform:rotate(90deg);
  1171. -ms-transform:rotate(90deg);
  1172. transform:rotate(90deg);
  1173. }
  1174. #u153086 .text {
  1175. position:absolute;
  1176. align-self:center;
  1177. padding:2px 2px 2px 2px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u153086_text {
  1182. border-width:0px;
  1183. word-wrap:break-word;
  1184. text-transform:none;
  1185. visibility:hidden;
  1186. }
  1187. #u153087_div {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:0px;
  1191. top:0px;
  1192. width:12px;
  1193. height:12px;
  1194. background:inherit;
  1195. background-color:rgba(255, 255, 255, 0);
  1196. box-sizing:border-box;
  1197. border-width:2px;
  1198. border-style:solid;
  1199. border-color:rgba(51, 51, 51, 1);
  1200. border-right:0px;
  1201. border-bottom:0px;
  1202. border-radius:0px;
  1203. border-top-right-radius:0px;
  1204. border-bottom-left-radius:0px;
  1205. -moz-box-shadow:none;
  1206. -webkit-box-shadow:none;
  1207. box-shadow:none;
  1208. }
  1209. #u153087 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:44px;
  1213. top:81px;
  1214. width:12px;
  1215. height:12px;
  1216. display:flex;
  1217. -webkit-transform:rotate(315deg);
  1218. -moz-transform:rotate(315deg);
  1219. -ms-transform:rotate(315deg);
  1220. transform:rotate(315deg);
  1221. }
  1222. #u153087 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:2px 2px 2px 2px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u153087_text {
  1230. border-width:0px;
  1231. word-wrap:break-word;
  1232. text-transform:none;
  1233. visibility:hidden;
  1234. }
  1235. #u153088_div {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:0px;
  1239. top:0px;
  1240. width:109px;
  1241. height:25px;
  1242. background:inherit;
  1243. background-color:rgba(255, 255, 255, 0);
  1244. border:none;
  1245. border-radius:0px;
  1246. -moz-box-shadow:none;
  1247. -webkit-box-shadow:none;
  1248. box-shadow:none;
  1249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1250. font-weight:400;
  1251. font-style:normal;
  1252. font-size:18px;
  1253. }
  1254. #u153088 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:64px;
  1258. top:75px;
  1259. width:109px;
  1260. height:25px;
  1261. display:flex;
  1262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1263. font-weight:400;
  1264. font-style:normal;
  1265. font-size:18px;
  1266. }
  1267. #u153088 .text {
  1268. position:absolute;
  1269. align-self:flex-start;
  1270. padding:0px 0px 0px 0px;
  1271. box-sizing:border-box;
  1272. width:100%;
  1273. }
  1274. #u153088_text {
  1275. border-width:0px;
  1276. white-space:nowrap;
  1277. text-transform:none;
  1278. }
  1279. #u153089_div {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:353px;
  1285. height:40px;
  1286. background:inherit;
  1287. background-color:rgba(255, 255, 255, 0);
  1288. border:none;
  1289. border-top:0px;
  1290. border-right:0px;
  1291. border-bottom:0px;
  1292. border-radius:0px;
  1293. border-top-left-radius:0px;
  1294. border-bottom-left-radius:0px;
  1295. -moz-box-shadow:none;
  1296. -webkit-box-shadow:none;
  1297. box-shadow:none;
  1298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1299. font-weight:500;
  1300. font-style:normal;
  1301. font-size:18px;
  1302. line-height:30px;
  1303. }
  1304. #u153089 {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:42px;
  1308. top:116px;
  1309. width:353px;
  1310. height:40px;
  1311. display:flex;
  1312. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1313. font-weight:500;
  1314. font-style:normal;
  1315. font-size:18px;
  1316. line-height:30px;
  1317. }
  1318. #u153089 .text {
  1319. position:absolute;
  1320. align-self:flex-start;
  1321. padding:5px 10px 5px 0px;
  1322. box-sizing:border-box;
  1323. width:100%;
  1324. }
  1325. #u153089_text {
  1326. border-width:0px;
  1327. word-wrap:break-word;
  1328. text-transform:none;
  1329. }
  1330. #u153090_div {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:11px;
  1336. height:11px;
  1337. background:inherit;
  1338. background-color:rgba(255, 255, 255, 0);
  1339. box-sizing:border-box;
  1340. border-width:2px;
  1341. border-style:solid;
  1342. border-color:rgba(127, 127, 127, 1);
  1343. border-right:0px;
  1344. border-bottom:0px;
  1345. border-radius:0px;
  1346. border-top-right-radius:0px;
  1347. border-bottom-left-radius:0px;
  1348. -moz-box-shadow:none;
  1349. -webkit-box-shadow:none;
  1350. box-shadow:none;
  1351. }
  1352. #u153090 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:374px;
  1356. top:130px;
  1357. width:11px;
  1358. height:11px;
  1359. display:flex;
  1360. -webkit-transform:rotate(225deg);
  1361. -moz-transform:rotate(225deg);
  1362. -ms-transform:rotate(225deg);
  1363. transform:rotate(225deg);
  1364. }
  1365. #u153090 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u153090_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u153091_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:375px;
  1384. height:50px;
  1385. background:inherit;
  1386. background-color:rgba(255, 255, 255, 1);
  1387. box-sizing:border-box;
  1388. border-width:1px;
  1389. border-style:solid;
  1390. border-color:rgba(215, 215, 215, 1);
  1391. border-left:0px;
  1392. border-top:0px;
  1393. border-right:0px;
  1394. border-radius:0px;
  1395. border-bottom-right-radius:0px;
  1396. border-bottom-left-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. }
  1401. #u153091 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:29px;
  1405. top:233px;
  1406. width:375px;
  1407. height:50px;
  1408. display:flex;
  1409. }
  1410. #u153091 .text {
  1411. position:absolute;
  1412. align-self:center;
  1413. padding:2px 2px 2px 2px;
  1414. box-sizing:border-box;
  1415. width:100%;
  1416. }
  1417. #u153091_text {
  1418. border-width:0px;
  1419. word-wrap:break-word;
  1420. text-transform:none;
  1421. visibility:hidden;
  1422. }
  1423. #u153092 {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:0px;
  1429. height:0px;
  1430. }
  1431. #u153093_div {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:375px;
  1437. height:60px;
  1438. background:inherit;
  1439. background-color:rgba(255, 255, 255, 1);
  1440. border:none;
  1441. border-top:0px;
  1442. border-radius:28px;
  1443. border-top-left-radius:0px;
  1444. border-top-right-radius:0px;
  1445. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1446. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1447. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1449. font-weight:400;
  1450. font-style:normal;
  1451. font-size:14px;
  1452. color:#FFFFFF;
  1453. }
  1454. #u153093 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:29px;
  1458. top:875px;
  1459. width:375px;
  1460. height:60px;
  1461. display:flex;
  1462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1463. font-weight:400;
  1464. font-style:normal;
  1465. font-size:14px;
  1466. color:#FFFFFF;
  1467. }
  1468. #u153093 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u153093_text {
  1476. border-width:0px;
  1477. word-wrap:break-word;
  1478. text-transform:none;
  1479. visibility:hidden;
  1480. }
  1481. #u153094_div {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:0px;
  1485. top:0px;
  1486. width:342px;
  1487. height:40px;
  1488. background:inherit;
  1489. background-color:rgba(0, 137, 254, 1);
  1490. border:none;
  1491. border-radius:63px;
  1492. -moz-box-shadow:none;
  1493. -webkit-box-shadow:none;
  1494. box-shadow:none;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:14px;
  1499. color:#FFFFFF;
  1500. }
  1501. #u153094 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:52px;
  1505. top:885px;
  1506. width:342px;
  1507. height:40px;
  1508. display:flex;
  1509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1510. font-weight:400;
  1511. font-style:normal;
  1512. font-size:14px;
  1513. color:#FFFFFF;
  1514. }
  1515. #u153094 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u153094_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. }
  1527. #u153095_div {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:0px;
  1531. top:0px;
  1532. width:27px;
  1533. height:14px;
  1534. background:inherit;
  1535. background-color:rgba(24, 144, 255, 1);
  1536. border:none;
  1537. border-radius:14px;
  1538. -moz-box-shadow:none;
  1539. -webkit-box-shadow:none;
  1540. box-shadow:none;
  1541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1542. font-weight:400;
  1543. font-style:normal;
  1544. font-size:10px;
  1545. color:#FFFFFF;
  1546. text-align:center;
  1547. }
  1548. #u153095 {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:176px;
  1552. top:128px;
  1553. width:27px;
  1554. height:14px;
  1555. display:flex;
  1556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1557. font-weight:400;
  1558. font-style:normal;
  1559. font-size:10px;
  1560. color:#FFFFFF;
  1561. text-align:center;
  1562. }
  1563. #u153095 .text {
  1564. position:absolute;
  1565. align-self:flex-start;
  1566. padding:0px 0px 0px 0px;
  1567. box-sizing:border-box;
  1568. width:100%;
  1569. }
  1570. #u153095_text {
  1571. border-width:0px;
  1572. word-wrap:break-word;
  1573. text-transform:none;
  1574. }
  1575. #u153096_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:113px;
  1581. height:30px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-left:0px;
  1586. border-top:0px;
  1587. border-right:0px;
  1588. border-radius:0px;
  1589. border-bottom-right-radius:0px;
  1590. border-bottom-left-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:14px;
  1598. line-height:30px;
  1599. }
  1600. #u153096 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:42px;
  1604. top:150px;
  1605. width:113px;
  1606. height:30px;
  1607. display:flex;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-weight:400;
  1610. font-style:normal;
  1611. font-size:14px;
  1612. line-height:30px;
  1613. }
  1614. #u153096 .text {
  1615. position:absolute;
  1616. align-self:flex-start;
  1617. padding:0px 0px 0px 0px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u153096_text {
  1622. border-width:0px;
  1623. white-space:nowrap;
  1624. text-transform:none;
  1625. }
  1626. #u153097_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:57px;
  1632. height:30px;
  1633. background:inherit;
  1634. background-color:rgba(255, 255, 255, 0);
  1635. border:none;
  1636. border-left:0px;
  1637. border-top:0px;
  1638. border-right:0px;
  1639. border-radius:0px;
  1640. border-bottom-right-radius:0px;
  1641. border-bottom-left-radius:0px;
  1642. -moz-box-shadow:none;
  1643. -webkit-box-shadow:none;
  1644. box-shadow:none;
  1645. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1646. font-weight:500;
  1647. font-style:normal;
  1648. font-size:14px;
  1649. line-height:30px;
  1650. }
  1651. #u153097 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:120px;
  1655. top:185px;
  1656. width:57px;
  1657. height:30px;
  1658. display:flex;
  1659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1660. font-weight:500;
  1661. font-style:normal;
  1662. font-size:14px;
  1663. line-height:30px;
  1664. }
  1665. #u153097 .text {
  1666. position:absolute;
  1667. align-self:flex-start;
  1668. padding:0px 0px 0px 0px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u153097_text {
  1673. border-width:0px;
  1674. white-space:nowrap;
  1675. text-transform:none;
  1676. }
  1677. #u153098_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:71px;
  1683. height:30px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:14px;
  1700. line-height:30px;
  1701. }
  1702. #u153098 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:42px;
  1706. top:185px;
  1707. width:71px;
  1708. height:30px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:14px;
  1714. line-height:30px;
  1715. }
  1716. #u153098 .text {
  1717. position:absolute;
  1718. align-self:flex-start;
  1719. padding:0px 0px 0px 0px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u153098_text {
  1724. border-width:0px;
  1725. white-space:nowrap;
  1726. text-transform:none;
  1727. }
  1728. #u153099_div {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:353px;
  1734. height:40px;
  1735. background:inherit;
  1736. background-color:rgba(255, 255, 255, 0);
  1737. border:none;
  1738. border-top:0px;
  1739. border-right:0px;
  1740. border-bottom:0px;
  1741. border-radius:0px;
  1742. border-top-left-radius:0px;
  1743. border-bottom-left-radius:0px;
  1744. -moz-box-shadow:none;
  1745. -webkit-box-shadow:none;
  1746. box-shadow:none;
  1747. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1748. font-weight:500;
  1749. font-style:normal;
  1750. font-size:14px;
  1751. line-height:30px;
  1752. }
  1753. #u153099 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:42px;
  1757. top:238px;
  1758. width:353px;
  1759. height:40px;
  1760. display:flex;
  1761. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1762. font-weight:500;
  1763. font-style:normal;
  1764. font-size:14px;
  1765. line-height:30px;
  1766. }
  1767. #u153099 .text {
  1768. position:absolute;
  1769. align-self:flex-start;
  1770. padding:5px 10px 5px 0px;
  1771. box-sizing:border-box;
  1772. width:100%;
  1773. }
  1774. #u153099_text {
  1775. border-width:0px;
  1776. word-wrap:break-word;
  1777. text-transform:none;
  1778. }
  1779. #u153100_div {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:11px;
  1785. height:11px;
  1786. background:inherit;
  1787. background-color:rgba(255, 255, 255, 0);
  1788. box-sizing:border-box;
  1789. border-width:2px;
  1790. border-style:solid;
  1791. border-color:rgba(127, 127, 127, 1);
  1792. border-right:0px;
  1793. border-bottom:0px;
  1794. border-radius:0px;
  1795. border-top-right-radius:0px;
  1796. border-bottom-left-radius:0px;
  1797. -moz-box-shadow:none;
  1798. -webkit-box-shadow:none;
  1799. box-shadow:none;
  1800. }
  1801. #u153100 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:374px;
  1805. top:253px;
  1806. width:11px;
  1807. height:11px;
  1808. display:flex;
  1809. -webkit-transform:rotate(225deg);
  1810. -moz-transform:rotate(225deg);
  1811. -ms-transform:rotate(225deg);
  1812. transform:rotate(225deg);
  1813. }
  1814. #u153100 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u153100_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. visibility:hidden;
  1826. }
  1827. #u153101_div {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:375px;
  1833. height:400px;
  1834. background:inherit;
  1835. background-color:rgba(255, 255, 255, 1);
  1836. box-sizing:border-box;
  1837. border-width:1px;
  1838. border-style:solid;
  1839. border-color:rgba(215, 215, 215, 1);
  1840. border-left:0px;
  1841. border-top:0px;
  1842. border-right:0px;
  1843. border-radius:0px;
  1844. border-bottom-right-radius:0px;
  1845. border-bottom-left-radius:0px;
  1846. -moz-box-shadow:none;
  1847. -webkit-box-shadow:none;
  1848. box-shadow:none;
  1849. }
  1850. #u153101 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:29px;
  1854. top:283px;
  1855. width:375px;
  1856. height:400px;
  1857. display:flex;
  1858. }
  1859. #u153101 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u153101_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. visibility:hidden;
  1871. }
  1872. #u153102_div {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:353px;
  1878. height:40px;
  1879. background:inherit;
  1880. background-color:rgba(255, 255, 255, 0);
  1881. border:none;
  1882. border-top:0px;
  1883. border-right:0px;
  1884. border-bottom:0px;
  1885. border-radius:0px;
  1886. border-top-left-radius:0px;
  1887. border-bottom-left-radius:0px;
  1888. -moz-box-shadow:none;
  1889. -webkit-box-shadow:none;
  1890. box-shadow:none;
  1891. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1892. font-weight:500;
  1893. font-style:normal;
  1894. font-size:14px;
  1895. line-height:30px;
  1896. }
  1897. #u153102 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:42px;
  1901. top:288px;
  1902. width:353px;
  1903. height:40px;
  1904. display:flex;
  1905. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1906. font-weight:500;
  1907. font-style:normal;
  1908. font-size:14px;
  1909. line-height:30px;
  1910. }
  1911. #u153102 .text {
  1912. position:absolute;
  1913. align-self:flex-start;
  1914. padding:5px 10px 5px 0px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u153102_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. }
  1923. #u153103_div {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:11px;
  1929. height:11px;
  1930. background:inherit;
  1931. background-color:rgba(255, 255, 255, 0);
  1932. box-sizing:border-box;
  1933. border-width:2px;
  1934. border-style:solid;
  1935. border-color:rgba(51, 51, 51, 1);
  1936. border-right:0px;
  1937. border-bottom:0px;
  1938. border-radius:0px;
  1939. border-top-right-radius:0px;
  1940. border-bottom-left-radius:0px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. }
  1945. #u153103 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:374px;
  1949. top:303px;
  1950. width:11px;
  1951. height:11px;
  1952. display:flex;
  1953. -webkit-transform:rotate(45deg);
  1954. -moz-transform:rotate(45deg);
  1955. -ms-transform:rotate(45deg);
  1956. transform:rotate(45deg);
  1957. }
  1958. #u153103 .text {
  1959. position:absolute;
  1960. align-self:center;
  1961. padding:2px 2px 2px 2px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u153103_text {
  1966. border-width:0px;
  1967. word-wrap:break-word;
  1968. text-transform:none;
  1969. visibility:hidden;
  1970. }
  1971. #u153104_div {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:355px;
  1977. height:340px;
  1978. background:inherit;
  1979. background-color:rgba(242, 242, 242, 1);
  1980. border:none;
  1981. border-left:0px;
  1982. border-top:0px;
  1983. border-right:0px;
  1984. border-radius:0px;
  1985. border-bottom-right-radius:0px;
  1986. border-bottom-left-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. }
  1991. #u153104 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:40px;
  1995. top:328px;
  1996. width:355px;
  1997. height:340px;
  1998. display:flex;
  1999. }
  2000. #u153104 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:2px 2px 2px 2px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u153104_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. visibility:hidden;
  2012. }
  2013. #u153105 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:0px;
  2019. height:0px;
  2020. }
  2021. #u153106_div {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:57px;
  2027. height:30px;
  2028. background:inherit;
  2029. background-color:rgba(255, 255, 255, 0);
  2030. border:none;
  2031. border-left:0px;
  2032. border-top:0px;
  2033. border-right:0px;
  2034. border-radius:0px;
  2035. border-bottom-right-radius:0px;
  2036. border-bottom-left-radius:0px;
  2037. -moz-box-shadow:none;
  2038. -webkit-box-shadow:none;
  2039. box-shadow:none;
  2040. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2041. font-weight:500;
  2042. font-style:normal;
  2043. font-size:14px;
  2044. line-height:30px;
  2045. }
  2046. #u153106 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:222px;
  2050. top:341px;
  2051. width:57px;
  2052. height:30px;
  2053. display:flex;
  2054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2055. font-weight:500;
  2056. font-style:normal;
  2057. font-size:14px;
  2058. line-height:30px;
  2059. }
  2060. #u153106 .text {
  2061. position:absolute;
  2062. align-self:flex-start;
  2063. padding:0px 0px 0px 0px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u153106_text {
  2068. border-width:0px;
  2069. white-space:nowrap;
  2070. text-transform:none;
  2071. }
  2072. #u153107_div {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:0px;
  2076. top:0px;
  2077. width:138px;
  2078. height:30px;
  2079. background:inherit;
  2080. background-color:rgba(255, 255, 255, 0);
  2081. border:none;
  2082. border-left:0px;
  2083. border-top:0px;
  2084. border-right:0px;
  2085. border-radius:0px;
  2086. border-bottom-right-radius:0px;
  2087. border-bottom-left-radius:0px;
  2088. -moz-box-shadow:none;
  2089. -webkit-box-shadow:none;
  2090. box-shadow:none;
  2091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:14px;
  2095. line-height:30px;
  2096. }
  2097. #u153107 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:64px;
  2101. top:341px;
  2102. width:138px;
  2103. height:30px;
  2104. display:flex;
  2105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2106. font-weight:400;
  2107. font-style:normal;
  2108. font-size:14px;
  2109. line-height:30px;
  2110. }
  2111. #u153107 .text {
  2112. position:absolute;
  2113. align-self:flex-start;
  2114. padding:0px 0px 0px 0px;
  2115. box-sizing:border-box;
  2116. width:100%;
  2117. }
  2118. #u153107_text {
  2119. border-width:0px;
  2120. white-space:nowrap;
  2121. text-transform:none;
  2122. }
  2123. #u153108_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:169px;
  2129. height:30px;
  2130. background:inherit;
  2131. background-color:rgba(255, 255, 255, 0);
  2132. border:none;
  2133. border-left:0px;
  2134. border-top:0px;
  2135. border-right:0px;
  2136. border-radius:0px;
  2137. border-bottom-right-radius:0px;
  2138. border-bottom-left-radius:0px;
  2139. -moz-box-shadow:none;
  2140. -webkit-box-shadow:none;
  2141. box-shadow:none;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:12px;
  2146. line-height:30px;
  2147. }
  2148. #u153108 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:64px;
  2152. top:371px;
  2153. width:169px;
  2154. height:30px;
  2155. display:flex;
  2156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:12px;
  2160. line-height:30px;
  2161. }
  2162. #u153108 .text {
  2163. position:absolute;
  2164. align-self:flex-start;
  2165. padding:0px 0px 0px 0px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u153108_text {
  2170. border-width:0px;
  2171. white-space:nowrap;
  2172. text-transform:none;
  2173. }
  2174. #u153109 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:0px;
  2180. height:0px;
  2181. }
  2182. #u153110_div {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:57px;
  2188. height:30px;
  2189. background:inherit;
  2190. background-color:rgba(255, 255, 255, 0);
  2191. border:none;
  2192. border-left:0px;
  2193. border-top:0px;
  2194. border-right:0px;
  2195. border-radius:0px;
  2196. border-bottom-right-radius:0px;
  2197. border-bottom-left-radius:0px;
  2198. -moz-box-shadow:none;
  2199. -webkit-box-shadow:none;
  2200. box-shadow:none;
  2201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2202. font-weight:500;
  2203. font-style:normal;
  2204. font-size:14px;
  2205. line-height:30px;
  2206. }
  2207. #u153110 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:222px;
  2211. top:421px;
  2212. width:57px;
  2213. height:30px;
  2214. display:flex;
  2215. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2216. font-weight:500;
  2217. font-style:normal;
  2218. font-size:14px;
  2219. line-height:30px;
  2220. }
  2221. #u153110 .text {
  2222. position:absolute;
  2223. align-self:flex-start;
  2224. padding:0px 0px 0px 0px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u153110_text {
  2229. border-width:0px;
  2230. white-space:nowrap;
  2231. text-transform:none;
  2232. }
  2233. #u153111_div {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:138px;
  2239. height:30px;
  2240. background:inherit;
  2241. background-color:rgba(255, 255, 255, 0);
  2242. border:none;
  2243. border-left:0px;
  2244. border-top:0px;
  2245. border-right:0px;
  2246. border-radius:0px;
  2247. border-bottom-right-radius:0px;
  2248. border-bottom-left-radius:0px;
  2249. -moz-box-shadow:none;
  2250. -webkit-box-shadow:none;
  2251. box-shadow:none;
  2252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2253. font-weight:400;
  2254. font-style:normal;
  2255. font-size:14px;
  2256. line-height:30px;
  2257. }
  2258. #u153111 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:64px;
  2262. top:421px;
  2263. width:138px;
  2264. height:30px;
  2265. display:flex;
  2266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:14px;
  2270. line-height:30px;
  2271. }
  2272. #u153111 .text {
  2273. position:absolute;
  2274. align-self:flex-start;
  2275. padding:0px 0px 0px 0px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u153111_text {
  2280. border-width:0px;
  2281. white-space:nowrap;
  2282. text-transform:none;
  2283. }
  2284. #u153112_div {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:169px;
  2290. height:30px;
  2291. background:inherit;
  2292. background-color:rgba(255, 255, 255, 0);
  2293. border:none;
  2294. border-left:0px;
  2295. border-top:0px;
  2296. border-right:0px;
  2297. border-radius:0px;
  2298. border-bottom-right-radius:0px;
  2299. border-bottom-left-radius:0px;
  2300. -moz-box-shadow:none;
  2301. -webkit-box-shadow:none;
  2302. box-shadow:none;
  2303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:12px;
  2307. line-height:30px;
  2308. }
  2309. #u153112 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:64px;
  2313. top:451px;
  2314. width:169px;
  2315. height:30px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:12px;
  2321. line-height:30px;
  2322. }
  2323. #u153112 .text {
  2324. position:absolute;
  2325. align-self:flex-start;
  2326. padding:0px 0px 0px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u153112_text {
  2331. border-width:0px;
  2332. white-space:nowrap;
  2333. text-transform:none;
  2334. }
  2335. #u153113 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:0px;
  2341. height:0px;
  2342. }
  2343. #u153114_div {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:57px;
  2349. height:30px;
  2350. background:inherit;
  2351. background-color:rgba(255, 255, 255, 0);
  2352. border:none;
  2353. border-left:0px;
  2354. border-top:0px;
  2355. border-right:0px;
  2356. border-radius:0px;
  2357. border-bottom-right-radius:0px;
  2358. border-bottom-left-radius:0px;
  2359. -moz-box-shadow:none;
  2360. -webkit-box-shadow:none;
  2361. box-shadow:none;
  2362. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2363. font-weight:500;
  2364. font-style:normal;
  2365. font-size:14px;
  2366. line-height:30px;
  2367. }
  2368. #u153114 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:222px;
  2372. top:501px;
  2373. width:57px;
  2374. height:30px;
  2375. display:flex;
  2376. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2377. font-weight:500;
  2378. font-style:normal;
  2379. font-size:14px;
  2380. line-height:30px;
  2381. }
  2382. #u153114 .text {
  2383. position:absolute;
  2384. align-self:flex-start;
  2385. padding:0px 0px 0px 0px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u153114_text {
  2390. border-width:0px;
  2391. white-space:nowrap;
  2392. text-transform:none;
  2393. }
  2394. #u153115_div {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:138px;
  2400. height:30px;
  2401. background:inherit;
  2402. background-color:rgba(255, 255, 255, 0);
  2403. border:none;
  2404. border-left:0px;
  2405. border-top:0px;
  2406. border-right:0px;
  2407. border-radius:0px;
  2408. border-bottom-right-radius:0px;
  2409. border-bottom-left-radius:0px;
  2410. -moz-box-shadow:none;
  2411. -webkit-box-shadow:none;
  2412. box-shadow:none;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:14px;
  2417. line-height:30px;
  2418. }
  2419. #u153115 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:64px;
  2423. top:501px;
  2424. width:138px;
  2425. height:30px;
  2426. display:flex;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:14px;
  2431. line-height:30px;
  2432. }
  2433. #u153115 .text {
  2434. position:absolute;
  2435. align-self:flex-start;
  2436. padding:0px 0px 0px 0px;
  2437. box-sizing:border-box;
  2438. width:100%;
  2439. }
  2440. #u153115_text {
  2441. border-width:0px;
  2442. white-space:nowrap;
  2443. text-transform:none;
  2444. }
  2445. #u153116_div {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:169px;
  2451. height:30px;
  2452. background:inherit;
  2453. background-color:rgba(255, 255, 255, 0);
  2454. border:none;
  2455. border-left:0px;
  2456. border-top:0px;
  2457. border-right:0px;
  2458. border-radius:0px;
  2459. border-bottom-right-radius:0px;
  2460. border-bottom-left-radius:0px;
  2461. -moz-box-shadow:none;
  2462. -webkit-box-shadow:none;
  2463. box-shadow:none;
  2464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2465. font-weight:400;
  2466. font-style:normal;
  2467. font-size:12px;
  2468. line-height:30px;
  2469. }
  2470. #u153116 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:64px;
  2474. top:531px;
  2475. width:169px;
  2476. height:30px;
  2477. display:flex;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. line-height:30px;
  2483. }
  2484. #u153116 .text {
  2485. position:absolute;
  2486. align-self:flex-start;
  2487. padding:0px 0px 0px 0px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u153116_text {
  2492. border-width:0px;
  2493. white-space:nowrap;
  2494. text-transform:none;
  2495. }
  2496. #u153117 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:0px;
  2502. height:0px;
  2503. }
  2504. #u153118_div {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:57px;
  2510. height:30px;
  2511. background:inherit;
  2512. background-color:rgba(255, 255, 255, 0);
  2513. border:none;
  2514. border-left:0px;
  2515. border-top:0px;
  2516. border-right:0px;
  2517. border-radius:0px;
  2518. border-bottom-right-radius:0px;
  2519. border-bottom-left-radius:0px;
  2520. -moz-box-shadow:none;
  2521. -webkit-box-shadow:none;
  2522. box-shadow:none;
  2523. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2524. font-weight:500;
  2525. font-style:normal;
  2526. font-size:14px;
  2527. line-height:30px;
  2528. }
  2529. #u153118 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:222px;
  2533. top:581px;
  2534. width:57px;
  2535. height:30px;
  2536. display:flex;
  2537. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2538. font-weight:500;
  2539. font-style:normal;
  2540. font-size:14px;
  2541. line-height:30px;
  2542. }
  2543. #u153118 .text {
  2544. position:absolute;
  2545. align-self:flex-start;
  2546. padding:0px 0px 0px 0px;
  2547. box-sizing:border-box;
  2548. width:100%;
  2549. }
  2550. #u153118_text {
  2551. border-width:0px;
  2552. white-space:nowrap;
  2553. text-transform:none;
  2554. }
  2555. #u153119_div {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:138px;
  2561. height:30px;
  2562. background:inherit;
  2563. background-color:rgba(255, 255, 255, 0);
  2564. border:none;
  2565. border-left:0px;
  2566. border-top:0px;
  2567. border-right:0px;
  2568. border-radius:0px;
  2569. border-bottom-right-radius:0px;
  2570. border-bottom-left-radius:0px;
  2571. -moz-box-shadow:none;
  2572. -webkit-box-shadow:none;
  2573. box-shadow:none;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:14px;
  2578. line-height:30px;
  2579. }
  2580. #u153119 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:64px;
  2584. top:581px;
  2585. width:138px;
  2586. height:30px;
  2587. display:flex;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. line-height:30px;
  2593. }
  2594. #u153119 .text {
  2595. position:absolute;
  2596. align-self:flex-start;
  2597. padding:0px 0px 0px 0px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u153119_text {
  2602. border-width:0px;
  2603. white-space:nowrap;
  2604. text-transform:none;
  2605. }
  2606. #u153120_div {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:169px;
  2612. height:30px;
  2613. background:inherit;
  2614. background-color:rgba(255, 255, 255, 0);
  2615. border:none;
  2616. border-left:0px;
  2617. border-top:0px;
  2618. border-right:0px;
  2619. border-radius:0px;
  2620. border-bottom-right-radius:0px;
  2621. border-bottom-left-radius:0px;
  2622. -moz-box-shadow:none;
  2623. -webkit-box-shadow:none;
  2624. box-shadow:none;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:12px;
  2629. line-height:30px;
  2630. }
  2631. #u153120 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:64px;
  2635. top:611px;
  2636. width:169px;
  2637. height:30px;
  2638. display:flex;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:12px;
  2643. line-height:30px;
  2644. }
  2645. #u153120 .text {
  2646. position:absolute;
  2647. align-self:flex-start;
  2648. padding:0px 0px 0px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u153120_text {
  2653. border-width:0px;
  2654. white-space:nowrap;
  2655. text-transform:none;
  2656. }
  2657. #u153121 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:0px;
  2663. height:0px;
  2664. }
  2665. #u153122_img {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:2px;
  2671. height:307px;
  2672. }
  2673. #u153122 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:55px;
  2677. top:355px;
  2678. width:1px;
  2679. height:306px;
  2680. display:flex;
  2681. }
  2682. #u153122 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 2px 2px 2px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u153122_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. visibility:hidden;
  2694. }
  2695. #u153123_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:7px;
  2701. height:7px;
  2702. }
  2703. #u153123 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:52px;
  2707. top:352px;
  2708. width:7px;
  2709. height:7px;
  2710. display:flex;
  2711. }
  2712. #u153123 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 2px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u153123_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. visibility:hidden;
  2724. }
  2725. #u153124_img {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:7px;
  2731. height:7px;
  2732. }
  2733. #u153124 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:52px;
  2737. top:433px;
  2738. width:7px;
  2739. height:7px;
  2740. display:flex;
  2741. }
  2742. #u153124 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 2px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u153124_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. visibility:hidden;
  2754. }
  2755. #u153125_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:7px;
  2761. height:7px;
  2762. }
  2763. #u153125 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:52px;
  2767. top:512px;
  2768. width:7px;
  2769. height:7px;
  2770. display:flex;
  2771. }
  2772. #u153125 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 2px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u153125_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u153126_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:7px;
  2791. height:7px;
  2792. }
  2793. #u153126 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:52px;
  2797. top:592px;
  2798. width:7px;
  2799. height:7px;
  2800. display:flex;
  2801. }
  2802. #u153126 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 2px 2px 2px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u153126_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. visibility:hidden;
  2814. }
  2815. #u153127_div {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:375px;
  2821. height:172px;
  2822. background:inherit;
  2823. background-color:rgba(255, 255, 255, 1);
  2824. box-sizing:border-box;
  2825. border-width:1px;
  2826. border-style:solid;
  2827. border-color:rgba(215, 215, 215, 1);
  2828. border-left:0px;
  2829. border-top:0px;
  2830. border-right:0px;
  2831. border-radius:0px;
  2832. border-bottom-right-radius:0px;
  2833. border-bottom-left-radius:0px;
  2834. -moz-box-shadow:none;
  2835. -webkit-box-shadow:none;
  2836. box-shadow:none;
  2837. }
  2838. #u153127 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:29px;
  2842. top:693px;
  2843. width:375px;
  2844. height:172px;
  2845. display:flex;
  2846. }
  2847. #u153127 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:2px 2px 2px 2px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u153127_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. visibility:hidden;
  2859. }
  2860. #u153128_div {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:353px;
  2866. height:40px;
  2867. background:inherit;
  2868. background-color:rgba(255, 255, 255, 0);
  2869. border:none;
  2870. border-top:0px;
  2871. border-right:0px;
  2872. border-bottom:0px;
  2873. border-radius:0px;
  2874. border-top-left-radius:0px;
  2875. border-bottom-left-radius:0px;
  2876. -moz-box-shadow:none;
  2877. -webkit-box-shadow:none;
  2878. box-shadow:none;
  2879. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2880. font-weight:500;
  2881. font-style:normal;
  2882. font-size:14px;
  2883. line-height:30px;
  2884. }
  2885. #u153128 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:42px;
  2889. top:698px;
  2890. width:353px;
  2891. height:40px;
  2892. display:flex;
  2893. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2894. font-weight:500;
  2895. font-style:normal;
  2896. font-size:14px;
  2897. line-height:30px;
  2898. }
  2899. #u153128 .text {
  2900. position:absolute;
  2901. align-self:flex-start;
  2902. padding:5px 10px 5px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u153128_text {
  2907. border-width:0px;
  2908. word-wrap:break-word;
  2909. text-transform:none;
  2910. }
  2911. #u153129_div {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:345px;
  2917. height:92px;
  2918. background:inherit;
  2919. background-color:rgba(255, 255, 255, 1);
  2920. box-sizing:border-box;
  2921. border-width:1px;
  2922. border-style:solid;
  2923. border-color:rgba(215, 215, 215, 1);
  2924. border-radius:4px;
  2925. -moz-box-shadow:none;
  2926. -webkit-box-shadow:none;
  2927. box-shadow:none;
  2928. }
  2929. #u153129 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:42px;
  2933. top:738px;
  2934. width:345px;
  2935. height:92px;
  2936. display:flex;
  2937. }
  2938. #u153129 .text {
  2939. position:absolute;
  2940. align-self:center;
  2941. padding:2px 2px 2px 2px;
  2942. box-sizing:border-box;
  2943. width:100%;
  2944. }
  2945. #u153129_text {
  2946. border-width:0px;
  2947. word-wrap:break-word;
  2948. text-transform:none;
  2949. visibility:hidden;
  2950. }
  2951. #u153130_div {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:99px;
  2957. height:30px;
  2958. background:inherit;
  2959. background-color:rgba(255, 255, 255, 0);
  2960. border:none;
  2961. border-left:0px;
  2962. border-top:0px;
  2963. border-right:0px;
  2964. border-radius:0px;
  2965. border-bottom-right-radius:0px;
  2966. border-bottom-left-radius:0px;
  2967. -moz-box-shadow:none;
  2968. -webkit-box-shadow:none;
  2969. box-shadow:none;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:14px;
  2974. color:#AAAAAA;
  2975. line-height:30px;
  2976. }
  2977. #u153130 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:51px;
  2981. top:746px;
  2982. width:99px;
  2983. height:30px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. color:#AAAAAA;
  2990. line-height:30px;
  2991. }
  2992. #u153130 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:0px 0px 0px 0px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u153130_text {
  3000. border-width:0px;
  3001. white-space:nowrap;
  3002. text-transform:none;
  3003. }
  3004. #u153131 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:0px;
  3010. height:0px;
  3011. }
  3012. #u153132_div {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:342px;
  3018. height:210px;
  3019. background:inherit;
  3020. background-color:rgba(255, 255, 255, 1);
  3021. border:none;
  3022. border-radius:10px;
  3023. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3024. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3025. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3026. }
  3027. #u153132 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:464px;
  3031. top:316px;
  3032. width:342px;
  3033. height:210px;
  3034. display:flex;
  3035. }
  3036. #u153132 .text {
  3037. position:absolute;
  3038. align-self:center;
  3039. padding:2px 2px 2px 2px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u153132_text {
  3044. border-width:0px;
  3045. word-wrap:break-word;
  3046. text-transform:none;
  3047. visibility:hidden;
  3048. }
  3049. #u153133_div {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:0px;
  3054. width:145px;
  3055. height:30px;
  3056. background:inherit;
  3057. background-color:rgba(255, 255, 255, 0);
  3058. border:none;
  3059. border-left:0px;
  3060. border-top:0px;
  3061. border-right:0px;
  3062. border-radius:0px;
  3063. border-bottom-right-radius:0px;
  3064. border-bottom-left-radius:0px;
  3065. -moz-box-shadow:none;
  3066. -webkit-box-shadow:none;
  3067. box-shadow:none;
  3068. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3069. font-weight:500;
  3070. font-style:normal;
  3071. font-size:18px;
  3072. text-align:center;
  3073. line-height:30px;
  3074. }
  3075. #u153133 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:562px;
  3079. top:340px;
  3080. width:145px;
  3081. height:30px;
  3082. display:flex;
  3083. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3084. font-weight:500;
  3085. font-style:normal;
  3086. font-size:18px;
  3087. text-align:center;
  3088. line-height:30px;
  3089. }
  3090. #u153133 .text {
  3091. position:absolute;
  3092. align-self:flex-start;
  3093. padding:0px 0px 0px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u153133_text {
  3098. border-width:0px;
  3099. white-space:nowrap;
  3100. text-transform:none;
  3101. }
  3102. #u153134_img {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:343px;
  3108. height:2px;
  3109. }
  3110. #u153134 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:464px;
  3114. top:459px;
  3115. width:342px;
  3116. height:1px;
  3117. display:flex;
  3118. }
  3119. #u153134 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 2px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u153134_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u153135_div {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:37px;
  3138. height:30px;
  3139. background:inherit;
  3140. background-color:rgba(255, 255, 255, 0);
  3141. border:none;
  3142. border-left:0px;
  3143. border-top:0px;
  3144. border-right:0px;
  3145. border-radius:0px;
  3146. border-bottom-right-radius:0px;
  3147. border-bottom-left-radius:0px;
  3148. -moz-box-shadow:none;
  3149. -webkit-box-shadow:none;
  3150. box-shadow:none;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:18px;
  3155. color:#0089FE;
  3156. text-align:right;
  3157. line-height:30px;
  3158. }
  3159. #u153135 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:715px;
  3163. top:476px;
  3164. width:37px;
  3165. height:30px;
  3166. display:flex;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:18px;
  3171. color:#0089FE;
  3172. text-align:right;
  3173. line-height:30px;
  3174. }
  3175. #u153135 .text {
  3176. position:absolute;
  3177. align-self:flex-start;
  3178. padding:0px 0px 0px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u153135_text {
  3183. border-width:0px;
  3184. white-space:nowrap;
  3185. text-transform:none;
  3186. }
  3187. #u153136_div {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:273px;
  3193. height:60px;
  3194. background:inherit;
  3195. background-color:rgba(255, 255, 255, 0);
  3196. border:none;
  3197. border-left:0px;
  3198. border-top:0px;
  3199. border-right:0px;
  3200. border-radius:0px;
  3201. border-bottom-right-radius:0px;
  3202. border-bottom-left-radius:0px;
  3203. -moz-box-shadow:none;
  3204. -webkit-box-shadow:none;
  3205. box-shadow:none;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:14px;
  3210. text-align:center;
  3211. line-height:30px;
  3212. }
  3213. #u153136 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:498px;
  3217. top:382px;
  3218. width:273px;
  3219. height:60px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:14px;
  3225. text-align:center;
  3226. line-height:30px;
  3227. }
  3228. #u153136 .text {
  3229. position:absolute;
  3230. align-self:flex-start;
  3231. padding:0px 0px 0px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u153136_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. }
  3240. #u153137_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:2px;
  3246. height:59px;
  3247. }
  3248. #u153137 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:635px;
  3252. top:462px;
  3253. width:1px;
  3254. height:58px;
  3255. display:flex;
  3256. }
  3257. #u153137 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 2px 2px 2px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u153137_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. visibility:hidden;
  3269. }
  3270. #u153138_div {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:37px;
  3276. height:30px;
  3277. background:inherit;
  3278. background-color:rgba(255, 255, 255, 0);
  3279. border:none;
  3280. border-left:0px;
  3281. border-top:0px;
  3282. border-right:0px;
  3283. border-radius:0px;
  3284. border-bottom-right-radius:0px;
  3285. border-bottom-left-radius:0px;
  3286. -moz-box-shadow:none;
  3287. -webkit-box-shadow:none;
  3288. box-shadow:none;
  3289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3290. font-weight:400;
  3291. font-style:normal;
  3292. font-size:18px;
  3293. color:#0089FE;
  3294. text-align:right;
  3295. line-height:30px;
  3296. }
  3297. #u153138 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:537px;
  3301. top:476px;
  3302. width:37px;
  3303. height:30px;
  3304. display:flex;
  3305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:18px;
  3309. color:#0089FE;
  3310. text-align:right;
  3311. line-height:30px;
  3312. }
  3313. #u153138 .text {
  3314. position:absolute;
  3315. align-self:flex-start;
  3316. padding:0px 0px 0px 0px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u153138_text {
  3321. border-width:0px;
  3322. white-space:nowrap;
  3323. text-transform:none;
  3324. }