styles.css 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-93px;
  6. width:1100px;
  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. #u115198 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u115199 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u115200_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:1100px;
  41. height:1206px;
  42. background:inherit;
  43. background-color:rgba(255, 255, 255, 1);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  47. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  48. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  49. }
  50. #u115200 {
  51. border-width:0px;
  52. position:absolute;
  53. left:93px;
  54. top:48px;
  55. width:1100px;
  56. height:1206px;
  57. display:flex;
  58. }
  59. #u115200 .text {
  60. position:absolute;
  61. align-self:center;
  62. padding:2px 2px 2px 2px;
  63. box-sizing:border-box;
  64. width:100%;
  65. }
  66. #u115200_text {
  67. border-width:0px;
  68. word-wrap:break-word;
  69. text-transform:none;
  70. visibility:hidden;
  71. }
  72. #u115201_div {
  73. border-width:0px;
  74. position:absolute;
  75. left:0px;
  76. top:0px;
  77. width:83px;
  78. height:25px;
  79. background:inherit;
  80. background-color:rgba(255, 255, 255, 0);
  81. border:none;
  82. border-top:0px;
  83. border-right:0px;
  84. border-bottom:0px;
  85. border-radius:0px;
  86. border-top-left-radius:0px;
  87. border-bottom-left-radius:0px;
  88. -moz-box-shadow:none;
  89. -webkit-box-shadow:none;
  90. box-shadow:none;
  91. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  92. font-weight:400;
  93. font-style:normal;
  94. font-size:18px;
  95. }
  96. #u115201 {
  97. border-width:0px;
  98. position:absolute;
  99. left:134px;
  100. top:170px;
  101. width:83px;
  102. height:25px;
  103. display:flex;
  104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  105. font-weight:400;
  106. font-style:normal;
  107. font-size:18px;
  108. }
  109. #u115201 .text {
  110. position:absolute;
  111. align-self:flex-start;
  112. padding:0px 0px 0px 10px;
  113. box-sizing:border-box;
  114. width:100%;
  115. }
  116. #u115201_text {
  117. border-width:0px;
  118. white-space:nowrap;
  119. text-transform:none;
  120. }
  121. #u115202_div {
  122. border-width:0px;
  123. position:absolute;
  124. left:0px;
  125. top:0px;
  126. width:80px;
  127. height:30px;
  128. background:inherit;
  129. background-color:rgba(255, 255, 255, 0);
  130. border:none;
  131. border-top:0px;
  132. border-right:0px;
  133. border-bottom:0px;
  134. border-radius:0px;
  135. border-top-left-radius:0px;
  136. border-bottom-left-radius:0px;
  137. -moz-box-shadow:none;
  138. -webkit-box-shadow:none;
  139. box-shadow:none;
  140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  141. font-weight:400;
  142. font-style:normal;
  143. color:#7F7F7F;
  144. text-align:right;
  145. line-height:30px;
  146. }
  147. #u115202 {
  148. border-width:0px;
  149. position:absolute;
  150. left:153px;
  151. top:290px;
  152. width:80px;
  153. height:30px;
  154. display:flex;
  155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  156. font-weight:400;
  157. font-style:normal;
  158. color:#7F7F7F;
  159. text-align:right;
  160. line-height:30px;
  161. }
  162. #u115202 .text {
  163. position:absolute;
  164. align-self:flex-start;
  165. padding:0px 0px 0px 10px;
  166. box-sizing:border-box;
  167. width:100%;
  168. }
  169. #u115202_text {
  170. border-width:0px;
  171. word-wrap:break-word;
  172. text-transform:none;
  173. }
  174. #u115203_div {
  175. border-width:0px;
  176. position:absolute;
  177. left:0px;
  178. top:0px;
  179. width:240px;
  180. height:30px;
  181. background:inherit;
  182. background-color:rgba(255, 255, 255, 0);
  183. border:none;
  184. border-top:0px;
  185. border-right:0px;
  186. border-bottom:0px;
  187. border-radius:0px;
  188. border-top-left-radius:0px;
  189. border-bottom-left-radius:0px;
  190. -moz-box-shadow:none;
  191. -webkit-box-shadow:none;
  192. box-shadow:none;
  193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. line-height:30px;
  197. }
  198. #u115203 {
  199. border-width:0px;
  200. position:absolute;
  201. left:233px;
  202. top:290px;
  203. width:240px;
  204. height:30px;
  205. display:flex;
  206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  207. font-weight:400;
  208. font-style:normal;
  209. line-height:30px;
  210. }
  211. #u115203 .text {
  212. position:absolute;
  213. align-self:flex-start;
  214. padding:0px 0px 0px 10px;
  215. box-sizing:border-box;
  216. width:100%;
  217. }
  218. #u115203_text {
  219. border-width:0px;
  220. word-wrap:break-word;
  221. text-transform:none;
  222. }
  223. #u115204_div {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:80px;
  229. height:30px;
  230. background:inherit;
  231. background-color:rgba(255, 255, 255, 0);
  232. border:none;
  233. border-top:0px;
  234. border-right:0px;
  235. border-bottom:0px;
  236. border-radius:0px;
  237. border-top-left-radius:0px;
  238. border-bottom-left-radius:0px;
  239. -moz-box-shadow:none;
  240. -webkit-box-shadow:none;
  241. box-shadow:none;
  242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  243. font-weight:400;
  244. font-style:normal;
  245. color:#7F7F7F;
  246. text-align:right;
  247. line-height:30px;
  248. }
  249. #u115204 {
  250. border-width:0px;
  251. position:absolute;
  252. left:154px;
  253. top:210px;
  254. width:80px;
  255. height:30px;
  256. display:flex;
  257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  258. font-weight:400;
  259. font-style:normal;
  260. color:#7F7F7F;
  261. text-align:right;
  262. line-height:30px;
  263. }
  264. #u115204 .text {
  265. position:absolute;
  266. align-self:flex-start;
  267. padding:0px 0px 0px 10px;
  268. box-sizing:border-box;
  269. width:100%;
  270. }
  271. #u115204_text {
  272. border-width:0px;
  273. word-wrap:break-word;
  274. text-transform:none;
  275. }
  276. #u115205_div {
  277. border-width:0px;
  278. position:absolute;
  279. left:0px;
  280. top:0px;
  281. width:240px;
  282. height:30px;
  283. background:inherit;
  284. background-color:rgba(255, 255, 255, 0);
  285. border:none;
  286. border-top:0px;
  287. border-right:0px;
  288. border-bottom:0px;
  289. border-radius:0px;
  290. border-top-left-radius:0px;
  291. border-bottom-left-radius:0px;
  292. -moz-box-shadow:none;
  293. -webkit-box-shadow:none;
  294. box-shadow:none;
  295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  296. font-weight:400;
  297. font-style:normal;
  298. line-height:30px;
  299. }
  300. #u115205 {
  301. border-width:0px;
  302. position:absolute;
  303. left:234px;
  304. top:210px;
  305. width:240px;
  306. height:30px;
  307. display:flex;
  308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  309. font-weight:400;
  310. font-style:normal;
  311. line-height:30px;
  312. }
  313. #u115205 .text {
  314. position:absolute;
  315. align-self:flex-start;
  316. padding:0px 0px 0px 10px;
  317. box-sizing:border-box;
  318. width:100%;
  319. }
  320. #u115205_text {
  321. border-width:0px;
  322. word-wrap:break-word;
  323. text-transform:none;
  324. }
  325. #u115206_div {
  326. border-width:0px;
  327. position:absolute;
  328. left:0px;
  329. top:0px;
  330. width:80px;
  331. height:30px;
  332. background:inherit;
  333. background-color:rgba(255, 255, 255, 0);
  334. border:none;
  335. border-top:0px;
  336. border-right:0px;
  337. border-bottom:0px;
  338. border-radius:0px;
  339. border-top-left-radius:0px;
  340. border-bottom-left-radius:0px;
  341. -moz-box-shadow:none;
  342. -webkit-box-shadow:none;
  343. box-shadow:none;
  344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  345. font-weight:400;
  346. font-style:normal;
  347. color:#7F7F7F;
  348. text-align:right;
  349. line-height:30px;
  350. }
  351. #u115206 {
  352. border-width:0px;
  353. position:absolute;
  354. left:473px;
  355. top:210px;
  356. width:80px;
  357. height:30px;
  358. display:flex;
  359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  360. font-weight:400;
  361. font-style:normal;
  362. color:#7F7F7F;
  363. text-align:right;
  364. line-height:30px;
  365. }
  366. #u115206 .text {
  367. position:absolute;
  368. align-self:flex-start;
  369. padding:0px 0px 0px 10px;
  370. box-sizing:border-box;
  371. width:100%;
  372. }
  373. #u115206_text {
  374. border-width:0px;
  375. word-wrap:break-word;
  376. text-transform:none;
  377. }
  378. #u115207_div {
  379. border-width:0px;
  380. position:absolute;
  381. left:0px;
  382. top:0px;
  383. width:240px;
  384. height:30px;
  385. background:inherit;
  386. background-color:rgba(255, 255, 255, 0);
  387. border:none;
  388. border-top:0px;
  389. border-right:0px;
  390. border-bottom:0px;
  391. border-radius:0px;
  392. border-top-left-radius:0px;
  393. border-bottom-left-radius:0px;
  394. -moz-box-shadow:none;
  395. -webkit-box-shadow:none;
  396. box-shadow:none;
  397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  398. font-weight:400;
  399. font-style:normal;
  400. line-height:30px;
  401. }
  402. #u115207 {
  403. border-width:0px;
  404. position:absolute;
  405. left:553px;
  406. top:210px;
  407. width:240px;
  408. height:30px;
  409. display:flex;
  410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  411. font-weight:400;
  412. font-style:normal;
  413. line-height:30px;
  414. }
  415. #u115207 .text {
  416. position:absolute;
  417. align-self:flex-start;
  418. padding:0px 0px 0px 10px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u115207_text {
  423. border-width:0px;
  424. word-wrap:break-word;
  425. text-transform:none;
  426. }
  427. #u115208_div {
  428. border-width:0px;
  429. position:absolute;
  430. left:0px;
  431. top:0px;
  432. width:83px;
  433. height:25px;
  434. background:inherit;
  435. background-color:rgba(255, 255, 255, 0);
  436. border:none;
  437. border-top:0px;
  438. border-right:0px;
  439. border-bottom:0px;
  440. border-radius:0px;
  441. border-top-left-radius:0px;
  442. border-bottom-left-radius:0px;
  443. -moz-box-shadow:none;
  444. -webkit-box-shadow:none;
  445. box-shadow:none;
  446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  447. font-weight:400;
  448. font-style:normal;
  449. font-size:18px;
  450. }
  451. #u115208 {
  452. border-width:0px;
  453. position:absolute;
  454. left:134px;
  455. top:550px;
  456. width:83px;
  457. height:25px;
  458. display:flex;
  459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  460. font-weight:400;
  461. font-style:normal;
  462. font-size:18px;
  463. }
  464. #u115208 .text {
  465. position:absolute;
  466. align-self:flex-start;
  467. padding:0px 0px 0px 10px;
  468. box-sizing:border-box;
  469. width:100%;
  470. }
  471. #u115208_text {
  472. border-width:0px;
  473. white-space:nowrap;
  474. text-transform:none;
  475. }
  476. #u115209_div {
  477. border-width:0px;
  478. position:absolute;
  479. left:0px;
  480. top:0px;
  481. width:80px;
  482. height:30px;
  483. background:inherit;
  484. background-color:rgba(255, 255, 255, 0);
  485. border:none;
  486. border-top:0px;
  487. border-right:0px;
  488. border-bottom:0px;
  489. border-radius:0px;
  490. border-top-left-radius:0px;
  491. border-bottom-left-radius:0px;
  492. -moz-box-shadow:none;
  493. -webkit-box-shadow:none;
  494. box-shadow:none;
  495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  496. font-weight:400;
  497. font-style:normal;
  498. color:#7F7F7F;
  499. text-align:right;
  500. line-height:30px;
  501. }
  502. #u115209 {
  503. border-width:0px;
  504. position:absolute;
  505. left:153px;
  506. top:250px;
  507. width:80px;
  508. height:30px;
  509. display:flex;
  510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  511. font-weight:400;
  512. font-style:normal;
  513. color:#7F7F7F;
  514. text-align:right;
  515. line-height:30px;
  516. }
  517. #u115209 .text {
  518. position:absolute;
  519. align-self:flex-start;
  520. padding:0px 0px 0px 10px;
  521. box-sizing:border-box;
  522. width:100%;
  523. }
  524. #u115209_text {
  525. border-width:0px;
  526. word-wrap:break-word;
  527. text-transform:none;
  528. }
  529. #u115210_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:240px;
  535. height:30px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border:none;
  539. border-top:0px;
  540. border-right:0px;
  541. border-bottom:0px;
  542. border-radius:0px;
  543. border-top-left-radius:0px;
  544. border-bottom-left-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. line-height:30px;
  552. }
  553. #u115210 {
  554. border-width:0px;
  555. position:absolute;
  556. left:233px;
  557. top:250px;
  558. width:240px;
  559. height:30px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. line-height:30px;
  565. }
  566. #u115210 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 10px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u115210_text {
  574. border-width:0px;
  575. word-wrap:break-word;
  576. text-transform:none;
  577. }
  578. #u115211_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:80px;
  584. height:30px;
  585. background:inherit;
  586. background-color:rgba(255, 255, 255, 0);
  587. border:none;
  588. border-top:0px;
  589. border-right:0px;
  590. border-bottom:0px;
  591. border-radius:0px;
  592. border-top-left-radius:0px;
  593. border-bottom-left-radius:0px;
  594. -moz-box-shadow:none;
  595. -webkit-box-shadow:none;
  596. box-shadow:none;
  597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  598. font-weight:400;
  599. font-style:normal;
  600. color:#7F7F7F;
  601. text-align:right;
  602. line-height:30px;
  603. }
  604. #u115211 {
  605. border-width:0px;
  606. position:absolute;
  607. left:473px;
  608. top:392px;
  609. width:80px;
  610. height:30px;
  611. display:flex;
  612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  613. font-weight:400;
  614. font-style:normal;
  615. color:#7F7F7F;
  616. text-align:right;
  617. line-height:30px;
  618. }
  619. #u115211 .text {
  620. position:absolute;
  621. align-self:flex-start;
  622. padding:0px 0px 0px 10px;
  623. box-sizing:border-box;
  624. width:100%;
  625. }
  626. #u115211_text {
  627. border-width:0px;
  628. word-wrap:break-word;
  629. text-transform:none;
  630. }
  631. #u115212_div {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:240px;
  637. height:30px;
  638. background:inherit;
  639. background-color:rgba(255, 255, 255, 0);
  640. border:none;
  641. border-top:0px;
  642. border-right:0px;
  643. border-bottom:0px;
  644. border-radius:0px;
  645. border-top-left-radius:0px;
  646. border-bottom-left-radius:0px;
  647. -moz-box-shadow:none;
  648. -webkit-box-shadow:none;
  649. box-shadow:none;
  650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  651. font-weight:400;
  652. font-style:normal;
  653. line-height:30px;
  654. }
  655. #u115212 {
  656. border-width:0px;
  657. position:absolute;
  658. left:553px;
  659. top:392px;
  660. width:240px;
  661. height:30px;
  662. display:flex;
  663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  664. font-weight:400;
  665. font-style:normal;
  666. line-height:30px;
  667. }
  668. #u115212 .text {
  669. position:absolute;
  670. align-self:flex-start;
  671. padding:0px 0px 0px 10px;
  672. box-sizing:border-box;
  673. width:100%;
  674. }
  675. #u115212_text {
  676. border-width:0px;
  677. word-wrap:break-word;
  678. text-transform:none;
  679. }
  680. #u115213_div {
  681. border-width:0px;
  682. position:absolute;
  683. left:0px;
  684. top:0px;
  685. width:80px;
  686. height:30px;
  687. background:inherit;
  688. background-color:rgba(255, 255, 255, 0);
  689. border:none;
  690. border-top:0px;
  691. border-right:0px;
  692. border-bottom:0px;
  693. border-radius:0px;
  694. border-top-left-radius:0px;
  695. border-bottom-left-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. color:#7F7F7F;
  703. text-align:right;
  704. line-height:30px;
  705. }
  706. #u115213 {
  707. border-width:0px;
  708. position:absolute;
  709. left:473px;
  710. top:250px;
  711. width:80px;
  712. height:30px;
  713. display:flex;
  714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  715. font-weight:400;
  716. font-style:normal;
  717. color:#7F7F7F;
  718. text-align:right;
  719. line-height:30px;
  720. }
  721. #u115213 .text {
  722. position:absolute;
  723. align-self:flex-start;
  724. padding:0px 0px 0px 10px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u115213_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. }
  733. #u115214_div {
  734. border-width:0px;
  735. position:absolute;
  736. left:0px;
  737. top:0px;
  738. width:240px;
  739. height:30px;
  740. background:inherit;
  741. background-color:rgba(255, 255, 255, 0);
  742. border:none;
  743. border-top:0px;
  744. border-right:0px;
  745. border-bottom:0px;
  746. border-radius:0px;
  747. border-top-left-radius:0px;
  748. border-bottom-left-radius:0px;
  749. -moz-box-shadow:none;
  750. -webkit-box-shadow:none;
  751. box-shadow:none;
  752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  753. font-weight:400;
  754. font-style:normal;
  755. line-height:30px;
  756. }
  757. #u115214 {
  758. border-width:0px;
  759. position:absolute;
  760. left:553px;
  761. top:250px;
  762. width:240px;
  763. height:30px;
  764. display:flex;
  765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  766. font-weight:400;
  767. font-style:normal;
  768. line-height:30px;
  769. }
  770. #u115214 .text {
  771. position:absolute;
  772. align-self:flex-start;
  773. padding:0px 0px 0px 10px;
  774. box-sizing:border-box;
  775. width:100%;
  776. }
  777. #u115214_text {
  778. border-width:0px;
  779. word-wrap:break-word;
  780. text-transform:none;
  781. }
  782. #u115215_div {
  783. border-width:0px;
  784. position:absolute;
  785. left:0px;
  786. top:0px;
  787. width:80px;
  788. height:30px;
  789. background:inherit;
  790. background-color:rgba(255, 255, 255, 0);
  791. border:none;
  792. border-top:0px;
  793. border-right:0px;
  794. border-bottom:0px;
  795. border-radius:0px;
  796. border-top-left-radius:0px;
  797. border-bottom-left-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  802. font-weight:400;
  803. font-style:normal;
  804. color:#7F7F7F;
  805. text-align:right;
  806. line-height:30px;
  807. }
  808. #u115215 {
  809. border-width:0px;
  810. position:absolute;
  811. left:804px;
  812. top:210px;
  813. width:80px;
  814. height:30px;
  815. display:flex;
  816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  817. font-weight:400;
  818. font-style:normal;
  819. color:#7F7F7F;
  820. text-align:right;
  821. line-height:30px;
  822. }
  823. #u115215 .text {
  824. position:absolute;
  825. align-self:flex-start;
  826. padding:0px 0px 0px 10px;
  827. box-sizing:border-box;
  828. width:100%;
  829. }
  830. #u115215_text {
  831. border-width:0px;
  832. word-wrap:break-word;
  833. text-transform:none;
  834. }
  835. #u115216_div {
  836. border-width:0px;
  837. position:absolute;
  838. left:0px;
  839. top:0px;
  840. width:240px;
  841. height:30px;
  842. background:inherit;
  843. background-color:rgba(255, 255, 255, 0);
  844. border:none;
  845. border-top:0px;
  846. border-right:0px;
  847. border-bottom:0px;
  848. border-radius:0px;
  849. border-top-left-radius:0px;
  850. border-bottom-left-radius:0px;
  851. -moz-box-shadow:none;
  852. -webkit-box-shadow:none;
  853. box-shadow:none;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. line-height:30px;
  858. }
  859. #u115216 {
  860. border-width:0px;
  861. position:absolute;
  862. left:884px;
  863. top:210px;
  864. width:240px;
  865. height:30px;
  866. display:flex;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. line-height:30px;
  871. }
  872. #u115216 .text {
  873. position:absolute;
  874. align-self:flex-start;
  875. padding:0px 0px 0px 10px;
  876. box-sizing:border-box;
  877. width:100%;
  878. }
  879. #u115216_text {
  880. border-width:0px;
  881. word-wrap:break-word;
  882. text-transform:none;
  883. }
  884. #u115217_div {
  885. border-width:0px;
  886. position:absolute;
  887. left:0px;
  888. top:0px;
  889. width:80px;
  890. height:30px;
  891. background:inherit;
  892. background-color:rgba(255, 255, 255, 0);
  893. border:none;
  894. border-top:0px;
  895. border-right:0px;
  896. border-bottom:0px;
  897. border-radius:0px;
  898. border-top-left-radius:0px;
  899. border-bottom-left-radius:0px;
  900. -moz-box-shadow:none;
  901. -webkit-box-shadow:none;
  902. box-shadow:none;
  903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  904. font-weight:400;
  905. font-style:normal;
  906. color:#7F7F7F;
  907. text-align:right;
  908. line-height:30px;
  909. }
  910. #u115217 {
  911. border-width:0px;
  912. position:absolute;
  913. left:804px;
  914. top:250px;
  915. width:80px;
  916. height:30px;
  917. display:flex;
  918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  919. font-weight:400;
  920. font-style:normal;
  921. color:#7F7F7F;
  922. text-align:right;
  923. line-height:30px;
  924. }
  925. #u115217 .text {
  926. position:absolute;
  927. align-self:flex-start;
  928. padding:0px 0px 0px 10px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u115217_text {
  933. border-width:0px;
  934. word-wrap:break-word;
  935. text-transform:none;
  936. }
  937. #u115218_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:240px;
  943. height:30px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-top:0px;
  948. border-right:0px;
  949. border-bottom:0px;
  950. border-radius:0px;
  951. border-top-left-radius:0px;
  952. border-bottom-left-radius:0px;
  953. -moz-box-shadow:none;
  954. -webkit-box-shadow:none;
  955. box-shadow:none;
  956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  957. font-weight:400;
  958. font-style:normal;
  959. line-height:30px;
  960. }
  961. #u115218 {
  962. border-width:0px;
  963. position:absolute;
  964. left:884px;
  965. top:250px;
  966. width:240px;
  967. height:30px;
  968. display:flex;
  969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  970. font-weight:400;
  971. font-style:normal;
  972. line-height:30px;
  973. }
  974. #u115218 .text {
  975. position:absolute;
  976. align-self:flex-start;
  977. padding:0px 0px 0px 10px;
  978. box-sizing:border-box;
  979. width:100%;
  980. }
  981. #u115218_text {
  982. border-width:0px;
  983. word-wrap:break-word;
  984. text-transform:none;
  985. }
  986. #u115219_div {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:83px;
  992. height:25px;
  993. background:inherit;
  994. background-color:rgba(255, 255, 255, 0);
  995. border:none;
  996. border-top:0px;
  997. border-right:0px;
  998. border-bottom:0px;
  999. border-radius:0px;
  1000. border-top-left-radius:0px;
  1001. border-bottom-left-radius:0px;
  1002. -moz-box-shadow:none;
  1003. -webkit-box-shadow:none;
  1004. box-shadow:none;
  1005. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1006. font-weight:500;
  1007. font-style:normal;
  1008. font-size:18px;
  1009. }
  1010. #u115219 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:113px;
  1014. top:69px;
  1015. width:83px;
  1016. height:25px;
  1017. display:flex;
  1018. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1019. font-weight:500;
  1020. font-style:normal;
  1021. font-size:18px;
  1022. }
  1023. #u115219 .text {
  1024. position:absolute;
  1025. align-self:flex-start;
  1026. padding:0px 0px 0px 10px;
  1027. box-sizing:border-box;
  1028. width:100%;
  1029. }
  1030. #u115219_text {
  1031. border-width:0px;
  1032. white-space:nowrap;
  1033. text-transform:none;
  1034. }
  1035. #u115220_div {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:83px;
  1041. height:25px;
  1042. background:inherit;
  1043. background-color:rgba(255, 255, 255, 0);
  1044. border:none;
  1045. border-top:0px;
  1046. border-right:0px;
  1047. border-bottom:0px;
  1048. border-radius:0px;
  1049. border-top-left-radius:0px;
  1050. border-bottom-left-radius:0px;
  1051. -moz-box-shadow:none;
  1052. -webkit-box-shadow:none;
  1053. box-shadow:none;
  1054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1055. font-weight:400;
  1056. font-style:normal;
  1057. font-size:18px;
  1058. }
  1059. #u115220 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:134px;
  1063. top:347px;
  1064. width:83px;
  1065. height:25px;
  1066. display:flex;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:18px;
  1071. }
  1072. #u115220 .text {
  1073. position:absolute;
  1074. align-self:flex-start;
  1075. padding:0px 0px 0px 10px;
  1076. box-sizing:border-box;
  1077. width:100%;
  1078. }
  1079. #u115220_text {
  1080. border-width:0px;
  1081. white-space:nowrap;
  1082. text-transform:none;
  1083. }
  1084. #u115221_div {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:80px;
  1090. height:30px;
  1091. background:inherit;
  1092. background-color:rgba(255, 255, 255, 0);
  1093. border:none;
  1094. border-top:0px;
  1095. border-right:0px;
  1096. border-bottom:0px;
  1097. border-radius:0px;
  1098. border-top-left-radius:0px;
  1099. border-bottom-left-radius:0px;
  1100. -moz-box-shadow:none;
  1101. -webkit-box-shadow:none;
  1102. box-shadow:none;
  1103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1104. font-weight:400;
  1105. font-style:normal;
  1106. color:#7F7F7F;
  1107. text-align:right;
  1108. line-height:30px;
  1109. }
  1110. #u115221 {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:793px;
  1114. top:392px;
  1115. width:80px;
  1116. height:30px;
  1117. display:flex;
  1118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1119. font-weight:400;
  1120. font-style:normal;
  1121. color:#7F7F7F;
  1122. text-align:right;
  1123. line-height:30px;
  1124. }
  1125. #u115221 .text {
  1126. position:absolute;
  1127. align-self:flex-start;
  1128. padding:0px 0px 0px 10px;
  1129. box-sizing:border-box;
  1130. width:100%;
  1131. }
  1132. #u115221_text {
  1133. border-width:0px;
  1134. word-wrap:break-word;
  1135. text-transform:none;
  1136. }
  1137. #u115222_div {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:240px;
  1143. height:30px;
  1144. background:inherit;
  1145. background-color:rgba(255, 255, 255, 0);
  1146. border:none;
  1147. border-top:0px;
  1148. border-right:0px;
  1149. border-bottom:0px;
  1150. border-radius:0px;
  1151. border-top-left-radius:0px;
  1152. border-bottom-left-radius:0px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. line-height:30px;
  1160. }
  1161. #u115222 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:873px;
  1165. top:392px;
  1166. width:240px;
  1167. height:30px;
  1168. display:flex;
  1169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1170. font-weight:400;
  1171. font-style:normal;
  1172. line-height:30px;
  1173. }
  1174. #u115222 .text {
  1175. position:absolute;
  1176. align-self:flex-start;
  1177. padding:0px 0px 0px 10px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u115222_text {
  1182. border-width:0px;
  1183. word-wrap:break-word;
  1184. text-transform:none;
  1185. }
  1186. #u115223_div {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:80px;
  1192. height:30px;
  1193. background:inherit;
  1194. background-color:rgba(255, 255, 255, 0);
  1195. border:none;
  1196. border-top:0px;
  1197. border-right:0px;
  1198. border-bottom:0px;
  1199. border-radius:0px;
  1200. border-top-left-radius:0px;
  1201. border-bottom-left-radius:0px;
  1202. -moz-box-shadow:none;
  1203. -webkit-box-shadow:none;
  1204. box-shadow:none;
  1205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1206. font-weight:400;
  1207. font-style:normal;
  1208. color:#7F7F7F;
  1209. text-align:right;
  1210. line-height:30px;
  1211. }
  1212. #u115223 {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:809px;
  1216. top:290px;
  1217. width:80px;
  1218. height:30px;
  1219. display:flex;
  1220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1221. font-weight:400;
  1222. font-style:normal;
  1223. color:#7F7F7F;
  1224. text-align:right;
  1225. line-height:30px;
  1226. }
  1227. #u115223 .text {
  1228. position:absolute;
  1229. align-self:flex-start;
  1230. padding:0px 0px 0px 10px;
  1231. box-sizing:border-box;
  1232. width:100%;
  1233. }
  1234. #u115223_text {
  1235. border-width:0px;
  1236. word-wrap:break-word;
  1237. text-transform:none;
  1238. }
  1239. #u115224_div {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:240px;
  1245. height:30px;
  1246. background:inherit;
  1247. background-color:rgba(255, 255, 255, 0);
  1248. border:none;
  1249. border-top:0px;
  1250. border-right:0px;
  1251. border-bottom:0px;
  1252. border-radius:0px;
  1253. border-top-left-radius:0px;
  1254. border-bottom-left-radius:0px;
  1255. -moz-box-shadow:none;
  1256. -webkit-box-shadow:none;
  1257. box-shadow:none;
  1258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1259. font-weight:400;
  1260. font-style:normal;
  1261. line-height:30px;
  1262. }
  1263. #u115224 {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:889px;
  1267. top:290px;
  1268. width:240px;
  1269. height:30px;
  1270. display:flex;
  1271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1272. font-weight:400;
  1273. font-style:normal;
  1274. line-height:30px;
  1275. }
  1276. #u115224 .text {
  1277. position:absolute;
  1278. align-self:flex-start;
  1279. padding:0px 0px 0px 10px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u115224_text {
  1284. border-width:0px;
  1285. word-wrap:break-word;
  1286. text-transform:none;
  1287. }
  1288. #u115225_div {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:0px;
  1292. top:0px;
  1293. width:80px;
  1294. height:30px;
  1295. background:inherit;
  1296. background-color:rgba(255, 255, 255, 0);
  1297. border:none;
  1298. border-top:0px;
  1299. border-right:0px;
  1300. border-bottom:0px;
  1301. border-radius:0px;
  1302. border-top-left-radius:0px;
  1303. border-bottom-left-radius:0px;
  1304. -moz-box-shadow:none;
  1305. -webkit-box-shadow:none;
  1306. box-shadow:none;
  1307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1308. font-weight:400;
  1309. font-style:normal;
  1310. color:#7F7F7F;
  1311. text-align:right;
  1312. line-height:30px;
  1313. }
  1314. #u115225 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:153px;
  1318. top:392px;
  1319. width:80px;
  1320. height:30px;
  1321. display:flex;
  1322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1323. font-weight:400;
  1324. font-style:normal;
  1325. color:#7F7F7F;
  1326. text-align:right;
  1327. line-height:30px;
  1328. }
  1329. #u115225 .text {
  1330. position:absolute;
  1331. align-self:flex-start;
  1332. padding:0px 0px 0px 10px;
  1333. box-sizing:border-box;
  1334. width:100%;
  1335. }
  1336. #u115225_text {
  1337. border-width:0px;
  1338. word-wrap:break-word;
  1339. text-transform:none;
  1340. }
  1341. #u115226_div {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:240px;
  1347. height:30px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 255, 0);
  1350. border:none;
  1351. border-top:0px;
  1352. border-right:0px;
  1353. border-bottom:0px;
  1354. border-radius:0px;
  1355. border-top-left-radius:0px;
  1356. border-bottom-left-radius:0px;
  1357. -moz-box-shadow:none;
  1358. -webkit-box-shadow:none;
  1359. box-shadow:none;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. line-height:30px;
  1364. }
  1365. #u115226 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:233px;
  1369. top:392px;
  1370. width:240px;
  1371. height:30px;
  1372. display:flex;
  1373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1374. font-weight:400;
  1375. font-style:normal;
  1376. line-height:30px;
  1377. }
  1378. #u115226 .text {
  1379. position:absolute;
  1380. align-self:flex-start;
  1381. padding:0px 0px 0px 10px;
  1382. box-sizing:border-box;
  1383. width:100%;
  1384. }
  1385. #u115226_text {
  1386. border-width:0px;
  1387. word-wrap:break-word;
  1388. text-transform:none;
  1389. }
  1390. #u115227_div {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:0px;
  1394. top:0px;
  1395. width:80px;
  1396. height:30px;
  1397. background:inherit;
  1398. background-color:rgba(255, 255, 255, 0);
  1399. border:none;
  1400. border-top:0px;
  1401. border-right:0px;
  1402. border-bottom:0px;
  1403. border-radius:0px;
  1404. border-top-left-radius:0px;
  1405. border-bottom-left-radius:0px;
  1406. -moz-box-shadow:none;
  1407. -webkit-box-shadow:none;
  1408. box-shadow:none;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. color:#7F7F7F;
  1413. text-align:right;
  1414. line-height:30px;
  1415. }
  1416. #u115227 {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:473px;
  1420. top:432px;
  1421. width:80px;
  1422. height:30px;
  1423. display:flex;
  1424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1425. font-weight:400;
  1426. font-style:normal;
  1427. color:#7F7F7F;
  1428. text-align:right;
  1429. line-height:30px;
  1430. }
  1431. #u115227 .text {
  1432. position:absolute;
  1433. align-self:flex-start;
  1434. padding:0px 0px 0px 10px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u115227_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u115228_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:240px;
  1449. height:30px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border:none;
  1453. border-top:0px;
  1454. border-right:0px;
  1455. border-bottom:0px;
  1456. border-radius:0px;
  1457. border-top-left-radius:0px;
  1458. border-bottom-left-radius:0px;
  1459. -moz-box-shadow:none;
  1460. -webkit-box-shadow:none;
  1461. box-shadow:none;
  1462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1463. font-weight:400;
  1464. font-style:normal;
  1465. line-height:30px;
  1466. }
  1467. #u115228 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:553px;
  1471. top:432px;
  1472. width:240px;
  1473. height:30px;
  1474. display:flex;
  1475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1476. font-weight:400;
  1477. font-style:normal;
  1478. line-height:30px;
  1479. }
  1480. #u115228 .text {
  1481. position:absolute;
  1482. align-self:flex-start;
  1483. padding:0px 0px 0px 10px;
  1484. box-sizing:border-box;
  1485. width:100%;
  1486. }
  1487. #u115228_text {
  1488. border-width:0px;
  1489. word-wrap:break-word;
  1490. text-transform:none;
  1491. }
  1492. #u115229_div {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:0px;
  1496. top:0px;
  1497. width:80px;
  1498. height:30px;
  1499. background:inherit;
  1500. background-color:rgba(255, 255, 255, 0);
  1501. border:none;
  1502. border-top:0px;
  1503. border-right:0px;
  1504. border-bottom:0px;
  1505. border-radius:0px;
  1506. border-top-left-radius:0px;
  1507. border-bottom-left-radius:0px;
  1508. -moz-box-shadow:none;
  1509. -webkit-box-shadow:none;
  1510. box-shadow:none;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. color:#7F7F7F;
  1515. text-align:right;
  1516. line-height:30px;
  1517. }
  1518. #u115229 {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:793px;
  1522. top:432px;
  1523. width:80px;
  1524. height:30px;
  1525. display:flex;
  1526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1527. font-weight:400;
  1528. font-style:normal;
  1529. color:#7F7F7F;
  1530. text-align:right;
  1531. line-height:30px;
  1532. }
  1533. #u115229 .text {
  1534. position:absolute;
  1535. align-self:flex-start;
  1536. padding:0px 0px 0px 10px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u115229_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. }
  1545. #u115230_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:240px;
  1551. height:30px;
  1552. background:inherit;
  1553. background-color:rgba(255, 255, 255, 0);
  1554. border:none;
  1555. border-top:0px;
  1556. border-right:0px;
  1557. border-bottom:0px;
  1558. border-radius:0px;
  1559. border-top-left-radius:0px;
  1560. border-bottom-left-radius:0px;
  1561. -moz-box-shadow:none;
  1562. -webkit-box-shadow:none;
  1563. box-shadow:none;
  1564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1565. font-weight:400;
  1566. font-style:normal;
  1567. line-height:30px;
  1568. }
  1569. #u115230 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:873px;
  1573. top:432px;
  1574. width:240px;
  1575. height:30px;
  1576. display:flex;
  1577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1578. font-weight:400;
  1579. font-style:normal;
  1580. line-height:30px;
  1581. }
  1582. #u115230 .text {
  1583. position:absolute;
  1584. align-self:flex-start;
  1585. padding:0px 0px 0px 10px;
  1586. box-sizing:border-box;
  1587. width:100%;
  1588. }
  1589. #u115230_text {
  1590. border-width:0px;
  1591. word-wrap:break-word;
  1592. text-transform:none;
  1593. }
  1594. #u115231_div {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:80px;
  1600. height:30px;
  1601. background:inherit;
  1602. background-color:rgba(255, 255, 255, 0);
  1603. border:none;
  1604. border-top:0px;
  1605. border-right:0px;
  1606. border-bottom:0px;
  1607. border-radius:0px;
  1608. border-top-left-radius:0px;
  1609. border-bottom-left-radius:0px;
  1610. -moz-box-shadow:none;
  1611. -webkit-box-shadow:none;
  1612. box-shadow:none;
  1613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1614. font-weight:400;
  1615. font-style:normal;
  1616. color:#7F7F7F;
  1617. text-align:right;
  1618. line-height:30px;
  1619. }
  1620. #u115231 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:153px;
  1624. top:432px;
  1625. width:80px;
  1626. height:30px;
  1627. display:flex;
  1628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1629. font-weight:400;
  1630. font-style:normal;
  1631. color:#7F7F7F;
  1632. text-align:right;
  1633. line-height:30px;
  1634. }
  1635. #u115231 .text {
  1636. position:absolute;
  1637. align-self:flex-start;
  1638. padding:0px 0px 0px 10px;
  1639. box-sizing:border-box;
  1640. width:100%;
  1641. }
  1642. #u115231_text {
  1643. border-width:0px;
  1644. word-wrap:break-word;
  1645. text-transform:none;
  1646. }
  1647. #u115232_div {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:0px;
  1651. top:0px;
  1652. width:240px;
  1653. height:30px;
  1654. background:inherit;
  1655. background-color:rgba(255, 255, 255, 0);
  1656. border:none;
  1657. border-top:0px;
  1658. border-right:0px;
  1659. border-bottom:0px;
  1660. border-radius:0px;
  1661. border-top-left-radius:0px;
  1662. border-bottom-left-radius:0px;
  1663. -moz-box-shadow:none;
  1664. -webkit-box-shadow:none;
  1665. box-shadow:none;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. line-height:30px;
  1670. }
  1671. #u115232 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:233px;
  1675. top:432px;
  1676. width:240px;
  1677. height:30px;
  1678. display:flex;
  1679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1680. font-weight:400;
  1681. font-style:normal;
  1682. line-height:30px;
  1683. }
  1684. #u115232 .text {
  1685. position:absolute;
  1686. align-self:flex-start;
  1687. padding:0px 0px 0px 10px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u115232_text {
  1692. border-width:0px;
  1693. word-wrap:break-word;
  1694. text-transform:none;
  1695. }
  1696. #u115233_div {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:80px;
  1702. height:30px;
  1703. background:inherit;
  1704. background-color:rgba(255, 255, 255, 0);
  1705. border:none;
  1706. border-top:0px;
  1707. border-right:0px;
  1708. border-bottom:0px;
  1709. border-radius:0px;
  1710. border-top-left-radius:0px;
  1711. border-bottom-left-radius:0px;
  1712. -moz-box-shadow:none;
  1713. -webkit-box-shadow:none;
  1714. box-shadow:none;
  1715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1716. font-weight:400;
  1717. font-style:normal;
  1718. color:#7F7F7F;
  1719. text-align:right;
  1720. line-height:30px;
  1721. }
  1722. #u115233 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:473px;
  1726. top:472px;
  1727. width:80px;
  1728. height:30px;
  1729. display:flex;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. color:#7F7F7F;
  1734. text-align:right;
  1735. line-height:30px;
  1736. }
  1737. #u115233 .text {
  1738. position:absolute;
  1739. align-self:flex-start;
  1740. padding:0px 0px 0px 10px;
  1741. box-sizing:border-box;
  1742. width:100%;
  1743. }
  1744. #u115233_text {
  1745. border-width:0px;
  1746. word-wrap:break-word;
  1747. text-transform:none;
  1748. }
  1749. #u115234_div {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:0px;
  1753. top:0px;
  1754. width:240px;
  1755. height:30px;
  1756. background:inherit;
  1757. background-color:rgba(255, 255, 255, 0);
  1758. border:none;
  1759. border-top:0px;
  1760. border-right:0px;
  1761. border-bottom:0px;
  1762. border-radius:0px;
  1763. border-top-left-radius:0px;
  1764. border-bottom-left-radius:0px;
  1765. -moz-box-shadow:none;
  1766. -webkit-box-shadow:none;
  1767. box-shadow:none;
  1768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1769. font-weight:400;
  1770. font-style:normal;
  1771. line-height:30px;
  1772. }
  1773. #u115234 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:553px;
  1777. top:472px;
  1778. width:240px;
  1779. height:30px;
  1780. display:flex;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. line-height:30px;
  1785. }
  1786. #u115234 .text {
  1787. position:absolute;
  1788. align-self:flex-start;
  1789. padding:0px 0px 0px 10px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u115234_text {
  1794. border-width:0px;
  1795. word-wrap:break-word;
  1796. text-transform:none;
  1797. }
  1798. #u115235_div {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:80px;
  1804. height:30px;
  1805. background:inherit;
  1806. background-color:rgba(255, 255, 255, 0);
  1807. border:none;
  1808. border-top:0px;
  1809. border-right:0px;
  1810. border-bottom:0px;
  1811. border-radius:0px;
  1812. border-top-left-radius:0px;
  1813. border-bottom-left-radius:0px;
  1814. -moz-box-shadow:none;
  1815. -webkit-box-shadow:none;
  1816. box-shadow:none;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. color:#7F7F7F;
  1821. text-align:right;
  1822. line-height:30px;
  1823. }
  1824. #u115235 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:153px;
  1828. top:472px;
  1829. width:80px;
  1830. height:30px;
  1831. display:flex;
  1832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. color:#7F7F7F;
  1836. text-align:right;
  1837. line-height:30px;
  1838. }
  1839. #u115235 .text {
  1840. position:absolute;
  1841. align-self:flex-start;
  1842. padding:0px 0px 0px 10px;
  1843. box-sizing:border-box;
  1844. width:100%;
  1845. }
  1846. #u115235_text {
  1847. border-width:0px;
  1848. word-wrap:break-word;
  1849. text-transform:none;
  1850. }
  1851. #u115236_div {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:240px;
  1857. height:30px;
  1858. background:inherit;
  1859. background-color:rgba(255, 255, 255, 0);
  1860. border:none;
  1861. border-top:0px;
  1862. border-right:0px;
  1863. border-bottom:0px;
  1864. border-radius:0px;
  1865. border-top-left-radius:0px;
  1866. border-bottom-left-radius:0px;
  1867. -moz-box-shadow:none;
  1868. -webkit-box-shadow:none;
  1869. box-shadow:none;
  1870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1871. font-weight:400;
  1872. font-style:normal;
  1873. line-height:30px;
  1874. }
  1875. #u115236 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:233px;
  1879. top:472px;
  1880. width:240px;
  1881. height:30px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. line-height:30px;
  1887. }
  1888. #u115236 .text {
  1889. position:absolute;
  1890. align-self:flex-start;
  1891. padding:0px 0px 0px 10px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u115236_text {
  1896. border-width:0px;
  1897. word-wrap:break-word;
  1898. text-transform:none;
  1899. }
  1900. #u115237 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:0px;
  1906. height:0px;
  1907. }
  1908. #u115238_div {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:0px;
  1912. top:0px;
  1913. width:40px;
  1914. height:40px;
  1915. background:inherit;
  1916. background-color:rgba(255, 255, 255, 0);
  1917. border:none;
  1918. border-top:0px;
  1919. border-right:0px;
  1920. border-bottom:0px;
  1921. border-radius:0px;
  1922. border-top-left-radius:0px;
  1923. border-bottom-left-radius:0px;
  1924. -moz-box-shadow:none;
  1925. -webkit-box-shadow:none;
  1926. box-shadow:none;
  1927. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1928. font-weight:500;
  1929. font-style:normal;
  1930. font-size:18px;
  1931. text-align:center;
  1932. }
  1933. #u115238 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:1153px;
  1937. top:48px;
  1938. width:40px;
  1939. height:40px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1942. font-weight:500;
  1943. font-style:normal;
  1944. font-size:18px;
  1945. text-align:center;
  1946. }
  1947. #u115238 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:5px 10px 5px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u115238_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u115239_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:13px;
  1965. height:13px;
  1966. }
  1967. #u115239 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:1141px;
  1971. top:64px;
  1972. width:13px;
  1973. height:13px;
  1974. display:flex;
  1975. }
  1976. #u115239 .text {
  1977. position:absolute;
  1978. align-self:center;
  1979. padding:2px 2px 2px 2px;
  1980. box-sizing:border-box;
  1981. width:100%;
  1982. }
  1983. #u115239_text {
  1984. border-width:0px;
  1985. word-wrap:break-word;
  1986. text-transform:none;
  1987. visibility:hidden;
  1988. }
  1989. #u115240_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:80px;
  1995. height:30px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-top:0px;
  2000. border-right:0px;
  2001. border-bottom:0px;
  2002. border-radius:0px;
  2003. border-top-left-radius:0px;
  2004. border-bottom-left-radius:0px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. color:#7F7F7F;
  2012. text-align:right;
  2013. line-height:30px;
  2014. }
  2015. #u115240 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:473px;
  2019. top:290px;
  2020. width:80px;
  2021. height:30px;
  2022. display:flex;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. color:#7F7F7F;
  2027. text-align:right;
  2028. line-height:30px;
  2029. }
  2030. #u115240 .text {
  2031. position:absolute;
  2032. align-self:flex-start;
  2033. padding:0px 0px 0px 10px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u115240_text {
  2038. border-width:0px;
  2039. word-wrap:break-word;
  2040. text-transform:none;
  2041. }
  2042. #u115241_div {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:240px;
  2048. height:30px;
  2049. background:inherit;
  2050. background-color:rgba(255, 255, 255, 0);
  2051. border:none;
  2052. border-top:0px;
  2053. border-right:0px;
  2054. border-bottom:0px;
  2055. border-radius:0px;
  2056. border-top-left-radius:0px;
  2057. border-bottom-left-radius:0px;
  2058. -moz-box-shadow:none;
  2059. -webkit-box-shadow:none;
  2060. box-shadow:none;
  2061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2062. font-weight:400;
  2063. font-style:normal;
  2064. line-height:30px;
  2065. }
  2066. #u115241 {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:553px;
  2070. top:290px;
  2071. width:240px;
  2072. height:30px;
  2073. display:flex;
  2074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. line-height:30px;
  2078. }
  2079. #u115241 .text {
  2080. position:absolute;
  2081. align-self:flex-start;
  2082. padding:0px 0px 0px 10px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u115241_text {
  2087. border-width:0px;
  2088. word-wrap:break-word;
  2089. text-transform:none;
  2090. }
  2091. #u115242_div {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:235px;
  2097. height:20px;
  2098. background:inherit;
  2099. background-color:rgba(255, 255, 255, 0);
  2100. border:none;
  2101. border-top:0px;
  2102. border-right:0px;
  2103. border-bottom:0px;
  2104. border-radius:0px;
  2105. border-top-left-radius:0px;
  2106. border-bottom-left-radius:0px;
  2107. -moz-box-shadow:none;
  2108. -webkit-box-shadow:none;
  2109. box-shadow:none;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. }
  2114. #u115242 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:134px;
  2118. top:130px;
  2119. width:235px;
  2120. height:20px;
  2121. display:flex;
  2122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. }
  2126. #u115242 .text {
  2127. position:absolute;
  2128. align-self:flex-start;
  2129. padding:0px 0px 0px 10px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u115242_text {
  2134. border-width:0px;
  2135. white-space:nowrap;
  2136. text-transform:none;
  2137. }
  2138. #u115243_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:123px;
  2144. height:20px;
  2145. background:inherit;
  2146. background-color:rgba(255, 255, 255, 0);
  2147. border:none;
  2148. border-top:0px;
  2149. border-right:0px;
  2150. border-bottom:0px;
  2151. border-radius:0px;
  2152. border-top-left-radius:0px;
  2153. border-bottom-left-radius:0px;
  2154. -moz-box-shadow:none;
  2155. -webkit-box-shadow:none;
  2156. box-shadow:none;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. }
  2161. #u115243 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:496px;
  2165. top:130px;
  2166. width:123px;
  2167. height:20px;
  2168. display:flex;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. }
  2173. #u115243 .text {
  2174. position:absolute;
  2175. align-self:flex-start;
  2176. padding:0px 0px 0px 10px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u115243_text {
  2181. border-width:0px;
  2182. white-space:nowrap;
  2183. text-transform:none;
  2184. }
  2185. #u115244_div {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:83px;
  2191. height:35px;
  2192. background:inherit;
  2193. background-color:rgba(255, 255, 255, 0);
  2194. border:none;
  2195. border-top:0px;
  2196. border-right:0px;
  2197. border-bottom:0px;
  2198. border-radius:0px;
  2199. border-top-left-radius:0px;
  2200. border-bottom-left-radius:0px;
  2201. -moz-box-shadow:none;
  2202. -webkit-box-shadow:none;
  2203. box-shadow:none;
  2204. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2205. font-weight:500;
  2206. font-style:normal;
  2207. font-size:18px;
  2208. }
  2209. #u115244 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:134px;
  2213. top:806px;
  2214. width:83px;
  2215. height:35px;
  2216. display:flex;
  2217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2218. font-weight:500;
  2219. font-style:normal;
  2220. font-size:18px;
  2221. }
  2222. #u115244 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:5px 10px 5px 0px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u115244_text {
  2230. border-width:0px;
  2231. white-space:nowrap;
  2232. text-transform:none;
  2233. }
  2234. #u115245_div {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:74px;
  2240. height:30px;
  2241. background:inherit;
  2242. background-color:rgba(255, 255, 255, 0);
  2243. border:none;
  2244. border-top:0px;
  2245. border-right:0px;
  2246. border-bottom:0px;
  2247. border-radius:0px;
  2248. border-top-left-radius:0px;
  2249. border-bottom-left-radius:0px;
  2250. -moz-box-shadow:none;
  2251. -webkit-box-shadow:none;
  2252. box-shadow:none;
  2253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2254. font-weight:400;
  2255. font-style:normal;
  2256. font-size:14px;
  2257. color:#7F7F7F;
  2258. }
  2259. #u115245 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:138px;
  2263. top:859px;
  2264. width:74px;
  2265. height:30px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:14px;
  2271. color:#7F7F7F;
  2272. }
  2273. #u115245 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:5px 10px 5px 0px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u115245_text {
  2281. border-width:0px;
  2282. white-space:nowrap;
  2283. text-transform:none;
  2284. }
  2285. #u115246 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:0px;
  2291. height:0px;
  2292. }
  2293. #u115247_div {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:715px;
  2299. height:40px;
  2300. background:inherit;
  2301. background-color:rgba(255, 255, 255, 1);
  2302. box-sizing:border-box;
  2303. border-width:1px;
  2304. border-style:solid;
  2305. border-color:rgba(215, 215, 215, 1);
  2306. border-radius:4px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-size:11px;
  2311. }
  2312. #u115247 {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:229px;
  2316. top:854px;
  2317. width:715px;
  2318. height:40px;
  2319. display:flex;
  2320. font-size:11px;
  2321. }
  2322. #u115247 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 2px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u115247_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. visibility:hidden;
  2334. }
  2335. #u115248_input {
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:687px;
  2340. height:25px;
  2341. padding:2px 2px 2px 2px;
  2342. font-family:'ArialMT', 'Arial', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:13px;
  2346. letter-spacing:normal;
  2347. color:#000000;
  2348. vertical-align:none;
  2349. text-align:left;
  2350. text-transform:none;
  2351. background-color:transparent;
  2352. border-color:transparent;
  2353. }
  2354. #u115248_input.disabled {
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:687px;
  2359. height:25px;
  2360. padding:2px 2px 2px 2px;
  2361. font-family:'ArialMT', 'Arial', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:13px;
  2365. letter-spacing:normal;
  2366. color:#000000;
  2367. vertical-align:none;
  2368. text-align:left;
  2369. text-transform:none;
  2370. background-color:transparent;
  2371. border-color:transparent;
  2372. }
  2373. #u115248_div {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:687px;
  2379. height:25px;
  2380. background:inherit;
  2381. background-color:rgba(255, 255, 255, 1);
  2382. border:none;
  2383. border-radius:0px;
  2384. -moz-box-shadow:none;
  2385. -webkit-box-shadow:none;
  2386. box-shadow:none;
  2387. }
  2388. #u115248 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:243px;
  2392. top:862px;
  2393. width:687px;
  2394. height:25px;
  2395. display:flex;
  2396. }
  2397. #u115248 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u115248_div.disabled {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:687px;
  2410. height:25px;
  2411. background:inherit;
  2412. background-color:rgba(240, 240, 240, 1);
  2413. border:none;
  2414. border-radius:0px;
  2415. -moz-box-shadow:none;
  2416. -webkit-box-shadow:none;
  2417. box-shadow:none;
  2418. }
  2419. #u115248.disabled {
  2420. }
  2421. #u115249 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:0px;
  2427. height:0px;
  2428. }
  2429. #u115250_div {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:1100px;
  2435. height:50px;
  2436. background:inherit;
  2437. background-color:rgba(255, 255, 255, 1);
  2438. box-sizing:border-box;
  2439. border-width:1px;
  2440. border-style:solid;
  2441. border-color:rgba(215, 215, 215, 1);
  2442. border-radius:0px;
  2443. -moz-box-shadow:none;
  2444. -webkit-box-shadow:none;
  2445. box-shadow:none;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:14px;
  2450. color:#AAAAAA;
  2451. text-align:center;
  2452. line-height:30px;
  2453. }
  2454. #u115250 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:93px;
  2458. top:1204px;
  2459. width:1100px;
  2460. height:50px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:14px;
  2466. color:#AAAAAA;
  2467. text-align:center;
  2468. line-height:30px;
  2469. }
  2470. #u115250 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:5px 10px 5px 10px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u115250_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u115251_div {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:80px;
  2489. height:30px;
  2490. background:inherit;
  2491. background-color:rgba(24, 144, 255, 1);
  2492. border:none;
  2493. border-radius:4px;
  2494. -moz-box-shadow:none;
  2495. -webkit-box-shadow:none;
  2496. box-shadow:none;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:14px;
  2501. color:#FFFFFF;
  2502. }
  2503. #u115251 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:1093px;
  2507. top:1214px;
  2508. width:80px;
  2509. height:30px;
  2510. display:flex;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:14px;
  2515. color:#FFFFFF;
  2516. }
  2517. #u115251 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:2px 2px 2px 2px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u115251_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. }
  2529. #u115252_div {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:80px;
  2535. height:30px;
  2536. background:inherit;
  2537. background-color:rgba(255, 255, 255, 1);
  2538. box-sizing:border-box;
  2539. border-width:1px;
  2540. border-style:solid;
  2541. border-color:rgba(170, 170, 170, 1);
  2542. border-radius:4px;
  2543. -moz-box-shadow:none;
  2544. -webkit-box-shadow:none;
  2545. box-shadow:none;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:14px;
  2550. }
  2551. #u115252 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:993px;
  2555. top:1214px;
  2556. width:80px;
  2557. height:30px;
  2558. display:flex;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:14px;
  2563. }
  2564. #u115252 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 2px 2px 2px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u115252_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. }
  2576. #u115253 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:134px;
  2580. top:595px;
  2581. width:1033px;
  2582. height:191px;
  2583. }
  2584. #u115254_img {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:190px;
  2590. height:38px;
  2591. }
  2592. #u115254 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:190px;
  2598. height:38px;
  2599. display:flex;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:12px;
  2604. color:#FFFFFF;
  2605. }
  2606. #u115254 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 2px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u115254_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. }
  2618. #u115255_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:172px;
  2624. height:38px;
  2625. }
  2626. #u115255 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:190px;
  2630. top:0px;
  2631. width:172px;
  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:#FFFFFF;
  2639. }
  2640. #u115255 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u115255_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. }
  2652. #u115256_img {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:190px;
  2658. height:38px;
  2659. }
  2660. #u115256 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:362px;
  2664. top:0px;
  2665. width:190px;
  2666. height:38px;
  2667. display:flex;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:12px;
  2672. color:#FFFFFF;
  2673. }
  2674. #u115256 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 2px 2px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u115256_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. }
  2686. #u115257_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:172px;
  2692. height:38px;
  2693. }
  2694. #u115257 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:552px;
  2698. top:0px;
  2699. width:172px;
  2700. height:38px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:12px;
  2706. color:#FFFFFF;
  2707. }
  2708. #u115257 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u115257_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. }
  2720. #u115258_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:172px;
  2726. height:38px;
  2727. }
  2728. #u115258 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:724px;
  2732. top:0px;
  2733. width:172px;
  2734. height:38px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:12px;
  2740. color:#FFFFFF;
  2741. }
  2742. #u115258 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u115258_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. }
  2754. #u115259_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:137px;
  2760. height:38px;
  2761. }
  2762. #u115259 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:896px;
  2766. top:0px;
  2767. width:137px;
  2768. height:38px;
  2769. display:flex;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:12px;
  2774. color:#FFFFFF;
  2775. }
  2776. #u115259 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 0px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u115259_text {
  2784. border-width:0px;
  2785. word-wrap:break-word;
  2786. text-transform:none;
  2787. }
  2788. #u115260_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:190px;
  2794. height:39px;
  2795. }
  2796. #u115260 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:38px;
  2801. width:190px;
  2802. height:39px;
  2803. display:flex;
  2804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:12px;
  2808. color:#333333;
  2809. }
  2810. #u115260 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 0px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u115260_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. }
  2822. #u115261_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:172px;
  2828. height:39px;
  2829. }
  2830. #u115261 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:190px;
  2834. top:38px;
  2835. width:172px;
  2836. height:39px;
  2837. display:flex;
  2838. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:12px;
  2842. color:#333333;
  2843. }
  2844. #u115261 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u115261_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. visibility:hidden;
  2856. }
  2857. #u115262_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:190px;
  2863. height:39px;
  2864. }
  2865. #u115262 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:362px;
  2869. top:38px;
  2870. width:190px;
  2871. height:39px;
  2872. display:flex;
  2873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:12px;
  2877. color:#2288E6;
  2878. }
  2879. #u115262 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 0px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u115262_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. }
  2891. #u115263_img {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:172px;
  2897. height:39px;
  2898. }
  2899. #u115263 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:552px;
  2903. top:38px;
  2904. width:172px;
  2905. height:39px;
  2906. display:flex;
  2907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:12px;
  2911. color:#2288E6;
  2912. }
  2913. #u115263 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u115263_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. visibility:hidden;
  2925. }
  2926. #u115264_img {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:172px;
  2932. height:39px;
  2933. }
  2934. #u115264 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:724px;
  2938. top:38px;
  2939. width:172px;
  2940. height:39px;
  2941. display:flex;
  2942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. font-size:12px;
  2946. color:#2288E6;
  2947. }
  2948. #u115264 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u115264_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u115265_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:137px;
  2967. height:39px;
  2968. }
  2969. #u115265 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:896px;
  2973. top:38px;
  2974. width:137px;
  2975. height:39px;
  2976. display:flex;
  2977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. color:#333333;
  2982. }
  2983. #u115265 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 0px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u115265_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. }
  2995. #u115266_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:190px;
  3001. height:38px;
  3002. }
  3003. #u115266 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:77px;
  3008. width:190px;
  3009. height:38px;
  3010. display:flex;
  3011. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. color:#333333;
  3016. }
  3017. #u115266 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u115266_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. }
  3029. #u115267_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:172px;
  3035. height:38px;
  3036. }
  3037. #u115267 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:190px;
  3041. top:77px;
  3042. width:172px;
  3043. height:38px;
  3044. display:flex;
  3045. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:12px;
  3049. color:#333333;
  3050. }
  3051. #u115267 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 0px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u115267_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u115268_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:190px;
  3070. height:38px;
  3071. }
  3072. #u115268 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:362px;
  3076. top:77px;
  3077. width:190px;
  3078. height:38px;
  3079. display:flex;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:12px;
  3084. color:#2288E6;
  3085. }
  3086. #u115268 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 0px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u115268_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. }
  3098. #u115269_img {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:172px;
  3104. height:38px;
  3105. }
  3106. #u115269 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:552px;
  3110. top:77px;
  3111. width:172px;
  3112. height:38px;
  3113. display:flex;
  3114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:12px;
  3118. color:#2288E6;
  3119. }
  3120. #u115269 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:2px 2px 2px 0px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u115269_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. visibility:hidden;
  3132. }
  3133. #u115270_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:172px;
  3139. height:38px;
  3140. }
  3141. #u115270 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:724px;
  3145. top:77px;
  3146. width:172px;
  3147. height:38px;
  3148. display:flex;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:12px;
  3153. color:#2288E6;
  3154. }
  3155. #u115270 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 0px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u115270_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u115271_img {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:137px;
  3174. height:38px;
  3175. }
  3176. #u115271 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:896px;
  3180. top:77px;
  3181. width:137px;
  3182. height:38px;
  3183. display:flex;
  3184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:12px;
  3188. color:#333333;
  3189. }
  3190. #u115271 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 2px 2px 0px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u115271_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. }
  3202. #u115272_img {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:190px;
  3208. height:38px;
  3209. }
  3210. #u115272 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:115px;
  3215. width:190px;
  3216. height:38px;
  3217. display:flex;
  3218. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3219. font-weight:400;
  3220. font-style:normal;
  3221. font-size:12px;
  3222. color:#333333;
  3223. }
  3224. #u115272 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 2px 2px 0px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u115272_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. }
  3236. #u115273_img {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:172px;
  3242. height:38px;
  3243. }
  3244. #u115273 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:190px;
  3248. top:115px;
  3249. width:172px;
  3250. height:38px;
  3251. display:flex;
  3252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:12px;
  3256. color:#333333;
  3257. }
  3258. #u115273 .text {
  3259. position:absolute;
  3260. align-self:center;
  3261. padding:2px 2px 2px 0px;
  3262. box-sizing:border-box;
  3263. width:100%;
  3264. }
  3265. #u115273_text {
  3266. border-width:0px;
  3267. word-wrap:break-word;
  3268. text-transform:none;
  3269. visibility:hidden;
  3270. }
  3271. #u115274_img {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:190px;
  3277. height:38px;
  3278. }
  3279. #u115274 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:362px;
  3283. top:115px;
  3284. width:190px;
  3285. height:38px;
  3286. display:flex;
  3287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:12px;
  3291. color:#2288E6;
  3292. }
  3293. #u115274 .text {
  3294. position:absolute;
  3295. align-self:center;
  3296. padding:2px 2px 2px 0px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u115274_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. }
  3305. #u115275_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:172px;
  3311. height:38px;
  3312. }
  3313. #u115275 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:552px;
  3317. top:115px;
  3318. width:172px;
  3319. height:38px;
  3320. display:flex;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:12px;
  3325. color:#2288E6;
  3326. }
  3327. #u115275 .text {
  3328. position:absolute;
  3329. align-self:center;
  3330. padding:2px 2px 2px 0px;
  3331. box-sizing:border-box;
  3332. width:100%;
  3333. }
  3334. #u115275_text {
  3335. border-width:0px;
  3336. word-wrap:break-word;
  3337. text-transform:none;
  3338. visibility:hidden;
  3339. }
  3340. #u115276_img {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:172px;
  3346. height:38px;
  3347. }
  3348. #u115276 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:724px;
  3352. top:115px;
  3353. width:172px;
  3354. height:38px;
  3355. display:flex;
  3356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:12px;
  3360. color:#2288E6;
  3361. }
  3362. #u115276 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:2px 2px 2px 0px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u115276_text {
  3370. border-width:0px;
  3371. word-wrap:break-word;
  3372. text-transform:none;
  3373. visibility:hidden;
  3374. }
  3375. #u115277_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:137px;
  3381. height:38px;
  3382. }
  3383. #u115277 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:896px;
  3387. top:115px;
  3388. width:137px;
  3389. height:38px;
  3390. display:flex;
  3391. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:12px;
  3395. color:#333333;
  3396. }
  3397. #u115277 .text {
  3398. position:absolute;
  3399. align-self:center;
  3400. padding:2px 2px 2px 0px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u115277_text {
  3405. border-width:0px;
  3406. word-wrap:break-word;
  3407. text-transform:none;
  3408. }
  3409. #u115278_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:190px;
  3415. height:38px;
  3416. }
  3417. #u115278 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:153px;
  3422. width:190px;
  3423. height:38px;
  3424. display:flex;
  3425. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. color:#333333;
  3430. }
  3431. #u115278 .text {
  3432. position:absolute;
  3433. align-self:center;
  3434. padding:2px 2px 2px 0px;
  3435. box-sizing:border-box;
  3436. width:100%;
  3437. }
  3438. #u115278_text {
  3439. border-width:0px;
  3440. word-wrap:break-word;
  3441. text-transform:none;
  3442. visibility:hidden;
  3443. }
  3444. #u115279_img {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:172px;
  3450. height:38px;
  3451. }
  3452. #u115279 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:190px;
  3456. top:153px;
  3457. width:172px;
  3458. height:38px;
  3459. display:flex;
  3460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:12px;
  3464. color:#333333;
  3465. }
  3466. #u115279 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:2px 2px 2px 0px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u115279_text {
  3474. border-width:0px;
  3475. word-wrap:break-word;
  3476. text-transform:none;
  3477. visibility:hidden;
  3478. }
  3479. #u115280_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:190px;
  3485. height:38px;
  3486. }
  3487. #u115280 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:362px;
  3491. top:153px;
  3492. width:190px;
  3493. height:38px;
  3494. display:flex;
  3495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3496. font-weight:400;
  3497. font-style:normal;
  3498. font-size:12px;
  3499. color:#2288E6;
  3500. }
  3501. #u115280 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 0px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u115280_text {
  3509. border-width:0px;
  3510. word-wrap:break-word;
  3511. text-transform:none;
  3512. visibility:hidden;
  3513. }
  3514. #u115281_img {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:172px;
  3520. height:38px;
  3521. }
  3522. #u115281 {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:552px;
  3526. top:153px;
  3527. width:172px;
  3528. height:38px;
  3529. display:flex;
  3530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3531. font-weight:400;
  3532. font-style:normal;
  3533. font-size:12px;
  3534. color:#2288E6;
  3535. }
  3536. #u115281 .text {
  3537. position:absolute;
  3538. align-self:center;
  3539. padding:2px 2px 2px 0px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u115281_text {
  3544. border-width:0px;
  3545. word-wrap:break-word;
  3546. text-transform:none;
  3547. visibility:hidden;
  3548. }
  3549. #u115282_img {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:172px;
  3555. height:38px;
  3556. }
  3557. #u115282 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:724px;
  3561. top:153px;
  3562. width:172px;
  3563. height:38px;
  3564. display:flex;
  3565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3566. font-weight:400;
  3567. font-style:normal;
  3568. font-size:12px;
  3569. color:#2288E6;
  3570. }
  3571. #u115282 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 0px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u115282_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u115283_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:137px;
  3590. height:38px;
  3591. }
  3592. #u115283 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:896px;
  3596. top:153px;
  3597. width:137px;
  3598. height:38px;
  3599. display:flex;
  3600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:12px;
  3604. color:#333333;
  3605. }
  3606. #u115283 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 2px 2px 0px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u115283_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. }
  3618. #u115284 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:0px;
  3624. height:0px;
  3625. }
  3626. #u115285_div {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:499px;
  3632. height:180px;
  3633. background:inherit;
  3634. background-color:rgba(255, 255, 255, 1);
  3635. box-sizing:border-box;
  3636. border-width:1px;
  3637. border-style:solid;
  3638. border-color:rgba(215, 215, 215, 1);
  3639. border-radius:0px;
  3640. -moz-box-shadow:none;
  3641. -webkit-box-shadow:none;
  3642. box-shadow:none;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:14px;
  3647. color:#AAAAAA;
  3648. text-align:center;
  3649. line-height:30px;
  3650. }
  3651. #u115285 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:473px;
  3655. top:937px;
  3656. width:499px;
  3657. height:180px;
  3658. display:flex;
  3659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:14px;
  3663. color:#AAAAAA;
  3664. text-align:center;
  3665. line-height:30px;
  3666. }
  3667. #u115285 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:5px 10px 5px 10px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u115285_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u115286_div {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:119px;
  3686. height:35px;
  3687. background:inherit;
  3688. background-color:rgba(255, 255, 255, 0);
  3689. border:none;
  3690. border-top:0px;
  3691. border-right:0px;
  3692. border-bottom:0px;
  3693. border-radius:0px;
  3694. border-top-left-radius:0px;
  3695. border-bottom-left-radius:0px;
  3696. -moz-box-shadow:none;
  3697. -webkit-box-shadow:none;
  3698. box-shadow:none;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:18px;
  3703. }
  3704. #u115286 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:553px;
  3708. top:961px;
  3709. width:119px;
  3710. height:35px;
  3711. display:flex;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:18px;
  3716. }
  3717. #u115286 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:5px 10px 5px 0px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u115286_text {
  3725. border-width:0px;
  3726. white-space:nowrap;
  3727. text-transform:none;
  3728. }
  3729. #u115287_div {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:60px;
  3735. height:30px;
  3736. background:inherit;
  3737. background-color:rgba(24, 144, 255, 1);
  3738. border:none;
  3739. border-radius:4px;
  3740. -moz-box-shadow:none;
  3741. -webkit-box-shadow:none;
  3742. box-shadow:none;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. font-size:14px;
  3747. color:#FFFFFF;
  3748. }
  3749. #u115287 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:878px;
  3753. top:1062px;
  3754. width:60px;
  3755. height:30px;
  3756. display:flex;
  3757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3758. font-weight:400;
  3759. font-style:normal;
  3760. font-size:14px;
  3761. color:#FFFFFF;
  3762. }
  3763. #u115287 .text {
  3764. position:absolute;
  3765. align-self:center;
  3766. padding:2px 2px 2px 2px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u115287_text {
  3771. border-width:0px;
  3772. word-wrap:break-word;
  3773. text-transform:none;
  3774. }
  3775. #u115288_img {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:30px;
  3781. height:30px;
  3782. }
  3783. #u115288 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:503px;
  3787. top:963px;
  3788. width:30px;
  3789. height:30px;
  3790. display:flex;
  3791. }
  3792. #u115288 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 2px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u115288_text {
  3800. border-width:0px;
  3801. word-wrap:break-word;
  3802. text-transform:none;
  3803. visibility:hidden;
  3804. }
  3805. #u115289_div {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:385px;
  3811. height:70px;
  3812. background:inherit;
  3813. background-color:rgba(255, 255, 255, 0);
  3814. border:none;
  3815. border-top:0px;
  3816. border-right:0px;
  3817. border-bottom:0px;
  3818. border-radius:0px;
  3819. border-top-left-radius:0px;
  3820. border-bottom-left-radius:0px;
  3821. -moz-box-shadow:none;
  3822. -webkit-box-shadow:none;
  3823. box-shadow:none;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:14px;
  3828. line-height:30px;
  3829. }
  3830. #u115289 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:553px;
  3834. top:1006px;
  3835. width:385px;
  3836. height:70px;
  3837. display:flex;
  3838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:14px;
  3842. line-height:30px;
  3843. }
  3844. #u115289 .text {
  3845. position:absolute;
  3846. align-self:flex-start;
  3847. padding:5px 10px 5px 0px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u115289_text {
  3852. border-width:0px;
  3853. word-wrap:break-word;
  3854. text-transform:none;
  3855. }
  3856. #u115290_div {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:60px;
  3862. height:30px;
  3863. background:inherit;
  3864. background-color:rgba(255, 255, 255, 1);
  3865. box-sizing:border-box;
  3866. border-width:1px;
  3867. border-style:solid;
  3868. border-color:rgba(127, 127, 127, 1);
  3869. border-radius:4px;
  3870. -moz-box-shadow:none;
  3871. -webkit-box-shadow:none;
  3872. box-shadow:none;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:14px;
  3877. }
  3878. #u115290 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:798px;
  3882. top:1062px;
  3883. width:60px;
  3884. height:30px;
  3885. display:flex;
  3886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:14px;
  3890. }
  3891. #u115290 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u115290_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. }
  3903. #u115291_img {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:10px;
  3909. height:10px;
  3910. }
  3911. #u115291 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:953px;
  3915. top:947px;
  3916. width:10px;
  3917. height:10px;
  3918. display:flex;
  3919. }
  3920. #u115291 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 2px 2px 2px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u115291_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u115292_div {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:215px;
  3939. height:30px;
  3940. background:inherit;
  3941. background-color:rgba(51, 51, 51, 1);
  3942. border:none;
  3943. border-radius:51px;
  3944. -moz-box-shadow:none;
  3945. -webkit-box-shadow:none;
  3946. box-shadow:none;
  3947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3948. font-weight:400;
  3949. font-style:normal;
  3950. font-size:14px;
  3951. color:#FFFFFF;
  3952. }
  3953. #u115292 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:646px;
  3957. top:938px;
  3958. width:215px;
  3959. height:30px;
  3960. display:flex;
  3961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:14px;
  3965. color:#FFFFFF;
  3966. }
  3967. #u115292 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:2px 2px 2px 2px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u115292_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. }