styles.css 82 KB

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