styles.css 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339
  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. #u39343_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. #u39343 {
  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. #u39343 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:5px 10px 5px 10px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u39343_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u39344_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. #u39344 {
  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. #u39344 .text {
  111. position:absolute;
  112. align-self:center;
  113. padding:5px 10px 5px 0px;
  114. box-sizing:border-box;
  115. width:100%;
  116. }
  117. #u39344_text {
  118. border-width:0px;
  119. white-space:nowrap;
  120. text-transform:none;
  121. }
  122. #u39345 {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:0px;
  128. height:0px;
  129. }
  130. #u39346_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. #u39346 {
  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. #u39346 .text {
  170. position:absolute;
  171. align-self:center;
  172. padding:5px 10px 5px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u39346_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u39347_img {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:13px;
  187. height:13px;
  188. }
  189. #u39347 {
  190. border-width:0px;
  191. position:absolute;
  192. left:1077px;
  193. top:59px;
  194. width:13px;
  195. height:13px;
  196. display:flex;
  197. }
  198. #u39347 .text {
  199. position:absolute;
  200. align-self:center;
  201. padding:2px 2px 2px 2px;
  202. box-sizing:border-box;
  203. width:100%;
  204. }
  205. #u39347_text {
  206. border-width:0px;
  207. word-wrap:break-word;
  208. text-transform:none;
  209. visibility:hidden;
  210. }
  211. #u39348_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. #u39348 {
  227. border-width:0px;
  228. position:absolute;
  229. left:290px;
  230. top:116px;
  231. width:819px;
  232. height:1011px;
  233. display:flex;
  234. }
  235. #u39348 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u39348_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u39349_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. #u39349 {
  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. #u39349 .text {
  281. position:absolute;
  282. align-self:center;
  283. padding:0px 0px 0px 0px;
  284. box-sizing:border-box;
  285. width:100%;
  286. }
  287. #u39349_text {
  288. border-width:0px;
  289. white-space:nowrap;
  290. text-transform:none;
  291. }
  292. #u39350_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. #u39350 {
  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. #u39350 .text {
  325. position:absolute;
  326. align-self:center;
  327. padding:0px 0px 0px 0px;
  328. box-sizing:border-box;
  329. width:100%;
  330. }
  331. #u39350_text {
  332. border-width:0px;
  333. white-space:nowrap;
  334. text-transform:none;
  335. }
  336. #u39351_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. #u39351 {
  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. #u39351 .text {
  369. position:absolute;
  370. align-self:center;
  371. padding:0px 0px 0px 0px;
  372. box-sizing:border-box;
  373. width:100%;
  374. }
  375. #u39351_text {
  376. border-width:0px;
  377. white-space:nowrap;
  378. text-transform:none;
  379. }
  380. #u39352 {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:0px;
  386. height:0px;
  387. }
  388. #u39353_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. #u39353 {
  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. #u39353 .text {
  418. position:absolute;
  419. align-self:center;
  420. padding:2px 2px 2px 2px;
  421. box-sizing:border-box;
  422. width:100%;
  423. }
  424. #u39353_text {
  425. border-width:0px;
  426. word-wrap:break-word;
  427. text-transform:none;
  428. visibility:hidden;
  429. }
  430. #u39354_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. #u39354_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. #u39354_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. #u39354 {
  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. #u39354 .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. #u39354_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. #u39354.disabled {
  521. }
  522. .u39354_input_option {
  523. font-size:14px;
  524. }
  525. #u39355_div {
  526. border-width:0px;
  527. position:absolute;
  528. left:0px;
  529. top:0px;
  530. width:73px;
  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. #u39355 {
  550. border-width:0px;
  551. position:absolute;
  552. left:303px;
  553. top:115px;
  554. width:73px;
  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. #u39355 .text {
  563. position:absolute;
  564. align-self:center;
  565. padding:0px 0px 0px 0px;
  566. box-sizing:border-box;
  567. width:100%;
  568. }
  569. #u39355_text {
  570. border-width:0px;
  571. white-space:nowrap;
  572. text-transform:none;
  573. }
  574. #u39356_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:79px;
  580. height:30px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 1);
  583. box-sizing:border-box;
  584. border-width:1px;
  585. border-style:solid;
  586. border-color:rgba(24, 144, 255, 1);
  587. border-radius:4px;
  588. -moz-box-shadow:none;
  589. -webkit-box-shadow:none;
  590. box-shadow:none;
  591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  592. font-weight:400;
  593. font-style:normal;
  594. font-size:12px;
  595. color:#1890FF;
  596. }
  597. #u39356 {
  598. border-width:0px;
  599. position:absolute;
  600. left:1017px;
  601. top:125px;
  602. width:79px;
  603. height:30px;
  604. display:flex;
  605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  606. font-weight:400;
  607. font-style:normal;
  608. font-size:12px;
  609. color:#1890FF;
  610. }
  611. #u39356 .text {
  612. position:absolute;
  613. align-self:center;
  614. padding:5px 15px 5px 15px;
  615. box-sizing:border-box;
  616. width:100%;
  617. }
  618. #u39356_text {
  619. border-width:0px;
  620. white-space:nowrap;
  621. text-transform:none;
  622. }
  623. #u39357 {
  624. border-width:0px;
  625. position:absolute;
  626. left:303px;
  627. top:165px;
  628. width:793px;
  629. height:342px;
  630. }
  631. #u39358_img {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:112px;
  637. height:38px;
  638. }
  639. #u39358 {
  640. border-width:0px;
  641. position:absolute;
  642. left:0px;
  643. top:0px;
  644. width:112px;
  645. height:38px;
  646. display:flex;
  647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  648. font-weight:400;
  649. font-style:normal;
  650. font-size:12px;
  651. color:#FFFFFF;
  652. }
  653. #u39358 .text {
  654. position:absolute;
  655. align-self:center;
  656. padding:2px 2px 2px 0px;
  657. box-sizing:border-box;
  658. width:100%;
  659. }
  660. #u39358_text {
  661. border-width:0px;
  662. word-wrap:break-word;
  663. text-transform:none;
  664. }
  665. #u39359_img {
  666. border-width:0px;
  667. position:absolute;
  668. left:0px;
  669. top:0px;
  670. width:112px;
  671. height:38px;
  672. }
  673. #u39359 {
  674. border-width:0px;
  675. position:absolute;
  676. left:112px;
  677. top:0px;
  678. width:112px;
  679. height:38px;
  680. display:flex;
  681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  682. font-weight:400;
  683. font-style:normal;
  684. font-size:12px;
  685. color:#FFFFFF;
  686. }
  687. #u39359 .text {
  688. position:absolute;
  689. align-self:center;
  690. padding:2px 2px 2px 0px;
  691. box-sizing:border-box;
  692. width:100%;
  693. }
  694. #u39359_text {
  695. border-width:0px;
  696. word-wrap:break-word;
  697. text-transform:none;
  698. }
  699. #u39360_img {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:112px;
  705. height:38px;
  706. }
  707. #u39360 {
  708. border-width:0px;
  709. position:absolute;
  710. left:224px;
  711. top:0px;
  712. width:112px;
  713. height:38px;
  714. display:flex;
  715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  716. font-weight:400;
  717. font-style:normal;
  718. font-size:12px;
  719. color:#FFFFFF;
  720. }
  721. #u39360 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 0px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u39360_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. }
  733. #u39361_img {
  734. border-width:0px;
  735. position:absolute;
  736. left:0px;
  737. top:0px;
  738. width:112px;
  739. height:38px;
  740. }
  741. #u39361 {
  742. border-width:0px;
  743. position:absolute;
  744. left:336px;
  745. top:0px;
  746. width:112px;
  747. height:38px;
  748. display:flex;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. color:#FFFFFF;
  754. }
  755. #u39361 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 0px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u39361_text {
  763. border-width:0px;
  764. word-wrap:break-word;
  765. text-transform:none;
  766. }
  767. #u39362_img {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:110px;
  773. height:38px;
  774. }
  775. #u39362 {
  776. border-width:0px;
  777. position:absolute;
  778. left:448px;
  779. top:0px;
  780. width:110px;
  781. height:38px;
  782. display:flex;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:12px;
  787. color:#FFFFFF;
  788. }
  789. #u39362 .text {
  790. position:absolute;
  791. align-self:center;
  792. padding:2px 2px 2px 0px;
  793. box-sizing:border-box;
  794. width:100%;
  795. }
  796. #u39362_text {
  797. border-width:0px;
  798. word-wrap:break-word;
  799. text-transform:none;
  800. }
  801. #u39363_img {
  802. border-width:0px;
  803. position:absolute;
  804. left:0px;
  805. top:0px;
  806. width:115px;
  807. height:38px;
  808. }
  809. #u39363 {
  810. border-width:0px;
  811. position:absolute;
  812. left:558px;
  813. top:0px;
  814. width:115px;
  815. height:38px;
  816. display:flex;
  817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  818. font-weight:400;
  819. font-style:normal;
  820. font-size:12px;
  821. color:#FFFFFF;
  822. }
  823. #u39363 .text {
  824. position:absolute;
  825. align-self:center;
  826. padding:2px 2px 2px 0px;
  827. box-sizing:border-box;
  828. width:100%;
  829. }
  830. #u39363_text {
  831. border-width:0px;
  832. word-wrap:break-word;
  833. text-transform:none;
  834. }
  835. #u39364_img {
  836. border-width:0px;
  837. position:absolute;
  838. left:0px;
  839. top:0px;
  840. width:120px;
  841. height:38px;
  842. }
  843. #u39364 {
  844. border-width:0px;
  845. position:absolute;
  846. left:673px;
  847. top:0px;
  848. width:120px;
  849. height:38px;
  850. display:flex;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:12px;
  855. color:#FFFFFF;
  856. }
  857. #u39364 .text {
  858. position:absolute;
  859. align-self:center;
  860. padding:2px 2px 2px 0px;
  861. box-sizing:border-box;
  862. width:100%;
  863. }
  864. #u39364_text {
  865. border-width:0px;
  866. word-wrap:break-word;
  867. text-transform:none;
  868. }
  869. #u39365_img {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:112px;
  875. height:38px;
  876. }
  877. #u39365 {
  878. border-width:0px;
  879. position:absolute;
  880. left:0px;
  881. top:38px;
  882. width:112px;
  883. height:38px;
  884. display:flex;
  885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  886. font-weight:400;
  887. font-style:normal;
  888. font-size:10px;
  889. color:#333333;
  890. }
  891. #u39365 .text {
  892. position:absolute;
  893. align-self:center;
  894. padding:2px 2px 2px 0px;
  895. box-sizing:border-box;
  896. width:100%;
  897. }
  898. #u39365_text {
  899. border-width:0px;
  900. word-wrap:break-word;
  901. text-transform:none;
  902. visibility:hidden;
  903. }
  904. #u39366_img {
  905. border-width:0px;
  906. position:absolute;
  907. left:0px;
  908. top:0px;
  909. width:112px;
  910. height:38px;
  911. }
  912. #u39366 {
  913. border-width:0px;
  914. position:absolute;
  915. left:112px;
  916. top:38px;
  917. width:112px;
  918. height:38px;
  919. display:flex;
  920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  921. font-weight:400;
  922. font-style:normal;
  923. font-size:12px;
  924. color:#333333;
  925. }
  926. #u39366 .text {
  927. position:absolute;
  928. align-self:center;
  929. padding:2px 2px 2px 0px;
  930. box-sizing:border-box;
  931. width:100%;
  932. }
  933. #u39366_text {
  934. border-width:0px;
  935. word-wrap:break-word;
  936. text-transform:none;
  937. visibility:hidden;
  938. }
  939. #u39367_img {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:112px;
  945. height:38px;
  946. }
  947. #u39367 {
  948. border-width:0px;
  949. position:absolute;
  950. left:224px;
  951. top:38px;
  952. width:112px;
  953. height:38px;
  954. display:flex;
  955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  956. font-weight:400;
  957. font-style:normal;
  958. font-size:12px;
  959. color:#333333;
  960. }
  961. #u39367 .text {
  962. position:absolute;
  963. align-self:center;
  964. padding:2px 2px 2px 0px;
  965. box-sizing:border-box;
  966. width:100%;
  967. }
  968. #u39367_text {
  969. border-width:0px;
  970. word-wrap:break-word;
  971. text-transform:none;
  972. visibility:hidden;
  973. }
  974. #u39368_img {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:112px;
  980. height:38px;
  981. }
  982. #u39368 {
  983. border-width:0px;
  984. position:absolute;
  985. left:336px;
  986. top:38px;
  987. width:112px;
  988. height:38px;
  989. display:flex;
  990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  991. font-weight:400;
  992. font-style:normal;
  993. font-size:12px;
  994. color:#333333;
  995. }
  996. #u39368 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 0px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u39368_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u39369_img {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:110px;
  1015. height:38px;
  1016. }
  1017. #u39369 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:448px;
  1021. top:38px;
  1022. width:110px;
  1023. height:38px;
  1024. display:flex;
  1025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1026. font-weight:400;
  1027. font-style:normal;
  1028. font-size:12px;
  1029. color:#333333;
  1030. }
  1031. #u39369 .text {
  1032. position:absolute;
  1033. align-self:center;
  1034. padding:2px 2px 2px 0px;
  1035. box-sizing:border-box;
  1036. width:100%;
  1037. }
  1038. #u39369_text {
  1039. border-width:0px;
  1040. word-wrap:break-word;
  1041. text-transform:none;
  1042. visibility:hidden;
  1043. }
  1044. #u39370_img {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:0px;
  1048. top:0px;
  1049. width:115px;
  1050. height:38px;
  1051. }
  1052. #u39370 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:558px;
  1056. top:38px;
  1057. width:115px;
  1058. height:38px;
  1059. display:flex;
  1060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1061. font-weight:400;
  1062. font-style:normal;
  1063. font-size:12px;
  1064. color:#333333;
  1065. }
  1066. #u39370 .text {
  1067. position:absolute;
  1068. align-self:center;
  1069. padding:2px 2px 2px 0px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u39370_text {
  1074. border-width:0px;
  1075. word-wrap:break-word;
  1076. text-transform:none;
  1077. visibility:hidden;
  1078. }
  1079. #u39371_img {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:120px;
  1085. height:38px;
  1086. }
  1087. #u39371 {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:673px;
  1091. top:38px;
  1092. width:120px;
  1093. height:38px;
  1094. display:flex;
  1095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1096. font-weight:400;
  1097. font-style:normal;
  1098. font-size:12px;
  1099. color:#0089FE;
  1100. }
  1101. #u39371 .text {
  1102. position:absolute;
  1103. align-self:center;
  1104. padding:2px 2px 2px 0px;
  1105. box-sizing:border-box;
  1106. width:100%;
  1107. }
  1108. #u39371_text {
  1109. border-width:0px;
  1110. word-wrap:break-word;
  1111. text-transform:none;
  1112. }
  1113. #u39372_img {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:0px;
  1117. top:0px;
  1118. width:112px;
  1119. height:38px;
  1120. }
  1121. #u39372 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:0px;
  1125. top:76px;
  1126. width:112px;
  1127. height:38px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:12px;
  1133. color:#333333;
  1134. }
  1135. #u39372 .text {
  1136. position:absolute;
  1137. align-self:center;
  1138. padding:2px 2px 2px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u39372_text {
  1143. border-width:0px;
  1144. word-wrap:break-word;
  1145. text-transform:none;
  1146. visibility:hidden;
  1147. }
  1148. #u39373_img {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:0px;
  1152. top:0px;
  1153. width:112px;
  1154. height:38px;
  1155. }
  1156. #u39373 {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:112px;
  1160. top:76px;
  1161. width:112px;
  1162. height:38px;
  1163. display:flex;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. font-size:12px;
  1168. color:#333333;
  1169. }
  1170. #u39373 .text {
  1171. position:absolute;
  1172. align-self:center;
  1173. padding:2px 2px 2px 0px;
  1174. box-sizing:border-box;
  1175. width:100%;
  1176. }
  1177. #u39373_text {
  1178. border-width:0px;
  1179. word-wrap:break-word;
  1180. text-transform:none;
  1181. visibility:hidden;
  1182. }
  1183. #u39374_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:112px;
  1189. height:38px;
  1190. }
  1191. #u39374 {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:224px;
  1195. top:76px;
  1196. width:112px;
  1197. height:38px;
  1198. display:flex;
  1199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1200. font-weight:400;
  1201. font-style:normal;
  1202. font-size:12px;
  1203. color:#333333;
  1204. }
  1205. #u39374 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 0px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u39374_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u39375_img {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:112px;
  1224. height:38px;
  1225. }
  1226. #u39375 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:336px;
  1230. top:76px;
  1231. width:112px;
  1232. height:38px;
  1233. display:flex;
  1234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1235. font-weight:400;
  1236. font-style:normal;
  1237. font-size:12px;
  1238. color:#333333;
  1239. }
  1240. #u39375 .text {
  1241. position:absolute;
  1242. align-self:center;
  1243. padding:2px 2px 2px 0px;
  1244. box-sizing:border-box;
  1245. width:100%;
  1246. }
  1247. #u39375_text {
  1248. border-width:0px;
  1249. word-wrap:break-word;
  1250. text-transform:none;
  1251. visibility:hidden;
  1252. }
  1253. #u39376_img {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:110px;
  1259. height:38px;
  1260. }
  1261. #u39376 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:448px;
  1265. top:76px;
  1266. width:110px;
  1267. height:38px;
  1268. display:flex;
  1269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1270. font-weight:400;
  1271. font-style:normal;
  1272. font-size:12px;
  1273. color:#333333;
  1274. }
  1275. #u39376 .text {
  1276. position:absolute;
  1277. align-self:center;
  1278. padding:2px 2px 2px 0px;
  1279. box-sizing:border-box;
  1280. width:100%;
  1281. }
  1282. #u39376_text {
  1283. border-width:0px;
  1284. word-wrap:break-word;
  1285. text-transform:none;
  1286. visibility:hidden;
  1287. }
  1288. #u39377_img {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:0px;
  1292. top:0px;
  1293. width:115px;
  1294. height:38px;
  1295. }
  1296. #u39377 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:558px;
  1300. top:76px;
  1301. width:115px;
  1302. height:38px;
  1303. display:flex;
  1304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1305. font-weight:400;
  1306. font-style:normal;
  1307. font-size:12px;
  1308. color:#333333;
  1309. }
  1310. #u39377 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 0px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u39377_text {
  1318. border-width:0px;
  1319. word-wrap:break-word;
  1320. text-transform:none;
  1321. visibility:hidden;
  1322. }
  1323. #u39378_img {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:120px;
  1329. height:38px;
  1330. }
  1331. #u39378 {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:673px;
  1335. top:76px;
  1336. width:120px;
  1337. height:38px;
  1338. display:flex;
  1339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1340. font-weight:400;
  1341. font-style:normal;
  1342. font-size:12px;
  1343. color:#0089FE;
  1344. }
  1345. #u39378 .text {
  1346. position:absolute;
  1347. align-self:center;
  1348. padding:2px 2px 2px 0px;
  1349. box-sizing:border-box;
  1350. width:100%;
  1351. }
  1352. #u39378_text {
  1353. border-width:0px;
  1354. word-wrap:break-word;
  1355. text-transform:none;
  1356. visibility:hidden;
  1357. }
  1358. #u39379_img {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:112px;
  1364. height:38px;
  1365. }
  1366. #u39379 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:114px;
  1371. width:112px;
  1372. height:38px;
  1373. display:flex;
  1374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1375. font-weight:400;
  1376. font-style:normal;
  1377. font-size:12px;
  1378. color:#333333;
  1379. }
  1380. #u39379 .text {
  1381. position:absolute;
  1382. align-self:center;
  1383. padding:2px 2px 2px 0px;
  1384. box-sizing:border-box;
  1385. width:100%;
  1386. }
  1387. #u39379_text {
  1388. border-width:0px;
  1389. word-wrap:break-word;
  1390. text-transform:none;
  1391. visibility:hidden;
  1392. }
  1393. #u39380_img {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:112px;
  1399. height:38px;
  1400. }
  1401. #u39380 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:112px;
  1405. top:114px;
  1406. width:112px;
  1407. height:38px;
  1408. display:flex;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:12px;
  1413. color:#333333;
  1414. }
  1415. #u39380 .text {
  1416. position:absolute;
  1417. align-self:center;
  1418. padding:2px 2px 2px 0px;
  1419. box-sizing:border-box;
  1420. width:100%;
  1421. }
  1422. #u39380_text {
  1423. border-width:0px;
  1424. word-wrap:break-word;
  1425. text-transform:none;
  1426. visibility:hidden;
  1427. }
  1428. #u39381_img {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:112px;
  1434. height:38px;
  1435. }
  1436. #u39381 {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:224px;
  1440. top:114px;
  1441. width:112px;
  1442. height:38px;
  1443. display:flex;
  1444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1445. font-weight:400;
  1446. font-style:normal;
  1447. font-size:12px;
  1448. color:#333333;
  1449. }
  1450. #u39381 .text {
  1451. position:absolute;
  1452. align-self:center;
  1453. padding:2px 2px 2px 0px;
  1454. box-sizing:border-box;
  1455. width:100%;
  1456. }
  1457. #u39381_text {
  1458. border-width:0px;
  1459. word-wrap:break-word;
  1460. text-transform:none;
  1461. visibility:hidden;
  1462. }
  1463. #u39382_img {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:0px;
  1467. top:0px;
  1468. width:112px;
  1469. height:38px;
  1470. }
  1471. #u39382 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:336px;
  1475. top:114px;
  1476. width:112px;
  1477. height:38px;
  1478. display:flex;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. font-size:12px;
  1483. color:#333333;
  1484. }
  1485. #u39382 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 0px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u39382_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u39383_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:110px;
  1504. height:38px;
  1505. }
  1506. #u39383 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:448px;
  1510. top:114px;
  1511. width:110px;
  1512. height:38px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:12px;
  1518. color:#333333;
  1519. }
  1520. #u39383 .text {
  1521. position:absolute;
  1522. align-self:center;
  1523. padding:2px 2px 2px 0px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u39383_text {
  1528. border-width:0px;
  1529. word-wrap:break-word;
  1530. text-transform:none;
  1531. visibility:hidden;
  1532. }
  1533. #u39384_img {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:115px;
  1539. height:38px;
  1540. }
  1541. #u39384 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:558px;
  1545. top:114px;
  1546. width:115px;
  1547. height:38px;
  1548. display:flex;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:12px;
  1553. color:#333333;
  1554. }
  1555. #u39384 .text {
  1556. position:absolute;
  1557. align-self:center;
  1558. padding:2px 2px 2px 0px;
  1559. box-sizing:border-box;
  1560. width:100%;
  1561. }
  1562. #u39384_text {
  1563. border-width:0px;
  1564. word-wrap:break-word;
  1565. text-transform:none;
  1566. visibility:hidden;
  1567. }
  1568. #u39385_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:120px;
  1574. height:38px;
  1575. }
  1576. #u39385 {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:673px;
  1580. top:114px;
  1581. width:120px;
  1582. height:38px;
  1583. display:flex;
  1584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1585. font-weight:400;
  1586. font-style:normal;
  1587. font-size:12px;
  1588. color:#0089FE;
  1589. }
  1590. #u39385 .text {
  1591. position:absolute;
  1592. align-self:center;
  1593. padding:2px 2px 2px 0px;
  1594. box-sizing:border-box;
  1595. width:100%;
  1596. }
  1597. #u39385_text {
  1598. border-width:0px;
  1599. word-wrap:break-word;
  1600. text-transform:none;
  1601. visibility:hidden;
  1602. }
  1603. #u39386_img {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:112px;
  1609. height:38px;
  1610. }
  1611. #u39386 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:0px;
  1615. top:152px;
  1616. width:112px;
  1617. height:38px;
  1618. display:flex;
  1619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1620. font-weight:400;
  1621. font-style:normal;
  1622. font-size:12px;
  1623. color:#333333;
  1624. }
  1625. #u39386 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 0px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u39386_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u39387_img {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:112px;
  1644. height:38px;
  1645. }
  1646. #u39387 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:112px;
  1650. top:152px;
  1651. width:112px;
  1652. height:38px;
  1653. display:flex;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. font-size:12px;
  1658. color:#333333;
  1659. }
  1660. #u39387 .text {
  1661. position:absolute;
  1662. align-self:center;
  1663. padding:2px 2px 2px 0px;
  1664. box-sizing:border-box;
  1665. width:100%;
  1666. }
  1667. #u39387_text {
  1668. border-width:0px;
  1669. word-wrap:break-word;
  1670. text-transform:none;
  1671. visibility:hidden;
  1672. }
  1673. #u39388_img {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:112px;
  1679. height:38px;
  1680. }
  1681. #u39388 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:224px;
  1685. top:152px;
  1686. width:112px;
  1687. height:38px;
  1688. display:flex;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:12px;
  1693. color:#333333;
  1694. }
  1695. #u39388 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 0px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u39388_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u39389_img {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:112px;
  1714. height:38px;
  1715. }
  1716. #u39389 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:336px;
  1720. top:152px;
  1721. width:112px;
  1722. height:38px;
  1723. display:flex;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:12px;
  1728. color:#333333;
  1729. }
  1730. #u39389 .text {
  1731. position:absolute;
  1732. align-self:center;
  1733. padding:2px 2px 2px 0px;
  1734. box-sizing:border-box;
  1735. width:100%;
  1736. }
  1737. #u39389_text {
  1738. border-width:0px;
  1739. word-wrap:break-word;
  1740. text-transform:none;
  1741. visibility:hidden;
  1742. }
  1743. #u39390_img {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:110px;
  1749. height:38px;
  1750. }
  1751. #u39390 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:448px;
  1755. top:152px;
  1756. width:110px;
  1757. height:38px;
  1758. display:flex;
  1759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:12px;
  1763. color:#333333;
  1764. }
  1765. #u39390 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 0px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u39390_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. visibility:hidden;
  1777. }
  1778. #u39391_img {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:115px;
  1784. height:38px;
  1785. }
  1786. #u39391 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:558px;
  1790. top:152px;
  1791. width:115px;
  1792. height:38px;
  1793. display:flex;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:12px;
  1798. color:#333333;
  1799. }
  1800. #u39391 .text {
  1801. position:absolute;
  1802. align-self:center;
  1803. padding:2px 2px 2px 0px;
  1804. box-sizing:border-box;
  1805. width:100%;
  1806. }
  1807. #u39391_text {
  1808. border-width:0px;
  1809. word-wrap:break-word;
  1810. text-transform:none;
  1811. visibility:hidden;
  1812. }
  1813. #u39392_img {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:120px;
  1819. height:38px;
  1820. }
  1821. #u39392 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:673px;
  1825. top:152px;
  1826. width:120px;
  1827. height:38px;
  1828. display:flex;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:12px;
  1833. color:#AAAAAA;
  1834. }
  1835. #u39392 .text {
  1836. position:absolute;
  1837. align-self:center;
  1838. padding:2px 2px 2px 0px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u39392_text {
  1843. border-width:0px;
  1844. word-wrap:break-word;
  1845. text-transform:none;
  1846. visibility:hidden;
  1847. }
  1848. #u39393_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:112px;
  1854. height:38px;
  1855. }
  1856. #u39393 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:190px;
  1861. width:112px;
  1862. height:38px;
  1863. display:flex;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:12px;
  1868. color:#333333;
  1869. }
  1870. #u39393 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 2px 2px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u39393_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. visibility:hidden;
  1882. }
  1883. #u39394_img {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:112px;
  1889. height:38px;
  1890. }
  1891. #u39394 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:112px;
  1895. top:190px;
  1896. width:112px;
  1897. height:38px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:12px;
  1903. color:#333333;
  1904. }
  1905. #u39394 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u39394_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. visibility:hidden;
  1917. }
  1918. #u39395_img {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:112px;
  1924. height:38px;
  1925. }
  1926. #u39395 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:224px;
  1930. top:190px;
  1931. width:112px;
  1932. height:38px;
  1933. display:flex;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:12px;
  1938. color:#333333;
  1939. }
  1940. #u39395 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u39395_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. visibility:hidden;
  1952. }
  1953. #u39396_img {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:112px;
  1959. height:38px;
  1960. }
  1961. #u39396 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:336px;
  1965. top:190px;
  1966. width:112px;
  1967. height:38px;
  1968. display:flex;
  1969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:12px;
  1973. color:#333333;
  1974. }
  1975. #u39396 .text {
  1976. position:absolute;
  1977. align-self:center;
  1978. padding:2px 2px 2px 0px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u39396_text {
  1983. border-width:0px;
  1984. word-wrap:break-word;
  1985. text-transform:none;
  1986. visibility:hidden;
  1987. }
  1988. #u39397_img {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:110px;
  1994. height:38px;
  1995. }
  1996. #u39397 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:448px;
  2000. top:190px;
  2001. width:110px;
  2002. height:38px;
  2003. display:flex;
  2004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2005. font-weight:400;
  2006. font-style:normal;
  2007. font-size:12px;
  2008. color:#333333;
  2009. }
  2010. #u39397 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:2px 2px 2px 0px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u39397_text {
  2018. border-width:0px;
  2019. word-wrap:break-word;
  2020. text-transform:none;
  2021. visibility:hidden;
  2022. }
  2023. #u39398_img {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:115px;
  2029. height:38px;
  2030. }
  2031. #u39398 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:558px;
  2035. top:190px;
  2036. width:115px;
  2037. height:38px;
  2038. display:flex;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:12px;
  2043. color:#333333;
  2044. }
  2045. #u39398 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 2px 2px 0px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u39398_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. visibility:hidden;
  2057. }
  2058. #u39399_img {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:120px;
  2064. height:38px;
  2065. }
  2066. #u39399 {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:673px;
  2070. top:190px;
  2071. width:120px;
  2072. height:38px;
  2073. display:flex;
  2074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. font-size:12px;
  2078. color:#AAAAAA;
  2079. }
  2080. #u39399 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 0px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u39399_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. visibility:hidden;
  2092. }
  2093. #u39400_img {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:112px;
  2099. height:38px;
  2100. }
  2101. #u39400 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:228px;
  2106. width:112px;
  2107. height:38px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:12px;
  2113. color:#333333;
  2114. }
  2115. #u39400 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u39400_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. visibility:hidden;
  2127. }
  2128. #u39401_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:112px;
  2134. height:38px;
  2135. }
  2136. #u39401 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:112px;
  2140. top:228px;
  2141. width:112px;
  2142. height:38px;
  2143. display:flex;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:12px;
  2148. color:#333333;
  2149. }
  2150. #u39401 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 0px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u39401_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. visibility:hidden;
  2162. }
  2163. #u39402_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:112px;
  2169. height:38px;
  2170. }
  2171. #u39402 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:224px;
  2175. top:228px;
  2176. width:112px;
  2177. height:38px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. color:#333333;
  2184. }
  2185. #u39402 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u39402_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. visibility:hidden;
  2197. }
  2198. #u39403_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:112px;
  2204. height:38px;
  2205. }
  2206. #u39403 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:336px;
  2210. top:228px;
  2211. width:112px;
  2212. height:38px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. color:#333333;
  2219. }
  2220. #u39403 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 0px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u39403_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. visibility:hidden;
  2232. }
  2233. #u39404_img {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:110px;
  2239. height:38px;
  2240. }
  2241. #u39404 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:448px;
  2245. top:228px;
  2246. width:110px;
  2247. height:38px;
  2248. display:flex;
  2249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:12px;
  2253. color:#333333;
  2254. }
  2255. #u39404 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:2px 2px 2px 0px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u39404_text {
  2263. border-width:0px;
  2264. word-wrap:break-word;
  2265. text-transform:none;
  2266. visibility:hidden;
  2267. }
  2268. #u39405_img {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:115px;
  2274. height:38px;
  2275. }
  2276. #u39405 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:558px;
  2280. top:228px;
  2281. width:115px;
  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:#333333;
  2289. }
  2290. #u39405 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 2px 2px 0px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u39405_text {
  2298. border-width:0px;
  2299. word-wrap:break-word;
  2300. text-transform:none;
  2301. visibility:hidden;
  2302. }
  2303. #u39406_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:120px;
  2309. height:38px;
  2310. }
  2311. #u39406 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:673px;
  2315. top:228px;
  2316. width:120px;
  2317. height:38px;
  2318. display:flex;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:12px;
  2323. color:#333333;
  2324. }
  2325. #u39406 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 0px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u39406_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. visibility:hidden;
  2337. }
  2338. #u39407_img {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:112px;
  2344. height:38px;
  2345. }
  2346. #u39407 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:266px;
  2351. width:112px;
  2352. height:38px;
  2353. display:flex;
  2354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2355. font-weight:400;
  2356. font-style:normal;
  2357. font-size:12px;
  2358. color:#333333;
  2359. }
  2360. #u39407 .text {
  2361. position:absolute;
  2362. align-self:center;
  2363. padding:2px 2px 2px 0px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u39407_text {
  2368. border-width:0px;
  2369. word-wrap:break-word;
  2370. text-transform:none;
  2371. visibility:hidden;
  2372. }
  2373. #u39408_img {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:112px;
  2379. height:38px;
  2380. }
  2381. #u39408 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:112px;
  2385. top:266px;
  2386. width:112px;
  2387. height:38px;
  2388. display:flex;
  2389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2390. font-weight:400;
  2391. font-style:normal;
  2392. font-size:12px;
  2393. color:#333333;
  2394. }
  2395. #u39408 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 2px 2px 0px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u39408_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. visibility:hidden;
  2407. }
  2408. #u39409_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:112px;
  2414. height:38px;
  2415. }
  2416. #u39409 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:224px;
  2420. top:266px;
  2421. width:112px;
  2422. height:38px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:12px;
  2428. color:#333333;
  2429. }
  2430. #u39409 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u39409_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. visibility:hidden;
  2442. }
  2443. #u39410_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:112px;
  2449. height:38px;
  2450. }
  2451. #u39410 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:336px;
  2455. top:266px;
  2456. width:112px;
  2457. height:38px;
  2458. display:flex;
  2459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:12px;
  2463. color:#333333;
  2464. }
  2465. #u39410 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u39410_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u39411_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:110px;
  2484. height:38px;
  2485. }
  2486. #u39411 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:448px;
  2490. top:266px;
  2491. width:110px;
  2492. height:38px;
  2493. display:flex;
  2494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:12px;
  2498. color:#333333;
  2499. }
  2500. #u39411 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 0px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u39411_text {
  2508. border-width:0px;
  2509. word-wrap:break-word;
  2510. text-transform:none;
  2511. visibility:hidden;
  2512. }
  2513. #u39412_img {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:115px;
  2519. height:38px;
  2520. }
  2521. #u39412 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:558px;
  2525. top:266px;
  2526. width:115px;
  2527. height:38px;
  2528. display:flex;
  2529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:12px;
  2533. color:#333333;
  2534. }
  2535. #u39412 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 0px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u39412_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. visibility:hidden;
  2547. }
  2548. #u39413_img {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:120px;
  2554. height:38px;
  2555. }
  2556. #u39413 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:673px;
  2560. top:266px;
  2561. width:120px;
  2562. height:38px;
  2563. display:flex;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. font-size:12px;
  2568. color:#333333;
  2569. }
  2570. #u39413 .text {
  2571. position:absolute;
  2572. align-self:center;
  2573. padding:2px 2px 2px 0px;
  2574. box-sizing:border-box;
  2575. width:100%;
  2576. }
  2577. #u39413_text {
  2578. border-width:0px;
  2579. word-wrap:break-word;
  2580. text-transform:none;
  2581. visibility:hidden;
  2582. }
  2583. #u39414_img {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:112px;
  2589. height:38px;
  2590. }
  2591. #u39414 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:304px;
  2596. width:112px;
  2597. height:38px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. color:#333333;
  2604. }
  2605. #u39414 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 0px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u39414_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. visibility:hidden;
  2617. }
  2618. #u39415_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:112px;
  2624. height:38px;
  2625. }
  2626. #u39415 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:112px;
  2630. top:304px;
  2631. width:112px;
  2632. height:38px;
  2633. display:flex;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:12px;
  2638. color:#333333;
  2639. }
  2640. #u39415 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u39415_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u39416_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:112px;
  2659. height:38px;
  2660. }
  2661. #u39416 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:224px;
  2665. top:304px;
  2666. width:112px;
  2667. height:38px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#333333;
  2674. }
  2675. #u39416 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u39416_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. visibility:hidden;
  2687. }
  2688. #u39417_img {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:112px;
  2694. height:38px;
  2695. }
  2696. #u39417 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:336px;
  2700. top:304px;
  2701. width:112px;
  2702. height:38px;
  2703. display:flex;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:12px;
  2708. color:#333333;
  2709. }
  2710. #u39417 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 0px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u39417_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u39418_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:110px;
  2729. height:38px;
  2730. }
  2731. #u39418 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:448px;
  2735. top:304px;
  2736. width:110px;
  2737. height:38px;
  2738. display:flex;
  2739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:12px;
  2743. color:#333333;
  2744. }
  2745. #u39418 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 0px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u39418_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u39419_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:115px;
  2764. height:38px;
  2765. }
  2766. #u39419 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:558px;
  2770. top:304px;
  2771. width:115px;
  2772. height:38px;
  2773. display:flex;
  2774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:12px;
  2778. color:#333333;
  2779. }
  2780. #u39419 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 0px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u39419_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u39420_img {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:120px;
  2799. height:38px;
  2800. }
  2801. #u39420 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:673px;
  2805. top:304px;
  2806. width:120px;
  2807. height:38px;
  2808. display:flex;
  2809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:12px;
  2813. color:#333333;
  2814. }
  2815. #u39420 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:2px 2px 2px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u39420_text {
  2823. border-width:0px;
  2824. word-wrap:break-word;
  2825. text-transform:none;
  2826. visibility:hidden;
  2827. }
  2828. #u39421 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:0px;
  2834. height:0px;
  2835. }
  2836. #u39422_div {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:140px;
  2842. height:40px;
  2843. background:inherit;
  2844. background-color:rgba(255, 255, 255, 1);
  2845. border:none;
  2846. border-radius:0px;
  2847. -moz-box-shadow:none;
  2848. -webkit-box-shadow:none;
  2849. box-shadow:none;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. }
  2854. #u39422 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:130px;
  2858. top:116px;
  2859. width:140px;
  2860. height:40px;
  2861. display:flex;
  2862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. }
  2866. #u39422 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:0px 0px 0px 20px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u39422_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. }
  2878. #u39423_div {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:140px;
  2884. height:40px;
  2885. background:inherit;
  2886. background-color:rgba(255, 255, 255, 0);
  2887. border:none;
  2888. border-radius:0px;
  2889. -moz-box-shadow:none;
  2890. -webkit-box-shadow:none;
  2891. box-shadow:none;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. }
  2896. #u39423 {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:130px;
  2900. top:236px;
  2901. width:140px;
  2902. height:40px;
  2903. display:flex;
  2904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2905. font-weight:400;
  2906. font-style:normal;
  2907. }
  2908. #u39423 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:0px 0px 0px 20px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u39423_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. }
  2920. #u39424_div {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:140px;
  2926. height:40px;
  2927. background:inherit;
  2928. background-color:rgba(255, 255, 255, 1);
  2929. border:none;
  2930. border-radius:0px;
  2931. -moz-box-shadow:none;
  2932. -webkit-box-shadow:none;
  2933. box-shadow:none;
  2934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. }
  2938. #u39424 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:130px;
  2942. top:276px;
  2943. width:140px;
  2944. height:40px;
  2945. display:flex;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. }
  2950. #u39424 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:0px 0px 0px 20px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u39424_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. }
  2962. #u39425_div {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:140px;
  2968. height:40px;
  2969. background:inherit;
  2970. background-color:rgba(255, 255, 255, 1);
  2971. border:none;
  2972. border-radius:0px;
  2973. -moz-box-shadow:none;
  2974. -webkit-box-shadow:none;
  2975. box-shadow:none;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. }
  2980. #u39425 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:130px;
  2984. top:316px;
  2985. width:140px;
  2986. height:40px;
  2987. display:flex;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. }
  2992. #u39425 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:0px 0px 0px 20px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u39425_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. }
  3004. #u39426_div {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:140px;
  3010. height:40px;
  3011. background:inherit;
  3012. background-color:rgba(255, 255, 255, 1);
  3013. border:none;
  3014. border-radius:0px;
  3015. -moz-box-shadow:none;
  3016. -webkit-box-shadow:none;
  3017. box-shadow:none;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. }
  3022. #u39426 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:130px;
  3026. top:356px;
  3027. width:140px;
  3028. height:40px;
  3029. display:flex;
  3030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. }
  3034. #u39426 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:0px 0px 0px 20px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u39426_text {
  3042. border-width:0px;
  3043. word-wrap:break-word;
  3044. text-transform:none;
  3045. }
  3046. #u39427_div {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:140px;
  3052. height:40px;
  3053. background:inherit;
  3054. background-color:rgba(255, 255, 255, 1);
  3055. border:none;
  3056. border-radius:0px;
  3057. -moz-box-shadow:none;
  3058. -webkit-box-shadow:none;
  3059. box-shadow:none;
  3060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3061. font-weight:400;
  3062. font-style:normal;
  3063. }
  3064. #u39427 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:130px;
  3068. top:396px;
  3069. width:140px;
  3070. height:40px;
  3071. display:flex;
  3072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3073. font-weight:400;
  3074. font-style:normal;
  3075. }
  3076. #u39427 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:0px 0px 0px 20px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u39427_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. }
  3088. #u39428_div {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:140px;
  3094. height:40px;
  3095. background:inherit;
  3096. background-color:rgba(255, 255, 255, 1);
  3097. border:none;
  3098. border-radius:0px;
  3099. -moz-box-shadow:none;
  3100. -webkit-box-shadow:none;
  3101. box-shadow:none;
  3102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. }
  3106. #u39428 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:130px;
  3110. top:436px;
  3111. width:140px;
  3112. height:40px;
  3113. display:flex;
  3114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. }
  3118. #u39428 .text {
  3119. position:absolute;
  3120. align-self:center;
  3121. padding:0px 0px 0px 20px;
  3122. box-sizing:border-box;
  3123. width:100%;
  3124. }
  3125. #u39428_text {
  3126. border-width:0px;
  3127. word-wrap:break-word;
  3128. text-transform:none;
  3129. }
  3130. #u39429_div {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:140px;
  3136. height:40px;
  3137. background:inherit;
  3138. background-color:rgba(255, 255, 255, 1);
  3139. border:none;
  3140. border-radius:0px;
  3141. -moz-box-shadow:none;
  3142. -webkit-box-shadow:none;
  3143. box-shadow:none;
  3144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. }
  3148. #u39429 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:130px;
  3152. top:476px;
  3153. width:140px;
  3154. height:40px;
  3155. display:flex;
  3156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3157. font-weight:400;
  3158. font-style:normal;
  3159. }
  3160. #u39429 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:0px 0px 0px 20px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u39429_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. }
  3172. #u39430_div {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:140px;
  3178. height:40px;
  3179. background:inherit;
  3180. background-color:rgba(255, 255, 255, 1);
  3181. border:none;
  3182. border-radius:0px;
  3183. -moz-box-shadow:none;
  3184. -webkit-box-shadow:none;
  3185. box-shadow:none;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. }
  3190. #u39430 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:130px;
  3194. top:156px;
  3195. width:140px;
  3196. height:40px;
  3197. display:flex;
  3198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3199. font-weight:400;
  3200. font-style:normal;
  3201. }
  3202. #u39430 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:0px 0px 0px 20px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u39430_text {
  3210. border-width:0px;
  3211. word-wrap:break-word;
  3212. text-transform:none;
  3213. }
  3214. #u39431_div {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:140px;
  3220. height:40px;
  3221. background:inherit;
  3222. background-color:rgba(255, 255, 255, 0);
  3223. border:none;
  3224. border-radius:0px;
  3225. -moz-box-shadow:none;
  3226. -webkit-box-shadow:none;
  3227. box-shadow:none;
  3228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3229. font-weight:400;
  3230. font-style:normal;
  3231. }
  3232. #u39431 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:130px;
  3236. top:196px;
  3237. width:140px;
  3238. height:40px;
  3239. display:flex;
  3240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3241. font-weight:400;
  3242. font-style:normal;
  3243. }
  3244. #u39431 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:0px 0px 0px 20px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u39431_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. }
  3256. #u39432_div {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:140px;
  3262. height:40px;
  3263. background:inherit;
  3264. background-color:rgba(255, 255, 255, 1);
  3265. border:none;
  3266. border-radius:0px;
  3267. -moz-box-shadow:none;
  3268. -webkit-box-shadow:none;
  3269. box-shadow:none;
  3270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3271. font-weight:400;
  3272. font-style:normal;
  3273. }
  3274. #u39432 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:130px;
  3278. top:516px;
  3279. width:140px;
  3280. height:40px;
  3281. display:flex;
  3282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. }
  3286. #u39432 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:0px 0px 0px 20px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u39432_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. }
  3298. #u39433_div {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:140px;
  3304. height:40px;
  3305. background:inherit;
  3306. background-color:rgba(255, 255, 255, 1);
  3307. border:none;
  3308. border-radius:0px;
  3309. -moz-box-shadow:none;
  3310. -webkit-box-shadow:none;
  3311. box-shadow:none;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. }
  3316. #u39433 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:130px;
  3320. top:556px;
  3321. width:140px;
  3322. height:40px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. }
  3328. #u39433 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:0px 0px 0px 20px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u39433_text {
  3336. border-width:0px;
  3337. word-wrap:break-word;
  3338. text-transform:none;
  3339. }