styles.css 59 KB

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