styles.css 66 KB

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