styles.css 75 KB

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