styles.css 75 KB

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