styles.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:433px;
  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. #u153074_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u153074 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u153074 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u153074_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u153075_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. #u153075 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u153075 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u153075_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u153076 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u153077_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. #u153077 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u153077 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u153077_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u153078 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u153079_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u153079 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u153079 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u153079_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u153080_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u153080 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u153080 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u153080_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u153081 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u153082_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u153082 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u153082 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u153082_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u153083_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u153083 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u153083 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u153083_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u153084_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u153084 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u153084 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u153084_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u153085_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u153085 {
  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. #u153085 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u153085_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u153086_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u153086 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u153086 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u153086_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u153087_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. #u153087 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u153087 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u153087_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u153088 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u153089_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u153089 {
  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. #u153089 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u153089_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u153090_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. #u153090 {
  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. #u153090 .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. #u153090_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u153091 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u153092_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u153092 {
  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. #u153092 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u153092_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u153093_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. #u153093 {
  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. #u153093 .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. #u153093_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u153094_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. #u153094 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u153094 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u153094_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u153095 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u153096_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u153096 {
  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. #u153096 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u153096_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u153097_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. #u153097 {
  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. #u153097 .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. #u153097_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u153098 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u153099_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u153099 {
  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. #u153099 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u153099_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u153100_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. #u153100 {
  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. #u153100 .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. #u153100_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u153101_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u153101 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u153101 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u153101_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u153102_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:44px;
  826. }
  827. #u153102 {
  828. border-width:0px;
  829. position:absolute;
  830. left:29px;
  831. top:24px;
  832. width:375px;
  833. height:44px;
  834. display:flex;
  835. }
  836. #u153102 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u153102_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u153103 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u153104_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:375px;
  863. height:40px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 1);
  866. box-sizing:border-box;
  867. border-width:1px;
  868. border-style:solid;
  869. border-color:rgba(215, 215, 215, 1);
  870. border-left:0px;
  871. border-top:0px;
  872. border-right:0px;
  873. border-radius:0px;
  874. border-bottom-right-radius:0px;
  875. border-bottom-left-radius:0px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u153104 {
  881. border-width:0px;
  882. position:absolute;
  883. left:29px;
  884. top:66px;
  885. width:375px;
  886. height:40px;
  887. display:flex;
  888. }
  889. #u153104 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u153104_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u153105 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u153106_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:88px;
  916. height:32px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 1);
  919. box-sizing:border-box;
  920. border-width:1px;
  921. border-style:solid;
  922. border-color:rgba(242, 242, 242, 1);
  923. border-radius:33px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. }
  928. #u153106 {
  929. border-width:0px;
  930. position:absolute;
  931. left:309px;
  932. top:71px;
  933. width:88px;
  934. height:32px;
  935. display:flex;
  936. }
  937. #u153106 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u153106_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u153107 {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:0px;
  956. height:0px;
  957. }
  958. #u153108_img {
  959. border-width:0px;
  960. position:absolute;
  961. left:0px;
  962. top:0px;
  963. width:18px;
  964. height:18px;
  965. }
  966. #u153108 {
  967. border-width:0px;
  968. position:absolute;
  969. left:372px;
  970. top:78px;
  971. width:18px;
  972. height:18px;
  973. display:flex;
  974. }
  975. #u153108 .text {
  976. position:absolute;
  977. align-self:center;
  978. padding:2px 2px 2px 2px;
  979. box-sizing:border-box;
  980. width:100%;
  981. }
  982. #u153108_text {
  983. border-width:0px;
  984. word-wrap:break-word;
  985. text-transform:none;
  986. visibility:hidden;
  987. }
  988. #u153109_img {
  989. border-width:0px;
  990. position:absolute;
  991. left:0px;
  992. top:0px;
  993. width:6px;
  994. height:6px;
  995. }
  996. #u153109 {
  997. border-width:0px;
  998. position:absolute;
  999. left:378px;
  1000. top:84px;
  1001. width:6px;
  1002. height:6px;
  1003. display:flex;
  1004. }
  1005. #u153109 .text {
  1006. position:absolute;
  1007. align-self:center;
  1008. padding:2px 2px 2px 2px;
  1009. box-sizing:border-box;
  1010. width:100%;
  1011. }
  1012. #u153109_text {
  1013. border-width:0px;
  1014. word-wrap:break-word;
  1015. text-transform:none;
  1016. visibility:hidden;
  1017. }
  1018. #u153110 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:0px;
  1024. height:0px;
  1025. }
  1026. #u153111_img {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:0px;
  1030. top:0px;
  1031. width:5px;
  1032. height:5px;
  1033. }
  1034. #u153111 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:323px;
  1038. top:85px;
  1039. width:5px;
  1040. height:5px;
  1041. display:flex;
  1042. }
  1043. #u153111 .text {
  1044. position:absolute;
  1045. align-self:center;
  1046. padding:2px 2px 2px 2px;
  1047. box-sizing:border-box;
  1048. width:100%;
  1049. }
  1050. #u153111_text {
  1051. border-width:0px;
  1052. word-wrap:break-word;
  1053. text-transform:none;
  1054. visibility:hidden;
  1055. }
  1056. #u153112_img {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:5px;
  1062. height:5px;
  1063. }
  1064. #u153112 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:339px;
  1068. top:85px;
  1069. width:5px;
  1070. height:5px;
  1071. display:flex;
  1072. }
  1073. #u153112 .text {
  1074. position:absolute;
  1075. align-self:center;
  1076. padding:2px 2px 2px 2px;
  1077. box-sizing:border-box;
  1078. width:100%;
  1079. }
  1080. #u153112_text {
  1081. border-width:0px;
  1082. word-wrap:break-word;
  1083. text-transform:none;
  1084. visibility:hidden;
  1085. }
  1086. #u153113_img {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:7px;
  1092. height:7px;
  1093. }
  1094. #u153113 {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:330px;
  1098. top:84px;
  1099. width:7px;
  1100. height:7px;
  1101. display:flex;
  1102. }
  1103. #u153113 .text {
  1104. position:absolute;
  1105. align-self:center;
  1106. padding:2px 2px 2px 2px;
  1107. box-sizing:border-box;
  1108. width:100%;
  1109. }
  1110. #u153113_text {
  1111. border-width:0px;
  1112. word-wrap:break-word;
  1113. text-transform:none;
  1114. visibility:hidden;
  1115. }
  1116. #u153114_img {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:0px;
  1120. top:0px;
  1121. width:19px;
  1122. height:2px;
  1123. }
  1124. #u153114 {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:347px;
  1128. top:87px;
  1129. width:18px;
  1130. height:1px;
  1131. display:flex;
  1132. -webkit-transform:rotate(90deg);
  1133. -moz-transform:rotate(90deg);
  1134. -ms-transform:rotate(90deg);
  1135. transform:rotate(90deg);
  1136. }
  1137. #u153114 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u153114_text {
  1145. border-width:0px;
  1146. word-wrap:break-word;
  1147. text-transform:none;
  1148. visibility:hidden;
  1149. }
  1150. #u153115_div {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:12px;
  1156. height:12px;
  1157. background:inherit;
  1158. background-color:rgba(255, 255, 255, 0);
  1159. box-sizing:border-box;
  1160. border-width:2px;
  1161. border-style:solid;
  1162. border-color:rgba(51, 51, 51, 1);
  1163. border-right:0px;
  1164. border-bottom:0px;
  1165. border-radius:0px;
  1166. border-top-right-radius:0px;
  1167. border-bottom-left-radius:0px;
  1168. -moz-box-shadow:none;
  1169. -webkit-box-shadow:none;
  1170. box-shadow:none;
  1171. }
  1172. #u153115 {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:44px;
  1176. top:80px;
  1177. width:12px;
  1178. height:12px;
  1179. display:flex;
  1180. -webkit-transform:rotate(315deg);
  1181. -moz-transform:rotate(315deg);
  1182. -ms-transform:rotate(315deg);
  1183. transform:rotate(315deg);
  1184. }
  1185. #u153115 .text {
  1186. position:absolute;
  1187. align-self:center;
  1188. padding:2px 2px 2px 2px;
  1189. box-sizing:border-box;
  1190. width:100%;
  1191. }
  1192. #u153115_text {
  1193. border-width:0px;
  1194. word-wrap:break-word;
  1195. text-transform:none;
  1196. visibility:hidden;
  1197. }
  1198. #u153116_div {
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:0px;
  1202. top:0px;
  1203. width:65px;
  1204. height:22px;
  1205. background:inherit;
  1206. background-color:rgba(255, 255, 255, 0);
  1207. border:none;
  1208. border-radius:0px;
  1209. -moz-box-shadow:none;
  1210. -webkit-box-shadow:none;
  1211. box-shadow:none;
  1212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:16px;
  1216. color:#000000;
  1217. }
  1218. #u153116 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:58px;
  1222. top:75px;
  1223. width:65px;
  1224. height:22px;
  1225. display:flex;
  1226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1227. font-weight:400;
  1228. font-style:normal;
  1229. font-size:16px;
  1230. color:#000000;
  1231. }
  1232. #u153116 .text {
  1233. position:absolute;
  1234. align-self:flex-start;
  1235. padding:0px 0px 0px 0px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u153116_text {
  1240. border-width:0px;
  1241. white-space:nowrap;
  1242. text-transform:none;
  1243. }
  1244. #u153117 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:0px;
  1250. height:0px;
  1251. }
  1252. #u153118_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:375px;
  1258. height:41px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 255, 1);
  1261. border:none;
  1262. border-radius:0px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. }
  1267. #u153118 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:29px;
  1271. top:156px;
  1272. width:375px;
  1273. height:41px;
  1274. display:flex;
  1275. }
  1276. #u153118 .text {
  1277. position:absolute;
  1278. align-self:center;
  1279. padding:2px 2px 2px 2px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u153118_text {
  1284. border-width:0px;
  1285. word-wrap:break-word;
  1286. text-transform:none;
  1287. visibility:hidden;
  1288. }
  1289. #u153119_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:37px;
  1295. height:40px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 0);
  1298. border:none;
  1299. border-left:0px;
  1300. border-top:0px;
  1301. border-right:0px;
  1302. border-radius:0px;
  1303. border-bottom-right-radius:0px;
  1304. border-bottom-left-radius:0px;
  1305. -moz-box-shadow:none;
  1306. -webkit-box-shadow:none;
  1307. box-shadow:none;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:12px;
  1312. text-align:center;
  1313. }
  1314. #u153119 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:97px;
  1318. top:156px;
  1319. width:37px;
  1320. height:40px;
  1321. display:flex;
  1322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1323. font-weight:400;
  1324. font-style:normal;
  1325. font-size:12px;
  1326. text-align:center;
  1327. }
  1328. #u153119 .text {
  1329. position:absolute;
  1330. align-self:center;
  1331. padding:0px 0px 0px 0px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u153119_text {
  1336. border-width:0px;
  1337. white-space:nowrap;
  1338. text-transform:none;
  1339. }
  1340. #u153120_div {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:0px;
  1344. top:0px;
  1345. width:37px;
  1346. height:40px;
  1347. background:inherit;
  1348. background-color:rgba(255, 255, 255, 0);
  1349. box-sizing:border-box;
  1350. border-width:2px;
  1351. border-style:solid;
  1352. border-color:rgba(24, 144, 255, 1);
  1353. border-left:0px;
  1354. border-top:0px;
  1355. border-right:0px;
  1356. border-radius:0px;
  1357. border-bottom-right-radius:0px;
  1358. border-bottom-left-radius:0px;
  1359. -moz-box-shadow:none;
  1360. -webkit-box-shadow:none;
  1361. box-shadow:none;
  1362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1363. font-weight:400;
  1364. font-style:normal;
  1365. font-size:12px;
  1366. color:#1890FF;
  1367. text-align:center;
  1368. }
  1369. #u153120 {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:45px;
  1373. top:156px;
  1374. width:37px;
  1375. height:40px;
  1376. display:flex;
  1377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1378. font-weight:400;
  1379. font-style:normal;
  1380. font-size:12px;
  1381. color:#1890FF;
  1382. text-align:center;
  1383. }
  1384. #u153120 .text {
  1385. position:absolute;
  1386. align-self:center;
  1387. padding:0px 0px 0px 0px;
  1388. box-sizing:border-box;
  1389. width:100%;
  1390. }
  1391. #u153120_text {
  1392. border-width:0px;
  1393. white-space:nowrap;
  1394. text-transform:none;
  1395. }
  1396. #u153121_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:11px;
  1402. height:11px;
  1403. background:inherit;
  1404. background-color:rgba(217, 0, 27, 1);
  1405. border:none;
  1406. border-radius:7px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. font-size:8px;
  1414. color:#FFFFFF;
  1415. text-align:center;
  1416. }
  1417. #u153121 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:79px;
  1421. top:160px;
  1422. width:11px;
  1423. height:11px;
  1424. display:flex;
  1425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. font-size:8px;
  1429. color:#FFFFFF;
  1430. text-align:center;
  1431. }
  1432. #u153121 .text {
  1433. position:absolute;
  1434. align-self:flex-start;
  1435. padding:0px 0px 0px 0px;
  1436. box-sizing:border-box;
  1437. width:100%;
  1438. }
  1439. #u153121_text {
  1440. border-width:0px;
  1441. word-wrap:break-word;
  1442. text-transform:none;
  1443. }
  1444. #u153122_div {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:37px;
  1450. height:40px;
  1451. background:inherit;
  1452. background-color:rgba(255, 255, 255, 0);
  1453. border:none;
  1454. border-left:0px;
  1455. border-top:0px;
  1456. border-right:0px;
  1457. border-radius:0px;
  1458. border-bottom-right-radius:0px;
  1459. border-bottom-left-radius:0px;
  1460. -moz-box-shadow:none;
  1461. -webkit-box-shadow:none;
  1462. box-shadow:none;
  1463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1464. font-weight:400;
  1465. font-style:normal;
  1466. font-size:12px;
  1467. text-align:center;
  1468. }
  1469. #u153122 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:149px;
  1473. top:156px;
  1474. width:37px;
  1475. height:40px;
  1476. display:flex;
  1477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1478. font-weight:400;
  1479. font-style:normal;
  1480. font-size:12px;
  1481. text-align:center;
  1482. }
  1483. #u153122 .text {
  1484. position:absolute;
  1485. align-self:center;
  1486. padding:0px 0px 0px 0px;
  1487. box-sizing:border-box;
  1488. width:100%;
  1489. }
  1490. #u153122_text {
  1491. border-width:0px;
  1492. white-space:nowrap;
  1493. text-transform:none;
  1494. }
  1495. #u153123_div {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:0px;
  1499. top:0px;
  1500. width:37px;
  1501. height:40px;
  1502. background:inherit;
  1503. background-color:rgba(255, 255, 255, 0);
  1504. border:none;
  1505. border-left:0px;
  1506. border-top:0px;
  1507. border-right:0px;
  1508. border-radius:0px;
  1509. border-bottom-right-radius:0px;
  1510. border-bottom-left-radius:0px;
  1511. -moz-box-shadow:none;
  1512. -webkit-box-shadow:none;
  1513. box-shadow:none;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:12px;
  1518. text-align:center;
  1519. }
  1520. #u153123 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:201px;
  1524. top:156px;
  1525. width:37px;
  1526. height:40px;
  1527. display:flex;
  1528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1529. font-weight:400;
  1530. font-style:normal;
  1531. font-size:12px;
  1532. text-align:center;
  1533. }
  1534. #u153123 .text {
  1535. position:absolute;
  1536. align-self:center;
  1537. padding:0px 0px 0px 0px;
  1538. box-sizing:border-box;
  1539. width:100%;
  1540. }
  1541. #u153123_text {
  1542. border-width:0px;
  1543. white-space:nowrap;
  1544. text-transform:none;
  1545. }
  1546. #u153124_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:37px;
  1552. height:40px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 0);
  1555. border:none;
  1556. border-left:0px;
  1557. border-top:0px;
  1558. border-right:0px;
  1559. border-radius:0px;
  1560. border-bottom-right-radius:0px;
  1561. border-bottom-left-radius:0px;
  1562. -moz-box-shadow:none;
  1563. -webkit-box-shadow:none;
  1564. box-shadow:none;
  1565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1566. font-weight:400;
  1567. font-style:normal;
  1568. font-size:12px;
  1569. text-align:center;
  1570. }
  1571. #u153124 {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:253px;
  1575. top:156px;
  1576. width:37px;
  1577. height:40px;
  1578. display:flex;
  1579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1580. font-weight:400;
  1581. font-style:normal;
  1582. font-size:12px;
  1583. text-align:center;
  1584. }
  1585. #u153124 .text {
  1586. position:absolute;
  1587. align-self:center;
  1588. padding:0px 0px 0px 0px;
  1589. box-sizing:border-box;
  1590. width:100%;
  1591. }
  1592. #u153124_text {
  1593. border-width:0px;
  1594. white-space:nowrap;
  1595. text-transform:none;
  1596. }
  1597. #u153125_div {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:37px;
  1603. height:40px;
  1604. background:inherit;
  1605. background-color:rgba(255, 255, 255, 0);
  1606. border:none;
  1607. border-left:0px;
  1608. border-top:0px;
  1609. border-right:0px;
  1610. border-radius:0px;
  1611. border-bottom-right-radius:0px;
  1612. border-bottom-left-radius:0px;
  1613. -moz-box-shadow:none;
  1614. -webkit-box-shadow:none;
  1615. box-shadow:none;
  1616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1617. font-weight:400;
  1618. font-style:normal;
  1619. font-size:12px;
  1620. text-align:center;
  1621. }
  1622. #u153125 {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:305px;
  1626. top:156px;
  1627. width:37px;
  1628. height:40px;
  1629. display:flex;
  1630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1631. font-weight:400;
  1632. font-style:normal;
  1633. font-size:12px;
  1634. text-align:center;
  1635. }
  1636. #u153125 .text {
  1637. position:absolute;
  1638. align-self:center;
  1639. padding:0px 0px 0px 0px;
  1640. box-sizing:border-box;
  1641. width:100%;
  1642. }
  1643. #u153125_text {
  1644. border-width:0px;
  1645. white-space:nowrap;
  1646. text-transform:none;
  1647. }
  1648. #u153126_div {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:0px;
  1652. top:0px;
  1653. width:37px;
  1654. height:40px;
  1655. background:inherit;
  1656. background-color:rgba(255, 255, 255, 0);
  1657. border:none;
  1658. border-left:0px;
  1659. border-top:0px;
  1660. border-right:0px;
  1661. border-radius:0px;
  1662. border-bottom-right-radius:0px;
  1663. border-bottom-left-radius:0px;
  1664. -moz-box-shadow:none;
  1665. -webkit-box-shadow:none;
  1666. box-shadow:none;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. text-align:center;
  1672. }
  1673. #u153126 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:357px;
  1677. top:156px;
  1678. width:37px;
  1679. height:40px;
  1680. display:flex;
  1681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1682. font-weight:400;
  1683. font-style:normal;
  1684. font-size:12px;
  1685. text-align:center;
  1686. }
  1687. #u153126 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:0px 0px 0px 0px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u153126_text {
  1695. border-width:0px;
  1696. white-space:nowrap;
  1697. text-transform:none;
  1698. }
  1699. #u153127 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:0px;
  1705. height:0px;
  1706. }
  1707. #u153128_div {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:355px;
  1713. height:180px;
  1714. background:inherit;
  1715. background-color:rgba(255, 255, 255, 1);
  1716. border:none;
  1717. border-radius:4px;
  1718. -moz-box-shadow:none;
  1719. -webkit-box-shadow:none;
  1720. box-shadow:none;
  1721. }
  1722. #u153128 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:39px;
  1726. top:206px;
  1727. width:355px;
  1728. height:180px;
  1729. display:flex;
  1730. }
  1731. #u153128 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 2px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u153128_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. visibility:hidden;
  1743. }
  1744. #u153129_div {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:60px;
  1750. height:30px;
  1751. background:inherit;
  1752. background-color:rgba(255, 255, 255, 0);
  1753. border:none;
  1754. border-left:0px;
  1755. border-top:0px;
  1756. border-right:0px;
  1757. border-radius:0px;
  1758. border-bottom-right-radius:0px;
  1759. border-bottom-left-radius:0px;
  1760. -moz-box-shadow:none;
  1761. -webkit-box-shadow:none;
  1762. box-shadow:none;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. line-height:30px;
  1768. }
  1769. #u153129 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:92px;
  1773. top:215px;
  1774. width:60px;
  1775. height:30px;
  1776. display:flex;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:14px;
  1781. line-height:30px;
  1782. }
  1783. #u153129 .text {
  1784. position:absolute;
  1785. align-self:flex-start;
  1786. padding:0px 0px 0px 0px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u153129_text {
  1791. border-width:0px;
  1792. white-space:nowrap;
  1793. text-transform:none;
  1794. }
  1795. #u153130_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:97px;
  1801. height:17px;
  1802. background:inherit;
  1803. background-color:rgba(255, 255, 255, 0);
  1804. border:none;
  1805. border-left:0px;
  1806. border-top:0px;
  1807. border-right:0px;
  1808. border-radius:0px;
  1809. border-bottom-right-radius:0px;
  1810. border-bottom-left-radius:0px;
  1811. -moz-box-shadow:none;
  1812. -webkit-box-shadow:none;
  1813. box-shadow:none;
  1814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:12px;
  1818. color:#AAAAAA;
  1819. }
  1820. #u153130 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:55px;
  1824. top:245px;
  1825. width:97px;
  1826. height:17px;
  1827. display:flex;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:12px;
  1832. color:#AAAAAA;
  1833. }
  1834. #u153130 .text {
  1835. position:absolute;
  1836. align-self:flex-start;
  1837. padding:0px 0px 0px 0px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u153130_text {
  1842. border-width:0px;
  1843. white-space:nowrap;
  1844. text-transform:none;
  1845. }
  1846. #u153131_div {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:188px;
  1852. height:68px;
  1853. background:inherit;
  1854. background-color:rgba(255, 255, 255, 0);
  1855. border:none;
  1856. border-left:0px;
  1857. border-top:0px;
  1858. border-right:0px;
  1859. border-radius:0px;
  1860. border-bottom-right-radius:0px;
  1861. border-bottom-left-radius:0px;
  1862. -moz-box-shadow:none;
  1863. -webkit-box-shadow:none;
  1864. box-shadow:none;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:12px;
  1869. }
  1870. #u153131 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:55px;
  1874. top:272px;
  1875. width:188px;
  1876. height:68px;
  1877. display:flex;
  1878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1879. font-weight:400;
  1880. font-style:normal;
  1881. font-size:12px;
  1882. }
  1883. #u153131 .text {
  1884. position:absolute;
  1885. align-self:flex-start;
  1886. padding:0px 0px 0px 0px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u153131_text {
  1891. border-width:0px;
  1892. white-space:nowrap;
  1893. text-transform:none;
  1894. }
  1895. #u153132_div {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:27px;
  1901. height:14px;
  1902. background:inherit;
  1903. background-color:rgba(24, 144, 255, 1);
  1904. border:none;
  1905. border-radius:14px;
  1906. -moz-box-shadow:none;
  1907. -webkit-box-shadow:none;
  1908. box-shadow:none;
  1909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:10px;
  1913. color:#FFFFFF;
  1914. text-align:center;
  1915. }
  1916. #u153132 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:55px;
  1920. top:223px;
  1921. width:27px;
  1922. height:14px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:10px;
  1928. color:#FFFFFF;
  1929. text-align:center;
  1930. }
  1931. #u153132 .text {
  1932. position:absolute;
  1933. align-self:flex-start;
  1934. padding:0px 0px 0px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u153132_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u153133_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:56px;
  1949. height:24px;
  1950. background:inherit;
  1951. background-color:rgba(24, 144, 255, 1);
  1952. border:none;
  1953. border-radius:28px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:12px;
  1961. color:#FFFFFF;
  1962. text-align:center;
  1963. }
  1964. #u153133 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:328px;
  1968. top:352px;
  1969. width:56px;
  1970. height:24px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. font-size:12px;
  1976. color:#FFFFFF;
  1977. text-align:center;
  1978. }
  1979. #u153133 .text {
  1980. position:absolute;
  1981. align-self:center;
  1982. padding:0px 2px 0px 2px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u153133_text {
  1987. border-width:0px;
  1988. word-wrap:break-word;
  1989. text-transform:none;
  1990. }
  1991. #u153134_div {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:56px;
  1997. height:24px;
  1998. background:inherit;
  1999. background-color:rgba(24, 144, 255, 1);
  2000. border:none;
  2001. border-radius:28px;
  2002. -moz-box-shadow:none;
  2003. -webkit-box-shadow:none;
  2004. box-shadow:none;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. color:#FFFFFF;
  2010. text-align:center;
  2011. }
  2012. #u153134 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:262px;
  2016. top:352px;
  2017. width:56px;
  2018. height:24px;
  2019. display:flex;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:12px;
  2024. color:#FFFFFF;
  2025. text-align:center;
  2026. }
  2027. #u153134 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:0px 2px 0px 2px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u153134_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. }
  2039. #u153135_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:25px;
  2045. height:17px;
  2046. background:inherit;
  2047. background-color:rgba(255, 255, 255, 0);
  2048. border:none;
  2049. border-radius:0px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:12px;
  2057. color:#298FFF;
  2058. }
  2059. #u153135 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:227px;
  2063. top:355px;
  2064. width:25px;
  2065. height:17px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:12px;
  2071. color:#298FFF;
  2072. }
  2073. #u153135 .text {
  2074. position:absolute;
  2075. align-self:flex-start;
  2076. padding:0px 0px 0px 0px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u153135_text {
  2081. border-width:0px;
  2082. white-space:nowrap;
  2083. text-transform:none;
  2084. }
  2085. #u153136 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:0px;
  2091. height:0px;
  2092. }
  2093. #u153137_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:375px;
  2099. height:50px;
  2100. background:inherit;
  2101. background-color:rgba(255, 255, 255, 1);
  2102. border:none;
  2103. border-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. }
  2108. #u153137 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:29px;
  2112. top:107px;
  2113. width:375px;
  2114. height:50px;
  2115. display:flex;
  2116. }
  2117. #u153137 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 2px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u153137_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. visibility:hidden;
  2129. }
  2130. #u153138 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:0px;
  2136. height:0px;
  2137. }
  2138. #u153139 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:0px;
  2144. height:0px;
  2145. }
  2146. #u153140_div {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:135px;
  2152. height:30px;
  2153. background:inherit;
  2154. background-color:rgba(242, 242, 242, 1);
  2155. border:none;
  2156. border-radius:20px;
  2157. -moz-box-shadow:none;
  2158. -webkit-box-shadow:none;
  2159. box-shadow:none;
  2160. }
  2161. #u153140 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:42px;
  2165. top:117px;
  2166. width:135px;
  2167. height:30px;
  2168. display:flex;
  2169. }
  2170. #u153140 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 2px 2px 2px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u153140_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. visibility:hidden;
  2182. }
  2183. #u153141_input {
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:121px;
  2188. height:22px;
  2189. padding:2px 2px 2px 2px;
  2190. font-family:'ArialMT', 'Arial', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:12px;
  2194. letter-spacing:normal;
  2195. color:#7F7F7F;
  2196. vertical-align:none;
  2197. text-align:left;
  2198. text-transform:none;
  2199. background-color:transparent;
  2200. border-color:transparent;
  2201. }
  2202. #u153141_input.disabled {
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:121px;
  2207. height:22px;
  2208. padding:2px 2px 2px 2px;
  2209. font-family:'ArialMT', 'Arial', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:12px;
  2213. letter-spacing:normal;
  2214. color:#7F7F7F;
  2215. vertical-align:none;
  2216. text-align:left;
  2217. text-transform:none;
  2218. background-color:transparent;
  2219. border-color:transparent;
  2220. }
  2221. #u153141_div {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:121px;
  2227. height:22px;
  2228. background:inherit;
  2229. background-color:rgba(255, 255, 255, 0);
  2230. border:none;
  2231. border-radius:0px;
  2232. -moz-box-shadow:none;
  2233. -webkit-box-shadow:none;
  2234. box-shadow:none;
  2235. font-size:12px;
  2236. color:#7F7F7F;
  2237. }
  2238. #u153141 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:49px;
  2242. top:121px;
  2243. width:121px;
  2244. height:22px;
  2245. display:flex;
  2246. font-size:12px;
  2247. color:#7F7F7F;
  2248. }
  2249. #u153141 .text {
  2250. position:absolute;
  2251. align-self:flex-start;
  2252. padding:2px 2px 2px 2px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u153141_div.disabled {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:121px;
  2262. height:22px;
  2263. background:inherit;
  2264. background-color:rgba(240, 240, 240, 1);
  2265. border:none;
  2266. border-radius:0px;
  2267. -moz-box-shadow:none;
  2268. -webkit-box-shadow:none;
  2269. box-shadow:none;
  2270. font-size:12px;
  2271. color:#7F7F7F;
  2272. }
  2273. #u153141.disabled {
  2274. }
  2275. .u153141_input_option {
  2276. font-size:12px;
  2277. }
  2278. #u153142_div {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:64px;
  2284. height:30px;
  2285. background:inherit;
  2286. background-color:rgba(255, 255, 255, 0);
  2287. border:none;
  2288. border-left:0px;
  2289. border-top:0px;
  2290. border-right:0px;
  2291. border-radius:0px;
  2292. border-bottom-right-radius:0px;
  2293. border-bottom-left-radius:0px;
  2294. -moz-box-shadow:none;
  2295. -webkit-box-shadow:none;
  2296. box-shadow:none;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:12px;
  2301. color:#1890FF;
  2302. line-height:30px;
  2303. }
  2304. #u153142 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:332px;
  2308. top:117px;
  2309. width:64px;
  2310. height:30px;
  2311. display:flex;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. color:#1890FF;
  2317. line-height:30px;
  2318. }
  2319. #u153142 .text {
  2320. position:absolute;
  2321. align-self:flex-start;
  2322. padding:0px 0px 0px 0px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u153142_text {
  2327. border-width:0px;
  2328. white-space:nowrap;
  2329. text-transform:none;
  2330. }
  2331. #u153143 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:0px;
  2337. height:0px;
  2338. }
  2339. #u153144_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:135px;
  2345. height:30px;
  2346. background:inherit;
  2347. background-color:rgba(242, 242, 242, 1);
  2348. border:none;
  2349. border-radius:20px;
  2350. -moz-box-shadow:none;
  2351. -webkit-box-shadow:none;
  2352. box-shadow:none;
  2353. }
  2354. #u153144 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:188px;
  2358. top:117px;
  2359. width:135px;
  2360. height:30px;
  2361. display:flex;
  2362. }
  2363. #u153144 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 2px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u153144_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u153145_input {
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:121px;
  2381. height:22px;
  2382. padding:2px 2px 2px 2px;
  2383. font-family:'ArialMT', 'Arial', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:12px;
  2387. letter-spacing:normal;
  2388. color:#7F7F7F;
  2389. vertical-align:none;
  2390. text-align:left;
  2391. text-transform:none;
  2392. background-color:transparent;
  2393. border-color:transparent;
  2394. }
  2395. #u153145_input.disabled {
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:121px;
  2400. height:22px;
  2401. padding:2px 2px 2px 2px;
  2402. font-family:'ArialMT', 'Arial', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:12px;
  2406. letter-spacing:normal;
  2407. color:#7F7F7F;
  2408. vertical-align:none;
  2409. text-align:left;
  2410. text-transform:none;
  2411. background-color:transparent;
  2412. border-color:transparent;
  2413. }
  2414. #u153145_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:121px;
  2420. height:22px;
  2421. background:inherit;
  2422. background-color:rgba(255, 255, 255, 0);
  2423. border:none;
  2424. border-radius:0px;
  2425. -moz-box-shadow:none;
  2426. -webkit-box-shadow:none;
  2427. box-shadow:none;
  2428. font-size:12px;
  2429. color:#7F7F7F;
  2430. }
  2431. #u153145 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:195px;
  2435. top:121px;
  2436. width:121px;
  2437. height:22px;
  2438. display:flex;
  2439. font-size:12px;
  2440. color:#7F7F7F;
  2441. }
  2442. #u153145 .text {
  2443. position:absolute;
  2444. align-self:flex-start;
  2445. padding:2px 2px 2px 2px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u153145_div.disabled {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:121px;
  2455. height:22px;
  2456. background:inherit;
  2457. background-color:rgba(240, 240, 240, 1);
  2458. border:none;
  2459. border-radius:0px;
  2460. -moz-box-shadow:none;
  2461. -webkit-box-shadow:none;
  2462. box-shadow:none;
  2463. font-size:12px;
  2464. color:#7F7F7F;
  2465. }
  2466. #u153145.disabled {
  2467. }
  2468. .u153145_input_option {
  2469. font-size:12px;
  2470. }
  2471. #u153146 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:0px;
  2477. height:0px;
  2478. }
  2479. #u153147_div {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:355px;
  2485. height:180px;
  2486. background:inherit;
  2487. background-color:rgba(255, 255, 255, 1);
  2488. border:none;
  2489. border-radius:4px;
  2490. -moz-box-shadow:none;
  2491. -webkit-box-shadow:none;
  2492. box-shadow:none;
  2493. }
  2494. #u153147 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:39px;
  2498. top:396px;
  2499. width:355px;
  2500. height:180px;
  2501. display:flex;
  2502. }
  2503. #u153147 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 2px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u153147_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. visibility:hidden;
  2515. }
  2516. #u153148_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:96px;
  2522. height:30px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 0);
  2525. border:none;
  2526. border-left:0px;
  2527. border-top:0px;
  2528. border-right:0px;
  2529. border-radius:0px;
  2530. border-bottom-right-radius:0px;
  2531. border-bottom-left-radius:0px;
  2532. -moz-box-shadow:none;
  2533. -webkit-box-shadow:none;
  2534. box-shadow:none;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:14px;
  2539. line-height:30px;
  2540. }
  2541. #u153148 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:92px;
  2545. top:405px;
  2546. width:96px;
  2547. height:30px;
  2548. display:flex;
  2549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:14px;
  2553. line-height:30px;
  2554. }
  2555. #u153148 .text {
  2556. position:absolute;
  2557. align-self:flex-start;
  2558. padding:0px 0px 0px 0px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u153148_text {
  2563. border-width:0px;
  2564. white-space:nowrap;
  2565. text-transform:none;
  2566. }
  2567. #u153149_div {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:97px;
  2573. height:17px;
  2574. background:inherit;
  2575. background-color:rgba(255, 255, 255, 0);
  2576. border:none;
  2577. border-left:0px;
  2578. border-top:0px;
  2579. border-right:0px;
  2580. border-radius:0px;
  2581. border-bottom-right-radius:0px;
  2582. border-bottom-left-radius:0px;
  2583. -moz-box-shadow:none;
  2584. -webkit-box-shadow:none;
  2585. box-shadow:none;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:12px;
  2590. color:#AAAAAA;
  2591. }
  2592. #u153149 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:55px;
  2596. top:435px;
  2597. width:97px;
  2598. height:17px;
  2599. display:flex;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:12px;
  2604. color:#AAAAAA;
  2605. }
  2606. #u153149 .text {
  2607. position:absolute;
  2608. align-self:flex-start;
  2609. padding:0px 0px 0px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u153149_text {
  2614. border-width:0px;
  2615. white-space:nowrap;
  2616. text-transform:none;
  2617. }
  2618. #u153150_div {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:188px;
  2624. height:68px;
  2625. background:inherit;
  2626. background-color:rgba(255, 255, 255, 0);
  2627. border:none;
  2628. border-left:0px;
  2629. border-top:0px;
  2630. border-right:0px;
  2631. border-radius:0px;
  2632. border-bottom-right-radius:0px;
  2633. border-bottom-left-radius:0px;
  2634. -moz-box-shadow:none;
  2635. -webkit-box-shadow:none;
  2636. box-shadow:none;
  2637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:12px;
  2641. }
  2642. #u153150 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:55px;
  2646. top:462px;
  2647. width:188px;
  2648. height:68px;
  2649. display:flex;
  2650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2651. font-weight:400;
  2652. font-style:normal;
  2653. font-size:12px;
  2654. }
  2655. #u153150 .text {
  2656. position:absolute;
  2657. align-self:flex-start;
  2658. padding:0px 0px 0px 0px;
  2659. box-sizing:border-box;
  2660. width:100%;
  2661. }
  2662. #u153150_text {
  2663. border-width:0px;
  2664. white-space:nowrap;
  2665. text-transform:none;
  2666. }
  2667. #u153151_div {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:27px;
  2673. height:14px;
  2674. background:inherit;
  2675. background-color:rgba(0, 191, 191, 1);
  2676. border:none;
  2677. border-radius:14px;
  2678. -moz-box-shadow:none;
  2679. -webkit-box-shadow:none;
  2680. box-shadow:none;
  2681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:10px;
  2685. color:#FFFFFF;
  2686. text-align:center;
  2687. }
  2688. #u153151 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:55px;
  2692. top:413px;
  2693. width:27px;
  2694. height:14px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:10px;
  2700. color:#FFFFFF;
  2701. text-align:center;
  2702. }
  2703. #u153151 .text {
  2704. position:absolute;
  2705. align-self:flex-start;
  2706. padding:0px 0px 0px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u153151_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. }
  2715. #u153152_div {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:56px;
  2721. height:24px;
  2722. background:inherit;
  2723. background-color:rgba(24, 144, 255, 1);
  2724. border:none;
  2725. border-radius:28px;
  2726. -moz-box-shadow:none;
  2727. -webkit-box-shadow:none;
  2728. box-shadow:none;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. font-size:12px;
  2733. color:#FFFFFF;
  2734. text-align:center;
  2735. }
  2736. #u153152 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:328px;
  2740. top:542px;
  2741. width:56px;
  2742. height:24px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:12px;
  2748. color:#FFFFFF;
  2749. text-align:center;
  2750. }
  2751. #u153152 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:0px 2px 0px 2px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u153152_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. }
  2763. #u153153_div {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:56px;
  2769. height:24px;
  2770. background:inherit;
  2771. background-color:rgba(24, 144, 255, 1);
  2772. border:none;
  2773. border-radius:28px;
  2774. -moz-box-shadow:none;
  2775. -webkit-box-shadow:none;
  2776. box-shadow:none;
  2777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2778. font-weight:400;
  2779. font-style:normal;
  2780. font-size:12px;
  2781. color:#FFFFFF;
  2782. text-align:center;
  2783. }
  2784. #u153153 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:262px;
  2788. top:542px;
  2789. width:56px;
  2790. height:24px;
  2791. display:flex;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:12px;
  2796. color:#FFFFFF;
  2797. text-align:center;
  2798. }
  2799. #u153153 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:0px 2px 0px 2px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u153153_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. }
  2811. #u153154_div {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:25px;
  2817. height:17px;
  2818. background:inherit;
  2819. background-color:rgba(255, 255, 255, 0);
  2820. border:none;
  2821. border-radius:0px;
  2822. -moz-box-shadow:none;
  2823. -webkit-box-shadow:none;
  2824. box-shadow:none;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:12px;
  2829. color:#298FFF;
  2830. }
  2831. #u153154 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:227px;
  2835. top:545px;
  2836. width:25px;
  2837. height:17px;
  2838. display:flex;
  2839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2840. font-weight:400;
  2841. font-style:normal;
  2842. font-size:12px;
  2843. color:#298FFF;
  2844. }
  2845. #u153154 .text {
  2846. position:absolute;
  2847. align-self:flex-start;
  2848. padding:0px 0px 0px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u153154_text {
  2853. border-width:0px;
  2854. white-space:nowrap;
  2855. text-transform:none;
  2856. }