styles.css 60 KB

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