styles.css 55 KB

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