styles.css 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-96px;
  6. width:1665px;
  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. #u5473 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u5474_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u5474 {
  53. border-width:0px;
  54. position:absolute;
  55. left:96px;
  56. top:49px;
  57. width:800px;
  58. height:1201px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u5474 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u5474_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u5475_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:800px;
  87. height:501px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(242, 242, 242, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u5475 {
  107. border-width:0px;
  108. position:absolute;
  109. left:96px;
  110. top:749px;
  111. width:800px;
  112. height:501px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u5475 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u5475_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u5476_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:67px;
  141. height:40px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-top:0px;
  146. border-right:0px;
  147. border-bottom:0px;
  148. border-radius:0px;
  149. border-top-left-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  155. font-weight:400;
  156. font-style:normal;
  157. font-size:14px;
  158. color:#555555;
  159. }
  160. #u5476 {
  161. border-width:0px;
  162. position:absolute;
  163. left:120px;
  164. top:709px;
  165. width:67px;
  166. height:40px;
  167. display:flex;
  168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  169. font-weight:400;
  170. font-style:normal;
  171. font-size:14px;
  172. color:#555555;
  173. }
  174. #u5476 .text {
  175. position:absolute;
  176. align-self:center;
  177. padding:5px 10px 5px 0px;
  178. box-sizing:border-box;
  179. width:100%;
  180. }
  181. #u5476_text {
  182. border-width:0px;
  183. white-space:nowrap;
  184. text-transform:none;
  185. }
  186. #u5477_div {
  187. border-width:0px;
  188. position:absolute;
  189. left:0px;
  190. top:0px;
  191. width:800px;
  192. height:560px;
  193. background:inherit;
  194. background-color:rgba(255, 255, 255, 1);
  195. box-sizing:border-box;
  196. border-width:1px;
  197. border-style:solid;
  198. border-color:rgba(242, 242, 242, 1);
  199. border-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  204. font-weight:400;
  205. font-style:normal;
  206. font-size:14px;
  207. color:#AAAAAA;
  208. text-align:center;
  209. line-height:30px;
  210. }
  211. #u5477 {
  212. border-width:0px;
  213. position:absolute;
  214. left:96px;
  215. top:149px;
  216. width:800px;
  217. height:560px;
  218. display:flex;
  219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  220. font-weight:400;
  221. font-style:normal;
  222. font-size:14px;
  223. color:#AAAAAA;
  224. text-align:center;
  225. line-height:30px;
  226. }
  227. #u5477 .text {
  228. position:absolute;
  229. align-self:center;
  230. padding:5px 10px 5px 10px;
  231. box-sizing:border-box;
  232. width:100%;
  233. }
  234. #u5477_text {
  235. border-width:0px;
  236. word-wrap:break-word;
  237. text-transform:none;
  238. visibility:hidden;
  239. }
  240. #u5478_div {
  241. border-width:0px;
  242. position:absolute;
  243. left:0px;
  244. top:0px;
  245. width:800px;
  246. height:60px;
  247. background:inherit;
  248. background-color:rgba(255, 255, 255, 1);
  249. box-sizing:border-box;
  250. border-width:1px;
  251. border-style:solid;
  252. border-color:rgba(242, 242, 242, 1);
  253. border-radius:0px;
  254. -moz-box-shadow:none;
  255. -webkit-box-shadow:none;
  256. box-shadow:none;
  257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  258. font-weight:400;
  259. font-style:normal;
  260. font-size:14px;
  261. color:#AAAAAA;
  262. text-align:center;
  263. line-height:30px;
  264. }
  265. #u5478 {
  266. border-width:0px;
  267. position:absolute;
  268. left:96px;
  269. top:49px;
  270. width:800px;
  271. height:60px;
  272. display:flex;
  273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  274. font-weight:400;
  275. font-style:normal;
  276. font-size:14px;
  277. color:#AAAAAA;
  278. text-align:center;
  279. line-height:30px;
  280. }
  281. #u5478 .text {
  282. position:absolute;
  283. align-self:center;
  284. padding:5px 10px 5px 10px;
  285. box-sizing:border-box;
  286. width:100%;
  287. }
  288. #u5478_text {
  289. border-width:0px;
  290. word-wrap:break-word;
  291. text-transform:none;
  292. visibility:hidden;
  293. }
  294. #u5479_div {
  295. border-width:0px;
  296. position:absolute;
  297. left:0px;
  298. top:0px;
  299. width:191px;
  300. height:35px;
  301. background:inherit;
  302. background-color:rgba(255, 255, 255, 0);
  303. border:none;
  304. border-top:0px;
  305. border-right:0px;
  306. border-bottom:0px;
  307. border-radius:0px;
  308. border-top-left-radius:0px;
  309. border-bottom-left-radius:0px;
  310. -moz-box-shadow:none;
  311. -webkit-box-shadow:none;
  312. box-shadow:none;
  313. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  314. font-weight:500;
  315. font-style:normal;
  316. font-size:18px;
  317. }
  318. #u5479 {
  319. border-width:0px;
  320. position:absolute;
  321. left:127px;
  322. top:62px;
  323. width:191px;
  324. height:35px;
  325. display:flex;
  326. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  327. font-weight:500;
  328. font-style:normal;
  329. font-size:18px;
  330. }
  331. #u5479 .text {
  332. position:absolute;
  333. align-self:center;
  334. padding:5px 10px 5px 0px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u5479_text {
  339. border-width:0px;
  340. white-space:nowrap;
  341. text-transform:none;
  342. }
  343. #u5480_div {
  344. border-width:0px;
  345. position:absolute;
  346. left:0px;
  347. top:0px;
  348. width:40px;
  349. height:40px;
  350. background:inherit;
  351. background-color:rgba(255, 255, 255, 0);
  352. border:none;
  353. border-top:0px;
  354. border-right:0px;
  355. border-bottom:0px;
  356. border-radius:0px;
  357. border-top-left-radius:0px;
  358. border-bottom-left-radius:0px;
  359. -moz-box-shadow:none;
  360. -webkit-box-shadow:none;
  361. box-shadow:none;
  362. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  363. font-weight:500;
  364. font-style:normal;
  365. font-size:24px;
  366. text-align:center;
  367. }
  368. #u5480 {
  369. border-width:0px;
  370. position:absolute;
  371. left:847px;
  372. top:49px;
  373. width:40px;
  374. height:40px;
  375. display:flex;
  376. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  377. font-weight:500;
  378. font-style:normal;
  379. font-size:24px;
  380. text-align:center;
  381. }
  382. #u5480 .text {
  383. position:absolute;
  384. align-self:center;
  385. padding:5px 10px 5px 0px;
  386. box-sizing:border-box;
  387. width:100%;
  388. }
  389. #u5480_text {
  390. border-width:0px;
  391. word-wrap:break-word;
  392. text-transform:none;
  393. }
  394. #u5481 {
  395. border-width:0px;
  396. position:absolute;
  397. left:0px;
  398. top:0px;
  399. width:0px;
  400. height:0px;
  401. }
  402. #u5482_div {
  403. border-width:0px;
  404. position:absolute;
  405. left:0px;
  406. top:0px;
  407. width:800px;
  408. height:60px;
  409. background:inherit;
  410. background-color:rgba(255, 255, 255, 1);
  411. box-sizing:border-box;
  412. border-width:1px;
  413. border-style:solid;
  414. border-color:rgba(215, 215, 215, 1);
  415. border-radius:0px;
  416. -moz-box-shadow:none;
  417. -webkit-box-shadow:none;
  418. box-shadow:none;
  419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  420. font-weight:400;
  421. font-style:normal;
  422. font-size:14px;
  423. color:#AAAAAA;
  424. text-align:center;
  425. line-height:30px;
  426. }
  427. #u5482 {
  428. border-width:0px;
  429. position:absolute;
  430. left:96px;
  431. top:1190px;
  432. width:800px;
  433. height:60px;
  434. display:flex;
  435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  436. font-weight:400;
  437. font-style:normal;
  438. font-size:14px;
  439. color:#AAAAAA;
  440. text-align:center;
  441. line-height:30px;
  442. }
  443. #u5482 .text {
  444. position:absolute;
  445. align-self:center;
  446. padding:5px 10px 5px 10px;
  447. box-sizing:border-box;
  448. width:100%;
  449. }
  450. #u5482_text {
  451. border-width:0px;
  452. word-wrap:break-word;
  453. text-transform:none;
  454. visibility:hidden;
  455. }
  456. #u5483_div {
  457. border-width:0px;
  458. position:absolute;
  459. left:0px;
  460. top:0px;
  461. width:80px;
  462. height:30px;
  463. background:inherit;
  464. background-color:rgba(255, 255, 255, 1);
  465. box-sizing:border-box;
  466. border-width:1px;
  467. border-style:solid;
  468. border-color:rgba(170, 170, 170, 1);
  469. border-radius:4px;
  470. -moz-box-shadow:none;
  471. -webkit-box-shadow:none;
  472. box-shadow:none;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:14px;
  477. }
  478. #u5483 {
  479. border-width:0px;
  480. position:absolute;
  481. left:779px;
  482. top:1205px;
  483. width:80px;
  484. height:30px;
  485. display:flex;
  486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  487. font-weight:400;
  488. font-style:normal;
  489. font-size:14px;
  490. }
  491. #u5483 .text {
  492. position:absolute;
  493. align-self:center;
  494. padding:2px 2px 2px 2px;
  495. box-sizing:border-box;
  496. width:100%;
  497. }
  498. #u5483_text {
  499. border-width:0px;
  500. word-wrap:break-word;
  501. text-transform:none;
  502. }
  503. #u5484_div {
  504. border-width:0px;
  505. position:absolute;
  506. left:0px;
  507. top:0px;
  508. width:81px;
  509. height:30px;
  510. background:inherit;
  511. background-color:rgba(255, 255, 255, 0);
  512. border:none;
  513. border-top:0px;
  514. border-right:0px;
  515. border-bottom:0px;
  516. border-radius:0px;
  517. border-top-left-radius:0px;
  518. border-bottom-left-radius:0px;
  519. -moz-box-shadow:none;
  520. -webkit-box-shadow:none;
  521. box-shadow:none;
  522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  523. font-weight:400;
  524. font-style:normal;
  525. font-size:14px;
  526. color:#555555;
  527. }
  528. #u5484 {
  529. border-width:0px;
  530. position:absolute;
  531. left:127px;
  532. top:169px;
  533. width:81px;
  534. height:30px;
  535. display:flex;
  536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  537. font-weight:400;
  538. font-style:normal;
  539. font-size:14px;
  540. color:#555555;
  541. }
  542. #u5484 .text {
  543. position:absolute;
  544. align-self:center;
  545. padding:5px 10px 5px 0px;
  546. box-sizing:border-box;
  547. width:100%;
  548. }
  549. #u5484_text {
  550. border-width:0px;
  551. white-space:nowrap;
  552. text-transform:none;
  553. }
  554. #u5485_div {
  555. border-width:0px;
  556. position:absolute;
  557. left:0px;
  558. top:0px;
  559. width:109px;
  560. height:30px;
  561. background:inherit;
  562. background-color:rgba(255, 255, 255, 0);
  563. border:none;
  564. border-top:0px;
  565. border-right:0px;
  566. border-bottom:0px;
  567. border-radius:0px;
  568. border-top-left-radius:0px;
  569. border-bottom-left-radius:0px;
  570. -moz-box-shadow:none;
  571. -webkit-box-shadow:none;
  572. box-shadow:none;
  573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  574. font-weight:400;
  575. font-style:normal;
  576. font-size:14px;
  577. color:#555555;
  578. }
  579. #u5485 {
  580. border-width:0px;
  581. position:absolute;
  582. left:127px;
  583. top:249px;
  584. width:109px;
  585. height:30px;
  586. display:flex;
  587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  588. font-weight:400;
  589. font-style:normal;
  590. font-size:14px;
  591. color:#555555;
  592. }
  593. #u5485 .text {
  594. position:absolute;
  595. align-self:center;
  596. padding:5px 10px 5px 0px;
  597. box-sizing:border-box;
  598. width:100%;
  599. }
  600. #u5485_text {
  601. border-width:0px;
  602. white-space:nowrap;
  603. text-transform:none;
  604. }
  605. #u5486_div {
  606. border-width:0px;
  607. position:absolute;
  608. left:0px;
  609. top:0px;
  610. width:109px;
  611. height:30px;
  612. background:inherit;
  613. background-color:rgba(255, 255, 255, 0);
  614. border:none;
  615. border-top:0px;
  616. border-right:0px;
  617. border-bottom:0px;
  618. border-radius:0px;
  619. border-top-left-radius:0px;
  620. border-bottom-left-radius:0px;
  621. -moz-box-shadow:none;
  622. -webkit-box-shadow:none;
  623. box-shadow:none;
  624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  625. font-weight:400;
  626. font-style:normal;
  627. font-size:14px;
  628. color:#555555;
  629. }
  630. #u5486 {
  631. border-width:0px;
  632. position:absolute;
  633. left:127px;
  634. top:329px;
  635. width:109px;
  636. height:30px;
  637. display:flex;
  638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  639. font-weight:400;
  640. font-style:normal;
  641. font-size:14px;
  642. color:#555555;
  643. }
  644. #u5486 .text {
  645. position:absolute;
  646. align-self:center;
  647. padding:5px 10px 5px 0px;
  648. box-sizing:border-box;
  649. width:100%;
  650. }
  651. #u5486_text {
  652. border-width:0px;
  653. white-space:nowrap;
  654. text-transform:none;
  655. }
  656. #u5487_div {
  657. border-width:0px;
  658. position:absolute;
  659. left:0px;
  660. top:0px;
  661. width:109px;
  662. height:30px;
  663. background:inherit;
  664. background-color:rgba(255, 255, 255, 0);
  665. border:none;
  666. border-top:0px;
  667. border-right:0px;
  668. border-bottom:0px;
  669. border-radius:0px;
  670. border-top-left-radius:0px;
  671. border-bottom-left-radius:0px;
  672. -moz-box-shadow:none;
  673. -webkit-box-shadow:none;
  674. box-shadow:none;
  675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  676. font-weight:400;
  677. font-style:normal;
  678. font-size:14px;
  679. color:#555555;
  680. }
  681. #u5487 {
  682. border-width:0px;
  683. position:absolute;
  684. left:127px;
  685. top:494px;
  686. width:109px;
  687. height:30px;
  688. display:flex;
  689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  690. font-weight:400;
  691. font-style:normal;
  692. font-size:14px;
  693. color:#555555;
  694. }
  695. #u5487 .text {
  696. position:absolute;
  697. align-self:center;
  698. padding:5px 10px 5px 0px;
  699. box-sizing:border-box;
  700. width:100%;
  701. }
  702. #u5487_text {
  703. border-width:0px;
  704. white-space:nowrap;
  705. text-transform:none;
  706. }
  707. #u5488_div {
  708. border-width:0px;
  709. position:absolute;
  710. left:0px;
  711. top:0px;
  712. width:81px;
  713. height:30px;
  714. background:inherit;
  715. background-color:rgba(255, 255, 255, 0);
  716. border:none;
  717. border-top:0px;
  718. border-right:0px;
  719. border-bottom:0px;
  720. border-radius:0px;
  721. border-top-left-radius:0px;
  722. border-bottom-left-radius:0px;
  723. -moz-box-shadow:none;
  724. -webkit-box-shadow:none;
  725. box-shadow:none;
  726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  727. font-weight:400;
  728. font-style:normal;
  729. font-size:14px;
  730. color:#555555;
  731. }
  732. #u5488 {
  733. border-width:0px;
  734. position:absolute;
  735. left:337px;
  736. top:494px;
  737. width:81px;
  738. height:30px;
  739. display:flex;
  740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  741. font-weight:400;
  742. font-style:normal;
  743. font-size:14px;
  744. color:#555555;
  745. }
  746. #u5488 .text {
  747. position:absolute;
  748. align-self:center;
  749. padding:5px 10px 5px 0px;
  750. box-sizing:border-box;
  751. width:100%;
  752. }
  753. #u5488_text {
  754. border-width:0px;
  755. white-space:nowrap;
  756. text-transform:none;
  757. }
  758. #u5489_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:109px;
  764. height:30px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border:none;
  768. border-top:0px;
  769. border-right:0px;
  770. border-bottom:0px;
  771. border-radius:0px;
  772. border-top-left-radius:0px;
  773. border-bottom-left-radius:0px;
  774. -moz-box-shadow:none;
  775. -webkit-box-shadow:none;
  776. box-shadow:none;
  777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  778. font-weight:400;
  779. font-style:normal;
  780. font-size:14px;
  781. color:#555555;
  782. }
  783. #u5489 {
  784. border-width:0px;
  785. position:absolute;
  786. left:576px;
  787. top:494px;
  788. width:109px;
  789. height:30px;
  790. display:flex;
  791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  792. font-weight:400;
  793. font-style:normal;
  794. font-size:14px;
  795. color:#555555;
  796. }
  797. #u5489 .text {
  798. position:absolute;
  799. align-self:center;
  800. padding:5px 10px 5px 0px;
  801. box-sizing:border-box;
  802. width:100%;
  803. }
  804. #u5489_text {
  805. border-width:0px;
  806. white-space:nowrap;
  807. text-transform:none;
  808. }
  809. #u5490_img {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:127px;
  815. height:88px;
  816. }
  817. #u5490 {
  818. border-width:0px;
  819. position:absolute;
  820. left:127px;
  821. top:530px;
  822. width:127px;
  823. height:88px;
  824. display:flex;
  825. }
  826. #u5490 .text {
  827. position:absolute;
  828. align-self:center;
  829. padding:2px 2px 2px 2px;
  830. box-sizing:border-box;
  831. width:100%;
  832. }
  833. #u5490_text {
  834. border-width:0px;
  835. word-wrap:break-word;
  836. text-transform:none;
  837. visibility:hidden;
  838. }
  839. #u5491_img {
  840. border-width:0px;
  841. position:absolute;
  842. left:0px;
  843. top:0px;
  844. width:127px;
  845. height:88px;
  846. }
  847. #u5491 {
  848. border-width:0px;
  849. position:absolute;
  850. left:337px;
  851. top:530px;
  852. width:127px;
  853. height:88px;
  854. display:flex;
  855. }
  856. #u5491 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:2px 2px 2px 2px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u5491_text {
  864. border-width:0px;
  865. word-wrap:break-word;
  866. text-transform:none;
  867. visibility:hidden;
  868. }
  869. #u5492_img {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:127px;
  875. height:88px;
  876. }
  877. #u5492 {
  878. border-width:0px;
  879. position:absolute;
  880. left:576px;
  881. top:530px;
  882. width:127px;
  883. height:88px;
  884. display:flex;
  885. }
  886. #u5492 .text {
  887. position:absolute;
  888. align-self:center;
  889. padding:2px 2px 2px 2px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u5492_text {
  894. border-width:0px;
  895. word-wrap:break-word;
  896. text-transform:none;
  897. visibility:hidden;
  898. }
  899. #u5493_div {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:73px;
  905. height:30px;
  906. background:inherit;
  907. background-color:rgba(24, 144, 255, 1);
  908. border:none;
  909. border-radius:37px;
  910. -moz-box-shadow:none;
  911. -webkit-box-shadow:none;
  912. box-shadow:none;
  913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  914. font-weight:400;
  915. font-style:normal;
  916. font-size:14px;
  917. color:#FFFFFF;
  918. text-align:center;
  919. }
  920. #u5493 {
  921. border-width:0px;
  922. position:absolute;
  923. left:794px;
  924. top:169px;
  925. width:73px;
  926. height:30px;
  927. display:flex;
  928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  929. font-weight:400;
  930. font-style:normal;
  931. font-size:14px;
  932. color:#FFFFFF;
  933. text-align:center;
  934. }
  935. #u5493 .text {
  936. position:absolute;
  937. align-self:center;
  938. padding:5px 0px 5px 0px;
  939. box-sizing:border-box;
  940. width:100%;
  941. }
  942. #u5493_text {
  943. border-width:0px;
  944. word-wrap:break-word;
  945. text-transform:none;
  946. }
  947. #u5494_div {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:67px;
  953. height:30px;
  954. background:inherit;
  955. background-color:rgba(255, 255, 255, 0);
  956. border:none;
  957. border-top:0px;
  958. border-right:0px;
  959. border-bottom:0px;
  960. border-radius:0px;
  961. border-top-left-radius:0px;
  962. border-bottom-left-radius:0px;
  963. -moz-box-shadow:none;
  964. -webkit-box-shadow:none;
  965. box-shadow:none;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. font-size:14px;
  970. color:#555555;
  971. }
  972. #u5494 {
  973. border-width:0px;
  974. position:absolute;
  975. left:127px;
  976. top:409px;
  977. width:67px;
  978. height:30px;
  979. display:flex;
  980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. font-size:14px;
  984. color:#555555;
  985. }
  986. #u5494 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:5px 10px 5px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u5494_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u5495_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:191px;
  1004. height:35px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-top:0px;
  1009. border-right:0px;
  1010. border-bottom:0px;
  1011. border-radius:0px;
  1012. border-top-left-radius:0px;
  1013. border-bottom-left-radius:0px;
  1014. -moz-box-shadow:none;
  1015. -webkit-box-shadow:none;
  1016. box-shadow:none;
  1017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1018. font-weight:400;
  1019. font-style:normal;
  1020. font-size:18px;
  1021. color:#000000;
  1022. }
  1023. #u5495 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:127px;
  1027. top:199px;
  1028. width:191px;
  1029. height:35px;
  1030. display:flex;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:18px;
  1035. color:#000000;
  1036. }
  1037. #u5495 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:5px 10px 5px 0px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u5495_text {
  1045. border-width:0px;
  1046. white-space:nowrap;
  1047. text-transform:none;
  1048. }
  1049. #u5496_div {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:126px;
  1055. height:35px;
  1056. background:inherit;
  1057. background-color:rgba(255, 255, 255, 0);
  1058. border:none;
  1059. border-top:0px;
  1060. border-right:0px;
  1061. border-bottom:0px;
  1062. border-radius:0px;
  1063. border-top-left-radius:0px;
  1064. border-bottom-left-radius:0px;
  1065. -moz-box-shadow:none;
  1066. -webkit-box-shadow:none;
  1067. box-shadow:none;
  1068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1069. font-weight:400;
  1070. font-style:normal;
  1071. font-size:18px;
  1072. color:#000000;
  1073. }
  1074. #u5496 {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:127px;
  1078. top:279px;
  1079. width:126px;
  1080. height:35px;
  1081. display:flex;
  1082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1083. font-weight:400;
  1084. font-style:normal;
  1085. font-size:18px;
  1086. color:#000000;
  1087. }
  1088. #u5496 .text {
  1089. position:absolute;
  1090. align-self:center;
  1091. padding:5px 10px 5px 0px;
  1092. box-sizing:border-box;
  1093. width:100%;
  1094. }
  1095. #u5496_text {
  1096. border-width:0px;
  1097. white-space:nowrap;
  1098. text-transform:none;
  1099. }
  1100. #u5497_div {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:0px;
  1104. top:0px;
  1105. width:126px;
  1106. height:35px;
  1107. background:inherit;
  1108. background-color:rgba(255, 255, 255, 0);
  1109. border:none;
  1110. border-top:0px;
  1111. border-right:0px;
  1112. border-bottom:0px;
  1113. border-radius:0px;
  1114. border-top-left-radius:0px;
  1115. border-bottom-left-radius:0px;
  1116. -moz-box-shadow:none;
  1117. -webkit-box-shadow:none;
  1118. box-shadow:none;
  1119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:18px;
  1123. color:#000000;
  1124. }
  1125. #u5497 {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:127px;
  1129. top:359px;
  1130. width:126px;
  1131. height:35px;
  1132. display:flex;
  1133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1134. font-weight:400;
  1135. font-style:normal;
  1136. font-size:18px;
  1137. color:#000000;
  1138. }
  1139. #u5497 .text {
  1140. position:absolute;
  1141. align-self:center;
  1142. padding:5px 10px 5px 0px;
  1143. box-sizing:border-box;
  1144. width:100%;
  1145. }
  1146. #u5497_text {
  1147. border-width:0px;
  1148. white-space:nowrap;
  1149. text-transform:none;
  1150. }
  1151. #u5498_div {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:0px;
  1155. top:0px;
  1156. width:551px;
  1157. height:35px;
  1158. background:inherit;
  1159. background-color:rgba(255, 255, 255, 0);
  1160. border:none;
  1161. border-top:0px;
  1162. border-right:0px;
  1163. border-bottom:0px;
  1164. border-radius:0px;
  1165. border-top-left-radius:0px;
  1166. border-bottom-left-radius:0px;
  1167. -moz-box-shadow:none;
  1168. -webkit-box-shadow:none;
  1169. box-shadow:none;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. font-size:18px;
  1174. color:#000000;
  1175. }
  1176. #u5498 {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:127px;
  1180. top:439px;
  1181. width:551px;
  1182. height:35px;
  1183. display:flex;
  1184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1185. font-weight:400;
  1186. font-style:normal;
  1187. font-size:18px;
  1188. color:#000000;
  1189. }
  1190. #u5498 .text {
  1191. position:absolute;
  1192. align-self:center;
  1193. padding:5px 10px 5px 0px;
  1194. box-sizing:border-box;
  1195. width:100%;
  1196. }
  1197. #u5498_text {
  1198. border-width:0px;
  1199. white-space:nowrap;
  1200. text-transform:none;
  1201. }
  1202. #u5499_div {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:0px;
  1206. top:0px;
  1207. width:123px;
  1208. height:40px;
  1209. background:inherit;
  1210. background-color:rgba(255, 255, 255, 0);
  1211. border:none;
  1212. border-top:0px;
  1213. border-right:0px;
  1214. border-bottom:0px;
  1215. border-radius:0px;
  1216. border-top-left-radius:0px;
  1217. border-bottom-left-radius:0px;
  1218. -moz-box-shadow:none;
  1219. -webkit-box-shadow:none;
  1220. box-shadow:none;
  1221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1222. font-weight:400;
  1223. font-style:normal;
  1224. font-size:14px;
  1225. color:#555555;
  1226. }
  1227. #u5499 {
  1228. border-width:0px;
  1229. position:absolute;
  1230. left:120px;
  1231. top:109px;
  1232. width:123px;
  1233. height:40px;
  1234. display:flex;
  1235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1236. font-weight:400;
  1237. font-style:normal;
  1238. font-size:14px;
  1239. color:#555555;
  1240. }
  1241. #u5499 .text {
  1242. position:absolute;
  1243. align-self:center;
  1244. padding:5px 10px 5px 0px;
  1245. box-sizing:border-box;
  1246. width:100%;
  1247. }
  1248. #u5499_text {
  1249. border-width:0px;
  1250. white-space:nowrap;
  1251. text-transform:none;
  1252. }
  1253. #u5500_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:137px;
  1259. height:30px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-top:0px;
  1264. border-right:0px;
  1265. border-bottom:0px;
  1266. border-radius:0px;
  1267. border-top-left-radius:0px;
  1268. border-bottom-left-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1273. font-weight:400;
  1274. font-style:normal;
  1275. font-size:14px;
  1276. color:#555555;
  1277. }
  1278. #u5500 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:127px;
  1282. top:853px;
  1283. width:137px;
  1284. height:30px;
  1285. display:flex;
  1286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1287. font-weight:400;
  1288. font-style:normal;
  1289. font-size:14px;
  1290. color:#555555;
  1291. }
  1292. #u5500 .text {
  1293. position:absolute;
  1294. align-self:center;
  1295. padding:5px 10px 5px 0px;
  1296. box-sizing:border-box;
  1297. width:100%;
  1298. }
  1299. #u5500_text {
  1300. border-width:0px;
  1301. white-space:nowrap;
  1302. text-transform:none;
  1303. }
  1304. #u5501_div {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:208px;
  1310. height:30px;
  1311. background:inherit;
  1312. background-color:rgba(255, 255, 255, 0);
  1313. border:none;
  1314. border-top:0px;
  1315. border-right:0px;
  1316. border-bottom:0px;
  1317. border-radius:0px;
  1318. border-top-left-radius:0px;
  1319. border-bottom-left-radius:0px;
  1320. -moz-box-shadow:none;
  1321. -webkit-box-shadow:none;
  1322. box-shadow:none;
  1323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1324. font-weight:400;
  1325. font-style:normal;
  1326. font-size:14px;
  1327. color:#555555;
  1328. }
  1329. #u5501 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:127px;
  1333. top:648px;
  1334. width:208px;
  1335. height:30px;
  1336. display:flex;
  1337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1338. font-weight:400;
  1339. font-style:normal;
  1340. font-size:14px;
  1341. color:#555555;
  1342. }
  1343. #u5501 .text {
  1344. position:absolute;
  1345. align-self:center;
  1346. padding:5px 10px 5px 0px;
  1347. box-sizing:border-box;
  1348. width:100%;
  1349. }
  1350. #u5501_text {
  1351. border-width:0px;
  1352. white-space:nowrap;
  1353. text-transform:none;
  1354. }
  1355. #u5502_div {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:199px;
  1361. height:30px;
  1362. background:inherit;
  1363. background-color:rgba(255, 255, 255, 0);
  1364. border:none;
  1365. border-top:0px;
  1366. border-right:0px;
  1367. border-bottom:0px;
  1368. border-radius:0px;
  1369. border-top-left-radius:0px;
  1370. border-bottom-left-radius:0px;
  1371. -moz-box-shadow:none;
  1372. -webkit-box-shadow:none;
  1373. box-shadow:none;
  1374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1375. font-weight:400;
  1376. font-style:normal;
  1377. font-size:14px;
  1378. color:#555555;
  1379. }
  1380. #u5502 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:440px;
  1384. top:648px;
  1385. width:199px;
  1386. height:30px;
  1387. display:flex;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:14px;
  1392. color:#555555;
  1393. }
  1394. #u5502 .text {
  1395. position:absolute;
  1396. align-self:center;
  1397. padding:5px 10px 5px 0px;
  1398. box-sizing:border-box;
  1399. width:100%;
  1400. }
  1401. #u5502_text {
  1402. border-width:0px;
  1403. white-space:nowrap;
  1404. text-transform:none;
  1405. }
  1406. #u5503_div {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:208px;
  1412. height:30px;
  1413. background:inherit;
  1414. background-color:rgba(255, 255, 255, 0);
  1415. border:none;
  1416. border-top:0px;
  1417. border-right:0px;
  1418. border-bottom:0px;
  1419. border-radius:0px;
  1420. border-top-left-radius:0px;
  1421. border-bottom-left-radius:0px;
  1422. -moz-box-shadow:none;
  1423. -webkit-box-shadow:none;
  1424. box-shadow:none;
  1425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. font-size:14px;
  1429. color:#555555;
  1430. }
  1431. #u5503 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:127px;
  1435. top:773px;
  1436. width:208px;
  1437. height:30px;
  1438. display:flex;
  1439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1440. font-weight:400;
  1441. font-style:normal;
  1442. font-size:14px;
  1443. color:#555555;
  1444. }
  1445. #u5503 .text {
  1446. position:absolute;
  1447. align-self:center;
  1448. padding:5px 10px 5px 0px;
  1449. box-sizing:border-box;
  1450. width:100%;
  1451. }
  1452. #u5503_text {
  1453. border-width:0px;
  1454. white-space:nowrap;
  1455. text-transform:none;
  1456. }
  1457. #u5504_div {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:0px;
  1461. top:0px;
  1462. width:199px;
  1463. height:30px;
  1464. background:inherit;
  1465. background-color:rgba(255, 255, 255, 0);
  1466. border:none;
  1467. border-top:0px;
  1468. border-right:0px;
  1469. border-bottom:0px;
  1470. border-radius:0px;
  1471. border-top-left-radius:0px;
  1472. border-bottom-left-radius:0px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. font-size:14px;
  1480. color:#555555;
  1481. }
  1482. #u5504 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:127px;
  1486. top:813px;
  1487. width:199px;
  1488. height:30px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. font-size:14px;
  1494. color:#555555;
  1495. }
  1496. #u5504 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:5px 10px 5px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u5504_text {
  1504. border-width:0px;
  1505. white-space:nowrap;
  1506. text-transform:none;
  1507. }
  1508. #u5505_div {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:277px;
  1514. height:30px;
  1515. background:inherit;
  1516. background-color:rgba(255, 255, 255, 0);
  1517. border:none;
  1518. border-top:0px;
  1519. border-right:0px;
  1520. border-bottom:0px;
  1521. border-radius:0px;
  1522. border-top-left-radius:0px;
  1523. border-bottom-left-radius:0px;
  1524. -moz-box-shadow:none;
  1525. -webkit-box-shadow:none;
  1526. box-shadow:none;
  1527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1528. font-weight:400;
  1529. font-style:normal;
  1530. font-size:14px;
  1531. color:#555555;
  1532. }
  1533. #u5505 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:127px;
  1537. top:893px;
  1538. width:277px;
  1539. height:30px;
  1540. display:flex;
  1541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1542. font-weight:400;
  1543. font-style:normal;
  1544. font-size:14px;
  1545. color:#555555;
  1546. }
  1547. #u5505 .text {
  1548. position:absolute;
  1549. align-self:center;
  1550. padding:5px 10px 5px 0px;
  1551. box-sizing:border-box;
  1552. width:100%;
  1553. }
  1554. #u5505_text {
  1555. border-width:0px;
  1556. white-space:nowrap;
  1557. text-transform:none;
  1558. }
  1559. #u5506 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:0px;
  1565. height:0px;
  1566. }
  1567. #u5507_div {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:800px;
  1573. height:1201px;
  1574. background:inherit;
  1575. background-color:rgba(242, 242, 242, 1);
  1576. box-sizing:border-box;
  1577. border-width:1px;
  1578. border-style:solid;
  1579. border-color:rgba(215, 215, 215, 1);
  1580. border-radius:0px;
  1581. -moz-box-shadow:none;
  1582. -webkit-box-shadow:none;
  1583. box-shadow:none;
  1584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1585. font-weight:400;
  1586. font-style:normal;
  1587. font-size:14px;
  1588. color:#AAAAAA;
  1589. text-align:center;
  1590. line-height:30px;
  1591. }
  1592. #u5507 {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:961px;
  1596. top:49px;
  1597. width:800px;
  1598. height:1201px;
  1599. display:flex;
  1600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1601. font-weight:400;
  1602. font-style:normal;
  1603. font-size:14px;
  1604. color:#AAAAAA;
  1605. text-align:center;
  1606. line-height:30px;
  1607. }
  1608. #u5507 .text {
  1609. position:absolute;
  1610. align-self:center;
  1611. padding:5px 10px 5px 10px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u5507_text {
  1616. border-width:0px;
  1617. word-wrap:break-word;
  1618. text-transform:none;
  1619. visibility:hidden;
  1620. }
  1621. #u5508_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:800px;
  1627. height:501px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 1);
  1630. box-sizing:border-box;
  1631. border-width:1px;
  1632. border-style:solid;
  1633. border-color:rgba(242, 242, 242, 1);
  1634. border-radius:0px;
  1635. -moz-box-shadow:none;
  1636. -webkit-box-shadow:none;
  1637. box-shadow:none;
  1638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1639. font-weight:400;
  1640. font-style:normal;
  1641. font-size:14px;
  1642. color:#AAAAAA;
  1643. text-align:center;
  1644. line-height:30px;
  1645. }
  1646. #u5508 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:961px;
  1650. top:749px;
  1651. width:800px;
  1652. height:501px;
  1653. display:flex;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. font-size:14px;
  1658. color:#AAAAAA;
  1659. text-align:center;
  1660. line-height:30px;
  1661. }
  1662. #u5508 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:5px 10px 5px 10px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u5508_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u5509_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:67px;
  1681. height:40px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-top:0px;
  1686. border-right:0px;
  1687. border-bottom:0px;
  1688. border-radius:0px;
  1689. border-top-left-radius:0px;
  1690. border-bottom-left-radius:0px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1695. font-weight:400;
  1696. font-style:normal;
  1697. font-size:14px;
  1698. color:#555555;
  1699. }
  1700. #u5509 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:985px;
  1704. top:709px;
  1705. width:67px;
  1706. height:40px;
  1707. display:flex;
  1708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1709. font-weight:400;
  1710. font-style:normal;
  1711. font-size:14px;
  1712. color:#555555;
  1713. }
  1714. #u5509 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:5px 10px 5px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u5509_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u5510_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:800px;
  1732. height:560px;
  1733. background:inherit;
  1734. background-color:rgba(255, 255, 255, 1);
  1735. box-sizing:border-box;
  1736. border-width:1px;
  1737. border-style:solid;
  1738. border-color:rgba(242, 242, 242, 1);
  1739. border-radius:0px;
  1740. -moz-box-shadow:none;
  1741. -webkit-box-shadow:none;
  1742. box-shadow:none;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:14px;
  1747. color:#AAAAAA;
  1748. text-align:center;
  1749. line-height:30px;
  1750. }
  1751. #u5510 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:961px;
  1755. top:149px;
  1756. width:800px;
  1757. height:560px;
  1758. display:flex;
  1759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:14px;
  1763. color:#AAAAAA;
  1764. text-align:center;
  1765. line-height:30px;
  1766. }
  1767. #u5510 .text {
  1768. position:absolute;
  1769. align-self:center;
  1770. padding:5px 10px 5px 10px;
  1771. box-sizing:border-box;
  1772. width:100%;
  1773. }
  1774. #u5510_text {
  1775. border-width:0px;
  1776. word-wrap:break-word;
  1777. text-transform:none;
  1778. visibility:hidden;
  1779. }
  1780. #u5511_div {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:800px;
  1786. height:60px;
  1787. background:inherit;
  1788. background-color:rgba(255, 255, 255, 1);
  1789. box-sizing:border-box;
  1790. border-width:1px;
  1791. border-style:solid;
  1792. border-color:rgba(242, 242, 242, 1);
  1793. border-radius:0px;
  1794. -moz-box-shadow:none;
  1795. -webkit-box-shadow:none;
  1796. box-shadow:none;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:14px;
  1801. color:#AAAAAA;
  1802. text-align:center;
  1803. line-height:30px;
  1804. }
  1805. #u5511 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:961px;
  1809. top:49px;
  1810. width:800px;
  1811. height:60px;
  1812. display:flex;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:14px;
  1817. color:#AAAAAA;
  1818. text-align:center;
  1819. line-height:30px;
  1820. }
  1821. #u5511 .text {
  1822. position:absolute;
  1823. align-self:center;
  1824. padding:5px 10px 5px 10px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u5511_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. visibility:hidden;
  1833. }
  1834. #u5512_div {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:191px;
  1840. height:35px;
  1841. background:inherit;
  1842. background-color:rgba(255, 255, 255, 0);
  1843. border:none;
  1844. border-top:0px;
  1845. border-right:0px;
  1846. border-bottom:0px;
  1847. border-radius:0px;
  1848. border-top-left-radius:0px;
  1849. border-bottom-left-radius:0px;
  1850. -moz-box-shadow:none;
  1851. -webkit-box-shadow:none;
  1852. box-shadow:none;
  1853. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1854. font-weight:500;
  1855. font-style:normal;
  1856. font-size:18px;
  1857. }
  1858. #u5512 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:992px;
  1862. top:62px;
  1863. width:191px;
  1864. height:35px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1867. font-weight:500;
  1868. font-style:normal;
  1869. font-size:18px;
  1870. }
  1871. #u5512 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:5px 10px 5px 0px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u5512_text {
  1879. border-width:0px;
  1880. white-space:nowrap;
  1881. text-transform:none;
  1882. }
  1883. #u5513_div {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:40px;
  1889. height:40px;
  1890. background:inherit;
  1891. background-color:rgba(255, 255, 255, 0);
  1892. border:none;
  1893. border-top:0px;
  1894. border-right:0px;
  1895. border-bottom:0px;
  1896. border-radius:0px;
  1897. border-top-left-radius:0px;
  1898. border-bottom-left-radius:0px;
  1899. -moz-box-shadow:none;
  1900. -webkit-box-shadow:none;
  1901. box-shadow:none;
  1902. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1903. font-weight:500;
  1904. font-style:normal;
  1905. font-size:24px;
  1906. text-align:center;
  1907. }
  1908. #u5513 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:1712px;
  1912. top:49px;
  1913. width:40px;
  1914. height:40px;
  1915. display:flex;
  1916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1917. font-weight:500;
  1918. font-style:normal;
  1919. font-size:24px;
  1920. text-align:center;
  1921. }
  1922. #u5513 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:5px 10px 5px 0px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u5513_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. }
  1934. #u5514 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:0px;
  1940. height:0px;
  1941. }
  1942. #u5515_div {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:800px;
  1948. height:60px;
  1949. background:inherit;
  1950. background-color:rgba(255, 255, 255, 1);
  1951. box-sizing:border-box;
  1952. border-width:1px;
  1953. border-style:solid;
  1954. border-color:rgba(215, 215, 215, 1);
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. color:#AAAAAA;
  1964. text-align:center;
  1965. line-height:30px;
  1966. }
  1967. #u5515 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:961px;
  1971. top:1190px;
  1972. width:800px;
  1973. height:60px;
  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:#AAAAAA;
  1980. text-align:center;
  1981. line-height:30px;
  1982. }
  1983. #u5515 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:5px 10px 5px 10px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u5515_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. visibility:hidden;
  1995. }
  1996. #u5516_div {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:80px;
  2002. height:30px;
  2003. background:inherit;
  2004. background-color:rgba(255, 255, 255, 1);
  2005. box-sizing:border-box;
  2006. border-width:1px;
  2007. border-style:solid;
  2008. border-color:rgba(170, 170, 170, 1);
  2009. border-radius:4px;
  2010. -moz-box-shadow:none;
  2011. -webkit-box-shadow:none;
  2012. box-shadow:none;
  2013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2014. font-weight:400;
  2015. font-style:normal;
  2016. font-size:14px;
  2017. }
  2018. #u5516 {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:1644px;
  2022. top:1205px;
  2023. width:80px;
  2024. height:30px;
  2025. display:flex;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:14px;
  2030. }
  2031. #u5516 .text {
  2032. position:absolute;
  2033. align-self:center;
  2034. padding:2px 2px 2px 2px;
  2035. box-sizing:border-box;
  2036. width:100%;
  2037. }
  2038. #u5516_text {
  2039. border-width:0px;
  2040. word-wrap:break-word;
  2041. text-transform:none;
  2042. }
  2043. #u5517_div {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:81px;
  2049. height:30px;
  2050. background:inherit;
  2051. background-color:rgba(255, 255, 255, 0);
  2052. border:none;
  2053. border-top:0px;
  2054. border-right:0px;
  2055. border-bottom:0px;
  2056. border-radius:0px;
  2057. border-top-left-radius:0px;
  2058. border-bottom-left-radius:0px;
  2059. -moz-box-shadow:none;
  2060. -webkit-box-shadow:none;
  2061. box-shadow:none;
  2062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:14px;
  2066. color:#555555;
  2067. }
  2068. #u5517 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:992px;
  2072. top:169px;
  2073. width:81px;
  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. color:#555555;
  2081. }
  2082. #u5517 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:5px 10px 5px 0px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u5517_text {
  2090. border-width:0px;
  2091. white-space:nowrap;
  2092. text-transform:none;
  2093. }
  2094. #u5518_div {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:109px;
  2100. height:30px;
  2101. background:inherit;
  2102. background-color:rgba(255, 255, 255, 0);
  2103. border:none;
  2104. border-top:0px;
  2105. border-right:0px;
  2106. border-bottom:0px;
  2107. border-radius:0px;
  2108. border-top-left-radius:0px;
  2109. border-bottom-left-radius:0px;
  2110. -moz-box-shadow:none;
  2111. -webkit-box-shadow:none;
  2112. box-shadow:none;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:14px;
  2117. color:#555555;
  2118. }
  2119. #u5518 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:992px;
  2123. top:249px;
  2124. width:109px;
  2125. height:30px;
  2126. display:flex;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:14px;
  2131. color:#555555;
  2132. }
  2133. #u5518 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:5px 10px 5px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u5518_text {
  2141. border-width:0px;
  2142. white-space:nowrap;
  2143. text-transform:none;
  2144. }
  2145. #u5519_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:109px;
  2151. height:30px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 0);
  2154. border:none;
  2155. border-top:0px;
  2156. border-right:0px;
  2157. border-bottom:0px;
  2158. border-radius:0px;
  2159. border-top-left-radius:0px;
  2160. border-bottom-left-radius:0px;
  2161. -moz-box-shadow:none;
  2162. -webkit-box-shadow:none;
  2163. box-shadow:none;
  2164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2165. font-weight:400;
  2166. font-style:normal;
  2167. font-size:14px;
  2168. color:#555555;
  2169. }
  2170. #u5519 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:992px;
  2174. top:329px;
  2175. width:109px;
  2176. height:30px;
  2177. display:flex;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:14px;
  2182. color:#555555;
  2183. }
  2184. #u5519 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:5px 10px 5px 0px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u5519_text {
  2192. border-width:0px;
  2193. white-space:nowrap;
  2194. text-transform:none;
  2195. }
  2196. #u5520_div {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:109px;
  2202. height:30px;
  2203. background:inherit;
  2204. background-color:rgba(255, 255, 255, 0);
  2205. border:none;
  2206. border-top:0px;
  2207. border-right:0px;
  2208. border-bottom:0px;
  2209. border-radius:0px;
  2210. border-top-left-radius:0px;
  2211. border-bottom-left-radius:0px;
  2212. -moz-box-shadow:none;
  2213. -webkit-box-shadow:none;
  2214. box-shadow:none;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:14px;
  2219. color:#555555;
  2220. }
  2221. #u5520 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:992px;
  2225. top:494px;
  2226. width:109px;
  2227. height:30px;
  2228. display:flex;
  2229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:14px;
  2233. color:#555555;
  2234. }
  2235. #u5520 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:5px 10px 5px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u5520_text {
  2243. border-width:0px;
  2244. white-space:nowrap;
  2245. text-transform:none;
  2246. }
  2247. #u5521_div {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:81px;
  2253. height:30px;
  2254. background:inherit;
  2255. background-color:rgba(255, 255, 255, 0);
  2256. border:none;
  2257. border-top:0px;
  2258. border-right:0px;
  2259. border-bottom:0px;
  2260. border-radius:0px;
  2261. border-top-left-radius:0px;
  2262. border-bottom-left-radius:0px;
  2263. -moz-box-shadow:none;
  2264. -webkit-box-shadow:none;
  2265. box-shadow:none;
  2266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:14px;
  2270. color:#555555;
  2271. }
  2272. #u5521 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:1202px;
  2276. top:494px;
  2277. width:81px;
  2278. height:30px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:14px;
  2284. color:#555555;
  2285. }
  2286. #u5521 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:5px 10px 5px 0px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u5521_text {
  2294. border-width:0px;
  2295. white-space:nowrap;
  2296. text-transform:none;
  2297. }
  2298. #u5522_div {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:109px;
  2304. height:30px;
  2305. background:inherit;
  2306. background-color:rgba(255, 255, 255, 0);
  2307. border:none;
  2308. border-top:0px;
  2309. border-right:0px;
  2310. border-bottom:0px;
  2311. border-radius:0px;
  2312. border-top-left-radius:0px;
  2313. border-bottom-left-radius:0px;
  2314. -moz-box-shadow:none;
  2315. -webkit-box-shadow:none;
  2316. box-shadow:none;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:14px;
  2321. color:#555555;
  2322. }
  2323. #u5522 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:1441px;
  2327. top:494px;
  2328. width:109px;
  2329. height:30px;
  2330. display:flex;
  2331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2332. font-weight:400;
  2333. font-style:normal;
  2334. font-size:14px;
  2335. color:#555555;
  2336. }
  2337. #u5522 .text {
  2338. position:absolute;
  2339. align-self:center;
  2340. padding:5px 10px 5px 0px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u5522_text {
  2345. border-width:0px;
  2346. white-space:nowrap;
  2347. text-transform:none;
  2348. }
  2349. #u5523_img {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:127px;
  2355. height:88px;
  2356. }
  2357. #u5523 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:992px;
  2361. top:530px;
  2362. width:127px;
  2363. height:88px;
  2364. display:flex;
  2365. }
  2366. #u5523 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 2px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u5523_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u5524_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:127px;
  2385. height:88px;
  2386. }
  2387. #u5524 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:1202px;
  2391. top:530px;
  2392. width:127px;
  2393. height:88px;
  2394. display:flex;
  2395. }
  2396. #u5524 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 2px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u5524_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u5525_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:127px;
  2415. height:88px;
  2416. }
  2417. #u5525 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:1441px;
  2421. top:530px;
  2422. width:127px;
  2423. height:88px;
  2424. display:flex;
  2425. }
  2426. #u5525 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:2px 2px 2px 2px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u5525_text {
  2434. border-width:0px;
  2435. word-wrap:break-word;
  2436. text-transform:none;
  2437. visibility:hidden;
  2438. }
  2439. #u5526_div {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:73px;
  2445. height:30px;
  2446. background:inherit;
  2447. background-color:rgba(24, 144, 255, 1);
  2448. border:none;
  2449. border-radius:37px;
  2450. -moz-box-shadow:none;
  2451. -webkit-box-shadow:none;
  2452. box-shadow:none;
  2453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2454. font-weight:400;
  2455. font-style:normal;
  2456. font-size:14px;
  2457. color:#FFFFFF;
  2458. text-align:center;
  2459. }
  2460. #u5526 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:1659px;
  2464. top:169px;
  2465. width:73px;
  2466. height:30px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:14px;
  2472. color:#FFFFFF;
  2473. text-align:center;
  2474. }
  2475. #u5526 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:5px 0px 5px 0px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u5526_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. }
  2487. #u5527_div {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:67px;
  2493. height:30px;
  2494. background:inherit;
  2495. background-color:rgba(255, 255, 255, 0);
  2496. border:none;
  2497. border-top:0px;
  2498. border-right:0px;
  2499. border-bottom:0px;
  2500. border-radius:0px;
  2501. border-top-left-radius:0px;
  2502. border-bottom-left-radius:0px;
  2503. -moz-box-shadow:none;
  2504. -webkit-box-shadow:none;
  2505. box-shadow:none;
  2506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2507. font-weight:400;
  2508. font-style:normal;
  2509. font-size:14px;
  2510. color:#555555;
  2511. }
  2512. #u5527 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:992px;
  2516. top:409px;
  2517. width:67px;
  2518. height:30px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:14px;
  2524. color:#555555;
  2525. }
  2526. #u5527 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:5px 10px 5px 0px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u5527_text {
  2534. border-width:0px;
  2535. white-space:nowrap;
  2536. text-transform:none;
  2537. }
  2538. #u5528_div {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:191px;
  2544. height:35px;
  2545. background:inherit;
  2546. background-color:rgba(255, 255, 255, 0);
  2547. border:none;
  2548. border-top:0px;
  2549. border-right:0px;
  2550. border-bottom:0px;
  2551. border-radius:0px;
  2552. border-top-left-radius:0px;
  2553. border-bottom-left-radius:0px;
  2554. -moz-box-shadow:none;
  2555. -webkit-box-shadow:none;
  2556. box-shadow:none;
  2557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. font-size:18px;
  2561. color:#000000;
  2562. }
  2563. #u5528 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:992px;
  2567. top:199px;
  2568. width:191px;
  2569. height:35px;
  2570. display:flex;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:18px;
  2575. color:#000000;
  2576. }
  2577. #u5528 .text {
  2578. position:absolute;
  2579. align-self:center;
  2580. padding:5px 10px 5px 0px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u5528_text {
  2585. border-width:0px;
  2586. white-space:nowrap;
  2587. text-transform:none;
  2588. }
  2589. #u5529_div {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:126px;
  2595. height:35px;
  2596. background:inherit;
  2597. background-color:rgba(255, 255, 255, 0);
  2598. border:none;
  2599. border-top:0px;
  2600. border-right:0px;
  2601. border-bottom:0px;
  2602. border-radius:0px;
  2603. border-top-left-radius:0px;
  2604. border-bottom-left-radius:0px;
  2605. -moz-box-shadow:none;
  2606. -webkit-box-shadow:none;
  2607. box-shadow:none;
  2608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2609. font-weight:400;
  2610. font-style:normal;
  2611. font-size:18px;
  2612. color:#000000;
  2613. }
  2614. #u5529 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:992px;
  2618. top:279px;
  2619. width:126px;
  2620. height:35px;
  2621. display:flex;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:18px;
  2626. color:#000000;
  2627. }
  2628. #u5529 .text {
  2629. position:absolute;
  2630. align-self:center;
  2631. padding:5px 10px 5px 0px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u5529_text {
  2636. border-width:0px;
  2637. white-space:nowrap;
  2638. text-transform:none;
  2639. }
  2640. #u5530_div {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:126px;
  2646. height:35px;
  2647. background:inherit;
  2648. background-color:rgba(255, 255, 255, 0);
  2649. border:none;
  2650. border-top:0px;
  2651. border-right:0px;
  2652. border-bottom:0px;
  2653. border-radius:0px;
  2654. border-top-left-radius:0px;
  2655. border-bottom-left-radius:0px;
  2656. -moz-box-shadow:none;
  2657. -webkit-box-shadow:none;
  2658. box-shadow:none;
  2659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:18px;
  2663. color:#000000;
  2664. }
  2665. #u5530 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:992px;
  2669. top:359px;
  2670. width:126px;
  2671. height:35px;
  2672. display:flex;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:18px;
  2677. color:#000000;
  2678. }
  2679. #u5530 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:5px 10px 5px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u5530_text {
  2687. border-width:0px;
  2688. white-space:nowrap;
  2689. text-transform:none;
  2690. }
  2691. #u5531_div {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:551px;
  2697. height:35px;
  2698. background:inherit;
  2699. background-color:rgba(255, 255, 255, 0);
  2700. border:none;
  2701. border-top:0px;
  2702. border-right:0px;
  2703. border-bottom:0px;
  2704. border-radius:0px;
  2705. border-top-left-radius:0px;
  2706. border-bottom-left-radius:0px;
  2707. -moz-box-shadow:none;
  2708. -webkit-box-shadow:none;
  2709. box-shadow:none;
  2710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:18px;
  2714. color:#000000;
  2715. }
  2716. #u5531 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:992px;
  2720. top:439px;
  2721. width:551px;
  2722. height:35px;
  2723. display:flex;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:18px;
  2728. color:#000000;
  2729. }
  2730. #u5531 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:5px 10px 5px 0px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u5531_text {
  2738. border-width:0px;
  2739. white-space:nowrap;
  2740. text-transform:none;
  2741. }
  2742. #u5532_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:123px;
  2748. height:40px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 0);
  2751. border:none;
  2752. border-top:0px;
  2753. border-right:0px;
  2754. border-bottom:0px;
  2755. border-radius:0px;
  2756. border-top-left-radius:0px;
  2757. border-bottom-left-radius:0px;
  2758. -moz-box-shadow:none;
  2759. -webkit-box-shadow:none;
  2760. box-shadow:none;
  2761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2762. font-weight:400;
  2763. font-style:normal;
  2764. font-size:14px;
  2765. color:#555555;
  2766. }
  2767. #u5532 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:985px;
  2771. top:109px;
  2772. width:123px;
  2773. height:40px;
  2774. display:flex;
  2775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:14px;
  2779. color:#555555;
  2780. }
  2781. #u5532 .text {
  2782. position:absolute;
  2783. align-self:center;
  2784. padding:5px 10px 5px 0px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u5532_text {
  2789. border-width:0px;
  2790. white-space:nowrap;
  2791. text-transform:none;
  2792. }
  2793. #u5533_div {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:305px;
  2799. height:30px;
  2800. background:inherit;
  2801. background-color:rgba(255, 255, 255, 0);
  2802. border:none;
  2803. border-top:0px;
  2804. border-right:0px;
  2805. border-bottom:0px;
  2806. border-radius:0px;
  2807. border-top-left-radius:0px;
  2808. border-bottom-left-radius:0px;
  2809. -moz-box-shadow:none;
  2810. -webkit-box-shadow:none;
  2811. box-shadow:none;
  2812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. font-size:14px;
  2816. }
  2817. #u5533 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:992px;
  2821. top:853px;
  2822. width:305px;
  2823. height:30px;
  2824. display:flex;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:14px;
  2829. }
  2830. #u5533 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:5px 10px 5px 0px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u5533_text {
  2838. border-width:0px;
  2839. white-space:nowrap;
  2840. text-transform:none;
  2841. }
  2842. #u5534_div {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:208px;
  2848. height:30px;
  2849. background:inherit;
  2850. background-color:rgba(255, 255, 255, 0);
  2851. border:none;
  2852. border-top:0px;
  2853. border-right:0px;
  2854. border-bottom:0px;
  2855. border-radius:0px;
  2856. border-top-left-radius:0px;
  2857. border-bottom-left-radius:0px;
  2858. -moz-box-shadow:none;
  2859. -webkit-box-shadow:none;
  2860. box-shadow:none;
  2861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:14px;
  2865. color:#555555;
  2866. }
  2867. #u5534 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:992px;
  2871. top:648px;
  2872. width:208px;
  2873. height:30px;
  2874. display:flex;
  2875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:14px;
  2879. color:#555555;
  2880. }
  2881. #u5534 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:5px 10px 5px 0px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u5534_text {
  2889. border-width:0px;
  2890. white-space:nowrap;
  2891. text-transform:none;
  2892. }
  2893. #u5535_div {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:199px;
  2899. height:30px;
  2900. background:inherit;
  2901. background-color:rgba(255, 255, 255, 0);
  2902. border:none;
  2903. border-top:0px;
  2904. border-right:0px;
  2905. border-bottom:0px;
  2906. border-radius:0px;
  2907. border-top-left-radius:0px;
  2908. border-bottom-left-radius:0px;
  2909. -moz-box-shadow:none;
  2910. -webkit-box-shadow:none;
  2911. box-shadow:none;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:14px;
  2916. color:#555555;
  2917. }
  2918. #u5535 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:1305px;
  2922. top:648px;
  2923. width:199px;
  2924. height:30px;
  2925. display:flex;
  2926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:14px;
  2930. color:#555555;
  2931. }
  2932. #u5535 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:5px 10px 5px 0px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u5535_text {
  2940. border-width:0px;
  2941. white-space:nowrap;
  2942. text-transform:none;
  2943. }
  2944. #u5536_div {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:208px;
  2950. height:30px;
  2951. background:inherit;
  2952. background-color:rgba(255, 255, 255, 0);
  2953. border:none;
  2954. border-top:0px;
  2955. border-right:0px;
  2956. border-bottom:0px;
  2957. border-radius:0px;
  2958. border-top-left-radius:0px;
  2959. border-bottom-left-radius:0px;
  2960. -moz-box-shadow:none;
  2961. -webkit-box-shadow:none;
  2962. box-shadow:none;
  2963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2964. font-weight:400;
  2965. font-style:normal;
  2966. font-size:14px;
  2967. color:#555555;
  2968. }
  2969. #u5536 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:992px;
  2973. top:773px;
  2974. width:208px;
  2975. height:30px;
  2976. display:flex;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:14px;
  2981. color:#555555;
  2982. }
  2983. #u5536 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:5px 10px 5px 0px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u5536_text {
  2991. border-width:0px;
  2992. white-space:nowrap;
  2993. text-transform:none;
  2994. }
  2995. #u5537_div {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:199px;
  3001. height:30px;
  3002. background:inherit;
  3003. background-color:rgba(255, 255, 255, 0);
  3004. border:none;
  3005. border-top:0px;
  3006. border-right:0px;
  3007. border-bottom:0px;
  3008. border-radius:0px;
  3009. border-top-left-radius:0px;
  3010. border-bottom-left-radius:0px;
  3011. -moz-box-shadow:none;
  3012. -webkit-box-shadow:none;
  3013. box-shadow:none;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:14px;
  3018. color:#555555;
  3019. }
  3020. #u5537 {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:992px;
  3024. top:813px;
  3025. width:199px;
  3026. height:30px;
  3027. display:flex;
  3028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:14px;
  3032. color:#555555;
  3033. }
  3034. #u5537 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:5px 10px 5px 0px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u5537_text {
  3042. border-width:0px;
  3043. white-space:nowrap;
  3044. text-transform:none;
  3045. }