styles.css 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1247px;
  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. #u170904_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u170904 {
  28. border-width:0px;
  29. position:absolute;
  30. left:464px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u170904 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u170904_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u170905_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. #u170905 {
  73. border-width:0px;
  74. position:absolute;
  75. left:493px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u170905 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u170905_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u170906 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u170907_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. #u170907 {
  121. border-width:0px;
  122. position:absolute;
  123. left:773px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u170907 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u170907_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u170908 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u170909_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u170909 {
  159. border-width:0px;
  160. position:absolute;
  161. left:836px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u170909 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u170909_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u170910_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u170910 {
  189. border-width:0px;
  190. position:absolute;
  191. left:842px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u170910 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u170910_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u170911 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u170912_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u170912 {
  227. border-width:0px;
  228. position:absolute;
  229. left:787px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u170912 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u170912_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u170913_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u170913 {
  257. border-width:0px;
  258. position:absolute;
  259. left:803px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u170913 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u170913_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u170914_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u170914 {
  287. border-width:0px;
  288. position:absolute;
  289. left:794px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u170914 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u170914_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u170915_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u170915 {
  317. border-width:0px;
  318. position:absolute;
  319. left:811px;
  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. #u170915 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u170915_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u170916_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u170916 {
  351. border-width:0px;
  352. position:absolute;
  353. left:493px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u170916 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u170916_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u170917_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. #u170917 {
  393. border-width:0px;
  394. position:absolute;
  395. left:493px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u170917 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u170917_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u170918 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u170919_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u170919 {
  431. border-width:0px;
  432. position:absolute;
  433. left:533px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u170919 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u170919_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u170920_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. #u170920 {
  472. border-width:0px;
  473. position:absolute;
  474. left:533px;
  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. #u170920 .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. #u170920_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u170921 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u170922_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u170922 {
  513. border-width:0px;
  514. position:absolute;
  515. left:803px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u170922 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u170922_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u170923_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. #u170923 {
  554. border-width:0px;
  555. position:absolute;
  556. left:803px;
  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. #u170923 .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. #u170923_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u170924_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. #u170924 {
  594. border-width:0px;
  595. position:absolute;
  596. left:493px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u170924 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u170924_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u170925 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u170926_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u170926 {
  632. border-width:0px;
  633. position:absolute;
  634. left:715px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u170926 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u170926_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u170927_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. #u170927 {
  673. border-width:0px;
  674. position:absolute;
  675. left:709px;
  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. #u170927 .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. #u170927_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u170928 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u170929_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u170929 {
  714. border-width:0px;
  715. position:absolute;
  716. left:621px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u170929 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u170929_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u170930_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. #u170930 {
  755. border-width:0px;
  756. position:absolute;
  757. left:615px;
  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. #u170930 .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. #u170930_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u170931_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. #u170931 {
  798. border-width:0px;
  799. position:absolute;
  800. left:493px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u170931 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u170931_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u170932_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:735px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 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. #u170932 {
  838. border-width:0px;
  839. position:absolute;
  840. left:493px;
  841. top:105px;
  842. width:375px;
  843. height:735px;
  844. display:flex;
  845. }
  846. #u170932 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:2px 2px 2px 2px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u170932_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. visibility:hidden;
  858. }
  859. #u170933_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:11px;
  865. height:18px;
  866. }
  867. #u170933 {
  868. border-width:0px;
  869. position:absolute;
  870. left:506px;
  871. top:79px;
  872. width:11px;
  873. height:18px;
  874. display:flex;
  875. }
  876. #u170933 .text {
  877. position:absolute;
  878. align-self:center;
  879. padding:2px 2px 2px 2px;
  880. box-sizing:border-box;
  881. width:100%;
  882. }
  883. #u170933_text {
  884. border-width:0px;
  885. word-wrap:break-word;
  886. text-transform:none;
  887. visibility:hidden;
  888. }
  889. #u170934_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. #u170934 {
  915. border-width:0px;
  916. position:absolute;
  917. left:512px;
  918. top:120px;
  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. #u170934 .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. #u170934_text {
  936. border-width:0px;
  937. white-space:nowrap;
  938. text-transform:none;
  939. }
  940. #u170935_div {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:335px;
  946. height:40px;
  947. background:inherit;
  948. background-color:rgba(24, 144, 255, 1);
  949. box-sizing:border-box;
  950. border-width:1px;
  951. border-style:solid;
  952. border-color:rgba(24, 144, 255, 1);
  953. border-radius:19px;
  954. -moz-box-shadow:none;
  955. -webkit-box-shadow:none;
  956. box-shadow:none;
  957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:14px;
  961. color:#FFFFFF;
  962. text-align:center;
  963. line-height:30px;
  964. }
  965. #u170935 {
  966. border-width:0px;
  967. position:absolute;
  968. left:513px;
  969. top:729px;
  970. width:335px;
  971. height:40px;
  972. display:flex;
  973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  974. font-weight:400;
  975. font-style:normal;
  976. font-size:14px;
  977. color:#FFFFFF;
  978. text-align:center;
  979. line-height:30px;
  980. }
  981. #u170935 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:0px 0px 0px 0px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u170935_text {
  989. border-width:0px;
  990. word-wrap:break-word;
  991. text-transform:none;
  992. }
  993. #u170936 {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:0px;
  999. height:0px;
  1000. }
  1001. #u170937_img {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:375px;
  1007. height:50px;
  1008. }
  1009. #u170937 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:493px;
  1013. top:162px;
  1014. width:375px;
  1015. height:50px;
  1016. display:flex;
  1017. }
  1018. #u170937 .text {
  1019. position:absolute;
  1020. align-self:center;
  1021. padding:2px 2px 2px 2px;
  1022. box-sizing:border-box;
  1023. width:100%;
  1024. }
  1025. #u170937_text {
  1026. border-width:0px;
  1027. word-wrap:break-word;
  1028. text-transform:none;
  1029. visibility:hidden;
  1030. }
  1031. #u170938_div {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:57px;
  1037. height:30px;
  1038. background:inherit;
  1039. background-color:rgba(255, 255, 255, 0);
  1040. border:none;
  1041. border-left:0px;
  1042. border-top:0px;
  1043. border-right:0px;
  1044. border-radius:0px;
  1045. border-bottom-right-radius:0px;
  1046. border-bottom-left-radius:0px;
  1047. -moz-box-shadow:none;
  1048. -webkit-box-shadow:none;
  1049. box-shadow:none;
  1050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1051. font-weight:400;
  1052. font-style:normal;
  1053. font-size:14px;
  1054. line-height:30px;
  1055. }
  1056. #u170938 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:517px;
  1060. top:172px;
  1061. width:57px;
  1062. height:30px;
  1063. display:flex;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. font-size:14px;
  1068. line-height:30px;
  1069. }
  1070. #u170938 .text {
  1071. position:absolute;
  1072. align-self:flex-start;
  1073. padding:0px 0px 0px 0px;
  1074. box-sizing:border-box;
  1075. width:100%;
  1076. }
  1077. #u170938_text {
  1078. border-width:0px;
  1079. white-space:nowrap;
  1080. text-transform:none;
  1081. }
  1082. #u170939_img {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:8px;
  1088. height:13px;
  1089. }
  1090. #u170939 {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:844px;
  1094. top:179px;
  1095. width:8px;
  1096. height:13px;
  1097. display:flex;
  1098. -webkit-transform:rotate(180deg);
  1099. -moz-transform:rotate(180deg);
  1100. -ms-transform:rotate(180deg);
  1101. transform:rotate(180deg);
  1102. }
  1103. #u170939 .text {
  1104. position:absolute;
  1105. align-self:center;
  1106. padding:2px 2px 2px 2px;
  1107. box-sizing:border-box;
  1108. width:100%;
  1109. }
  1110. #u170939_text {
  1111. border-width:0px;
  1112. word-wrap:break-word;
  1113. text-transform:none;
  1114. visibility:hidden;
  1115. }
  1116. #u170940_div {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:0px;
  1120. top:0px;
  1121. width:152px;
  1122. height:30px;
  1123. background:inherit;
  1124. background-color:rgba(255, 255, 255, 0);
  1125. border:none;
  1126. border-left:0px;
  1127. border-top:0px;
  1128. border-right:0px;
  1129. border-radius:0px;
  1130. border-bottom-right-radius:0px;
  1131. border-bottom-left-radius:0px;
  1132. -moz-box-shadow:none;
  1133. -webkit-box-shadow:none;
  1134. box-shadow:none;
  1135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1136. font-weight:400;
  1137. font-style:normal;
  1138. font-size:14px;
  1139. text-align:right;
  1140. line-height:30px;
  1141. }
  1142. #u170940 {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:684px;
  1146. top:172px;
  1147. width:152px;
  1148. height:30px;
  1149. display:flex;
  1150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1151. font-weight:400;
  1152. font-style:normal;
  1153. font-size:14px;
  1154. text-align:right;
  1155. line-height:30px;
  1156. }
  1157. #u170940 .text {
  1158. position:absolute;
  1159. align-self:flex-start;
  1160. padding:0px 0px 0px 0px;
  1161. box-sizing:border-box;
  1162. width:100%;
  1163. }
  1164. #u170940_text {
  1165. border-width:0px;
  1166. white-space:nowrap;
  1167. text-transform:none;
  1168. }
  1169. #u170941 {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:0px;
  1175. height:0px;
  1176. }
  1177. #u170942_img {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:375px;
  1183. height:50px;
  1184. }
  1185. #u170942 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:493px;
  1189. top:212px;
  1190. width:375px;
  1191. height:50px;
  1192. display:flex;
  1193. }
  1194. #u170942 .text {
  1195. position:absolute;
  1196. align-self:center;
  1197. padding:2px 2px 2px 2px;
  1198. box-sizing:border-box;
  1199. width:100%;
  1200. }
  1201. #u170942_text {
  1202. border-width:0px;
  1203. word-wrap:break-word;
  1204. text-transform:none;
  1205. visibility:hidden;
  1206. }
  1207. #u170943_div {
  1208. border-width:0px;
  1209. position:absolute;
  1210. left:0px;
  1211. top:0px;
  1212. width:71px;
  1213. height:30px;
  1214. background:inherit;
  1215. background-color:rgba(255, 255, 255, 0);
  1216. border:none;
  1217. border-left:0px;
  1218. border-top:0px;
  1219. border-right:0px;
  1220. border-radius:0px;
  1221. border-bottom-right-radius:0px;
  1222. border-bottom-left-radius:0px;
  1223. -moz-box-shadow:none;
  1224. -webkit-box-shadow:none;
  1225. box-shadow:none;
  1226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1227. font-weight:400;
  1228. font-style:normal;
  1229. font-size:14px;
  1230. line-height:30px;
  1231. }
  1232. #u170943 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:517px;
  1236. top:222px;
  1237. width:71px;
  1238. height:30px;
  1239. display:flex;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:14px;
  1244. line-height:30px;
  1245. }
  1246. #u170943 .text {
  1247. position:absolute;
  1248. align-self:flex-start;
  1249. padding:0px 0px 0px 0px;
  1250. box-sizing:border-box;
  1251. width:100%;
  1252. }
  1253. #u170943_text {
  1254. border-width:0px;
  1255. white-space:nowrap;
  1256. text-transform:none;
  1257. }
  1258. #u170944_div {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:83px;
  1264. height:30px;
  1265. background:inherit;
  1266. background-color:rgba(255, 255, 255, 0);
  1267. border:none;
  1268. border-left:0px;
  1269. border-top:0px;
  1270. border-right:0px;
  1271. border-radius:0px;
  1272. border-bottom-right-radius:0px;
  1273. border-bottom-left-radius:0px;
  1274. -moz-box-shadow:none;
  1275. -webkit-box-shadow:none;
  1276. box-shadow:none;
  1277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1278. font-weight:400;
  1279. font-style:normal;
  1280. font-size:14px;
  1281. text-align:right;
  1282. line-height:30px;
  1283. }
  1284. #u170944 {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:753px;
  1288. top:222px;
  1289. width:83px;
  1290. height:30px;
  1291. display:flex;
  1292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1293. font-weight:400;
  1294. font-style:normal;
  1295. font-size:14px;
  1296. text-align:right;
  1297. line-height:30px;
  1298. }
  1299. #u170944 .text {
  1300. position:absolute;
  1301. align-self:flex-start;
  1302. padding:0px 0px 0px 0px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u170944_text {
  1307. border-width:0px;
  1308. white-space:nowrap;
  1309. text-transform:none;
  1310. }
  1311. #u170946_img {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:433px;
  1317. height:865px;
  1318. }
  1319. #u170946 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:433px;
  1325. height:865px;
  1326. display:flex;
  1327. }
  1328. #u170946 .text {
  1329. position:absolute;
  1330. align-self:center;
  1331. padding:2px 2px 2px 2px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u170946_text {
  1336. border-width:0px;
  1337. word-wrap:break-word;
  1338. text-transform:none;
  1339. visibility:hidden;
  1340. }
  1341. #u170947_div {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:375px;
  1347. height:40px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 255, 1);
  1350. box-sizing:border-box;
  1351. border-width:1px;
  1352. border-style:solid;
  1353. border-color:rgba(215, 215, 215, 1);
  1354. border-left:0px;
  1355. border-top:0px;
  1356. border-right:0px;
  1357. border-radius:0px;
  1358. border-bottom-right-radius:0px;
  1359. border-bottom-left-radius:0px;
  1360. -moz-box-shadow:none;
  1361. -webkit-box-shadow:none;
  1362. box-shadow:none;
  1363. }
  1364. #u170947 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:29px;
  1368. top:67px;
  1369. width:375px;
  1370. height:40px;
  1371. display:flex;
  1372. }
  1373. #u170947 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u170947_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u170948 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u170949_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:88px;
  1400. height:32px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 1);
  1403. box-sizing:border-box;
  1404. border-width:1px;
  1405. border-style:solid;
  1406. border-color:rgba(242, 242, 242, 1);
  1407. border-radius:33px;
  1408. -moz-box-shadow:none;
  1409. -webkit-box-shadow:none;
  1410. box-shadow:none;
  1411. }
  1412. #u170949 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:309px;
  1416. top:71px;
  1417. width:88px;
  1418. height:32px;
  1419. display:flex;
  1420. }
  1421. #u170949 .text {
  1422. position:absolute;
  1423. align-self:center;
  1424. padding:2px 2px 2px 2px;
  1425. box-sizing:border-box;
  1426. width:100%;
  1427. }
  1428. #u170949_text {
  1429. border-width:0px;
  1430. word-wrap:break-word;
  1431. text-transform:none;
  1432. visibility:hidden;
  1433. }
  1434. #u170950 {
  1435. border-width:0px;
  1436. position:absolute;
  1437. left:0px;
  1438. top:0px;
  1439. width:0px;
  1440. height:0px;
  1441. }
  1442. #u170951_img {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:0px;
  1446. top:0px;
  1447. width:18px;
  1448. height:18px;
  1449. }
  1450. #u170951 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:372px;
  1454. top:78px;
  1455. width:18px;
  1456. height:18px;
  1457. display:flex;
  1458. }
  1459. #u170951 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 2px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u170951_text {
  1467. border-width:0px;
  1468. word-wrap:break-word;
  1469. text-transform:none;
  1470. visibility:hidden;
  1471. }
  1472. #u170952_img {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:6px;
  1478. height:6px;
  1479. }
  1480. #u170952 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:378px;
  1484. top:84px;
  1485. width:6px;
  1486. height:6px;
  1487. display:flex;
  1488. }
  1489. #u170952 .text {
  1490. position:absolute;
  1491. align-self:center;
  1492. padding:2px 2px 2px 2px;
  1493. box-sizing:border-box;
  1494. width:100%;
  1495. }
  1496. #u170952_text {
  1497. border-width:0px;
  1498. word-wrap:break-word;
  1499. text-transform:none;
  1500. visibility:hidden;
  1501. }
  1502. #u170953 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:0px;
  1506. top:0px;
  1507. width:0px;
  1508. height:0px;
  1509. }
  1510. #u170954_img {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:0px;
  1514. top:0px;
  1515. width:5px;
  1516. height:5px;
  1517. }
  1518. #u170954 {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:323px;
  1522. top:85px;
  1523. width:5px;
  1524. height:5px;
  1525. display:flex;
  1526. }
  1527. #u170954 .text {
  1528. position:absolute;
  1529. align-self:center;
  1530. padding:2px 2px 2px 2px;
  1531. box-sizing:border-box;
  1532. width:100%;
  1533. }
  1534. #u170954_text {
  1535. border-width:0px;
  1536. word-wrap:break-word;
  1537. text-transform:none;
  1538. visibility:hidden;
  1539. }
  1540. #u170955_img {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:0px;
  1544. top:0px;
  1545. width:5px;
  1546. height:5px;
  1547. }
  1548. #u170955 {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:339px;
  1552. top:85px;
  1553. width:5px;
  1554. height:5px;
  1555. display:flex;
  1556. }
  1557. #u170955 .text {
  1558. position:absolute;
  1559. align-self:center;
  1560. padding:2px 2px 2px 2px;
  1561. box-sizing:border-box;
  1562. width:100%;
  1563. }
  1564. #u170955_text {
  1565. border-width:0px;
  1566. word-wrap:break-word;
  1567. text-transform:none;
  1568. visibility:hidden;
  1569. }
  1570. #u170956_img {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:7px;
  1576. height:7px;
  1577. }
  1578. #u170956 {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:330px;
  1582. top:84px;
  1583. width:7px;
  1584. height:7px;
  1585. display:flex;
  1586. }
  1587. #u170956 .text {
  1588. position:absolute;
  1589. align-self:center;
  1590. padding:2px 2px 2px 2px;
  1591. box-sizing:border-box;
  1592. width:100%;
  1593. }
  1594. #u170956_text {
  1595. border-width:0px;
  1596. word-wrap:break-word;
  1597. text-transform:none;
  1598. visibility:hidden;
  1599. }
  1600. #u170957_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:19px;
  1606. height:2px;
  1607. }
  1608. #u170957 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:347px;
  1612. top:87px;
  1613. width:18px;
  1614. height:1px;
  1615. display:flex;
  1616. -webkit-transform:rotate(90deg);
  1617. -moz-transform:rotate(90deg);
  1618. -ms-transform:rotate(90deg);
  1619. transform:rotate(90deg);
  1620. }
  1621. #u170957 .text {
  1622. position:absolute;
  1623. align-self:center;
  1624. padding:2px 2px 2px 2px;
  1625. box-sizing:border-box;
  1626. width:100%;
  1627. }
  1628. #u170957_text {
  1629. border-width:0px;
  1630. word-wrap:break-word;
  1631. text-transform:none;
  1632. visibility:hidden;
  1633. }
  1634. #u170958_img {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:0px;
  1638. top:0px;
  1639. width:375px;
  1640. height:44px;
  1641. }
  1642. #u170958 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:29px;
  1646. top:24px;
  1647. width:375px;
  1648. height:44px;
  1649. display:flex;
  1650. }
  1651. #u170958 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 2px 2px 2px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u170958_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. visibility:hidden;
  1663. }
  1664. #u170959_div {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:375px;
  1670. height:50px;
  1671. background:inherit;
  1672. background-color:rgba(255, 255, 255, 1);
  1673. box-sizing:border-box;
  1674. border-width:1px;
  1675. border-style:solid;
  1676. border-color:rgba(242, 242, 242, 1);
  1677. border-radius:26px;
  1678. border-top-left-radius:0px;
  1679. border-top-right-radius:0px;
  1680. -moz-box-shadow:none;
  1681. -webkit-box-shadow:none;
  1682. box-shadow:none;
  1683. }
  1684. #u170959 {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:29px;
  1688. top:788px;
  1689. width:375px;
  1690. height:50px;
  1691. display:flex;
  1692. }
  1693. #u170959 .text {
  1694. position:absolute;
  1695. align-self:center;
  1696. padding:2px 2px 2px 2px;
  1697. box-sizing:border-box;
  1698. width:100%;
  1699. }
  1700. #u170959_text {
  1701. border-width:0px;
  1702. word-wrap:break-word;
  1703. text-transform:none;
  1704. visibility:hidden;
  1705. }
  1706. #u170960 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:0px;
  1710. top:0px;
  1711. width:0px;
  1712. height:0px;
  1713. }
  1714. #u170961_img {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:24px;
  1720. height:24px;
  1721. }
  1722. #u170961 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:69px;
  1726. top:792px;
  1727. width:24px;
  1728. height:24px;
  1729. display:flex;
  1730. font-size:8px;
  1731. }
  1732. #u170961 .text {
  1733. position:absolute;
  1734. align-self:center;
  1735. padding:2px 2px 2px 2px;
  1736. box-sizing:border-box;
  1737. width:100%;
  1738. }
  1739. #u170961_text {
  1740. border-width:0px;
  1741. word-wrap:break-word;
  1742. text-transform:none;
  1743. }
  1744. #u170962_div {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:25px;
  1750. height:17px;
  1751. background:inherit;
  1752. background-color:rgba(255, 255, 255, 0);
  1753. border:none;
  1754. border-radius:0px;
  1755. -moz-box-shadow:none;
  1756. -webkit-box-shadow:none;
  1757. box-shadow:none;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:12px;
  1762. }
  1763. #u170962 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:69px;
  1767. top:817px;
  1768. width:25px;
  1769. height:17px;
  1770. display:flex;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:12px;
  1775. }
  1776. #u170962 .text {
  1777. position:absolute;
  1778. align-self:flex-start;
  1779. padding:0px 0px 0px 0px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u170962_text {
  1784. border-width:0px;
  1785. white-space:nowrap;
  1786. text-transform:none;
  1787. }
  1788. #u170963 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:0px;
  1794. height:0px;
  1795. }
  1796. #u170964_img {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:24px;
  1802. height:24px;
  1803. }
  1804. #u170964 {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:339px;
  1808. top:794px;
  1809. width:24px;
  1810. height:24px;
  1811. display:flex;
  1812. font-size:8px;
  1813. }
  1814. #u170964 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u170964_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. }
  1826. #u170965_div {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:25px;
  1832. height:17px;
  1833. background:inherit;
  1834. background-color:rgba(255, 255, 255, 0);
  1835. border:none;
  1836. border-radius:0px;
  1837. -moz-box-shadow:none;
  1838. -webkit-box-shadow:none;
  1839. box-shadow:none;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:12px;
  1844. }
  1845. #u170965 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:339px;
  1849. top:819px;
  1850. width:25px;
  1851. height:17px;
  1852. display:flex;
  1853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1854. font-weight:400;
  1855. font-style:normal;
  1856. font-size:12px;
  1857. }
  1858. #u170965 .text {
  1859. position:absolute;
  1860. align-self:flex-start;
  1861. padding:0px 0px 0px 0px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u170965_text {
  1866. border-width:0px;
  1867. white-space:nowrap;
  1868. text-transform:none;
  1869. }
  1870. #u170966_div {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:375px;
  1876. height:681px;
  1877. background:inherit;
  1878. background-color:rgba(242, 242, 242, 0.462745098039216);
  1879. border:none;
  1880. border-radius:0px;
  1881. -moz-box-shadow:none;
  1882. -webkit-box-shadow:none;
  1883. box-shadow:none;
  1884. }
  1885. #u170966 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:29px;
  1889. top:107px;
  1890. width:375px;
  1891. height:681px;
  1892. display:flex;
  1893. }
  1894. #u170966 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:2px 2px 2px 2px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u170966_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. visibility:hidden;
  1906. }
  1907. #u170967 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:0px;
  1913. height:0px;
  1914. }
  1915. #u170968_img {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:24px;
  1921. height:24px;
  1922. }
  1923. #u170968 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:251px;
  1927. top:792px;
  1928. width:24px;
  1929. height:24px;
  1930. display:flex;
  1931. font-size:8px;
  1932. }
  1933. #u170968 .text {
  1934. position:absolute;
  1935. align-self:center;
  1936. padding:2px 2px 2px 2px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u170968_text {
  1941. border-width:0px;
  1942. word-wrap:break-word;
  1943. text-transform:none;
  1944. }
  1945. #u170969_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:37px;
  1951. height:17px;
  1952. background:inherit;
  1953. background-color:rgba(255, 255, 255, 0);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:12px;
  1963. }
  1964. #u170969 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:245px;
  1968. top:817px;
  1969. width:37px;
  1970. height:17px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. font-size:12px;
  1976. }
  1977. #u170969 .text {
  1978. position:absolute;
  1979. align-self:flex-start;
  1980. padding:0px 0px 0px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u170969_text {
  1985. border-width:0px;
  1986. white-space:nowrap;
  1987. text-transform:none;
  1988. }
  1989. #u170970 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:0px;
  1995. height:0px;
  1996. }
  1997. #u170971_img {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:24px;
  2003. height:24px;
  2004. }
  2005. #u170971 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:157px;
  2009. top:792px;
  2010. width:24px;
  2011. height:24px;
  2012. display:flex;
  2013. font-size:8px;
  2014. }
  2015. #u170971 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 2px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u170971_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u170972_div {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:37px;
  2033. height:17px;
  2034. background:inherit;
  2035. background-color:rgba(255, 255, 255, 0);
  2036. border:none;
  2037. border-radius:0px;
  2038. -moz-box-shadow:none;
  2039. -webkit-box-shadow:none;
  2040. box-shadow:none;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:12px;
  2045. }
  2046. #u170972 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:151px;
  2050. top:817px;
  2051. width:37px;
  2052. height:17px;
  2053. display:flex;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:12px;
  2058. }
  2059. #u170972 .text {
  2060. position:absolute;
  2061. align-self:flex-start;
  2062. padding:0px 0px 0px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u170972_text {
  2067. border-width:0px;
  2068. white-space:nowrap;
  2069. text-transform:none;
  2070. }
  2071. #u170973_div {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:375px;
  2077. height:735px;
  2078. background:inherit;
  2079. background-color:rgba(242, 242, 242, 1);
  2080. border:none;
  2081. border-top:0px;
  2082. border-radius:25px;
  2083. border-top-left-radius:0px;
  2084. border-top-right-radius:0px;
  2085. -moz-box-shadow:none;
  2086. -webkit-box-shadow:none;
  2087. box-shadow:none;
  2088. }
  2089. #u170973 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:29px;
  2093. top:105px;
  2094. width:375px;
  2095. height:735px;
  2096. display:flex;
  2097. }
  2098. #u170973 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u170973_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u170974_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:375px;
  2117. height:735px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 1);
  2120. border:none;
  2121. border-top:0px;
  2122. border-radius:22px;
  2123. border-top-left-radius:0px;
  2124. border-top-right-radius:0px;
  2125. -moz-box-shadow:none;
  2126. -webkit-box-shadow:none;
  2127. box-shadow:none;
  2128. }
  2129. #u170974 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:29px;
  2133. top:105px;
  2134. width:375px;
  2135. height:735px;
  2136. display:flex;
  2137. }
  2138. #u170974 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:2px 2px 2px 2px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u170974_text {
  2146. border-width:0px;
  2147. word-wrap:break-word;
  2148. text-transform:none;
  2149. visibility:hidden;
  2150. }
  2151. #u170975_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:11px;
  2157. height:18px;
  2158. }
  2159. #u170975 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:42px;
  2163. top:79px;
  2164. width:11px;
  2165. height:18px;
  2166. display:flex;
  2167. }
  2168. #u170975 .text {
  2169. position:absolute;
  2170. align-self:center;
  2171. padding:2px 2px 2px 2px;
  2172. box-sizing:border-box;
  2173. width:100%;
  2174. }
  2175. #u170975_text {
  2176. border-width:0px;
  2177. word-wrap:break-word;
  2178. text-transform:none;
  2179. visibility:hidden;
  2180. }
  2181. #u170976_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:73px;
  2187. height:30px;
  2188. background:inherit;
  2189. background-color:rgba(255, 255, 255, 0);
  2190. border:none;
  2191. border-left:0px;
  2192. border-top:0px;
  2193. border-right:0px;
  2194. border-radius:0px;
  2195. border-bottom-right-radius:0px;
  2196. border-bottom-left-radius:0px;
  2197. -moz-box-shadow:none;
  2198. -webkit-box-shadow:none;
  2199. box-shadow:none;
  2200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2201. font-weight:500;
  2202. font-style:normal;
  2203. font-size:18px;
  2204. line-height:30px;
  2205. }
  2206. #u170976 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:48px;
  2210. top:120px;
  2211. width:73px;
  2212. height:30px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2215. font-weight:500;
  2216. font-style:normal;
  2217. font-size:18px;
  2218. line-height:30px;
  2219. }
  2220. #u170976 .text {
  2221. position:absolute;
  2222. align-self:flex-start;
  2223. padding:0px 0px 0px 0px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u170976_text {
  2228. border-width:0px;
  2229. white-space:nowrap;
  2230. text-transform:none;
  2231. }
  2232. #u170977_div {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:335px;
  2238. height:40px;
  2239. background:inherit;
  2240. background-color:rgba(24, 144, 255, 1);
  2241. box-sizing:border-box;
  2242. border-width:1px;
  2243. border-style:solid;
  2244. border-color:rgba(24, 144, 255, 1);
  2245. border-radius:19px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:14px;
  2253. color:#FFFFFF;
  2254. text-align:center;
  2255. line-height:30px;
  2256. }
  2257. #u170977 {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:53px;
  2261. top:782px;
  2262. width:335px;
  2263. height:40px;
  2264. display:flex;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:14px;
  2269. color:#FFFFFF;
  2270. text-align:center;
  2271. line-height:30px;
  2272. }
  2273. #u170977 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:0px 0px 0px 0px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u170977_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. }
  2285. #u170978 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:0px;
  2291. height:0px;
  2292. }
  2293. #u170979_img {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:375px;
  2299. height:50px;
  2300. }
  2301. #u170979 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:29px;
  2305. top:162px;
  2306. width:375px;
  2307. height:50px;
  2308. display:flex;
  2309. }
  2310. #u170979 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 2px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u170979_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u170980_div {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:57px;
  2329. height:30px;
  2330. background:inherit;
  2331. background-color:rgba(255, 255, 255, 0);
  2332. border:none;
  2333. border-left:0px;
  2334. border-top:0px;
  2335. border-right:0px;
  2336. border-radius:0px;
  2337. border-bottom-right-radius:0px;
  2338. border-bottom-left-radius:0px;
  2339. -moz-box-shadow:none;
  2340. -webkit-box-shadow:none;
  2341. box-shadow:none;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:14px;
  2346. line-height:30px;
  2347. }
  2348. #u170980 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:53px;
  2352. top:172px;
  2353. width:57px;
  2354. height:30px;
  2355. display:flex;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:14px;
  2360. line-height:30px;
  2361. }
  2362. #u170980 .text {
  2363. position:absolute;
  2364. align-self:flex-start;
  2365. padding:0px 0px 0px 0px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u170980_text {
  2370. border-width:0px;
  2371. white-space:nowrap;
  2372. text-transform:none;
  2373. }
  2374. #u170981_img {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:8px;
  2380. height:13px;
  2381. }
  2382. #u170981 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:380px;
  2386. top:179px;
  2387. width:8px;
  2388. height:13px;
  2389. display:flex;
  2390. -webkit-transform:rotate(180deg);
  2391. -moz-transform:rotate(180deg);
  2392. -ms-transform:rotate(180deg);
  2393. transform:rotate(180deg);
  2394. }
  2395. #u170981 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 2px 2px 2px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u170981_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. visibility:hidden;
  2407. }
  2408. #u170982_div {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:152px;
  2414. height:30px;
  2415. background:inherit;
  2416. background-color:rgba(255, 255, 255, 0);
  2417. border:none;
  2418. border-left:0px;
  2419. border-top:0px;
  2420. border-right:0px;
  2421. border-radius:0px;
  2422. border-bottom-right-radius:0px;
  2423. border-bottom-left-radius:0px;
  2424. -moz-box-shadow:none;
  2425. -webkit-box-shadow:none;
  2426. box-shadow:none;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:14px;
  2431. text-align:right;
  2432. line-height:30px;
  2433. }
  2434. #u170982 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:220px;
  2438. top:172px;
  2439. width:152px;
  2440. height:30px;
  2441. display:flex;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:14px;
  2446. text-align:right;
  2447. line-height:30px;
  2448. }
  2449. #u170982 .text {
  2450. position:absolute;
  2451. align-self:flex-start;
  2452. padding:0px 0px 0px 0px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u170982_text {
  2457. border-width:0px;
  2458. white-space:nowrap;
  2459. text-transform:none;
  2460. }
  2461. #u170983 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:0px;
  2467. height:0px;
  2468. }
  2469. #u170984_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:375px;
  2475. height:50px;
  2476. }
  2477. #u170984 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:29px;
  2481. top:211px;
  2482. width:375px;
  2483. height:50px;
  2484. display:flex;
  2485. }
  2486. #u170984 .text {
  2487. position:absolute;
  2488. align-self:center;
  2489. padding:2px 2px 2px 2px;
  2490. box-sizing:border-box;
  2491. width:100%;
  2492. }
  2493. #u170984_text {
  2494. border-width:0px;
  2495. word-wrap:break-word;
  2496. text-transform:none;
  2497. visibility:hidden;
  2498. }
  2499. #u170985_div {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:57px;
  2505. height:30px;
  2506. background:inherit;
  2507. background-color:rgba(255, 255, 255, 0);
  2508. border:none;
  2509. border-left:0px;
  2510. border-top:0px;
  2511. border-right:0px;
  2512. border-radius:0px;
  2513. border-bottom-right-radius:0px;
  2514. border-bottom-left-radius:0px;
  2515. -moz-box-shadow:none;
  2516. -webkit-box-shadow:none;
  2517. box-shadow:none;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:14px;
  2522. line-height:30px;
  2523. }
  2524. #u170985 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:53px;
  2528. top:221px;
  2529. width:57px;
  2530. height:30px;
  2531. display:flex;
  2532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:14px;
  2536. line-height:30px;
  2537. }
  2538. #u170985 .text {
  2539. position:absolute;
  2540. align-self:flex-start;
  2541. padding:0px 0px 0px 0px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u170985_text {
  2546. border-width:0px;
  2547. white-space:nowrap;
  2548. text-transform:none;
  2549. }
  2550. #u170986_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:8px;
  2556. height:13px;
  2557. }
  2558. #u170986 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:380px;
  2562. top:230px;
  2563. width:8px;
  2564. height:13px;
  2565. display:flex;
  2566. -webkit-transform:rotate(180deg);
  2567. -moz-transform:rotate(180deg);
  2568. -ms-transform:rotate(180deg);
  2569. transform:rotate(180deg);
  2570. }
  2571. #u170986 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 2px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u170986_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. visibility:hidden;
  2583. }
  2584. #u170987_div {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:29px;
  2590. height:30px;
  2591. background:inherit;
  2592. background-color:rgba(255, 255, 255, 0);
  2593. border:none;
  2594. border-left:0px;
  2595. border-top:0px;
  2596. border-right:0px;
  2597. border-radius:0px;
  2598. border-bottom-right-radius:0px;
  2599. border-bottom-left-radius:0px;
  2600. -moz-box-shadow:none;
  2601. -webkit-box-shadow:none;
  2602. box-shadow:none;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:14px;
  2607. text-align:right;
  2608. line-height:30px;
  2609. }
  2610. #u170987 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:343px;
  2614. top:221px;
  2615. width:29px;
  2616. height:30px;
  2617. display:flex;
  2618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2619. font-weight:400;
  2620. font-style:normal;
  2621. font-size:14px;
  2622. text-align:right;
  2623. line-height:30px;
  2624. }
  2625. #u170987 .text {
  2626. position:absolute;
  2627. align-self:flex-start;
  2628. padding:0px 0px 0px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u170987_text {
  2633. border-width:0px;
  2634. white-space:nowrap;
  2635. text-transform:none;
  2636. }
  2637. #u170988 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:0px;
  2643. height:0px;
  2644. }
  2645. #u170989_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:375px;
  2651. height:50px;
  2652. }
  2653. #u170989 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:29px;
  2657. top:260px;
  2658. width:375px;
  2659. height:50px;
  2660. display:flex;
  2661. }
  2662. #u170989 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 2px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u170989_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u170990_div {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:36px;
  2681. height:30px;
  2682. background:inherit;
  2683. background-color:rgba(255, 255, 255, 0);
  2684. border:none;
  2685. border-left:0px;
  2686. border-top:0px;
  2687. border-right:0px;
  2688. border-radius:0px;
  2689. border-bottom-right-radius:0px;
  2690. border-bottom-left-radius:0px;
  2691. -moz-box-shadow:none;
  2692. -webkit-box-shadow:none;
  2693. box-shadow:none;
  2694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2695. font-weight:400;
  2696. font-style:normal;
  2697. font-size:14px;
  2698. line-height:30px;
  2699. }
  2700. #u170990 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:53px;
  2704. top:270px;
  2705. width:36px;
  2706. height:30px;
  2707. display:flex;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:14px;
  2712. line-height:30px;
  2713. }
  2714. #u170990 .text {
  2715. position:absolute;
  2716. align-self:flex-start;
  2717. padding:0px 0px 0px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u170990_text {
  2722. border-width:0px;
  2723. white-space:nowrap;
  2724. text-transform:none;
  2725. }
  2726. #u170991_input {
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:278px;
  2731. height:33px;
  2732. padding:2px 2px 2px 2px;
  2733. font-family:'Microsoft YaHei', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:13px;
  2737. letter-spacing:normal;
  2738. color:#000000;
  2739. vertical-align:none;
  2740. text-align:left;
  2741. text-transform:none;
  2742. background-color:transparent;
  2743. border-color:transparent;
  2744. }
  2745. #u170991_input.disabled {
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:278px;
  2750. height:33px;
  2751. padding:2px 2px 2px 2px;
  2752. font-family:'Microsoft YaHei', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:13px;
  2756. letter-spacing:normal;
  2757. color:#000000;
  2758. vertical-align:none;
  2759. text-align:left;
  2760. text-transform:none;
  2761. background-color:transparent;
  2762. border-color:transparent;
  2763. }
  2764. #u170991_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:278px;
  2770. height:33px;
  2771. background:inherit;
  2772. background-color:rgba(255, 255, 255, 1);
  2773. border:none;
  2774. border-radius:0px;
  2775. -moz-box-shadow:none;
  2776. -webkit-box-shadow:none;
  2777. box-shadow:none;
  2778. font-family:'Microsoft YaHei', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. }
  2782. #u170991 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:124px;
  2786. top:269px;
  2787. width:278px;
  2788. height:33px;
  2789. display:flex;
  2790. font-family:'Microsoft YaHei', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. }
  2794. #u170991 .text {
  2795. position:absolute;
  2796. align-self:center;
  2797. padding:2px 2px 2px 2px;
  2798. box-sizing:border-box;
  2799. width:100%;
  2800. }
  2801. #u170991_div.disabled {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:278px;
  2807. height:33px;
  2808. background:inherit;
  2809. background-color:rgba(240, 240, 240, 1);
  2810. border:none;
  2811. border-radius:0px;
  2812. -moz-box-shadow:none;
  2813. -webkit-box-shadow:none;
  2814. box-shadow:none;
  2815. font-family:'Microsoft YaHei', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. }
  2819. #u170991.disabled {
  2820. }
  2821. #u170992 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:0px;
  2827. height:0px;
  2828. }
  2829. #u170993_img {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:375px;
  2835. height:50px;
  2836. }
  2837. #u170993 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:29px;
  2841. top:358px;
  2842. width:375px;
  2843. height:50px;
  2844. display:flex;
  2845. }
  2846. #u170993 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 2px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u170993_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u170994_div {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:64px;
  2865. height:30px;
  2866. background:inherit;
  2867. background-color:rgba(255, 255, 255, 0);
  2868. border:none;
  2869. border-left:0px;
  2870. border-top:0px;
  2871. border-right:0px;
  2872. border-radius:0px;
  2873. border-bottom-right-radius:0px;
  2874. border-bottom-left-radius:0px;
  2875. -moz-box-shadow:none;
  2876. -webkit-box-shadow:none;
  2877. box-shadow:none;
  2878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2879. font-weight:400;
  2880. font-style:normal;
  2881. font-size:14px;
  2882. line-height:30px;
  2883. }
  2884. #u170994 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:53px;
  2888. top:368px;
  2889. width:64px;
  2890. height:30px;
  2891. display:flex;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:14px;
  2896. line-height:30px;
  2897. }
  2898. #u170994 .text {
  2899. position:absolute;
  2900. align-self:flex-start;
  2901. padding:0px 0px 0px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u170994_text {
  2906. border-width:0px;
  2907. white-space:nowrap;
  2908. text-transform:none;
  2909. }
  2910. #u170995_input {
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:278px;
  2915. height:33px;
  2916. padding:2px 2px 2px 2px;
  2917. font-family:'Helvetica', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:14px;
  2921. letter-spacing:normal;
  2922. color:#000000;
  2923. vertical-align:none;
  2924. text-align:left;
  2925. text-transform:none;
  2926. background-color:transparent;
  2927. border-color:transparent;
  2928. }
  2929. #u170995_input.disabled {
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:278px;
  2934. height:33px;
  2935. padding:2px 2px 2px 2px;
  2936. font-family:'Helvetica', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:14px;
  2940. letter-spacing:normal;
  2941. color:#000000;
  2942. vertical-align:none;
  2943. text-align:left;
  2944. text-transform:none;
  2945. background-color:transparent;
  2946. border-color:transparent;
  2947. }
  2948. #u170995_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:278px;
  2954. height:33px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 1);
  2957. border:none;
  2958. border-radius:0px;
  2959. -moz-box-shadow:none;
  2960. -webkit-box-shadow:none;
  2961. box-shadow:none;
  2962. font-family:'Helvetica', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:14px;
  2966. }
  2967. #u170995 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:124px;
  2971. top:367px;
  2972. width:278px;
  2973. height:33px;
  2974. display:flex;
  2975. font-family:'Helvetica', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:14px;
  2979. }
  2980. #u170995 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 2px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u170995_div.disabled {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:278px;
  2993. height:33px;
  2994. background:inherit;
  2995. background-color:rgba(240, 240, 240, 1);
  2996. border:none;
  2997. border-radius:0px;
  2998. -moz-box-shadow:none;
  2999. -webkit-box-shadow:none;
  3000. box-shadow:none;
  3001. font-family:'Helvetica', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:14px;
  3005. }
  3006. #u170995.disabled {
  3007. }
  3008. #u170996 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:0px;
  3014. height:0px;
  3015. }
  3016. #u170997_img {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:375px;
  3022. height:50px;
  3023. }
  3024. #u170997 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:29px;
  3028. top:407px;
  3029. width:375px;
  3030. height:50px;
  3031. display:flex;
  3032. }
  3033. #u170997 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:2px 2px 2px 2px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u170997_text {
  3041. border-width:0px;
  3042. word-wrap:break-word;
  3043. text-transform:none;
  3044. visibility:hidden;
  3045. }
  3046. #u170998_div {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:50px;
  3052. height:30px;
  3053. background:inherit;
  3054. background-color:rgba(255, 255, 255, 0);
  3055. border:none;
  3056. border-left:0px;
  3057. border-top:0px;
  3058. border-right:0px;
  3059. border-radius:0px;
  3060. border-bottom-right-radius:0px;
  3061. border-bottom-left-radius:0px;
  3062. -moz-box-shadow:none;
  3063. -webkit-box-shadow:none;
  3064. box-shadow:none;
  3065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3066. font-weight:400;
  3067. font-style:normal;
  3068. font-size:14px;
  3069. line-height:30px;
  3070. }
  3071. #u170998 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:53px;
  3075. top:417px;
  3076. width:50px;
  3077. height:30px;
  3078. display:flex;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:14px;
  3083. line-height:30px;
  3084. }
  3085. #u170998 .text {
  3086. position:absolute;
  3087. align-self:flex-start;
  3088. padding:0px 0px 0px 0px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u170998_text {
  3093. border-width:0px;
  3094. white-space:nowrap;
  3095. text-transform:none;
  3096. }
  3097. #u170999_input {
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:278px;
  3102. height:33px;
  3103. padding:2px 2px 2px 2px;
  3104. font-family:'Microsoft YaHei', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:13px;
  3108. letter-spacing:normal;
  3109. color:#000000;
  3110. vertical-align:none;
  3111. text-align:left;
  3112. text-transform:none;
  3113. background-color:transparent;
  3114. border-color:transparent;
  3115. }
  3116. #u170999_input.disabled {
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:278px;
  3121. height:33px;
  3122. padding:2px 2px 2px 2px;
  3123. font-family:'Microsoft YaHei', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:13px;
  3127. letter-spacing:normal;
  3128. color:#000000;
  3129. vertical-align:none;
  3130. text-align:left;
  3131. text-transform:none;
  3132. background-color:transparent;
  3133. border-color:transparent;
  3134. }
  3135. #u170999_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:278px;
  3141. height:33px;
  3142. background:inherit;
  3143. background-color:rgba(255, 255, 255, 1);
  3144. border:none;
  3145. border-radius:0px;
  3146. -moz-box-shadow:none;
  3147. -webkit-box-shadow:none;
  3148. box-shadow:none;
  3149. font-family:'Microsoft YaHei', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. }
  3153. #u170999 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:124px;
  3157. top:416px;
  3158. width:278px;
  3159. height:33px;
  3160. display:flex;
  3161. font-family:'Microsoft YaHei', sans-serif;
  3162. font-weight:400;
  3163. font-style:normal;
  3164. }
  3165. #u170999 .text {
  3166. position:absolute;
  3167. align-self:center;
  3168. padding:2px 2px 2px 2px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u170999_div.disabled {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:278px;
  3178. height:33px;
  3179. background:inherit;
  3180. background-color:rgba(240, 240, 240, 1);
  3181. border:none;
  3182. border-radius:0px;
  3183. -moz-box-shadow:none;
  3184. -webkit-box-shadow:none;
  3185. box-shadow:none;
  3186. font-family:'Microsoft YaHei', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. }
  3190. #u170999.disabled {
  3191. }
  3192. #u171000_div {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:101px;
  3198. height:48px;
  3199. background:inherit;
  3200. background-color:rgba(24, 144, 255, 1);
  3201. border:none;
  3202. border-radius:0px;
  3203. -moz-box-shadow:none;
  3204. -webkit-box-shadow:none;
  3205. box-shadow:none;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:14px;
  3210. color:#FFFFFF;
  3211. text-align:center;
  3212. line-height:30px;
  3213. }
  3214. #u171000 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:303px;
  3218. top:408px;
  3219. width:101px;
  3220. height:48px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. color:#FFFFFF;
  3227. text-align:center;
  3228. line-height:30px;
  3229. }
  3230. #u171000 .text {
  3231. position:absolute;
  3232. align-self:center;
  3233. padding:0px 0px 0px 0px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u171000_text {
  3238. border-width:0px;
  3239. word-wrap:break-word;
  3240. text-transform:none;
  3241. }
  3242. #u171001 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:0px;
  3248. height:0px;
  3249. }
  3250. #u171002_img {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:375px;
  3256. height:50px;
  3257. }
  3258. #u171002 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:29px;
  3262. top:309px;
  3263. width:375px;
  3264. height:50px;
  3265. display:flex;
  3266. }
  3267. #u171002 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 2px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u171002_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u171003_div {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:64px;
  3286. height:30px;
  3287. background:inherit;
  3288. background-color:rgba(255, 255, 255, 0);
  3289. border:none;
  3290. border-left:0px;
  3291. border-top:0px;
  3292. border-right:0px;
  3293. border-radius:0px;
  3294. border-bottom-right-radius:0px;
  3295. border-bottom-left-radius:0px;
  3296. -moz-box-shadow:none;
  3297. -webkit-box-shadow:none;
  3298. box-shadow:none;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:14px;
  3303. line-height:30px;
  3304. }
  3305. #u171003 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:53px;
  3309. top:319px;
  3310. width:64px;
  3311. height:30px;
  3312. display:flex;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:14px;
  3317. line-height:30px;
  3318. }
  3319. #u171003 .text {
  3320. position:absolute;
  3321. align-self:flex-start;
  3322. padding:0px 0px 0px 0px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u171003_text {
  3327. border-width:0px;
  3328. white-space:nowrap;
  3329. text-transform:none;
  3330. }
  3331. #u171004_input {
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:278px;
  3336. height:33px;
  3337. padding:2px 2px 2px 2px;
  3338. font-family:'Microsoft YaHei', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:13px;
  3342. letter-spacing:normal;
  3343. color:#000000;
  3344. vertical-align:none;
  3345. text-align:left;
  3346. text-transform:none;
  3347. background-color:transparent;
  3348. border-color:transparent;
  3349. }
  3350. #u171004_input.disabled {
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:278px;
  3355. height:33px;
  3356. padding:2px 2px 2px 2px;
  3357. font-family:'Microsoft YaHei', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:13px;
  3361. letter-spacing:normal;
  3362. color:#000000;
  3363. vertical-align:none;
  3364. text-align:left;
  3365. text-transform:none;
  3366. background-color:transparent;
  3367. border-color:transparent;
  3368. }
  3369. #u171004_div {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:278px;
  3375. height:33px;
  3376. background:inherit;
  3377. background-color:rgba(255, 255, 255, 1);
  3378. border:none;
  3379. border-radius:0px;
  3380. -moz-box-shadow:none;
  3381. -webkit-box-shadow:none;
  3382. box-shadow:none;
  3383. font-family:'Microsoft YaHei', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. }
  3387. #u171004 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:124px;
  3391. top:318px;
  3392. width:278px;
  3393. height:33px;
  3394. display:flex;
  3395. font-family:'Microsoft YaHei', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. }
  3399. #u171004 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:2px 2px 2px 2px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u171004_div.disabled {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:278px;
  3412. height:33px;
  3413. background:inherit;
  3414. background-color:rgba(240, 240, 240, 1);
  3415. border:none;
  3416. border-radius:0px;
  3417. -moz-box-shadow:none;
  3418. -webkit-box-shadow:none;
  3419. box-shadow:none;
  3420. font-family:'Microsoft YaHei', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. }
  3424. #u171004.disabled {
  3425. }
  3426. #u171005_div {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:335px;
  3432. height:40px;
  3433. background:inherit;
  3434. background-color:rgba(255, 255, 255, 1);
  3435. box-sizing:border-box;
  3436. border-width:1px;
  3437. border-style:solid;
  3438. border-color:rgba(215, 215, 215, 1);
  3439. border-radius:19px;
  3440. -moz-box-shadow:none;
  3441. -webkit-box-shadow:none;
  3442. box-shadow:none;
  3443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:14px;
  3447. color:#7F7F7F;
  3448. text-align:center;
  3449. line-height:30px;
  3450. }
  3451. #u171005 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:513px;
  3455. top:782px;
  3456. width:335px;
  3457. height:40px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:14px;
  3463. color:#7F7F7F;
  3464. text-align:center;
  3465. line-height:30px;
  3466. }
  3467. #u171005 .text {
  3468. position:absolute;
  3469. align-self:center;
  3470. padding:0px 0px 0px 0px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u171005_text {
  3475. border-width:0px;
  3476. word-wrap:break-word;
  3477. text-transform:none;
  3478. }
  3479. #u171006 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:0px;
  3485. height:0px;
  3486. }
  3487. #u171007_div {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:0px;
  3492. width:341px;
  3493. height:34px;
  3494. background:inherit;
  3495. background-color:rgba(255, 255, 255, 0);
  3496. border:none;
  3497. border-left:0px;
  3498. border-top:0px;
  3499. border-right:0px;
  3500. border-radius:0px;
  3501. border-bottom-right-radius:0px;
  3502. border-bottom-left-radius:0px;
  3503. -moz-box-shadow:none;
  3504. -webkit-box-shadow:none;
  3505. box-shadow:none;
  3506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:12px;
  3510. color:#F59A23;
  3511. }
  3512. #u171007 {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:521px;
  3516. top:271px;
  3517. width:341px;
  3518. height:34px;
  3519. display:flex;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:12px;
  3524. color:#F59A23;
  3525. }
  3526. #u171007 .text {
  3527. position:absolute;
  3528. align-self:flex-start;
  3529. padding:0px 0px 0px 0px;
  3530. box-sizing:border-box;
  3531. width:100%;
  3532. }
  3533. #u171007_text {
  3534. border-width:0px;
  3535. word-wrap:break-word;
  3536. text-transform:none;
  3537. }
  3538. #u171008_img {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:11px;
  3544. height:11px;
  3545. }
  3546. #u171008 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:506px;
  3550. top:274px;
  3551. width:11px;
  3552. height:11px;
  3553. display:flex;
  3554. }
  3555. #u171008 .text {
  3556. position:absolute;
  3557. align-self:center;
  3558. padding:2px 2px 2px 2px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u171008_text {
  3563. border-width:0px;
  3564. word-wrap:break-word;
  3565. text-transform:none;
  3566. visibility:hidden;
  3567. }
  3568. #u171009_div {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:311px;
  3574. height:150px;
  3575. background:inherit;
  3576. background-color:rgba(255, 255, 255, 0);
  3577. border:none;
  3578. border-left:0px;
  3579. border-top:0px;
  3580. border-right:0px;
  3581. border-radius:0px;
  3582. border-bottom-right-radius:0px;
  3583. border-bottom-left-radius:0px;
  3584. -moz-box-shadow:none;
  3585. -webkit-box-shadow:none;
  3586. box-shadow:none;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:12px;
  3591. color:#D9001B;
  3592. line-height:25px;
  3593. }
  3594. #u171009 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:61px;
  3598. top:558px;
  3599. width:311px;
  3600. height:150px;
  3601. display:flex;
  3602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3603. font-weight:400;
  3604. font-style:normal;
  3605. font-size:12px;
  3606. color:#D9001B;
  3607. line-height:25px;
  3608. }
  3609. #u171009 .text {
  3610. position:absolute;
  3611. align-self:flex-start;
  3612. padding:0px 0px 0px 0px;
  3613. box-sizing:border-box;
  3614. width:100%;
  3615. }
  3616. #u171009_text {
  3617. border-width:0px;
  3618. word-wrap:break-word;
  3619. text-transform:none;
  3620. }
  3621. #u171010_div {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:311px;
  3627. height:225px;
  3628. background:inherit;
  3629. background-color:rgba(255, 255, 255, 0);
  3630. border:none;
  3631. border-left:0px;
  3632. border-top:0px;
  3633. border-right:0px;
  3634. border-radius:0px;
  3635. border-bottom-right-radius:0px;
  3636. border-bottom-left-radius:0px;
  3637. -moz-box-shadow:none;
  3638. -webkit-box-shadow:none;
  3639. box-shadow:none;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. color:#D9001B;
  3645. line-height:25px;
  3646. }
  3647. #u171010 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:521px;
  3651. top:319px;
  3652. width:311px;
  3653. height:225px;
  3654. display:flex;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:12px;
  3659. color:#D9001B;
  3660. line-height:25px;
  3661. }
  3662. #u171010 .text {
  3663. position:absolute;
  3664. align-self:flex-start;
  3665. padding:0px 0px 0px 0px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u171010_text {
  3670. border-width:0px;
  3671. word-wrap:break-word;
  3672. text-transform:none;
  3673. }
  3674. #u171011_div {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:311px;
  3680. height:75px;
  3681. background:inherit;
  3682. background-color:rgba(255, 255, 255, 0);
  3683. border:none;
  3684. border-left:0px;
  3685. border-top:0px;
  3686. border-right:0px;
  3687. border-radius:0px;
  3688. border-bottom-right-radius:0px;
  3689. border-bottom-left-radius:0px;
  3690. -moz-box-shadow:none;
  3691. -webkit-box-shadow:none;
  3692. box-shadow:none;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:#D9001B;
  3698. line-height:25px;
  3699. }
  3700. #u171011 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:936px;
  3704. top:283px;
  3705. width:311px;
  3706. height:75px;
  3707. display:flex;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:12px;
  3712. color:#D9001B;
  3713. line-height:25px;
  3714. }
  3715. #u171011 .text {
  3716. position:absolute;
  3717. align-self:flex-start;
  3718. padding:0px 0px 0px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u171011_text {
  3723. border-width:0px;
  3724. word-wrap:break-word;
  3725. text-transform:none;
  3726. }