styles.css 64 KB

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