styles.css 76 KB

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