styles.css 56 KB

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