styles.css 58 KB

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