styles.css 57 KB

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