styles.css 59 KB

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