styles.css 60 KB

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