styles.css 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:886px;
  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. #u138944_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u138944 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u138944 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u138944_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u138945_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. #u138945 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u138945 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u138945_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u138946 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u138947_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. #u138947 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u138947 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u138947_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u138948 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u138949_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u138949 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u138949 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u138949_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u138950_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u138950 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u138950 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u138950_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u138951 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u138952_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u138952 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u138952 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u138952_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u138953_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u138953 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u138953 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u138953_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u138954_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u138954 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u138954 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u138954_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u138955_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u138955 {
  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. #u138955 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u138955_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u138956_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u138956 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u138956 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u138956_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u138957_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. #u138957 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u138957 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u138957_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u138958 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u138959_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u138959 {
  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. #u138959 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u138959_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u138960_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. #u138960 {
  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. #u138960 .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. #u138960_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u138961 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u138962_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u138962 {
  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. #u138962 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u138962_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u138963_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. #u138963 {
  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. #u138963 .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. #u138963_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u138964_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. #u138964 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u138964 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u138964_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u138965 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u138966_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u138966 {
  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. #u138966 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u138966_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u138967_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. #u138967 {
  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. #u138967 .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. #u138967_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u138968 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u138969_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u138969 {
  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. #u138969 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u138969_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u138970_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. #u138970 {
  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. #u138970 .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. #u138970_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u138971_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. }
  800. #u138971 {
  801. border-width:0px;
  802. position:absolute;
  803. left:29px;
  804. top:105px;
  805. width:375px;
  806. height:735px;
  807. display:flex;
  808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  809. font-weight:400;
  810. font-style:normal;
  811. }
  812. #u138971 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u138971_text {
  820. border-width:0px;
  821. word-wrap:break-word;
  822. text-transform:none;
  823. visibility:hidden;
  824. }
  825. #u138972_div {
  826. border-width:0px;
  827. position:absolute;
  828. left:0px;
  829. top:0px;
  830. width:375px;
  831. height:100px;
  832. background:inherit;
  833. background-color:rgba(255, 255, 255, 1);
  834. border:none;
  835. border-radius:4px;
  836. -moz-box-shadow:none;
  837. -webkit-box-shadow:none;
  838. box-shadow:none;
  839. }
  840. #u138972 {
  841. border-width:0px;
  842. position:absolute;
  843. left:29px;
  844. top:105px;
  845. width:375px;
  846. height:100px;
  847. display:flex;
  848. }
  849. #u138972 .text {
  850. position:absolute;
  851. align-self:center;
  852. padding:2px 2px 2px 2px;
  853. box-sizing:border-box;
  854. width:100%;
  855. }
  856. #u138972_text {
  857. border-width:0px;
  858. word-wrap:break-word;
  859. text-transform:none;
  860. visibility:hidden;
  861. }
  862. #u138973 {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:0px;
  868. height:0px;
  869. }
  870. #u138974_img {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:11px;
  876. height:18px;
  877. }
  878. #u138974 {
  879. border-width:0px;
  880. position:absolute;
  881. left:46px;
  882. top:79px;
  883. width:11px;
  884. height:18px;
  885. display:flex;
  886. }
  887. #u138974 .text {
  888. position:absolute;
  889. align-self:center;
  890. padding:2px 2px 2px 2px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u138974_text {
  895. border-width:0px;
  896. word-wrap:break-word;
  897. text-transform:none;
  898. visibility:hidden;
  899. }
  900. #u138975_div {
  901. border-width:0px;
  902. position:absolute;
  903. left:0px;
  904. top:0px;
  905. width:177px;
  906. height:22px;
  907. background:inherit;
  908. background-color:rgba(255, 255, 255, 0);
  909. border:none;
  910. border-left:0px;
  911. border-top:0px;
  912. border-right:0px;
  913. border-radius:0px;
  914. border-bottom-right-radius:0px;
  915. border-bottom-left-radius:0px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  920. font-weight:400;
  921. font-style:normal;
  922. font-size:16px;
  923. color:#000000;
  924. }
  925. #u138975 {
  926. border-width:0px;
  927. position:absolute;
  928. left:128px;
  929. top:74px;
  930. width:177px;
  931. height:22px;
  932. display:flex;
  933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  934. font-weight:400;
  935. font-style:normal;
  936. font-size:16px;
  937. color:#000000;
  938. }
  939. #u138975 .text {
  940. position:absolute;
  941. align-self:center;
  942. padding:0px 0px 0px 0px;
  943. box-sizing:border-box;
  944. width:100%;
  945. }
  946. #u138975_text {
  947. border-width:0px;
  948. white-space:nowrap;
  949. text-transform:none;
  950. }
  951. #u138976_div {
  952. border-width:0px;
  953. position:absolute;
  954. left:0px;
  955. top:0px;
  956. width:209px;
  957. height:70px;
  958. background:inherit;
  959. background-color:rgba(255, 255, 255, 0);
  960. border:none;
  961. border-top:0px;
  962. border-right:0px;
  963. border-bottom:0px;
  964. border-radius:0px;
  965. border-top-left-radius:0px;
  966. border-bottom-left-radius:0px;
  967. -moz-box-shadow:none;
  968. -webkit-box-shadow:none;
  969. box-shadow:none;
  970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  971. font-style:normal;
  972. line-height:30px;
  973. }
  974. #u138976 {
  975. border-width:0px;
  976. position:absolute;
  977. left:48px;
  978. top:115px;
  979. width:209px;
  980. height:70px;
  981. display:flex;
  982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  983. font-style:normal;
  984. line-height:30px;
  985. }
  986. #u138976 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:5px 10px 5px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u138976_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u138977_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:375px;
  1004. height:160px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-top:0px;
  1009. border-right:0px;
  1010. border-bottom:0px;
  1011. border-radius:0px;
  1012. border-top-left-radius:0px;
  1013. border-bottom-left-radius:0px;
  1014. -moz-box-shadow:none;
  1015. -webkit-box-shadow:none;
  1016. box-shadow:none;
  1017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1018. font-weight:400;
  1019. font-style:normal;
  1020. font-size:12px;
  1021. line-height:30px;
  1022. }
  1023. #u138977 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:29px;
  1027. top:315px;
  1028. width:375px;
  1029. height:160px;
  1030. display:flex;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:12px;
  1035. line-height:30px;
  1036. }
  1037. #u138977 .text {
  1038. position:absolute;
  1039. align-self:flex-start;
  1040. padding:5px 10px 5px 0px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u138977_text {
  1045. border-width:0px;
  1046. word-wrap:break-word;
  1047. text-transform:none;
  1048. }
  1049. #u138978 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:0px;
  1055. height:0px;
  1056. }
  1057. #u138979_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:375px;
  1063. height:80px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 1);
  1066. border:none;
  1067. border-radius:4px;
  1068. -moz-box-shadow:none;
  1069. -webkit-box-shadow:none;
  1070. box-shadow:none;
  1071. }
  1072. #u138979 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:29px;
  1076. top:215px;
  1077. width:375px;
  1078. height:80px;
  1079. display:flex;
  1080. }
  1081. #u138979 .text {
  1082. position:absolute;
  1083. align-self:center;
  1084. padding:2px 2px 2px 2px;
  1085. box-sizing:border-box;
  1086. width:100%;
  1087. }
  1088. #u138979_text {
  1089. border-width:0px;
  1090. word-wrap:break-word;
  1091. text-transform:none;
  1092. visibility:hidden;
  1093. }
  1094. #u138980_div {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:329px;
  1100. height:40px;
  1101. background:inherit;
  1102. background-color:rgba(255, 255, 255, 0);
  1103. border:none;
  1104. border-top:0px;
  1105. border-right:0px;
  1106. border-bottom:0px;
  1107. border-radius:0px;
  1108. border-top-left-radius:0px;
  1109. border-bottom-left-radius:0px;
  1110. -moz-box-shadow:none;
  1111. -webkit-box-shadow:none;
  1112. box-shadow:none;
  1113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1114. font-weight:400;
  1115. font-style:normal;
  1116. font-size:14px;
  1117. line-height:30px;
  1118. }
  1119. #u138980 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:46px;
  1123. top:225px;
  1124. width:329px;
  1125. height:40px;
  1126. display:flex;
  1127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1128. font-weight:400;
  1129. font-style:normal;
  1130. font-size:14px;
  1131. line-height:30px;
  1132. }
  1133. #u138980 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:5px 10px 5px 0px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u138980_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. }
  1145. #u138981 {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:0px;
  1151. height:0px;
  1152. }
  1153. #u138982_img {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:0px;
  1157. top:0px;
  1158. width:7px;
  1159. height:11px;
  1160. }
  1161. #u138982 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:385px;
  1165. top:240px;
  1166. width:7px;
  1167. height:11px;
  1168. display:flex;
  1169. -webkit-transform:rotate(180deg);
  1170. -moz-transform:rotate(180deg);
  1171. -ms-transform:rotate(180deg);
  1172. transform:rotate(180deg);
  1173. }
  1174. #u138982 .text {
  1175. position:absolute;
  1176. align-self:center;
  1177. padding:2px 2px 2px 2px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u138982_text {
  1182. border-width:0px;
  1183. word-wrap:break-word;
  1184. text-transform:none;
  1185. visibility:hidden;
  1186. }
  1187. #u138983_div {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:0px;
  1191. top:0px;
  1192. width:156px;
  1193. height:40px;
  1194. background:inherit;
  1195. background-color:rgba(255, 255, 255, 0);
  1196. border:none;
  1197. border-radius:0px;
  1198. -moz-box-shadow:none;
  1199. -webkit-box-shadow:none;
  1200. box-shadow:none;
  1201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1202. font-weight:400;
  1203. font-style:normal;
  1204. color:#000000;
  1205. }
  1206. #u138983 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:46px;
  1210. top:255px;
  1211. width:156px;
  1212. height:40px;
  1213. display:flex;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. color:#000000;
  1218. }
  1219. #u138983 .text {
  1220. position:absolute;
  1221. align-self:center;
  1222. padding:0px 0px 0px 0px;
  1223. box-sizing:border-box;
  1224. width:100%;
  1225. }
  1226. #u138983_text {
  1227. border-width:0px;
  1228. white-space:nowrap;
  1229. text-transform:none;
  1230. }
  1231. #u138985_img {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:433px;
  1237. height:865px;
  1238. }
  1239. #u138985 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:453px;
  1243. top:0px;
  1244. width:433px;
  1245. height:865px;
  1246. display:flex;
  1247. }
  1248. #u138985 .text {
  1249. position:absolute;
  1250. align-self:center;
  1251. padding:2px 2px 2px 2px;
  1252. box-sizing:border-box;
  1253. width:100%;
  1254. }
  1255. #u138985_text {
  1256. border-width:0px;
  1257. word-wrap:break-word;
  1258. text-transform:none;
  1259. visibility:hidden;
  1260. }
  1261. #u138986_div {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:0px;
  1265. top:0px;
  1266. width:375px;
  1267. height:40px;
  1268. background:inherit;
  1269. background-color:rgba(255, 255, 255, 1);
  1270. box-sizing:border-box;
  1271. border-width:1px;
  1272. border-style:solid;
  1273. border-color:rgba(215, 215, 215, 1);
  1274. border-left:0px;
  1275. border-top:0px;
  1276. border-right:0px;
  1277. border-radius:0px;
  1278. border-bottom-right-radius:0px;
  1279. border-bottom-left-radius:0px;
  1280. -moz-box-shadow:none;
  1281. -webkit-box-shadow:none;
  1282. box-shadow:none;
  1283. }
  1284. #u138986 {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:482px;
  1288. top:67px;
  1289. width:375px;
  1290. height:40px;
  1291. display:flex;
  1292. }
  1293. #u138986 .text {
  1294. position:absolute;
  1295. align-self:center;
  1296. padding:2px 2px 2px 2px;
  1297. box-sizing:border-box;
  1298. width:100%;
  1299. }
  1300. #u138986_text {
  1301. border-width:0px;
  1302. word-wrap:break-word;
  1303. text-transform:none;
  1304. visibility:hidden;
  1305. }
  1306. #u138987 {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:0px;
  1310. top:0px;
  1311. width:0px;
  1312. height:0px;
  1313. }
  1314. #u138988_div {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:88px;
  1320. height:32px;
  1321. background:inherit;
  1322. background-color:rgba(255, 255, 255, 1);
  1323. box-sizing:border-box;
  1324. border-width:1px;
  1325. border-style:solid;
  1326. border-color:rgba(242, 242, 242, 1);
  1327. border-radius:33px;
  1328. -moz-box-shadow:none;
  1329. -webkit-box-shadow:none;
  1330. box-shadow:none;
  1331. }
  1332. #u138988 {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:762px;
  1336. top:71px;
  1337. width:88px;
  1338. height:32px;
  1339. display:flex;
  1340. }
  1341. #u138988 .text {
  1342. position:absolute;
  1343. align-self:center;
  1344. padding:2px 2px 2px 2px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u138988_text {
  1349. border-width:0px;
  1350. word-wrap:break-word;
  1351. text-transform:none;
  1352. visibility:hidden;
  1353. }
  1354. #u138989 {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:0px;
  1358. top:0px;
  1359. width:0px;
  1360. height:0px;
  1361. }
  1362. #u138990_img {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:0px;
  1366. top:0px;
  1367. width:18px;
  1368. height:18px;
  1369. }
  1370. #u138990 {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:825px;
  1374. top:78px;
  1375. width:18px;
  1376. height:18px;
  1377. display:flex;
  1378. }
  1379. #u138990 .text {
  1380. position:absolute;
  1381. align-self:center;
  1382. padding:2px 2px 2px 2px;
  1383. box-sizing:border-box;
  1384. width:100%;
  1385. }
  1386. #u138990_text {
  1387. border-width:0px;
  1388. word-wrap:break-word;
  1389. text-transform:none;
  1390. visibility:hidden;
  1391. }
  1392. #u138991_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:6px;
  1398. height:6px;
  1399. }
  1400. #u138991 {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:831px;
  1404. top:84px;
  1405. width:6px;
  1406. height:6px;
  1407. display:flex;
  1408. }
  1409. #u138991 .text {
  1410. position:absolute;
  1411. align-self:center;
  1412. padding:2px 2px 2px 2px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u138991_text {
  1417. border-width:0px;
  1418. word-wrap:break-word;
  1419. text-transform:none;
  1420. visibility:hidden;
  1421. }
  1422. #u138992 {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:0px;
  1428. height:0px;
  1429. }
  1430. #u138993_img {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:5px;
  1436. height:5px;
  1437. }
  1438. #u138993 {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:776px;
  1442. top:85px;
  1443. width:5px;
  1444. height:5px;
  1445. display:flex;
  1446. }
  1447. #u138993 .text {
  1448. position:absolute;
  1449. align-self:center;
  1450. padding:2px 2px 2px 2px;
  1451. box-sizing:border-box;
  1452. width:100%;
  1453. }
  1454. #u138993_text {
  1455. border-width:0px;
  1456. word-wrap:break-word;
  1457. text-transform:none;
  1458. visibility:hidden;
  1459. }
  1460. #u138994_img {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:5px;
  1466. height:5px;
  1467. }
  1468. #u138994 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:792px;
  1472. top:85px;
  1473. width:5px;
  1474. height:5px;
  1475. display:flex;
  1476. }
  1477. #u138994 .text {
  1478. position:absolute;
  1479. align-self:center;
  1480. padding:2px 2px 2px 2px;
  1481. box-sizing:border-box;
  1482. width:100%;
  1483. }
  1484. #u138994_text {
  1485. border-width:0px;
  1486. word-wrap:break-word;
  1487. text-transform:none;
  1488. visibility:hidden;
  1489. }
  1490. #u138995_img {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:7px;
  1496. height:7px;
  1497. }
  1498. #u138995 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:783px;
  1502. top:84px;
  1503. width:7px;
  1504. height:7px;
  1505. display:flex;
  1506. }
  1507. #u138995 .text {
  1508. position:absolute;
  1509. align-self:center;
  1510. padding:2px 2px 2px 2px;
  1511. box-sizing:border-box;
  1512. width:100%;
  1513. }
  1514. #u138995_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u138996_img {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:0px;
  1525. width:19px;
  1526. height:2px;
  1527. }
  1528. #u138996 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:800px;
  1532. top:87px;
  1533. width:18px;
  1534. height:1px;
  1535. display:flex;
  1536. -webkit-transform:rotate(90deg);
  1537. -moz-transform:rotate(90deg);
  1538. -ms-transform:rotate(90deg);
  1539. transform:rotate(90deg);
  1540. }
  1541. #u138996 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u138996_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u138997_img {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:375px;
  1560. height:44px;
  1561. }
  1562. #u138997 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:482px;
  1566. top:24px;
  1567. width:375px;
  1568. height:44px;
  1569. display:flex;
  1570. }
  1571. #u138997 .text {
  1572. position:absolute;
  1573. align-self:center;
  1574. padding:2px 2px 2px 2px;
  1575. box-sizing:border-box;
  1576. width:100%;
  1577. }
  1578. #u138997_text {
  1579. border-width:0px;
  1580. word-wrap:break-word;
  1581. text-transform:none;
  1582. visibility:hidden;
  1583. }
  1584. #u138998_div {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:0px;
  1588. top:0px;
  1589. width:375px;
  1590. height:50px;
  1591. background:inherit;
  1592. background-color:rgba(255, 255, 255, 1);
  1593. box-sizing:border-box;
  1594. border-width:1px;
  1595. border-style:solid;
  1596. border-color:rgba(242, 242, 242, 1);
  1597. border-radius:26px;
  1598. border-top-left-radius:0px;
  1599. border-top-right-radius:0px;
  1600. -moz-box-shadow:none;
  1601. -webkit-box-shadow:none;
  1602. box-shadow:none;
  1603. }
  1604. #u138998 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:482px;
  1608. top:788px;
  1609. width:375px;
  1610. height:50px;
  1611. display:flex;
  1612. }
  1613. #u138998 .text {
  1614. position:absolute;
  1615. align-self:center;
  1616. padding:2px 2px 2px 2px;
  1617. box-sizing:border-box;
  1618. width:100%;
  1619. }
  1620. #u138998_text {
  1621. border-width:0px;
  1622. word-wrap:break-word;
  1623. text-transform:none;
  1624. visibility:hidden;
  1625. }
  1626. #u138999 {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:0px;
  1632. height:0px;
  1633. }
  1634. #u139000_img {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:0px;
  1638. top:0px;
  1639. width:24px;
  1640. height:24px;
  1641. }
  1642. #u139000 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:522px;
  1646. top:792px;
  1647. width:24px;
  1648. height:24px;
  1649. display:flex;
  1650. font-size:8px;
  1651. }
  1652. #u139000 .text {
  1653. position:absolute;
  1654. align-self:center;
  1655. padding:2px 2px 2px 2px;
  1656. box-sizing:border-box;
  1657. width:100%;
  1658. }
  1659. #u139000_text {
  1660. border-width:0px;
  1661. word-wrap:break-word;
  1662. text-transform:none;
  1663. }
  1664. #u139001_div {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:25px;
  1670. height:17px;
  1671. background:inherit;
  1672. background-color:rgba(255, 255, 255, 0);
  1673. border:none;
  1674. border-radius:0px;
  1675. -moz-box-shadow:none;
  1676. -webkit-box-shadow:none;
  1677. box-shadow:none;
  1678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:12px;
  1682. }
  1683. #u139001 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:522px;
  1687. top:817px;
  1688. width:25px;
  1689. height:17px;
  1690. display:flex;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:12px;
  1695. }
  1696. #u139001 .text {
  1697. position:absolute;
  1698. align-self:flex-start;
  1699. padding:0px 0px 0px 0px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u139001_text {
  1704. border-width:0px;
  1705. white-space:nowrap;
  1706. text-transform:none;
  1707. }
  1708. #u139002 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:0px;
  1714. height:0px;
  1715. }
  1716. #u139003_img {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:24px;
  1722. height:24px;
  1723. }
  1724. #u139003 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:792px;
  1728. top:794px;
  1729. width:24px;
  1730. height:24px;
  1731. display:flex;
  1732. font-size:8px;
  1733. }
  1734. #u139003 .text {
  1735. position:absolute;
  1736. align-self:center;
  1737. padding:2px 2px 2px 2px;
  1738. box-sizing:border-box;
  1739. width:100%;
  1740. }
  1741. #u139003_text {
  1742. border-width:0px;
  1743. word-wrap:break-word;
  1744. text-transform:none;
  1745. }
  1746. #u139004_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:25px;
  1752. height:17px;
  1753. background:inherit;
  1754. background-color:rgba(255, 255, 255, 0);
  1755. border:none;
  1756. border-radius:0px;
  1757. -moz-box-shadow:none;
  1758. -webkit-box-shadow:none;
  1759. box-shadow:none;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:12px;
  1764. }
  1765. #u139004 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:792px;
  1769. top:819px;
  1770. width:25px;
  1771. height:17px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:12px;
  1777. }
  1778. #u139004 .text {
  1779. position:absolute;
  1780. align-self:flex-start;
  1781. padding:0px 0px 0px 0px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u139004_text {
  1786. border-width:0px;
  1787. white-space:nowrap;
  1788. text-transform:none;
  1789. }
  1790. #u139005_div {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:375px;
  1796. height:681px;
  1797. background:inherit;
  1798. background-color:rgba(242, 242, 242, 0.462745098039216);
  1799. border:none;
  1800. border-radius:0px;
  1801. -moz-box-shadow:none;
  1802. -webkit-box-shadow:none;
  1803. box-shadow:none;
  1804. }
  1805. #u139005 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:482px;
  1809. top:107px;
  1810. width:375px;
  1811. height:681px;
  1812. display:flex;
  1813. }
  1814. #u139005 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u139005_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. visibility:hidden;
  1826. }
  1827. #u139006 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:0px;
  1833. height:0px;
  1834. }
  1835. #u139007_img {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:24px;
  1841. height:24px;
  1842. }
  1843. #u139007 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:704px;
  1847. top:792px;
  1848. width:24px;
  1849. height:24px;
  1850. display:flex;
  1851. font-size:8px;
  1852. }
  1853. #u139007 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 2px 2px 2px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u139007_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. }
  1865. #u139008_div {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:37px;
  1871. height:17px;
  1872. background:inherit;
  1873. background-color:rgba(255, 255, 255, 0);
  1874. border:none;
  1875. border-radius:0px;
  1876. -moz-box-shadow:none;
  1877. -webkit-box-shadow:none;
  1878. box-shadow:none;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:12px;
  1883. }
  1884. #u139008 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:698px;
  1888. top:817px;
  1889. width:37px;
  1890. height:17px;
  1891. display:flex;
  1892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1893. font-weight:400;
  1894. font-style:normal;
  1895. font-size:12px;
  1896. }
  1897. #u139008 .text {
  1898. position:absolute;
  1899. align-self:flex-start;
  1900. padding:0px 0px 0px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u139008_text {
  1905. border-width:0px;
  1906. white-space:nowrap;
  1907. text-transform:none;
  1908. }
  1909. #u139009 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:0px;
  1915. height:0px;
  1916. }
  1917. #u139010_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:24px;
  1923. height:24px;
  1924. }
  1925. #u139010 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:610px;
  1929. top:792px;
  1930. width:24px;
  1931. height:24px;
  1932. display:flex;
  1933. font-size:8px;
  1934. }
  1935. #u139010 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 2px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u139010_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u139011_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:37px;
  1953. height:17px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 0);
  1956. border:none;
  1957. border-radius:0px;
  1958. -moz-box-shadow:none;
  1959. -webkit-box-shadow:none;
  1960. box-shadow:none;
  1961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:12px;
  1965. }
  1966. #u139011 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:604px;
  1970. top:817px;
  1971. width:37px;
  1972. height:17px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:12px;
  1978. }
  1979. #u139011 .text {
  1980. position:absolute;
  1981. align-self:flex-start;
  1982. padding:0px 0px 0px 0px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u139011_text {
  1987. border-width:0px;
  1988. white-space:nowrap;
  1989. text-transform:none;
  1990. }
  1991. #u139012_div {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:375px;
  1997. height:735px;
  1998. background:inherit;
  1999. background-color:rgba(242, 242, 242, 1);
  2000. border:none;
  2001. border-top:0px;
  2002. border-radius:25px;
  2003. border-top-left-radius:0px;
  2004. border-top-right-radius:0px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. }
  2012. #u139012 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:482px;
  2016. top:106px;
  2017. width:375px;
  2018. height:735px;
  2019. display:flex;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. }
  2024. #u139012 .text {
  2025. position:absolute;
  2026. align-self:center;
  2027. padding:2px 2px 2px 2px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u139012_text {
  2032. border-width:0px;
  2033. word-wrap:break-word;
  2034. text-transform:none;
  2035. visibility:hidden;
  2036. }
  2037. #u139013 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:0px;
  2043. height:0px;
  2044. }
  2045. #u139014_img {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:11px;
  2051. height:18px;
  2052. }
  2053. #u139014 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:499px;
  2057. top:80px;
  2058. width:11px;
  2059. height:18px;
  2060. display:flex;
  2061. }
  2062. #u139014 .text {
  2063. position:absolute;
  2064. align-self:center;
  2065. padding:2px 2px 2px 2px;
  2066. box-sizing:border-box;
  2067. width:100%;
  2068. }
  2069. #u139014_text {
  2070. border-width:0px;
  2071. word-wrap:break-word;
  2072. text-transform:none;
  2073. visibility:hidden;
  2074. }
  2075. #u139015_div {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:61px;
  2081. height:40px;
  2082. background:inherit;
  2083. background-color:rgba(255, 255, 255, 0);
  2084. border:none;
  2085. border-radius:0px;
  2086. -moz-box-shadow:none;
  2087. -webkit-box-shadow:none;
  2088. box-shadow:none;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:12px;
  2093. color:#555555;
  2094. line-height:25px;
  2095. }
  2096. #u139015 {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:499px;
  2100. top:227px;
  2101. width:61px;
  2102. height:40px;
  2103. display:flex;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:12px;
  2108. color:#555555;
  2109. line-height:25px;
  2110. }
  2111. #u139015 .text {
  2112. position:absolute;
  2113. align-self:center;
  2114. padding:0px 0px 0px 0px;
  2115. box-sizing:border-box;
  2116. width:100%;
  2117. }
  2118. #u139015_text {
  2119. border-width:0px;
  2120. white-space:nowrap;
  2121. text-transform:none;
  2122. }
  2123. #u139016_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:109px;
  2129. height:40px;
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2143. font-weight:500;
  2144. font-style:normal;
  2145. font-size:18px;
  2146. line-height:30px;
  2147. }
  2148. #u139016 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:615px;
  2152. top:69px;
  2153. width:109px;
  2154. height:40px;
  2155. display:flex;
  2156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2157. font-weight:500;
  2158. font-style:normal;
  2159. font-size:18px;
  2160. line-height:30px;
  2161. }
  2162. #u139016 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:0px 0px 0px 0px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u139016_text {
  2170. border-width:0px;
  2171. white-space:nowrap;
  2172. text-transform:none;
  2173. }
  2174. #u139017 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:0px;
  2180. height:0px;
  2181. }
  2182. #u139018_div {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:375px;
  2188. height:60px;
  2189. background:inherit;
  2190. background-color:rgba(255, 255, 255, 1);
  2191. border:none;
  2192. border-radius:0px;
  2193. -moz-box-shadow:none;
  2194. -webkit-box-shadow:none;
  2195. box-shadow:none;
  2196. }
  2197. #u139018 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:482px;
  2201. top:267px;
  2202. width:375px;
  2203. height:60px;
  2204. display:flex;
  2205. }
  2206. #u139018 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 2px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u139018_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. visibility:hidden;
  2218. }
  2219. #u139019_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:37px;
  2225. height:20px;
  2226. background:inherit;
  2227. background-color:rgba(255, 255, 255, 0);
  2228. border:none;
  2229. border-radius:0px;
  2230. -moz-box-shadow:none;
  2231. -webkit-box-shadow:none;
  2232. box-shadow:none;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. color:#1890FF;
  2237. }
  2238. #u139019 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:501px;
  2242. top:287px;
  2243. width:37px;
  2244. height:20px;
  2245. display:flex;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. color:#1890FF;
  2250. }
  2251. #u139019 .text {
  2252. position:absolute;
  2253. align-self:flex-start;
  2254. padding:0px 0px 0px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u139019_text {
  2259. border-width:0px;
  2260. white-space:nowrap;
  2261. text-transform:none;
  2262. }
  2263. #u139020 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:0px;
  2269. height:0px;
  2270. }
  2271. #u139021_div {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:375px;
  2277. height:60px;
  2278. background:inherit;
  2279. background-color:rgba(255, 255, 255, 1);
  2280. border:none;
  2281. border-radius:0px;
  2282. -moz-box-shadow:none;
  2283. -webkit-box-shadow:none;
  2284. box-shadow:none;
  2285. }
  2286. #u139021 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:482px;
  2290. top:328px;
  2291. width:375px;
  2292. height:60px;
  2293. display:flex;
  2294. }
  2295. #u139021 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u139021_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u139022_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:33px;
  2314. height:30px;
  2315. }
  2316. #u139022 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:501px;
  2320. top:343px;
  2321. width:33px;
  2322. height:30px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. }
  2328. #u139022 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 2px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u139022_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. }
  2340. #u139023_div {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:25px;
  2346. height:40px;
  2347. background:inherit;
  2348. background-color:rgba(255, 255, 255, 0);
  2349. border:none;
  2350. border-radius:0px;
  2351. -moz-box-shadow:none;
  2352. -webkit-box-shadow:none;
  2353. box-shadow:none;
  2354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2355. font-weight:400;
  2356. font-style:normal;
  2357. font-size:12px;
  2358. color:#0089FE;
  2359. line-height:25px;
  2360. }
  2361. #u139023 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:822px;
  2365. top:338px;
  2366. width:25px;
  2367. height:40px;
  2368. display:flex;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:12px;
  2373. color:#0089FE;
  2374. line-height:25px;
  2375. }
  2376. #u139023 .text {
  2377. position:absolute;
  2378. align-self:center;
  2379. padding:0px 0px 0px 0px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u139023_text {
  2384. border-width:0px;
  2385. white-space:nowrap;
  2386. text-transform:none;
  2387. }
  2388. #u139024_div {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:43px;
  2394. height:40px;
  2395. background:inherit;
  2396. background-color:rgba(255, 255, 255, 0);
  2397. border:none;
  2398. border-radius:0px;
  2399. -moz-box-shadow:none;
  2400. -webkit-box-shadow:none;
  2401. box-shadow:none;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. color:#555555;
  2406. line-height:25px;
  2407. }
  2408. #u139024 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:548px;
  2412. top:338px;
  2413. width:43px;
  2414. height:40px;
  2415. display:flex;
  2416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. color:#555555;
  2420. line-height:25px;
  2421. }
  2422. #u139024 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:0px 0px 0px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u139024_text {
  2430. border-width:0px;
  2431. white-space:nowrap;
  2432. text-transform:none;
  2433. }
  2434. #u139025 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:0px;
  2440. height:0px;
  2441. }
  2442. #u139026_div {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:375px;
  2448. height:60px;
  2449. background:inherit;
  2450. background-color:rgba(255, 255, 255, 1);
  2451. border:none;
  2452. border-radius:0px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. }
  2457. #u139026 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:482px;
  2461. top:389px;
  2462. width:375px;
  2463. height:60px;
  2464. display:flex;
  2465. }
  2466. #u139026 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 2px 2px 2px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u139026_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u139027_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:33px;
  2485. height:30px;
  2486. }
  2487. #u139027 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:501px;
  2491. top:404px;
  2492. width:33px;
  2493. height:30px;
  2494. display:flex;
  2495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. }
  2499. #u139027 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u139027_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. }
  2511. #u139028_div {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:25px;
  2517. height:40px;
  2518. background:inherit;
  2519. background-color:rgba(255, 255, 255, 0);
  2520. border:none;
  2521. border-radius:0px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:12px;
  2529. color:#0089FE;
  2530. line-height:25px;
  2531. }
  2532. #u139028 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:822px;
  2536. top:399px;
  2537. width:25px;
  2538. height:40px;
  2539. display:flex;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:12px;
  2544. color:#0089FE;
  2545. line-height:25px;
  2546. }
  2547. #u139028 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:0px 0px 0px 0px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u139028_text {
  2555. border-width:0px;
  2556. white-space:nowrap;
  2557. text-transform:none;
  2558. }
  2559. #u139029_div {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:29px;
  2565. height:40px;
  2566. background:inherit;
  2567. background-color:rgba(255, 255, 255, 0);
  2568. border:none;
  2569. border-radius:0px;
  2570. -moz-box-shadow:none;
  2571. -webkit-box-shadow:none;
  2572. box-shadow:none;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. color:#555555;
  2577. line-height:25px;
  2578. }
  2579. #u139029 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:548px;
  2583. top:399px;
  2584. width:29px;
  2585. height:40px;
  2586. display:flex;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. color:#555555;
  2591. line-height:25px;
  2592. }
  2593. #u139029 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:0px 0px 0px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u139029_text {
  2601. border-width:0px;
  2602. white-space:nowrap;
  2603. text-transform:none;
  2604. }
  2605. #u139030 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:0px;
  2611. height:0px;
  2612. }
  2613. #u139031_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:375px;
  2619. height:60px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 1);
  2622. border:none;
  2623. border-radius:0px;
  2624. -moz-box-shadow:none;
  2625. -webkit-box-shadow:none;
  2626. box-shadow:none;
  2627. }
  2628. #u139031 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:482px;
  2632. top:450px;
  2633. width:375px;
  2634. height:60px;
  2635. display:flex;
  2636. }
  2637. #u139031 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 2px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u139031_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. visibility:hidden;
  2649. }
  2650. #u139032_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:33px;
  2656. height:30px;
  2657. }
  2658. #u139032 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:501px;
  2662. top:465px;
  2663. width:33px;
  2664. height:30px;
  2665. display:flex;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. }
  2670. #u139032 .text {
  2671. position:absolute;
  2672. align-self:center;
  2673. padding:2px 2px 2px 2px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u139032_text {
  2678. border-width:0px;
  2679. word-wrap:break-word;
  2680. text-transform:none;
  2681. }
  2682. #u139033_div {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:25px;
  2688. height:40px;
  2689. background:inherit;
  2690. background-color:rgba(255, 255, 255, 0);
  2691. border:none;
  2692. border-radius:0px;
  2693. -moz-box-shadow:none;
  2694. -webkit-box-shadow:none;
  2695. box-shadow:none;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. color:#0089FE;
  2701. line-height:25px;
  2702. }
  2703. #u139033 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:822px;
  2707. top:460px;
  2708. width:25px;
  2709. height:40px;
  2710. display:flex;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:12px;
  2715. color:#0089FE;
  2716. line-height:25px;
  2717. }
  2718. #u139033 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:0px 0px 0px 0px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u139033_text {
  2726. border-width:0px;
  2727. white-space:nowrap;
  2728. text-transform:none;
  2729. }
  2730. #u139034_div {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:29px;
  2736. height:40px;
  2737. background:inherit;
  2738. background-color:rgba(255, 255, 255, 0);
  2739. border:none;
  2740. border-radius:0px;
  2741. -moz-box-shadow:none;
  2742. -webkit-box-shadow:none;
  2743. box-shadow:none;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. color:#555555;
  2748. line-height:25px;
  2749. }
  2750. #u139034 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:548px;
  2754. top:460px;
  2755. width:29px;
  2756. height:40px;
  2757. display:flex;
  2758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. color:#555555;
  2762. line-height:25px;
  2763. }
  2764. #u139034 .text {
  2765. position:absolute;
  2766. align-self:center;
  2767. padding:0px 0px 0px 0px;
  2768. box-sizing:border-box;
  2769. width:100%;
  2770. }
  2771. #u139034_text {
  2772. border-width:0px;
  2773. white-space:nowrap;
  2774. text-transform:none;
  2775. }
  2776. #u139035_div {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:341px;
  2782. height:40px;
  2783. background:inherit;
  2784. background-color:rgba(0, 137, 254, 1);
  2785. border:none;
  2786. border-radius:45px;
  2787. -moz-box-shadow:none;
  2788. -webkit-box-shadow:none;
  2789. box-shadow:none;
  2790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:14px;
  2794. color:#FFFFFF;
  2795. }
  2796. #u139035 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:501px;
  2800. top:784px;
  2801. width:341px;
  2802. height:40px;
  2803. display:flex;
  2804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:14px;
  2808. color:#FFFFFF;
  2809. }
  2810. #u139035 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 2px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u139035_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. }
  2822. #u139036 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:389px;
  2826. top:251px;
  2827. width:0px;
  2828. height:0px;
  2829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2830. font-weight:400;
  2831. font-style:normal;
  2832. color:#0089FE;
  2833. }
  2834. #u139036_seg0 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:-5px;
  2838. top:-5px;
  2839. width:10px;
  2840. height:5px;
  2841. }
  2842. #u139036_seg1 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:-24px;
  2846. top:-5px;
  2847. width:29px;
  2848. height:10px;
  2849. }
  2850. #u139036_seg2 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:-24px;
  2854. top:-167px;
  2855. width:10px;
  2856. height:172px;
  2857. }
  2858. #u139036_seg3 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:-24px;
  2862. top:-167px;
  2863. width:134px;
  2864. height:10px;
  2865. }
  2866. #u139036_seg4 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:-9px;
  2870. top:-12px;
  2871. width:18px;
  2872. height:18px;
  2873. }
  2874. #u139036_seg5 {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:93px;
  2878. top:-178px;
  2879. width:32px;
  2880. height:32px;
  2881. }
  2882. #u139036_text {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:-69px;
  2886. top:-144px;
  2887. width:100px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. visibility:hidden;
  2891. }
  2892. #u139037_div {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:375px;
  2898. height:60px;
  2899. background:inherit;
  2900. background-color:rgba(255, 255, 255, 1);
  2901. border:none;
  2902. border-radius:0px;
  2903. -moz-box-shadow:none;
  2904. -webkit-box-shadow:none;
  2905. box-shadow:none;
  2906. }
  2907. #u139037 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:482px;
  2911. top:106px;
  2912. width:375px;
  2913. height:60px;
  2914. display:flex;
  2915. }
  2916. #u139037 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u139037_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u139038 label {
  2930. left:0px;
  2931. width:100%;
  2932. }
  2933. #u139038_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:4px;
  2938. width:12px;
  2939. height:12px;
  2940. }
  2941. #u139038 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:505px;
  2945. top:126px;
  2946. width:100px;
  2947. height:20px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:14px;
  2953. }
  2954. #u139038 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:0px 2px 0px 2px;
  2958. box-sizing:border-box;
  2959. }
  2960. #u139038_img.selected {
  2961. }
  2962. #u139038.selected {
  2963. }
  2964. #u139038_img.disabled {
  2965. }
  2966. #u139038.disabled {
  2967. }
  2968. #u139038_img.selectedDisabled {
  2969. }
  2970. #u139038.selectedDisabled {
  2971. }
  2972. #u139038_text {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:14px;
  2976. top:0px;
  2977. width:84px;
  2978. word-wrap:break-word;
  2979. text-transform:none;
  2980. }
  2981. #u139038_input {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:0px;
  2987. height:0px;
  2988. opacity:0;
  2989. }
  2990. #u139039_div {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:375px;
  2996. height:60px;
  2997. background:inherit;
  2998. background-color:rgba(255, 255, 255, 1);
  2999. border:none;
  3000. border-radius:0px;
  3001. -moz-box-shadow:none;
  3002. -webkit-box-shadow:none;
  3003. box-shadow:none;
  3004. }
  3005. #u139039 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:482px;
  3009. top:167px;
  3010. width:375px;
  3011. height:60px;
  3012. display:flex;
  3013. }
  3014. #u139039 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 2px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u139039_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. visibility:hidden;
  3026. }
  3027. #u139040 label {
  3028. left:0px;
  3029. width:100%;
  3030. }
  3031. #u139040_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:4px;
  3036. width:12px;
  3037. height:12px;
  3038. }
  3039. #u139040 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:505px;
  3043. top:187px;
  3044. width:212px;
  3045. height:20px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:14px;
  3051. }
  3052. #u139040 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:0px 2px 0px 2px;
  3056. box-sizing:border-box;
  3057. }
  3058. #u139040_img.selected {
  3059. }
  3060. #u139040.selected {
  3061. }
  3062. #u139040_img.disabled {
  3063. }
  3064. #u139040.disabled {
  3065. }
  3066. #u139040_img.selectedDisabled {
  3067. }
  3068. #u139040.selectedDisabled {
  3069. }
  3070. #u139040_text {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:14px;
  3074. top:0px;
  3075. width:196px;
  3076. word-wrap:break-word;
  3077. text-transform:none;
  3078. }
  3079. #u139040_input {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:0px;
  3085. height:0px;
  3086. opacity:0;
  3087. }