styles.css 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435
  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. #u36664_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u36664 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u36664 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u36664_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u36665_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u36665 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u36665 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u36665_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u36666 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u36667_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u36667 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u36667 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u36667_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u36668 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u36669_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u36669 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u36669 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u36669_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u36670_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u36670 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u36670 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u36670_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u36671 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u36672_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u36672 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u36672 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u36672_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u36673_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u36673 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u36673 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u36673_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u36674_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u36674 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u36674 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u36674_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u36675_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u36675 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u36675 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u36675_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u36676_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u36676 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u36676 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u36676_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u36677_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u36677 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u36677 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u36677_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u36678 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u36679_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u36679 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u36679 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u36679_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u36680_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u36680 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u36680 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u36680_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u36681 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u36682_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u36682 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u36682 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u36682_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u36683_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u36683 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u36683 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u36683_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u36684_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u36684 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u36684 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u36684_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u36685 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u36686_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u36686 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u36686 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u36686_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u36687_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u36687 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u36687 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u36687_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u36688 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u36689_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u36689 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u36689 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u36689_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u36690_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u36690 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u36690 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u36690_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u36691_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:735px;
  783. background:inherit;
  784. background-color:rgba(242, 242, 242, 0.996078431372549);
  785. border:none;
  786. border-top:0px;
  787. border-radius:35px;
  788. border-top-left-radius:0px;
  789. border-top-right-radius:0px;
  790. -moz-box-shadow:none;
  791. -webkit-box-shadow:none;
  792. box-shadow:none;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. }
  797. #u36691 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:106px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  806. font-weight:400;
  807. font-style:normal;
  808. }
  809. #u36691 .text {
  810. position:absolute;
  811. align-self:center;
  812. padding:2px 2px 2px 2px;
  813. box-sizing:border-box;
  814. width:100%;
  815. }
  816. #u36691_text {
  817. border-width:0px;
  818. word-wrap:break-word;
  819. text-transform:none;
  820. visibility:hidden;
  821. }
  822. #u36692_div {
  823. border-width:0px;
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:375px;
  828. height:285px;
  829. background:inherit;
  830. background-color:rgba(255, 255, 255, 0.996078431372549);
  831. border:none;
  832. border-top:0px;
  833. border-radius:0px;
  834. border-top-left-radius:0px;
  835. border-top-right-radius:0px;
  836. -moz-box-shadow:none;
  837. -webkit-box-shadow:none;
  838. box-shadow:none;
  839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  840. font-weight:400;
  841. font-style:normal;
  842. }
  843. #u36692 {
  844. border-width:0px;
  845. position:absolute;
  846. left:29px;
  847. top:496px;
  848. width:375px;
  849. height:285px;
  850. display:flex;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. }
  855. #u36692 .text {
  856. position:absolute;
  857. align-self:center;
  858. padding:2px 2px 2px 2px;
  859. box-sizing:border-box;
  860. width:100%;
  861. }
  862. #u36692_text {
  863. border-width:0px;
  864. word-wrap:break-word;
  865. text-transform:none;
  866. visibility:hidden;
  867. }
  868. #u36693_img {
  869. border-width:0px;
  870. position:absolute;
  871. left:0px;
  872. top:0px;
  873. width:375px;
  874. height:44px;
  875. }
  876. #u36693 {
  877. border-width:0px;
  878. position:absolute;
  879. left:29px;
  880. top:24px;
  881. width:375px;
  882. height:44px;
  883. display:flex;
  884. }
  885. #u36693 .text {
  886. position:absolute;
  887. align-self:center;
  888. padding:2px 2px 2px 2px;
  889. box-sizing:border-box;
  890. width:100%;
  891. }
  892. #u36693_text {
  893. border-width:0px;
  894. word-wrap:break-word;
  895. text-transform:none;
  896. visibility:hidden;
  897. }
  898. #u36694 {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:0px;
  904. height:0px;
  905. }
  906. #u36695_div {
  907. border-width:0px;
  908. position:absolute;
  909. left:0px;
  910. top:0px;
  911. width:88px;
  912. height:32px;
  913. background:inherit;
  914. background-color:rgba(255, 255, 255, 1);
  915. box-sizing:border-box;
  916. border-width:1px;
  917. border-style:solid;
  918. border-color:rgba(242, 242, 242, 1);
  919. border-radius:33px;
  920. -moz-box-shadow:none;
  921. -webkit-box-shadow:none;
  922. box-shadow:none;
  923. }
  924. #u36695 {
  925. border-width:0px;
  926. position:absolute;
  927. left:309px;
  928. top:71px;
  929. width:88px;
  930. height:32px;
  931. display:flex;
  932. }
  933. #u36695 .text {
  934. position:absolute;
  935. align-self:center;
  936. padding:2px 2px 2px 2px;
  937. box-sizing:border-box;
  938. width:100%;
  939. }
  940. #u36695_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u36696 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u36697_img {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:18px;
  960. height:18px;
  961. }
  962. #u36697 {
  963. border-width:0px;
  964. position:absolute;
  965. left:372px;
  966. top:78px;
  967. width:18px;
  968. height:18px;
  969. display:flex;
  970. }
  971. #u36697 .text {
  972. position:absolute;
  973. align-self:center;
  974. padding:2px 2px 2px 2px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u36697_text {
  979. border-width:0px;
  980. word-wrap:break-word;
  981. text-transform:none;
  982. visibility:hidden;
  983. }
  984. #u36698_img {
  985. border-width:0px;
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:6px;
  990. height:6px;
  991. }
  992. #u36698 {
  993. border-width:0px;
  994. position:absolute;
  995. left:378px;
  996. top:84px;
  997. width:6px;
  998. height:6px;
  999. display:flex;
  1000. }
  1001. #u36698 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:2px 2px 2px 2px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u36698_text {
  1009. border-width:0px;
  1010. word-wrap:break-word;
  1011. text-transform:none;
  1012. visibility:hidden;
  1013. }
  1014. #u36699 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:0px;
  1018. top:0px;
  1019. width:0px;
  1020. height:0px;
  1021. }
  1022. #u36700_img {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:0px;
  1026. top:0px;
  1027. width:5px;
  1028. height:5px;
  1029. }
  1030. #u36700 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:323px;
  1034. top:85px;
  1035. width:5px;
  1036. height:5px;
  1037. display:flex;
  1038. }
  1039. #u36700 .text {
  1040. position:absolute;
  1041. align-self:center;
  1042. padding:2px 2px 2px 2px;
  1043. box-sizing:border-box;
  1044. width:100%;
  1045. }
  1046. #u36700_text {
  1047. border-width:0px;
  1048. word-wrap:break-word;
  1049. text-transform:none;
  1050. visibility:hidden;
  1051. }
  1052. #u36701_img {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:0px;
  1056. top:0px;
  1057. width:5px;
  1058. height:5px;
  1059. }
  1060. #u36701 {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:339px;
  1064. top:85px;
  1065. width:5px;
  1066. height:5px;
  1067. display:flex;
  1068. }
  1069. #u36701 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:2px 2px 2px 2px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u36701_text {
  1077. border-width:0px;
  1078. word-wrap:break-word;
  1079. text-transform:none;
  1080. visibility:hidden;
  1081. }
  1082. #u36702_img {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:7px;
  1088. height:7px;
  1089. }
  1090. #u36702 {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:330px;
  1094. top:84px;
  1095. width:7px;
  1096. height:7px;
  1097. display:flex;
  1098. }
  1099. #u36702 .text {
  1100. position:absolute;
  1101. align-self:center;
  1102. padding:2px 2px 2px 2px;
  1103. box-sizing:border-box;
  1104. width:100%;
  1105. }
  1106. #u36702_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u36703_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:19px;
  1118. height:2px;
  1119. }
  1120. #u36703 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:347px;
  1124. top:87px;
  1125. width:18px;
  1126. height:1px;
  1127. display:flex;
  1128. -webkit-transform:rotate(90deg);
  1129. -moz-transform:rotate(90deg);
  1130. -ms-transform:rotate(90deg);
  1131. transform:rotate(90deg);
  1132. }
  1133. #u36703 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u36703_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. visibility:hidden;
  1145. }
  1146. #u36704_div {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:0px;
  1150. top:0px;
  1151. width:65px;
  1152. height:22px;
  1153. background:inherit;
  1154. background-color:rgba(255, 255, 255, 0);
  1155. border:none;
  1156. border-radius:0px;
  1157. -moz-box-shadow:none;
  1158. -webkit-box-shadow:none;
  1159. box-shadow:none;
  1160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1161. font-weight:400;
  1162. font-style:normal;
  1163. font-size:16px;
  1164. color:#000000;
  1165. }
  1166. #u36704 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:174px;
  1170. top:78px;
  1171. width:65px;
  1172. height:22px;
  1173. display:flex;
  1174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1175. font-weight:400;
  1176. font-style:normal;
  1177. font-size:16px;
  1178. color:#000000;
  1179. }
  1180. #u36704 .text {
  1181. position:absolute;
  1182. align-self:flex-start;
  1183. padding:0px 0px 0px 0px;
  1184. box-sizing:border-box;
  1185. width:100%;
  1186. }
  1187. #u36704_text {
  1188. border-width:0px;
  1189. white-space:nowrap;
  1190. text-transform:none;
  1191. }
  1192. #u36705_div {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:12px;
  1198. height:12px;
  1199. background:inherit;
  1200. background-color:rgba(255, 255, 255, 0);
  1201. box-sizing:border-box;
  1202. border-width:2px;
  1203. border-style:solid;
  1204. border-color:rgba(51, 51, 51, 1);
  1205. border-right:0px;
  1206. border-bottom:0px;
  1207. border-radius:0px;
  1208. border-top-right-radius:0px;
  1209. border-bottom-left-radius:0px;
  1210. -moz-box-shadow:none;
  1211. -webkit-box-shadow:none;
  1212. box-shadow:none;
  1213. }
  1214. #u36705 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:46px;
  1218. top:81px;
  1219. width:12px;
  1220. height:12px;
  1221. display:flex;
  1222. -webkit-transform:rotate(315deg);
  1223. -moz-transform:rotate(315deg);
  1224. -ms-transform:rotate(315deg);
  1225. transform:rotate(315deg);
  1226. }
  1227. #u36705 .text {
  1228. position:absolute;
  1229. align-self:center;
  1230. padding:2px 2px 2px 2px;
  1231. box-sizing:border-box;
  1232. width:100%;
  1233. }
  1234. #u36705_text {
  1235. border-width:0px;
  1236. word-wrap:break-word;
  1237. text-transform:none;
  1238. visibility:hidden;
  1239. }
  1240. #u36706_img {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:23px;
  1246. height:23px;
  1247. }
  1248. #u36706 {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:73px;
  1252. top:76px;
  1253. width:23px;
  1254. height:23px;
  1255. display:flex;
  1256. }
  1257. #u36706 .text {
  1258. position:absolute;
  1259. align-self:center;
  1260. padding:2px 2px 2px 2px;
  1261. box-sizing:border-box;
  1262. width:100%;
  1263. }
  1264. #u36706_text {
  1265. border-width:0px;
  1266. word-wrap:break-word;
  1267. text-transform:none;
  1268. visibility:hidden;
  1269. }
  1270. #u36707 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:0px;
  1274. top:0px;
  1275. width:0px;
  1276. height:0px;
  1277. }
  1278. #u36708_div {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:375px;
  1284. height:50px;
  1285. background:inherit;
  1286. background-color:rgba(255, 255, 255, 1);
  1287. box-sizing:border-box;
  1288. border-width:1px;
  1289. border-style:solid;
  1290. border-color:rgba(242, 242, 242, 1);
  1291. border-radius:26px;
  1292. border-top-left-radius:0px;
  1293. border-top-right-radius:0px;
  1294. -moz-box-shadow:none;
  1295. -webkit-box-shadow:none;
  1296. box-shadow:none;
  1297. }
  1298. #u36708 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:29px;
  1302. top:791px;
  1303. width:375px;
  1304. height:50px;
  1305. display:flex;
  1306. }
  1307. #u36708 .text {
  1308. position:absolute;
  1309. align-self:center;
  1310. padding:2px 2px 2px 2px;
  1311. box-sizing:border-box;
  1312. width:100%;
  1313. }
  1314. #u36708_text {
  1315. border-width:0px;
  1316. word-wrap:break-word;
  1317. text-transform:none;
  1318. visibility:hidden;
  1319. }
  1320. #u36709 {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:0px;
  1326. height:0px;
  1327. }
  1328. #u36710_img {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:24px;
  1334. height:24px;
  1335. }
  1336. #u36710 {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:69px;
  1340. top:795px;
  1341. width:24px;
  1342. height:24px;
  1343. display:flex;
  1344. font-size:8px;
  1345. }
  1346. #u36710 .text {
  1347. position:absolute;
  1348. align-self:center;
  1349. padding:2px 2px 2px 2px;
  1350. box-sizing:border-box;
  1351. width:100%;
  1352. }
  1353. #u36710_text {
  1354. border-width:0px;
  1355. word-wrap:break-word;
  1356. text-transform:none;
  1357. }
  1358. #u36711_div {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:25px;
  1364. height:17px;
  1365. background:inherit;
  1366. background-color:rgba(255, 255, 255, 0);
  1367. border:none;
  1368. border-radius:0px;
  1369. -moz-box-shadow:none;
  1370. -webkit-box-shadow:none;
  1371. box-shadow:none;
  1372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1373. font-weight:400;
  1374. font-style:normal;
  1375. font-size:12px;
  1376. }
  1377. #u36711 {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:69px;
  1381. top:820px;
  1382. width:25px;
  1383. height:17px;
  1384. display:flex;
  1385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1386. font-weight:400;
  1387. font-style:normal;
  1388. font-size:12px;
  1389. }
  1390. #u36711 .text {
  1391. position:absolute;
  1392. align-self:flex-start;
  1393. padding:0px 0px 0px 0px;
  1394. box-sizing:border-box;
  1395. width:100%;
  1396. }
  1397. #u36711_text {
  1398. border-width:0px;
  1399. white-space:nowrap;
  1400. text-transform:none;
  1401. }
  1402. #u36712 {
  1403. border-width:0px;
  1404. position:absolute;
  1405. left:0px;
  1406. top:0px;
  1407. width:0px;
  1408. height:0px;
  1409. }
  1410. #u36713_div {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:25px;
  1416. height:17px;
  1417. background:inherit;
  1418. background-color:rgba(255, 255, 255, 0);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1425. font-weight:400;
  1426. font-style:normal;
  1427. font-size:12px;
  1428. }
  1429. #u36713 {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:340px;
  1433. top:820px;
  1434. width:25px;
  1435. height:17px;
  1436. display:flex;
  1437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1438. font-weight:400;
  1439. font-style:normal;
  1440. font-size:12px;
  1441. }
  1442. #u36713 .text {
  1443. position:absolute;
  1444. align-self:flex-start;
  1445. padding:0px 0px 0px 0px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u36713_text {
  1450. border-width:0px;
  1451. white-space:nowrap;
  1452. text-transform:none;
  1453. }
  1454. #u36714_img {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:0px;
  1458. top:0px;
  1459. width:24px;
  1460. height:24px;
  1461. }
  1462. #u36714 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:341px;
  1466. top:795px;
  1467. width:24px;
  1468. height:24px;
  1469. display:flex;
  1470. font-size:8px;
  1471. color:#FFFFFF;
  1472. }
  1473. #u36714 .text {
  1474. position:absolute;
  1475. align-self:center;
  1476. padding:2px 2px 2px 2px;
  1477. box-sizing:border-box;
  1478. width:100%;
  1479. }
  1480. #u36714_text {
  1481. border-width:0px;
  1482. word-wrap:break-word;
  1483. text-transform:none;
  1484. }
  1485. #u36715 {
  1486. border-width:0px;
  1487. position:absolute;
  1488. left:0px;
  1489. top:0px;
  1490. width:0px;
  1491. height:0px;
  1492. }
  1493. #u36716_img {
  1494. border-width:0px;
  1495. position:absolute;
  1496. left:0px;
  1497. top:0px;
  1498. width:24px;
  1499. height:24px;
  1500. }
  1501. #u36716 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:205px;
  1505. top:795px;
  1506. width:24px;
  1507. height:24px;
  1508. display:flex;
  1509. font-size:8px;
  1510. }
  1511. #u36716 .text {
  1512. position:absolute;
  1513. align-self:center;
  1514. padding:2px 2px 2px 2px;
  1515. box-sizing:border-box;
  1516. width:100%;
  1517. }
  1518. #u36716_text {
  1519. border-width:0px;
  1520. word-wrap:break-word;
  1521. text-transform:none;
  1522. }
  1523. #u36717_div {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:25px;
  1529. height:17px;
  1530. background:inherit;
  1531. background-color:rgba(255, 255, 255, 0);
  1532. border:none;
  1533. border-radius:0px;
  1534. -moz-box-shadow:none;
  1535. -webkit-box-shadow:none;
  1536. box-shadow:none;
  1537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1538. font-weight:400;
  1539. font-style:normal;
  1540. font-size:12px;
  1541. }
  1542. #u36717 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:205px;
  1546. top:820px;
  1547. width:25px;
  1548. height:17px;
  1549. display:flex;
  1550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1551. font-weight:400;
  1552. font-style:normal;
  1553. font-size:12px;
  1554. }
  1555. #u36717 .text {
  1556. position:absolute;
  1557. align-self:flex-start;
  1558. padding:0px 0px 0px 0px;
  1559. box-sizing:border-box;
  1560. width:100%;
  1561. }
  1562. #u36717_text {
  1563. border-width:0px;
  1564. white-space:nowrap;
  1565. text-transform:none;
  1566. }
  1567. #u36718_div {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:375px;
  1573. height:180px;
  1574. background:inherit;
  1575. background-color:rgba(255, 255, 255, 0.996078431372549);
  1576. border:none;
  1577. border-top:0px;
  1578. border-radius:0px;
  1579. border-top-left-radius:0px;
  1580. border-top-right-radius:0px;
  1581. -moz-box-shadow:none;
  1582. -webkit-box-shadow:none;
  1583. box-shadow:none;
  1584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1585. font-weight:400;
  1586. font-style:normal;
  1587. }
  1588. #u36718 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:29px;
  1592. top:254px;
  1593. width:375px;
  1594. height:180px;
  1595. display:flex;
  1596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1597. font-weight:400;
  1598. font-style:normal;
  1599. }
  1600. #u36718 .text {
  1601. position:absolute;
  1602. align-self:center;
  1603. padding:2px 2px 2px 2px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u36718_text {
  1608. border-width:0px;
  1609. word-wrap:break-word;
  1610. text-transform:none;
  1611. visibility:hidden;
  1612. }
  1613. #u36719_div {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:57px;
  1619. height:70px;
  1620. background:inherit;
  1621. background-color:rgba(255, 255, 255, 0);
  1622. border:none;
  1623. border-radius:0px;
  1624. -moz-box-shadow:none;
  1625. -webkit-box-shadow:none;
  1626. box-shadow:none;
  1627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1628. font-style:normal;
  1629. line-height:35px;
  1630. }
  1631. #u36719 {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:81px;
  1635. top:326px;
  1636. width:57px;
  1637. height:70px;
  1638. display:flex;
  1639. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1640. font-style:normal;
  1641. line-height:35px;
  1642. }
  1643. #u36719 .text {
  1644. position:absolute;
  1645. align-self:flex-start;
  1646. padding:0px 0px 0px 0px;
  1647. box-sizing:border-box;
  1648. width:100%;
  1649. }
  1650. #u36719_text {
  1651. border-width:0px;
  1652. white-space:nowrap;
  1653. text-transform:none;
  1654. }
  1655. #u36720_div {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:111px;
  1661. height:100px;
  1662. background:inherit;
  1663. background-color:rgba(255, 255, 255, 0);
  1664. border:none;
  1665. border-radius:0px;
  1666. -moz-box-shadow:none;
  1667. -webkit-box-shadow:none;
  1668. box-shadow:none;
  1669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1670. font-weight:400;
  1671. font-style:normal;
  1672. font-size:14px;
  1673. line-height:25px;
  1674. }
  1675. #u36720 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:239px;
  1679. top:311px;
  1680. width:111px;
  1681. height:100px;
  1682. display:flex;
  1683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1684. font-weight:400;
  1685. font-style:normal;
  1686. font-size:14px;
  1687. line-height:25px;
  1688. }
  1689. #u36720 .text {
  1690. position:absolute;
  1691. align-self:flex-start;
  1692. padding:0px 0px 0px 0px;
  1693. box-sizing:border-box;
  1694. width:100%;
  1695. }
  1696. #u36720_text {
  1697. border-width:0px;
  1698. white-space:nowrap;
  1699. text-transform:none;
  1700. }
  1701. #u36721 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:0px;
  1707. height:0px;
  1708. }
  1709. #u36722_div {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:11px;
  1715. height:180px;
  1716. background:inherit;
  1717. background-color:rgba(102, 153, 255, 0.607843137254902);
  1718. border:none;
  1719. border-radius:0px;
  1720. -moz-box-shadow:none;
  1721. -webkit-box-shadow:none;
  1722. box-shadow:none;
  1723. }
  1724. #u36722 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:49px;
  1728. top:554px;
  1729. width:11px;
  1730. height:180px;
  1731. display:flex;
  1732. }
  1733. #u36722 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u36722_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u36723_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:25px;
  1752. height:12px;
  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:10px;
  1764. }
  1765. #u36723 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:293px;
  1769. top:514px;
  1770. width:25px;
  1771. height:12px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:10px;
  1777. }
  1778. #u36723 .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. #u36723_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. }
  1790. #u36724_div {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:11px;
  1796. height:9px;
  1797. background:inherit;
  1798. background-color:rgba(102, 153, 255, 0.607843137254902);
  1799. border:none;
  1800. border-radius:0px;
  1801. -moz-box-shadow:none;
  1802. -webkit-box-shadow:none;
  1803. box-shadow:none;
  1804. }
  1805. #u36724 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:278px;
  1809. top:517px;
  1810. width:11px;
  1811. height:9px;
  1812. display:flex;
  1813. }
  1814. #u36724 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u36724_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. visibility:hidden;
  1826. }
  1827. #u36725_div {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:25px;
  1833. height:12px;
  1834. background:inherit;
  1835. background-color:rgba(255, 255, 255, 0);
  1836. border:none;
  1837. border-radius:0px;
  1838. -moz-box-shadow:none;
  1839. -webkit-box-shadow:none;
  1840. box-shadow:none;
  1841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1842. font-weight:400;
  1843. font-style:normal;
  1844. font-size:10px;
  1845. }
  1846. #u36725 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:356px;
  1850. top:514px;
  1851. width:25px;
  1852. height:12px;
  1853. display:flex;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:10px;
  1858. }
  1859. #u36725 .text {
  1860. position:absolute;
  1861. align-self:flex-start;
  1862. padding:0px 0px 0px 0px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u36725_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. }
  1871. #u36726_div {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:11px;
  1877. height:9px;
  1878. background:inherit;
  1879. background-color:rgba(153, 255, 153, 1);
  1880. border:none;
  1881. border-radius:0px;
  1882. -moz-box-shadow:none;
  1883. -webkit-box-shadow:none;
  1884. box-shadow:none;
  1885. }
  1886. #u36726 {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:339px;
  1890. top:517px;
  1891. width:11px;
  1892. height:9px;
  1893. display:flex;
  1894. }
  1895. #u36726 .text {
  1896. position:absolute;
  1897. align-self:center;
  1898. padding:2px 2px 2px 2px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u36726_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. visibility:hidden;
  1907. }
  1908. #u36727_div {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:0px;
  1912. top:0px;
  1913. width:11px;
  1914. height:50px;
  1915. background:inherit;
  1916. background-color:rgba(153, 255, 153, 1);
  1917. border:none;
  1918. border-radius:0px;
  1919. -moz-box-shadow:none;
  1920. -webkit-box-shadow:none;
  1921. box-shadow:none;
  1922. }
  1923. #u36727 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:62px;
  1927. top:684px;
  1928. width:11px;
  1929. height:50px;
  1930. display:flex;
  1931. }
  1932. #u36727 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 2px 2px 2px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u36727_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. visibility:hidden;
  1944. }
  1945. #u36728_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:11px;
  1951. height:132px;
  1952. background:inherit;
  1953. background-color:rgba(102, 153, 255, 0.607843137254902);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. }
  1960. #u36728 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:97px;
  1964. top:602px;
  1965. width:11px;
  1966. height:132px;
  1967. display:flex;
  1968. }
  1969. #u36728 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:2px 2px 2px 2px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u36728_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. visibility:hidden;
  1981. }
  1982. #u36729_div {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:11px;
  1988. height:100px;
  1989. background:inherit;
  1990. background-color:rgba(153, 255, 153, 1);
  1991. border:none;
  1992. border-radius:0px;
  1993. -moz-box-shadow:none;
  1994. -webkit-box-shadow:none;
  1995. box-shadow:none;
  1996. }
  1997. #u36729 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:110px;
  2001. top:634px;
  2002. width:11px;
  2003. height:100px;
  2004. display:flex;
  2005. }
  2006. #u36729 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 2px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u36729_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. visibility:hidden;
  2018. }
  2019. #u36730_div {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:11px;
  2025. height:73px;
  2026. background:inherit;
  2027. background-color:rgba(102, 153, 255, 0.607843137254902);
  2028. border:none;
  2029. border-radius:0px;
  2030. -moz-box-shadow:none;
  2031. -webkit-box-shadow:none;
  2032. box-shadow:none;
  2033. }
  2034. #u36730 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:147px;
  2038. top:661px;
  2039. width:11px;
  2040. height:73px;
  2041. display:flex;
  2042. }
  2043. #u36730 .text {
  2044. position:absolute;
  2045. align-self:center;
  2046. padding:2px 2px 2px 2px;
  2047. box-sizing:border-box;
  2048. width:100%;
  2049. }
  2050. #u36730_text {
  2051. border-width:0px;
  2052. word-wrap:break-word;
  2053. text-transform:none;
  2054. visibility:hidden;
  2055. }
  2056. #u36731_div {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:11px;
  2062. height:32px;
  2063. background:inherit;
  2064. background-color:rgba(153, 255, 153, 1);
  2065. border:none;
  2066. border-radius:0px;
  2067. -moz-box-shadow:none;
  2068. -webkit-box-shadow:none;
  2069. box-shadow:none;
  2070. }
  2071. #u36731 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:162px;
  2075. top:702px;
  2076. width:11px;
  2077. height:32px;
  2078. display:flex;
  2079. }
  2080. #u36731 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 2px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u36731_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. visibility:hidden;
  2092. }
  2093. #u36732_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:11px;
  2099. height:132px;
  2100. background:inherit;
  2101. background-color:rgba(102, 153, 255, 0.607843137254902);
  2102. border:none;
  2103. border-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. }
  2108. #u36732 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:198px;
  2112. top:601px;
  2113. width:11px;
  2114. height:132px;
  2115. display:flex;
  2116. }
  2117. #u36732 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 2px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u36732_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. visibility:hidden;
  2129. }
  2130. #u36733_div {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:11px;
  2136. height:101px;
  2137. background:inherit;
  2138. background-color:rgba(153, 255, 153, 1);
  2139. border:none;
  2140. border-radius:0px;
  2141. -moz-box-shadow:none;
  2142. -webkit-box-shadow:none;
  2143. box-shadow:none;
  2144. }
  2145. #u36733 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:213px;
  2149. top:632px;
  2150. width:11px;
  2151. height:101px;
  2152. display:flex;
  2153. }
  2154. #u36733 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:2px 2px 2px 2px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u36733_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. visibility:hidden;
  2166. }
  2167. #u36734_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:11px;
  2173. height:101px;
  2174. background:inherit;
  2175. background-color:rgba(102, 153, 255, 0.607843137254902);
  2176. border:none;
  2177. border-radius:0px;
  2178. -moz-box-shadow:none;
  2179. -webkit-box-shadow:none;
  2180. box-shadow:none;
  2181. }
  2182. #u36734 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:249px;
  2186. top:632px;
  2187. width:11px;
  2188. height:101px;
  2189. display:flex;
  2190. }
  2191. #u36734 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 2px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u36734_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. visibility:hidden;
  2203. }
  2204. #u36735_div {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:11px;
  2210. height:41px;
  2211. background:inherit;
  2212. background-color:rgba(153, 255, 153, 1);
  2213. border:none;
  2214. border-radius:0px;
  2215. -moz-box-shadow:none;
  2216. -webkit-box-shadow:none;
  2217. box-shadow:none;
  2218. }
  2219. #u36735 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:263px;
  2223. top:693px;
  2224. width:11px;
  2225. height:41px;
  2226. display:flex;
  2227. }
  2228. #u36735 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 2px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u36735_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. visibility:hidden;
  2240. }
  2241. #u36736_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:11px;
  2247. height:171px;
  2248. background:inherit;
  2249. background-color:rgba(102, 153, 255, 0.607843137254902);
  2250. border:none;
  2251. border-radius:0px;
  2252. -moz-box-shadow:none;
  2253. -webkit-box-shadow:none;
  2254. box-shadow:none;
  2255. }
  2256. #u36736 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:298px;
  2260. top:563px;
  2261. width:11px;
  2262. height:171px;
  2263. display:flex;
  2264. }
  2265. #u36736 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u36736_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. visibility:hidden;
  2277. }
  2278. #u36737_div {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:11px;
  2284. height:72px;
  2285. background:inherit;
  2286. background-color:rgba(153, 255, 153, 1);
  2287. border:none;
  2288. border-radius:0px;
  2289. -moz-box-shadow:none;
  2290. -webkit-box-shadow:none;
  2291. box-shadow:none;
  2292. }
  2293. #u36737 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:312px;
  2297. top:662px;
  2298. width:11px;
  2299. height:72px;
  2300. display:flex;
  2301. }
  2302. #u36737 .text {
  2303. position:absolute;
  2304. align-self:center;
  2305. padding:2px 2px 2px 2px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u36737_text {
  2310. border-width:0px;
  2311. word-wrap:break-word;
  2312. text-transform:none;
  2313. visibility:hidden;
  2314. }
  2315. #u36738_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:11px;
  2321. height:136px;
  2322. background:inherit;
  2323. background-color:rgba(102, 153, 255, 0.607843137254902);
  2324. border:none;
  2325. border-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. }
  2330. #u36738 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:351px;
  2334. top:596px;
  2335. width:11px;
  2336. height:136px;
  2337. display:flex;
  2338. }
  2339. #u36738 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 2px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u36738_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. visibility:hidden;
  2351. }
  2352. #u36739_div {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:11px;
  2358. height:110px;
  2359. background:inherit;
  2360. background-color:rgba(153, 255, 153, 1);
  2361. border:none;
  2362. border-radius:0px;
  2363. -moz-box-shadow:none;
  2364. -webkit-box-shadow:none;
  2365. box-shadow:none;
  2366. }
  2367. #u36739 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:364px;
  2371. top:623px;
  2372. width:11px;
  2373. height:110px;
  2374. display:flex;
  2375. }
  2376. #u36739 .text {
  2377. position:absolute;
  2378. align-self:center;
  2379. padding:2px 2px 2px 2px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u36739_text {
  2384. border-width:0px;
  2385. word-wrap:break-word;
  2386. text-transform:none;
  2387. visibility:hidden;
  2388. }
  2389. #u36740_div {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:33px;
  2395. height:15px;
  2396. background:inherit;
  2397. background-color:rgba(255, 255, 255, 0);
  2398. border:none;
  2399. border-radius:0px;
  2400. -moz-box-shadow:none;
  2401. -webkit-box-shadow:none;
  2402. box-shadow:none;
  2403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2404. font-weight:400;
  2405. font-style:normal;
  2406. font-size:11px;
  2407. }
  2408. #u36740 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:44px;
  2412. top:739px;
  2413. width:33px;
  2414. height:15px;
  2415. display:flex;
  2416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:11px;
  2420. }
  2421. #u36740 .text {
  2422. position:absolute;
  2423. align-self:flex-start;
  2424. padding:0px 0px 0px 0px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u36740_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. }
  2433. #u36741_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:36px;
  2439. height:15px;
  2440. background:inherit;
  2441. background-color:rgba(255, 255, 255, 0);
  2442. border:none;
  2443. border-radius:0px;
  2444. -moz-box-shadow:none;
  2445. -webkit-box-shadow:none;
  2446. box-shadow:none;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:11px;
  2451. }
  2452. #u36741 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:91px;
  2456. top:739px;
  2457. width:36px;
  2458. height:15px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:11px;
  2464. }
  2465. #u36741 .text {
  2466. position:absolute;
  2467. align-self:flex-start;
  2468. padding:0px 0px 0px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u36741_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. }
  2477. #u36742_div {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:36px;
  2483. height:15px;
  2484. background:inherit;
  2485. background-color:rgba(255, 255, 255, 0);
  2486. border:none;
  2487. border-radius:0px;
  2488. -moz-box-shadow:none;
  2489. -webkit-box-shadow:none;
  2490. box-shadow:none;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:11px;
  2495. }
  2496. #u36742 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:143px;
  2500. top:739px;
  2501. width:36px;
  2502. height:15px;
  2503. display:flex;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:11px;
  2508. }
  2509. #u36742 .text {
  2510. position:absolute;
  2511. align-self:flex-start;
  2512. padding:0px 0px 0px 0px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u36742_text {
  2517. border-width:0px;
  2518. word-wrap:break-word;
  2519. text-transform:none;
  2520. }
  2521. #u36743_div {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:36px;
  2527. height:15px;
  2528. background:inherit;
  2529. background-color:rgba(255, 255, 255, 0);
  2530. border:none;
  2531. border-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:11px;
  2539. }
  2540. #u36743 {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:192px;
  2544. top:739px;
  2545. width:36px;
  2546. height:15px;
  2547. display:flex;
  2548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2549. font-weight:400;
  2550. font-style:normal;
  2551. font-size:11px;
  2552. }
  2553. #u36743 .text {
  2554. position:absolute;
  2555. align-self:flex-start;
  2556. padding:0px 0px 0px 0px;
  2557. box-sizing:border-box;
  2558. width:100%;
  2559. }
  2560. #u36743_text {
  2561. border-width:0px;
  2562. word-wrap:break-word;
  2563. text-transform:none;
  2564. }
  2565. #u36744_div {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:36px;
  2571. height:15px;
  2572. background:inherit;
  2573. background-color:rgba(255, 255, 255, 0);
  2574. border:none;
  2575. border-radius:0px;
  2576. -moz-box-shadow:none;
  2577. -webkit-box-shadow:none;
  2578. box-shadow:none;
  2579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2580. font-weight:400;
  2581. font-style:normal;
  2582. font-size:11px;
  2583. }
  2584. #u36744 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:244px;
  2588. top:739px;
  2589. width:36px;
  2590. height:15px;
  2591. display:flex;
  2592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:11px;
  2596. }
  2597. #u36744 .text {
  2598. position:absolute;
  2599. align-self:flex-start;
  2600. padding:0px 0px 0px 0px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u36744_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. }
  2609. #u36745_div {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:36px;
  2615. height:15px;
  2616. background:inherit;
  2617. background-color:rgba(255, 255, 255, 0);
  2618. border:none;
  2619. border-radius:0px;
  2620. -moz-box-shadow:none;
  2621. -webkit-box-shadow:none;
  2622. box-shadow:none;
  2623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2624. font-weight:400;
  2625. font-style:normal;
  2626. font-size:11px;
  2627. }
  2628. #u36745 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:293px;
  2632. top:739px;
  2633. width:36px;
  2634. height:15px;
  2635. display:flex;
  2636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:11px;
  2640. }
  2641. #u36745 .text {
  2642. position:absolute;
  2643. align-self:flex-start;
  2644. padding:0px 0px 0px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u36745_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. }
  2653. #u36746_div {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:36px;
  2659. height:15px;
  2660. background:inherit;
  2661. background-color:rgba(255, 255, 255, 0);
  2662. border:none;
  2663. border-radius:0px;
  2664. -moz-box-shadow:none;
  2665. -webkit-box-shadow:none;
  2666. box-shadow:none;
  2667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2668. font-weight:400;
  2669. font-style:normal;
  2670. font-size:11px;
  2671. }
  2672. #u36746 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:345px;
  2676. top:739px;
  2677. width:36px;
  2678. height:15px;
  2679. display:flex;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:11px;
  2684. }
  2685. #u36746 .text {
  2686. position:absolute;
  2687. align-self:flex-start;
  2688. padding:0px 0px 0px 0px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u36746_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. }
  2697. #u36747 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:0px;
  2703. height:0px;
  2704. }
  2705. #u36748_div {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:375px;
  2711. height:50px;
  2712. background:inherit;
  2713. background-color:rgba(255, 255, 255, 1);
  2714. border:none;
  2715. border-radius:0px;
  2716. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2717. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2718. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2719. }
  2720. #u36748 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:29px;
  2724. top:444px;
  2725. width:375px;
  2726. height:50px;
  2727. display:flex;
  2728. }
  2729. #u36748 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 2px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u36748_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. visibility:hidden;
  2741. }
  2742. #u36749_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:73px;
  2748. height:17px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 0);
  2751. border:none;
  2752. border-radius:0px;
  2753. -moz-box-shadow:none;
  2754. -webkit-box-shadow:none;
  2755. box-shadow:none;
  2756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:12px;
  2760. color:#000000;
  2761. }
  2762. #u36749 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:44px;
  2766. top:459px;
  2767. width:73px;
  2768. height:17px;
  2769. display:flex;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:12px;
  2774. color:#000000;
  2775. }
  2776. #u36749 .text {
  2777. position:absolute;
  2778. align-self:flex-start;
  2779. padding:0px 0px 0px 0px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u36749_text {
  2784. border-width:0px;
  2785. white-space:nowrap;
  2786. text-transform:none;
  2787. }
  2788. #u36750_div {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:25px;
  2794. height:17px;
  2795. background:inherit;
  2796. background-color:rgba(24, 144, 255, 1);
  2797. border:none;
  2798. border-radius:0px;
  2799. -moz-box-shadow:none;
  2800. -webkit-box-shadow:none;
  2801. box-shadow:none;
  2802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. font-size:12px;
  2806. color:#FFFFFF;
  2807. }
  2808. #u36750 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:213px;
  2812. top:460px;
  2813. width:25px;
  2814. height:17px;
  2815. display:flex;
  2816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:12px;
  2820. color:#FFFFFF;
  2821. }
  2822. #u36750 .text {
  2823. position:absolute;
  2824. align-self:flex-start;
  2825. padding:0px 0px 0px 0px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u36750_text {
  2830. border-width:0px;
  2831. white-space:nowrap;
  2832. text-transform:none;
  2833. }
  2834. #u36751_div {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:25px;
  2840. height:17px;
  2841. background:inherit;
  2842. background-color:rgba(255, 255, 255, 0);
  2843. border:none;
  2844. border-radius:0px;
  2845. -moz-box-shadow:none;
  2846. -webkit-box-shadow:none;
  2847. box-shadow:none;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:12px;
  2852. color:#000000;
  2853. }
  2854. #u36751 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:247px;
  2858. top:460px;
  2859. width:25px;
  2860. height:17px;
  2861. display:flex;
  2862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. font-size:12px;
  2866. color:#000000;
  2867. }
  2868. #u36751 .text {
  2869. position:absolute;
  2870. align-self:flex-start;
  2871. padding:0px 0px 0px 0px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u36751_text {
  2876. border-width:0px;
  2877. white-space:nowrap;
  2878. text-transform:none;
  2879. }
  2880. #u36752_div {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:25px;
  2886. height:17px;
  2887. background:inherit;
  2888. background-color:rgba(255, 255, 255, 0);
  2889. border:none;
  2890. border-radius:0px;
  2891. -moz-box-shadow:none;
  2892. -webkit-box-shadow:none;
  2893. box-shadow:none;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:12px;
  2898. color:#000000;
  2899. }
  2900. #u36752 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:282px;
  2904. top:460px;
  2905. width:25px;
  2906. height:17px;
  2907. display:flex;
  2908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:12px;
  2912. color:#000000;
  2913. }
  2914. #u36752 .text {
  2915. position:absolute;
  2916. align-self:flex-start;
  2917. padding:0px 0px 0px 0px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u36752_text {
  2922. border-width:0px;
  2923. white-space:nowrap;
  2924. text-transform:none;
  2925. }
  2926. #u36753_div {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:25px;
  2932. height:17px;
  2933. background:inherit;
  2934. background-color:rgba(255, 255, 255, 0);
  2935. border:none;
  2936. border-radius:0px;
  2937. -moz-box-shadow:none;
  2938. -webkit-box-shadow:none;
  2939. box-shadow:none;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:12px;
  2944. color:#000000;
  2945. }
  2946. #u36753 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:316px;
  2950. top:460px;
  2951. width:25px;
  2952. height:17px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:12px;
  2958. color:#000000;
  2959. }
  2960. #u36753 .text {
  2961. position:absolute;
  2962. align-self:flex-start;
  2963. padding:0px 0px 0px 0px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u36753_text {
  2968. border-width:0px;
  2969. white-space:nowrap;
  2970. text-transform:none;
  2971. }
  2972. #u36754 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:0px;
  2978. height:0px;
  2979. }
  2980. #u36755_div {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:34px;
  2986. height:14px;
  2987. background:inherit;
  2988. background-color:rgba(255, 255, 255, 0);
  2989. border:none;
  2990. border-radius:0px;
  2991. -moz-box-shadow:none;
  2992. -webkit-box-shadow:none;
  2993. box-shadow:none;
  2994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2995. font-weight:400;
  2996. font-style:normal;
  2997. font-size:10px;
  2998. color:#000000;
  2999. }
  3000. #u36755 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:360px;
  3004. top:461px;
  3005. width:34px;
  3006. height:14px;
  3007. display:flex;
  3008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3009. font-weight:400;
  3010. font-style:normal;
  3011. font-size:10px;
  3012. color:#000000;
  3013. }
  3014. #u36755 .text {
  3015. position:absolute;
  3016. align-self:flex-start;
  3017. padding:0px 0px 0px 0px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u36755_text {
  3022. border-width:0px;
  3023. white-space:nowrap;
  3024. text-transform:none;
  3025. }
  3026. #u36756_img {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:8px;
  3032. height:8px;
  3033. }
  3034. #u36756 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:350px;
  3038. top:465px;
  3039. width:8px;
  3040. height:8px;
  3041. display:flex;
  3042. }
  3043. #u36756 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u36756_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. visibility:hidden;
  3055. }
  3056. #u36757_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:175px;
  3062. height:80px;
  3063. background:inherit;
  3064. background-color:rgba(255, 255, 255, 1);
  3065. border:none;
  3066. border-radius:4px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-style:normal;
  3072. text-align:center;
  3073. line-height:35px;
  3074. }
  3075. #u36757 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:39px;
  3079. top:164px;
  3080. width:175px;
  3081. height:80px;
  3082. display:flex;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-style:normal;
  3085. text-align:center;
  3086. line-height:35px;
  3087. }
  3088. #u36757 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:0px 0px 0px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u36757_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. }
  3100. #u36758_div {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:175px;
  3106. height:80px;
  3107. background:inherit;
  3108. background-color:rgba(255, 255, 255, 1);
  3109. border:none;
  3110. border-radius:4px;
  3111. -moz-box-shadow:none;
  3112. -webkit-box-shadow:none;
  3113. box-shadow:none;
  3114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3115. font-style:normal;
  3116. text-align:center;
  3117. line-height:35px;
  3118. }
  3119. #u36758 {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:219px;
  3123. top:164px;
  3124. width:175px;
  3125. height:80px;
  3126. display:flex;
  3127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3128. font-style:normal;
  3129. text-align:center;
  3130. line-height:35px;
  3131. }
  3132. #u36758 .text {
  3133. position:absolute;
  3134. align-self:center;
  3135. padding:0px 0px 0px 0px;
  3136. box-sizing:border-box;
  3137. width:100%;
  3138. }
  3139. #u36758_text {
  3140. border-width:0px;
  3141. word-wrap:break-word;
  3142. text-transform:none;
  3143. }
  3144. #u36759_div {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:65px;
  3150. height:22px;
  3151. background:inherit;
  3152. background-color:rgba(255, 255, 255, 0);
  3153. border:none;
  3154. border-radius:0px;
  3155. -moz-box-shadow:none;
  3156. -webkit-box-shadow:none;
  3157. box-shadow:none;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:16px;
  3162. color:#000000;
  3163. }
  3164. #u36759 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:44px;
  3168. top:268px;
  3169. width:65px;
  3170. height:22px;
  3171. display:flex;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:16px;
  3176. color:#000000;
  3177. }
  3178. #u36759 .text {
  3179. position:absolute;
  3180. align-self:flex-start;
  3181. padding:0px 0px 0px 0px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u36759_text {
  3186. border-width:0px;
  3187. white-space:nowrap;
  3188. text-transform:none;
  3189. }
  3190. #u36760 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:0px;
  3196. height:0px;
  3197. }
  3198. #u36761_div {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:375px;
  3204. height:50px;
  3205. background:inherit;
  3206. background-color:rgba(255, 255, 255, 1);
  3207. border:none;
  3208. border-radius:0px;
  3209. -moz-box-shadow:none;
  3210. -webkit-box-shadow:none;
  3211. box-shadow:none;
  3212. }
  3213. #u36761 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:30px;
  3217. top:106px;
  3218. width:375px;
  3219. height:50px;
  3220. display:flex;
  3221. }
  3222. #u36761 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 2px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u36761_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. visibility:hidden;
  3234. }
  3235. #u36762 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:0px;
  3241. height:0px;
  3242. }
  3243. #u36763 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:0px;
  3249. height:0px;
  3250. }
  3251. #u36764_div {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:280px;
  3257. height:30px;
  3258. background:inherit;
  3259. background-color:rgba(242, 242, 242, 1);
  3260. border:none;
  3261. border-radius:20px;
  3262. -moz-box-shadow:none;
  3263. -webkit-box-shadow:none;
  3264. box-shadow:none;
  3265. }
  3266. #u36764 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:43px;
  3270. top:116px;
  3271. width:280px;
  3272. height:30px;
  3273. display:flex;
  3274. }
  3275. #u36764 .text {
  3276. position:absolute;
  3277. align-self:center;
  3278. padding:2px 2px 2px 2px;
  3279. box-sizing:border-box;
  3280. width:100%;
  3281. }
  3282. #u36764_text {
  3283. border-width:0px;
  3284. word-wrap:break-word;
  3285. text-transform:none;
  3286. visibility:hidden;
  3287. }
  3288. #u36765_input {
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:252px;
  3293. height:22px;
  3294. padding:2px 2px 2px 2px;
  3295. font-family:'ArialMT', 'Arial', sans-serif;
  3296. font-weight:400;
  3297. font-style:normal;
  3298. font-size:12px;
  3299. letter-spacing:normal;
  3300. color:#7F7F7F;
  3301. vertical-align:none;
  3302. text-align:left;
  3303. text-transform:none;
  3304. background-color:transparent;
  3305. border-color:transparent;
  3306. }
  3307. #u36765_input.disabled {
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:252px;
  3312. height:22px;
  3313. padding:2px 2px 2px 2px;
  3314. font-family:'ArialMT', 'Arial', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:12px;
  3318. letter-spacing:normal;
  3319. color:#7F7F7F;
  3320. vertical-align:none;
  3321. text-align:left;
  3322. text-transform:none;
  3323. background-color:transparent;
  3324. border-color:transparent;
  3325. }
  3326. #u36765_div {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:252px;
  3332. height:22px;
  3333. background:inherit;
  3334. background-color:rgba(255, 255, 255, 0);
  3335. border:none;
  3336. border-radius:0px;
  3337. -moz-box-shadow:none;
  3338. -webkit-box-shadow:none;
  3339. box-shadow:none;
  3340. font-size:12px;
  3341. color:#7F7F7F;
  3342. }
  3343. #u36765 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:57px;
  3347. top:120px;
  3348. width:252px;
  3349. height:22px;
  3350. display:flex;
  3351. font-size:12px;
  3352. color:#7F7F7F;
  3353. }
  3354. #u36765 .text {
  3355. position:absolute;
  3356. align-self:flex-start;
  3357. padding:2px 2px 2px 2px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u36765_div.disabled {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:252px;
  3367. height:22px;
  3368. background:inherit;
  3369. background-color:rgba(240, 240, 240, 1);
  3370. border:none;
  3371. border-radius:0px;
  3372. -moz-box-shadow:none;
  3373. -webkit-box-shadow:none;
  3374. box-shadow:none;
  3375. font-size:12px;
  3376. color:#7F7F7F;
  3377. }
  3378. #u36765.disabled {
  3379. }
  3380. .u36765_input_option {
  3381. font-size:12px;
  3382. }
  3383. #u36766_div {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:64px;
  3389. height:30px;
  3390. background:inherit;
  3391. background-color:rgba(255, 255, 255, 0);
  3392. border:none;
  3393. border-left:0px;
  3394. border-top:0px;
  3395. border-right:0px;
  3396. border-radius:0px;
  3397. border-bottom-right-radius:0px;
  3398. border-bottom-left-radius:0px;
  3399. -moz-box-shadow:none;
  3400. -webkit-box-shadow:none;
  3401. box-shadow:none;
  3402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3403. font-weight:400;
  3404. font-style:normal;
  3405. font-size:12px;
  3406. color:#1890FF;
  3407. line-height:30px;
  3408. }
  3409. #u36766 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:333px;
  3413. top:116px;
  3414. width:64px;
  3415. height:30px;
  3416. display:flex;
  3417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:12px;
  3421. color:#1890FF;
  3422. line-height:30px;
  3423. }
  3424. #u36766 .text {
  3425. position:absolute;
  3426. align-self:flex-start;
  3427. padding:0px 0px 0px 0px;
  3428. box-sizing:border-box;
  3429. width:100%;
  3430. }
  3431. #u36766_text {
  3432. border-width:0px;
  3433. white-space:nowrap;
  3434. text-transform:none;
  3435. }