styles.css 79 KB

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