styles.css 67 KB

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