styles.css 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-105px;
  6. width:1410px;
  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. #u95167 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u95168_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:2200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u95168 {
  53. border-width:0px;
  54. position:absolute;
  55. left:105px;
  56. top:49px;
  57. width:1000px;
  58. height:2200px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u95168 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u95168_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u95169_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:270px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u95169 {
  107. border-width:0px;
  108. position:absolute;
  109. left:105px;
  110. top:49px;
  111. width:1000px;
  112. height:270px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u95169 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u95169_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u95170_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:83px;
  141. height:35px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-top:0px;
  146. border-right:0px;
  147. border-bottom:0px;
  148. border-radius:0px;
  149. border-top-left-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  155. font-weight:500;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u95170 {
  160. border-width:0px;
  161. position:absolute;
  162. left:125px;
  163. top:67px;
  164. width:83px;
  165. height:35px;
  166. display:flex;
  167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  168. font-weight:500;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u95170 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u95170_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u95171 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u95172_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:40px;
  198. height:40px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 0);
  201. border:none;
  202. border-top:0px;
  203. border-right:0px;
  204. border-bottom:0px;
  205. border-radius:0px;
  206. border-top-left-radius:0px;
  207. border-bottom-left-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  212. font-weight:500;
  213. font-style:normal;
  214. font-size:14px;
  215. text-align:center;
  216. }
  217. #u95172 {
  218. border-width:0px;
  219. position:absolute;
  220. left:1065px;
  221. top:49px;
  222. width:40px;
  223. height:40px;
  224. display:flex;
  225. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  226. font-weight:500;
  227. font-style:normal;
  228. font-size:14px;
  229. text-align:center;
  230. }
  231. #u95172 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 0px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u95172_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. }
  243. #u95173_img {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:13px;
  249. height:13px;
  250. }
  251. #u95173 {
  252. border-width:0px;
  253. position:absolute;
  254. left:1053px;
  255. top:65px;
  256. width:13px;
  257. height:13px;
  258. display:flex;
  259. font-size:14px;
  260. }
  261. #u95173 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u95173_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u95174_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:349px;
  280. height:43px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border:none;
  284. border-top:0px;
  285. border-right:0px;
  286. border-bottom:0px;
  287. border-radius:0px;
  288. border-top-left-radius:0px;
  289. border-bottom-left-radius:0px;
  290. -moz-box-shadow:none;
  291. -webkit-box-shadow:none;
  292. box-shadow:none;
  293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  294. font-weight:500;
  295. font-style:normal;
  296. font-size:24px;
  297. }
  298. #u95174 {
  299. border-width:0px;
  300. position:absolute;
  301. left:135px;
  302. top:118px;
  303. width:349px;
  304. height:43px;
  305. display:flex;
  306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  307. font-weight:500;
  308. font-style:normal;
  309. font-size:24px;
  310. }
  311. #u95174 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:5px 10px 5px 0px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u95174_text {
  319. border-width:0px;
  320. white-space:nowrap;
  321. text-transform:none;
  322. }
  323. #u95175_img {
  324. border-width:0px;
  325. position:absolute;
  326. left:0px;
  327. top:0px;
  328. width:108px;
  329. height:108px;
  330. }
  331. #u95175 {
  332. border-width:0px;
  333. position:absolute;
  334. left:955px;
  335. top:119px;
  336. width:108px;
  337. height:108px;
  338. display:flex;
  339. -webkit-transform:rotate(315deg);
  340. -moz-transform:rotate(315deg);
  341. -ms-transform:rotate(315deg);
  342. transform:rotate(315deg);
  343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  344. font-weight:400;
  345. font-style:normal;
  346. font-size:28px;
  347. color:#F59A23;
  348. }
  349. #u95175 .text {
  350. position:absolute;
  351. align-self:center;
  352. padding:2px 2px 2px 2px;
  353. box-sizing:border-box;
  354. width:100%;
  355. }
  356. #u95175_text {
  357. border-width:0px;
  358. word-wrap:break-word;
  359. text-transform:none;
  360. }
  361. #u95176 {
  362. border-width:0px;
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:0px;
  367. height:0px;
  368. }
  369. #u95177_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:1000px;
  375. height:60px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(215, 215, 215, 1);
  382. border-radius:0px;
  383. -moz-box-shadow:none;
  384. -webkit-box-shadow:none;
  385. box-shadow:none;
  386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  387. font-weight:400;
  388. font-style:normal;
  389. font-size:14px;
  390. color:#AAAAAA;
  391. text-align:center;
  392. line-height:30px;
  393. }
  394. #u95177 {
  395. border-width:0px;
  396. position:absolute;
  397. left:105px;
  398. top:2189px;
  399. width:1000px;
  400. height:60px;
  401. display:flex;
  402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  403. font-weight:400;
  404. font-style:normal;
  405. font-size:14px;
  406. color:#AAAAAA;
  407. text-align:center;
  408. line-height:30px;
  409. }
  410. #u95177 .text {
  411. position:absolute;
  412. align-self:center;
  413. padding:5px 10px 5px 10px;
  414. box-sizing:border-box;
  415. width:100%;
  416. }
  417. #u95177_text {
  418. border-width:0px;
  419. word-wrap:break-word;
  420. text-transform:none;
  421. visibility:hidden;
  422. }
  423. #u95178_div {
  424. border-width:0px;
  425. position:absolute;
  426. left:0px;
  427. top:0px;
  428. width:80px;
  429. height:30px;
  430. background:inherit;
  431. background-color:rgba(24, 144, 255, 1);
  432. border:none;
  433. border-radius:4px;
  434. -moz-box-shadow:none;
  435. -webkit-box-shadow:none;
  436. box-shadow:none;
  437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  438. font-weight:400;
  439. font-style:normal;
  440. font-size:14px;
  441. color:#FFFFFF;
  442. }
  443. #u95178 {
  444. border-width:0px;
  445. position:absolute;
  446. left:999px;
  447. top:2204px;
  448. width:80px;
  449. height:30px;
  450. display:flex;
  451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  452. font-weight:400;
  453. font-style:normal;
  454. font-size:14px;
  455. color:#FFFFFF;
  456. }
  457. #u95178 .text {
  458. position:absolute;
  459. align-self:center;
  460. padding:2px 2px 2px 2px;
  461. box-sizing:border-box;
  462. width:100%;
  463. }
  464. #u95178_text {
  465. border-width:0px;
  466. word-wrap:break-word;
  467. text-transform:none;
  468. }
  469. #u95179_div {
  470. border-width:0px;
  471. position:absolute;
  472. left:0px;
  473. top:0px;
  474. width:80px;
  475. height:30px;
  476. background:inherit;
  477. background-color:rgba(245, 154, 35, 1);
  478. border:none;
  479. border-radius:4px;
  480. -moz-box-shadow:none;
  481. -webkit-box-shadow:none;
  482. box-shadow:none;
  483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  484. font-weight:400;
  485. font-style:normal;
  486. font-size:14px;
  487. color:#FFFFFF;
  488. }
  489. #u95179 {
  490. border-width:0px;
  491. position:absolute;
  492. left:909px;
  493. top:2204px;
  494. width:80px;
  495. height:30px;
  496. display:flex;
  497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  498. font-weight:400;
  499. font-style:normal;
  500. font-size:14px;
  501. color:#FFFFFF;
  502. }
  503. #u95179 .text {
  504. position:absolute;
  505. align-self:center;
  506. padding:2px 2px 2px 2px;
  507. box-sizing:border-box;
  508. width:100%;
  509. }
  510. #u95179_text {
  511. border-width:0px;
  512. word-wrap:break-word;
  513. text-transform:none;
  514. }
  515. #u95180_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:80px;
  521. height:30px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 1);
  524. box-sizing:border-box;
  525. border-width:1px;
  526. border-style:solid;
  527. border-color:rgba(170, 170, 170, 1);
  528. border-radius:4px;
  529. -moz-box-shadow:none;
  530. -webkit-box-shadow:none;
  531. box-shadow:none;
  532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  533. font-weight:400;
  534. font-style:normal;
  535. font-size:14px;
  536. }
  537. #u95180 {
  538. border-width:0px;
  539. position:absolute;
  540. left:819px;
  541. top:2204px;
  542. width:80px;
  543. height:30px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:14px;
  549. }
  550. #u95180 .text {
  551. position:absolute;
  552. align-self:center;
  553. padding:2px 2px 2px 2px;
  554. box-sizing:border-box;
  555. width:100%;
  556. }
  557. #u95180_text {
  558. border-width:0px;
  559. word-wrap:break-word;
  560. text-transform:none;
  561. }
  562. #u95181_div {
  563. border-width:0px;
  564. position:absolute;
  565. left:0px;
  566. top:0px;
  567. width:80px;
  568. height:30px;
  569. background:inherit;
  570. background-color:rgba(255, 255, 255, 0);
  571. border:none;
  572. border-left:0px;
  573. border-top:0px;
  574. border-right:0px;
  575. border-radius:0px;
  576. border-bottom-right-radius:0px;
  577. border-bottom-left-radius:0px;
  578. -moz-box-shadow:none;
  579. -webkit-box-shadow:none;
  580. box-shadow:none;
  581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  582. font-weight:400;
  583. font-style:normal;
  584. font-size:14px;
  585. color:#7F7F7F;
  586. line-height:30px;
  587. }
  588. #u95181 {
  589. border-width:0px;
  590. position:absolute;
  591. left:135px;
  592. top:181px;
  593. width:80px;
  594. height:30px;
  595. display:flex;
  596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  597. font-weight:400;
  598. font-style:normal;
  599. font-size:14px;
  600. color:#7F7F7F;
  601. line-height:30px;
  602. }
  603. #u95181 .text {
  604. position:absolute;
  605. align-self:flex-start;
  606. padding:0px 0px 0px 0px;
  607. box-sizing:border-box;
  608. width:100%;
  609. }
  610. #u95181_text {
  611. border-width:0px;
  612. word-wrap:break-word;
  613. text-transform:none;
  614. }
  615. #u95182_div {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:85px;
  621. height:30px;
  622. background:inherit;
  623. background-color:rgba(255, 255, 255, 0);
  624. border:none;
  625. border-left:0px;
  626. border-top:0px;
  627. border-right:0px;
  628. border-radius:0px;
  629. border-bottom-right-radius:0px;
  630. border-bottom-left-radius:0px;
  631. -moz-box-shadow:none;
  632. -webkit-box-shadow:none;
  633. box-shadow:none;
  634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:14px;
  638. line-height:30px;
  639. }
  640. #u95182 {
  641. border-width:0px;
  642. position:absolute;
  643. left:215px;
  644. top:181px;
  645. width:85px;
  646. height:30px;
  647. display:flex;
  648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  649. font-weight:400;
  650. font-style:normal;
  651. font-size:14px;
  652. line-height:30px;
  653. }
  654. #u95182 .text {
  655. position:absolute;
  656. align-self:flex-start;
  657. padding:0px 0px 0px 0px;
  658. box-sizing:border-box;
  659. width:100%;
  660. }
  661. #u95182_text {
  662. border-width:0px;
  663. white-space:nowrap;
  664. text-transform:none;
  665. }
  666. #u95183_div {
  667. border-width:0px;
  668. position:absolute;
  669. left:0px;
  670. top:0px;
  671. width:80px;
  672. height:30px;
  673. background:inherit;
  674. background-color:rgba(255, 255, 255, 0);
  675. border:none;
  676. border-left:0px;
  677. border-top:0px;
  678. border-right:0px;
  679. border-radius:0px;
  680. border-bottom-right-radius:0px;
  681. border-bottom-left-radius:0px;
  682. -moz-box-shadow:none;
  683. -webkit-box-shadow:none;
  684. box-shadow:none;
  685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  686. font-weight:400;
  687. font-style:normal;
  688. font-size:14px;
  689. color:#7F7F7F;
  690. line-height:30px;
  691. }
  692. #u95183 {
  693. border-width:0px;
  694. position:absolute;
  695. left:574px;
  696. top:261px;
  697. width:80px;
  698. height:30px;
  699. display:flex;
  700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  701. font-weight:400;
  702. font-style:normal;
  703. font-size:14px;
  704. color:#7F7F7F;
  705. line-height:30px;
  706. }
  707. #u95183 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u95183_text {
  715. border-width:0px;
  716. word-wrap:break-word;
  717. text-transform:none;
  718. }
  719. #u95184_div {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:113px;
  725. height:30px;
  726. background:inherit;
  727. background-color:rgba(255, 255, 255, 0);
  728. border:none;
  729. border-left:0px;
  730. border-top:0px;
  731. border-right:0px;
  732. border-radius:0px;
  733. border-bottom-right-radius:0px;
  734. border-bottom-left-radius:0px;
  735. -moz-box-shadow:none;
  736. -webkit-box-shadow:none;
  737. box-shadow:none;
  738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  739. font-weight:400;
  740. font-style:normal;
  741. font-size:14px;
  742. line-height:30px;
  743. }
  744. #u95184 {
  745. border-width:0px;
  746. position:absolute;
  747. left:654px;
  748. top:261px;
  749. width:113px;
  750. height:30px;
  751. display:flex;
  752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  753. font-weight:400;
  754. font-style:normal;
  755. font-size:14px;
  756. line-height:30px;
  757. }
  758. #u95184 .text {
  759. position:absolute;
  760. align-self:flex-start;
  761. padding:0px 0px 0px 0px;
  762. box-sizing:border-box;
  763. width:100%;
  764. }
  765. #u95184_text {
  766. border-width:0px;
  767. white-space:nowrap;
  768. text-transform:none;
  769. }
  770. #u95185_div {
  771. border-width:0px;
  772. position:absolute;
  773. left:0px;
  774. top:0px;
  775. width:80px;
  776. height:30px;
  777. background:inherit;
  778. background-color:rgba(255, 255, 255, 0);
  779. border:none;
  780. border-left:0px;
  781. border-top:0px;
  782. border-right:0px;
  783. border-radius:0px;
  784. border-bottom-right-radius:0px;
  785. border-bottom-left-radius:0px;
  786. -moz-box-shadow:none;
  787. -webkit-box-shadow:none;
  788. box-shadow:none;
  789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  790. font-weight:400;
  791. font-style:normal;
  792. font-size:14px;
  793. color:#7F7F7F;
  794. line-height:30px;
  795. }
  796. #u95185 {
  797. border-width:0px;
  798. position:absolute;
  799. left:135px;
  800. top:261px;
  801. width:80px;
  802. height:30px;
  803. display:flex;
  804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  805. font-weight:400;
  806. font-style:normal;
  807. font-size:14px;
  808. color:#7F7F7F;
  809. line-height:30px;
  810. }
  811. #u95185 .text {
  812. position:absolute;
  813. align-self:flex-start;
  814. padding:0px 0px 0px 0px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u95185_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. }
  823. #u95186_div {
  824. border-width:0px;
  825. position:absolute;
  826. left:0px;
  827. top:0px;
  828. width:121px;
  829. height:30px;
  830. background:inherit;
  831. background-color:rgba(255, 255, 255, 0);
  832. border:none;
  833. border-left:0px;
  834. border-top:0px;
  835. border-right:0px;
  836. border-radius:0px;
  837. border-bottom-right-radius:0px;
  838. border-bottom-left-radius:0px;
  839. -moz-box-shadow:none;
  840. -webkit-box-shadow:none;
  841. box-shadow:none;
  842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  843. font-weight:400;
  844. font-style:normal;
  845. font-size:14px;
  846. line-height:30px;
  847. }
  848. #u95186 {
  849. border-width:0px;
  850. position:absolute;
  851. left:215px;
  852. top:261px;
  853. width:121px;
  854. height:30px;
  855. display:flex;
  856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  857. font-weight:400;
  858. font-style:normal;
  859. font-size:14px;
  860. line-height:30px;
  861. }
  862. #u95186 .text {
  863. position:absolute;
  864. align-self:flex-start;
  865. padding:0px 0px 0px 0px;
  866. box-sizing:border-box;
  867. width:100%;
  868. }
  869. #u95186_text {
  870. border-width:0px;
  871. white-space:nowrap;
  872. text-transform:none;
  873. }
  874. #u95187_div {
  875. border-width:0px;
  876. position:absolute;
  877. left:0px;
  878. top:0px;
  879. width:71px;
  880. height:30px;
  881. background:inherit;
  882. background-color:rgba(255, 255, 255, 0);
  883. border:none;
  884. border-left:0px;
  885. border-top:0px;
  886. border-right:0px;
  887. border-radius:0px;
  888. border-bottom-right-radius:0px;
  889. border-bottom-left-radius:0px;
  890. -moz-box-shadow:none;
  891. -webkit-box-shadow:none;
  892. box-shadow:none;
  893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  894. font-weight:400;
  895. font-style:normal;
  896. font-size:14px;
  897. color:#7F7F7F;
  898. line-height:30px;
  899. }
  900. #u95187 {
  901. border-width:0px;
  902. position:absolute;
  903. left:135px;
  904. top:221px;
  905. width:71px;
  906. height:30px;
  907. display:flex;
  908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  909. font-weight:400;
  910. font-style:normal;
  911. font-size:14px;
  912. color:#7F7F7F;
  913. line-height:30px;
  914. }
  915. #u95187 .text {
  916. position:absolute;
  917. align-self:flex-start;
  918. padding:0px 0px 0px 0px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u95187_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u95188_div {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:85px;
  933. height:30px;
  934. background:inherit;
  935. background-color:rgba(255, 255, 255, 0);
  936. border:none;
  937. border-left:0px;
  938. border-top:0px;
  939. border-right:0px;
  940. border-radius:0px;
  941. border-bottom-right-radius:0px;
  942. border-bottom-left-radius:0px;
  943. -moz-box-shadow:none;
  944. -webkit-box-shadow:none;
  945. box-shadow:none;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:14px;
  950. line-height:30px;
  951. }
  952. #u95188 {
  953. border-width:0px;
  954. position:absolute;
  955. left:215px;
  956. top:221px;
  957. width:85px;
  958. height:30px;
  959. display:flex;
  960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  961. font-weight:400;
  962. font-style:normal;
  963. font-size:14px;
  964. line-height:30px;
  965. }
  966. #u95188 .text {
  967. position:absolute;
  968. align-self:flex-start;
  969. padding:0px 0px 0px 0px;
  970. box-sizing:border-box;
  971. width:100%;
  972. }
  973. #u95188_text {
  974. border-width:0px;
  975. white-space:nowrap;
  976. text-transform:none;
  977. }
  978. #u95189_div {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:80px;
  984. height:30px;
  985. background:inherit;
  986. background-color:rgba(255, 255, 255, 0);
  987. border:none;
  988. border-left:0px;
  989. border-top:0px;
  990. border-right:0px;
  991. border-radius:0px;
  992. border-bottom-right-radius:0px;
  993. border-bottom-left-radius:0px;
  994. -moz-box-shadow:none;
  995. -webkit-box-shadow:none;
  996. box-shadow:none;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:14px;
  1001. color:#7F7F7F;
  1002. line-height:30px;
  1003. }
  1004. #u95189 {
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:574px;
  1008. top:221px;
  1009. width:80px;
  1010. height:30px;
  1011. display:flex;
  1012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1013. font-weight:400;
  1014. font-style:normal;
  1015. font-size:14px;
  1016. color:#7F7F7F;
  1017. line-height:30px;
  1018. }
  1019. #u95189 .text {
  1020. position:absolute;
  1021. align-self:flex-start;
  1022. padding:0px 0px 0px 0px;
  1023. box-sizing:border-box;
  1024. width:100%;
  1025. }
  1026. #u95189_text {
  1027. border-width:0px;
  1028. word-wrap:break-word;
  1029. text-transform:none;
  1030. }
  1031. #u95190_div {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:71px;
  1037. height:30px;
  1038. background:inherit;
  1039. background-color:rgba(255, 255, 255, 0);
  1040. border:none;
  1041. border-left:0px;
  1042. border-top:0px;
  1043. border-right:0px;
  1044. border-radius:0px;
  1045. border-bottom-right-radius:0px;
  1046. border-bottom-left-radius:0px;
  1047. -moz-box-shadow:none;
  1048. -webkit-box-shadow:none;
  1049. box-shadow:none;
  1050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1051. font-weight:400;
  1052. font-style:normal;
  1053. font-size:14px;
  1054. line-height:30px;
  1055. }
  1056. #u95190 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:654px;
  1060. top:221px;
  1061. width:71px;
  1062. height:30px;
  1063. display:flex;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. font-size:14px;
  1068. line-height:30px;
  1069. }
  1070. #u95190 .text {
  1071. position:absolute;
  1072. align-self:flex-start;
  1073. padding:0px 0px 0px 0px;
  1074. box-sizing:border-box;
  1075. width:100%;
  1076. }
  1077. #u95190_text {
  1078. border-width:0px;
  1079. white-space:nowrap;
  1080. text-transform:none;
  1081. }
  1082. #u95191_div {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:80px;
  1088. height:30px;
  1089. background:inherit;
  1090. background-color:rgba(255, 255, 255, 0);
  1091. border:none;
  1092. border-left:0px;
  1093. border-top:0px;
  1094. border-right:0px;
  1095. border-radius:0px;
  1096. border-bottom-right-radius:0px;
  1097. border-bottom-left-radius:0px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:14px;
  1105. color:#7F7F7F;
  1106. line-height:30px;
  1107. }
  1108. #u95191 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:574px;
  1112. top:181px;
  1113. width:80px;
  1114. height:30px;
  1115. display:flex;
  1116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1117. font-weight:400;
  1118. font-style:normal;
  1119. font-size:14px;
  1120. color:#7F7F7F;
  1121. line-height:30px;
  1122. }
  1123. #u95191 .text {
  1124. position:absolute;
  1125. align-self:flex-start;
  1126. padding:0px 0px 0px 0px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u95191_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. }
  1135. #u95192_div {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:58px;
  1141. height:30px;
  1142. background:inherit;
  1143. background-color:rgba(255, 255, 255, 0);
  1144. border:none;
  1145. border-left:0px;
  1146. border-top:0px;
  1147. border-right:0px;
  1148. border-radius:0px;
  1149. border-bottom-right-radius:0px;
  1150. border-bottom-left-radius:0px;
  1151. -moz-box-shadow:none;
  1152. -webkit-box-shadow:none;
  1153. box-shadow:none;
  1154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1155. font-weight:400;
  1156. font-style:normal;
  1157. font-size:14px;
  1158. line-height:30px;
  1159. }
  1160. #u95192 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:654px;
  1164. top:181px;
  1165. width:58px;
  1166. height:30px;
  1167. display:flex;
  1168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1169. font-weight:400;
  1170. font-style:normal;
  1171. font-size:14px;
  1172. line-height:30px;
  1173. }
  1174. #u95192 .text {
  1175. position:absolute;
  1176. align-self:flex-start;
  1177. padding:0px 0px 0px 0px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u95192_text {
  1182. border-width:0px;
  1183. white-space:nowrap;
  1184. text-transform:none;
  1185. }
  1186. #u95193_div {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:1000px;
  1192. height:800px;
  1193. background:inherit;
  1194. background-color:rgba(255, 255, 255, 1);
  1195. box-sizing:border-box;
  1196. border-width:1px;
  1197. border-style:solid;
  1198. border-color:rgba(215, 215, 215, 1);
  1199. border-radius:0px;
  1200. -moz-box-shadow:none;
  1201. -webkit-box-shadow:none;
  1202. box-shadow:none;
  1203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1204. font-weight:400;
  1205. font-style:normal;
  1206. font-size:14px;
  1207. color:#AAAAAA;
  1208. text-align:center;
  1209. line-height:30px;
  1210. }
  1211. #u95193 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:105px;
  1215. top:329px;
  1216. width:1000px;
  1217. height:800px;
  1218. display:flex;
  1219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1220. font-weight:400;
  1221. font-style:normal;
  1222. font-size:14px;
  1223. color:#AAAAAA;
  1224. text-align:center;
  1225. line-height:30px;
  1226. }
  1227. #u95193 .text {
  1228. position:absolute;
  1229. align-self:center;
  1230. padding:5px 10px 5px 10px;
  1231. box-sizing:border-box;
  1232. width:100%;
  1233. }
  1234. #u95193_text {
  1235. border-width:0px;
  1236. word-wrap:break-word;
  1237. text-transform:none;
  1238. visibility:hidden;
  1239. }
  1240. #u95194_div {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:83px;
  1246. height:35px;
  1247. background:inherit;
  1248. background-color:rgba(255, 255, 255, 0);
  1249. border:none;
  1250. border-top:0px;
  1251. border-right:0px;
  1252. border-bottom:0px;
  1253. border-radius:0px;
  1254. border-top-left-radius:0px;
  1255. border-bottom-left-radius:0px;
  1256. -moz-box-shadow:none;
  1257. -webkit-box-shadow:none;
  1258. box-shadow:none;
  1259. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1260. font-weight:500;
  1261. font-style:normal;
  1262. font-size:18px;
  1263. }
  1264. #u95194 {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:144px;
  1268. top:392px;
  1269. width:83px;
  1270. height:35px;
  1271. display:flex;
  1272. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1273. font-weight:500;
  1274. font-style:normal;
  1275. font-size:18px;
  1276. }
  1277. #u95194 .text {
  1278. position:absolute;
  1279. align-self:center;
  1280. padding:5px 10px 5px 0px;
  1281. box-sizing:border-box;
  1282. width:100%;
  1283. }
  1284. #u95194_text {
  1285. border-width:0px;
  1286. white-space:nowrap;
  1287. text-transform:none;
  1288. }
  1289. #u95195_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:80px;
  1295. height:30px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 0);
  1298. border:none;
  1299. border-left:0px;
  1300. border-top:0px;
  1301. border-right:0px;
  1302. border-radius:0px;
  1303. border-bottom-right-radius:0px;
  1304. border-bottom-left-radius:0px;
  1305. -moz-box-shadow:none;
  1306. -webkit-box-shadow:none;
  1307. box-shadow:none;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:14px;
  1312. color:#7F7F7F;
  1313. line-height:30px;
  1314. }
  1315. #u95195 {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:144px;
  1319. top:591px;
  1320. width:80px;
  1321. height:30px;
  1322. display:flex;
  1323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1324. font-weight:400;
  1325. font-style:normal;
  1326. font-size:14px;
  1327. color:#7F7F7F;
  1328. line-height:30px;
  1329. }
  1330. #u95195 .text {
  1331. position:absolute;
  1332. align-self:flex-start;
  1333. padding:0px 0px 0px 0px;
  1334. box-sizing:border-box;
  1335. width:100%;
  1336. }
  1337. #u95195_text {
  1338. border-width:0px;
  1339. word-wrap:break-word;
  1340. text-transform:none;
  1341. }
  1342. #u95196_div {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:29px;
  1348. height:30px;
  1349. background:inherit;
  1350. background-color:rgba(255, 255, 255, 0);
  1351. border:none;
  1352. border-left:0px;
  1353. border-top:0px;
  1354. border-right:0px;
  1355. border-radius:0px;
  1356. border-bottom-right-radius:0px;
  1357. border-bottom-left-radius:0px;
  1358. -moz-box-shadow:none;
  1359. -webkit-box-shadow:none;
  1360. box-shadow:none;
  1361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1362. font-weight:400;
  1363. font-style:normal;
  1364. font-size:14px;
  1365. line-height:30px;
  1366. }
  1367. #u95196 {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:224px;
  1371. top:591px;
  1372. width:29px;
  1373. height:30px;
  1374. display:flex;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:14px;
  1379. line-height:30px;
  1380. }
  1381. #u95196 .text {
  1382. position:absolute;
  1383. align-self:flex-start;
  1384. padding:0px 0px 0px 0px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u95196_text {
  1389. border-width:0px;
  1390. white-space:nowrap;
  1391. text-transform:none;
  1392. }
  1393. #u95197_div {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:80px;
  1399. height:30px;
  1400. background:inherit;
  1401. background-color:rgba(255, 255, 255, 0);
  1402. border:none;
  1403. border-left:0px;
  1404. border-top:0px;
  1405. border-right:0px;
  1406. border-radius:0px;
  1407. border-bottom-right-radius:0px;
  1408. border-bottom-left-radius:0px;
  1409. -moz-box-shadow:none;
  1410. -webkit-box-shadow:none;
  1411. box-shadow:none;
  1412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1413. font-weight:400;
  1414. font-style:normal;
  1415. font-size:14px;
  1416. color:#7F7F7F;
  1417. line-height:30px;
  1418. }
  1419. #u95197 {
  1420. border-width:0px;
  1421. position:absolute;
  1422. left:430px;
  1423. top:631px;
  1424. width:80px;
  1425. height:30px;
  1426. display:flex;
  1427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. font-size:14px;
  1431. color:#7F7F7F;
  1432. line-height:30px;
  1433. }
  1434. #u95197 .text {
  1435. position:absolute;
  1436. align-self:flex-start;
  1437. padding:0px 0px 0px 0px;
  1438. box-sizing:border-box;
  1439. width:100%;
  1440. }
  1441. #u95197_text {
  1442. border-width:0px;
  1443. word-wrap:break-word;
  1444. text-transform:none;
  1445. }
  1446. #u95198_div {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:82px;
  1452. height:30px;
  1453. background:inherit;
  1454. background-color:rgba(255, 255, 255, 0);
  1455. border:none;
  1456. border-left:0px;
  1457. border-top:0px;
  1458. border-right:0px;
  1459. border-radius:0px;
  1460. border-bottom-right-radius:0px;
  1461. border-bottom-left-radius:0px;
  1462. -moz-box-shadow:none;
  1463. -webkit-box-shadow:none;
  1464. box-shadow:none;
  1465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1466. font-weight:400;
  1467. font-style:normal;
  1468. font-size:14px;
  1469. line-height:30px;
  1470. }
  1471. #u95198 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:510px;
  1475. top:631px;
  1476. width:82px;
  1477. height:30px;
  1478. display:flex;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. font-size:14px;
  1483. line-height:30px;
  1484. }
  1485. #u95198 .text {
  1486. position:absolute;
  1487. align-self:flex-start;
  1488. padding:0px 0px 0px 0px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u95198_text {
  1493. border-width:0px;
  1494. white-space:nowrap;
  1495. text-transform:none;
  1496. }
  1497. #u95199_div {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:80px;
  1503. height:30px;
  1504. background:inherit;
  1505. background-color:rgba(255, 255, 255, 0);
  1506. border:none;
  1507. border-left:0px;
  1508. border-top:0px;
  1509. border-right:0px;
  1510. border-radius:0px;
  1511. border-bottom-right-radius:0px;
  1512. border-bottom-left-radius:0px;
  1513. -moz-box-shadow:none;
  1514. -webkit-box-shadow:none;
  1515. box-shadow:none;
  1516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1517. font-weight:400;
  1518. font-style:normal;
  1519. font-size:14px;
  1520. color:#7F7F7F;
  1521. line-height:30px;
  1522. }
  1523. #u95199 {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:734px;
  1527. top:591px;
  1528. width:80px;
  1529. height:30px;
  1530. display:flex;
  1531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1532. font-weight:400;
  1533. font-style:normal;
  1534. font-size:14px;
  1535. color:#7F7F7F;
  1536. line-height:30px;
  1537. }
  1538. #u95199 .text {
  1539. position:absolute;
  1540. align-self:flex-start;
  1541. padding:0px 0px 0px 0px;
  1542. box-sizing:border-box;
  1543. width:100%;
  1544. }
  1545. #u95199_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. }
  1550. #u95200_div {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:85px;
  1556. height:30px;
  1557. background:inherit;
  1558. background-color:rgba(255, 255, 255, 0);
  1559. border:none;
  1560. border-left:0px;
  1561. border-top:0px;
  1562. border-right:0px;
  1563. border-radius:0px;
  1564. border-bottom-right-radius:0px;
  1565. border-bottom-left-radius:0px;
  1566. -moz-box-shadow:none;
  1567. -webkit-box-shadow:none;
  1568. box-shadow:none;
  1569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1570. font-weight:400;
  1571. font-style:normal;
  1572. font-size:14px;
  1573. line-height:30px;
  1574. }
  1575. #u95200 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:814px;
  1579. top:591px;
  1580. width:85px;
  1581. height:30px;
  1582. display:flex;
  1583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1584. font-weight:400;
  1585. font-style:normal;
  1586. font-size:14px;
  1587. line-height:30px;
  1588. }
  1589. #u95200 .text {
  1590. position:absolute;
  1591. align-self:flex-start;
  1592. padding:0px 0px 0px 0px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u95200_text {
  1597. border-width:0px;
  1598. white-space:nowrap;
  1599. text-transform:none;
  1600. }
  1601. #u95201_div {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:71px;
  1607. height:30px;
  1608. background:inherit;
  1609. background-color:rgba(255, 255, 255, 0);
  1610. border:none;
  1611. border-left:0px;
  1612. border-top:0px;
  1613. border-right:0px;
  1614. border-radius:0px;
  1615. border-bottom-right-radius:0px;
  1616. border-bottom-left-radius:0px;
  1617. -moz-box-shadow:none;
  1618. -webkit-box-shadow:none;
  1619. box-shadow:none;
  1620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1621. font-weight:400;
  1622. font-style:normal;
  1623. font-size:14px;
  1624. color:#7F7F7F;
  1625. line-height:30px;
  1626. }
  1627. #u95201 {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:430px;
  1631. top:441px;
  1632. width:71px;
  1633. height:30px;
  1634. display:flex;
  1635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:14px;
  1639. color:#7F7F7F;
  1640. line-height:30px;
  1641. }
  1642. #u95201 .text {
  1643. position:absolute;
  1644. align-self:flex-start;
  1645. padding:0px 0px 0px 0px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u95201_text {
  1650. border-width:0px;
  1651. white-space:nowrap;
  1652. text-transform:none;
  1653. }
  1654. #u95202_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:80px;
  1660. height:30px;
  1661. background:inherit;
  1662. background-color:rgba(255, 255, 255, 0);
  1663. border:none;
  1664. border-left:0px;
  1665. border-top:0px;
  1666. border-right:0px;
  1667. border-radius:0px;
  1668. border-bottom-right-radius:0px;
  1669. border-bottom-left-radius:0px;
  1670. -moz-box-shadow:none;
  1671. -webkit-box-shadow:none;
  1672. box-shadow:none;
  1673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:14px;
  1677. color:#7F7F7F;
  1678. line-height:30px;
  1679. }
  1680. #u95202 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:144px;
  1684. top:631px;
  1685. width:80px;
  1686. height:30px;
  1687. display:flex;
  1688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1689. font-weight:400;
  1690. font-style:normal;
  1691. font-size:14px;
  1692. color:#7F7F7F;
  1693. line-height:30px;
  1694. }
  1695. #u95202 .text {
  1696. position:absolute;
  1697. align-self:flex-start;
  1698. padding:0px 0px 0px 0px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u95202_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. }
  1707. #u95203_div {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:29px;
  1713. height:30px;
  1714. background:inherit;
  1715. background-color:rgba(255, 255, 255, 0);
  1716. border:none;
  1717. border-left:0px;
  1718. border-top:0px;
  1719. border-right:0px;
  1720. border-radius:0px;
  1721. border-bottom-right-radius:0px;
  1722. border-bottom-left-radius:0px;
  1723. -moz-box-shadow:none;
  1724. -webkit-box-shadow:none;
  1725. box-shadow:none;
  1726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1727. font-weight:400;
  1728. font-style:normal;
  1729. font-size:14px;
  1730. line-height:30px;
  1731. }
  1732. #u95203 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:224px;
  1736. top:631px;
  1737. width:29px;
  1738. height:30px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. line-height:30px;
  1745. }
  1746. #u95203 .text {
  1747. position:absolute;
  1748. align-self:flex-start;
  1749. padding:0px 0px 0px 0px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u95203_text {
  1754. border-width:0px;
  1755. white-space:nowrap;
  1756. text-transform:none;
  1757. }
  1758. #u95204_div {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:80px;
  1764. height:30px;
  1765. background:inherit;
  1766. background-color:rgba(255, 255, 255, 0);
  1767. border:none;
  1768. border-left:0px;
  1769. border-top:0px;
  1770. border-right:0px;
  1771. border-radius:0px;
  1772. border-bottom-right-radius:0px;
  1773. border-bottom-left-radius:0px;
  1774. -moz-box-shadow:none;
  1775. -webkit-box-shadow:none;
  1776. box-shadow:none;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:14px;
  1781. color:#7F7F7F;
  1782. line-height:30px;
  1783. }
  1784. #u95204 {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:430px;
  1788. top:591px;
  1789. width:80px;
  1790. height:30px;
  1791. display:flex;
  1792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1793. font-weight:400;
  1794. font-style:normal;
  1795. font-size:14px;
  1796. color:#7F7F7F;
  1797. line-height:30px;
  1798. }
  1799. #u95204 .text {
  1800. position:absolute;
  1801. align-self:flex-start;
  1802. padding:0px 0px 0px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u95204_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u95205_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:43px;
  1817. height:30px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 0);
  1820. border:none;
  1821. border-left:0px;
  1822. border-top:0px;
  1823. border-right:0px;
  1824. border-radius:0px;
  1825. border-bottom-right-radius:0px;
  1826. border-bottom-left-radius:0px;
  1827. -moz-box-shadow:none;
  1828. -webkit-box-shadow:none;
  1829. box-shadow:none;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:14px;
  1834. line-height:30px;
  1835. }
  1836. #u95205 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:510px;
  1840. top:591px;
  1841. width:43px;
  1842. height:30px;
  1843. display:flex;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:14px;
  1848. line-height:30px;
  1849. }
  1850. #u95205 .text {
  1851. position:absolute;
  1852. align-self:flex-start;
  1853. padding:0px 0px 0px 0px;
  1854. box-sizing:border-box;
  1855. width:100%;
  1856. }
  1857. #u95205_text {
  1858. border-width:0px;
  1859. white-space:nowrap;
  1860. text-transform:none;
  1861. }
  1862. #u95206_div {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:127px;
  1868. height:30px;
  1869. background:inherit;
  1870. background-color:rgba(255, 255, 255, 0);
  1871. border:none;
  1872. border-left:0px;
  1873. border-top:0px;
  1874. border-right:0px;
  1875. border-radius:0px;
  1876. border-bottom-right-radius:0px;
  1877. border-bottom-left-radius:0px;
  1878. -moz-box-shadow:none;
  1879. -webkit-box-shadow:none;
  1880. box-shadow:none;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:14px;
  1885. color:#7F7F7F;
  1886. line-height:30px;
  1887. }
  1888. #u95206 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:144px;
  1892. top:441px;
  1893. width:127px;
  1894. height:30px;
  1895. display:flex;
  1896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:14px;
  1900. color:#7F7F7F;
  1901. line-height:30px;
  1902. }
  1903. #u95206 .text {
  1904. position:absolute;
  1905. align-self:flex-start;
  1906. padding:0px 0px 0px 0px;
  1907. box-sizing:border-box;
  1908. width:100%;
  1909. }
  1910. #u95206_text {
  1911. border-width:0px;
  1912. white-space:nowrap;
  1913. text-transform:none;
  1914. }
  1915. #u95207_img {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:160px;
  1921. height:100px;
  1922. }
  1923. #u95207 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:430px;
  1927. top:471px;
  1928. width:160px;
  1929. height:100px;
  1930. display:flex;
  1931. }
  1932. #u95207 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 2px 2px 2px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u95207_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. visibility:hidden;
  1944. }
  1945. #u95208_img {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:160px;
  1951. height:100px;
  1952. }
  1953. #u95208 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:610px;
  1957. top:471px;
  1958. width:160px;
  1959. height:100px;
  1960. display:flex;
  1961. }
  1962. #u95208 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u95208_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. visibility:hidden;
  1974. }
  1975. #u95209_img {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:160px;
  1981. height:100px;
  1982. }
  1983. #u95209 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:144px;
  1987. top:471px;
  1988. width:160px;
  1989. height:100px;
  1990. display:flex;
  1991. }
  1992. #u95209 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u95209_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u95210_div {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:101px;
  2011. height:35px;
  2012. background:inherit;
  2013. background-color:rgba(255, 255, 255, 0);
  2014. border:none;
  2015. border-top:0px;
  2016. border-right:0px;
  2017. border-bottom:0px;
  2018. border-radius:0px;
  2019. border-top-left-radius:0px;
  2020. border-bottom-left-radius:0px;
  2021. -moz-box-shadow:none;
  2022. -webkit-box-shadow:none;
  2023. box-shadow:none;
  2024. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2025. font-weight:500;
  2026. font-style:normal;
  2027. font-size:18px;
  2028. }
  2029. #u95210 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:144px;
  2033. top:702px;
  2034. width:101px;
  2035. height:35px;
  2036. display:flex;
  2037. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2038. font-weight:500;
  2039. font-style:normal;
  2040. font-size:18px;
  2041. }
  2042. #u95210 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:5px 10px 5px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u95210_text {
  2050. border-width:0px;
  2051. white-space:nowrap;
  2052. text-transform:none;
  2053. }
  2054. #u95211_div {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:80px;
  2060. height:30px;
  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:14px;
  2077. color:#7F7F7F;
  2078. line-height:30px;
  2079. }
  2080. #u95211 {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:144px;
  2084. top:937px;
  2085. width:80px;
  2086. height:30px;
  2087. display:flex;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:14px;
  2092. color:#7F7F7F;
  2093. line-height:30px;
  2094. }
  2095. #u95211 .text {
  2096. position:absolute;
  2097. align-self:flex-start;
  2098. padding:0px 0px 0px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u95211_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. }
  2107. #u95212_div {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:82px;
  2113. height:30px;
  2114. background:inherit;
  2115. background-color:rgba(255, 255, 255, 0);
  2116. border:none;
  2117. border-left:0px;
  2118. border-top:0px;
  2119. border-right:0px;
  2120. border-radius:0px;
  2121. border-bottom-right-radius:0px;
  2122. border-bottom-left-radius:0px;
  2123. -moz-box-shadow:none;
  2124. -webkit-box-shadow:none;
  2125. box-shadow:none;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:14px;
  2130. line-height:30px;
  2131. }
  2132. #u95212 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:224px;
  2136. top:937px;
  2137. width:82px;
  2138. height:30px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:14px;
  2144. line-height:30px;
  2145. }
  2146. #u95212 .text {
  2147. position:absolute;
  2148. align-self:flex-start;
  2149. padding:0px 0px 0px 0px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u95212_text {
  2154. border-width:0px;
  2155. white-space:nowrap;
  2156. text-transform:none;
  2157. }
  2158. #u95213_div {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:80px;
  2164. height:30px;
  2165. background:inherit;
  2166. background-color:rgba(255, 255, 255, 0);
  2167. border:none;
  2168. border-left:0px;
  2169. border-top:0px;
  2170. border-right:0px;
  2171. border-radius:0px;
  2172. border-bottom-right-radius:0px;
  2173. border-bottom-left-radius:0px;
  2174. -moz-box-shadow:none;
  2175. -webkit-box-shadow:none;
  2176. box-shadow:none;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. color:#7F7F7F;
  2182. line-height:30px;
  2183. }
  2184. #u95213 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:448px;
  2188. top:897px;
  2189. width:80px;
  2190. height:30px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:14px;
  2196. color:#7F7F7F;
  2197. line-height:30px;
  2198. }
  2199. #u95213 .text {
  2200. position:absolute;
  2201. align-self:flex-start;
  2202. padding:0px 0px 0px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u95213_text {
  2207. border-width:0px;
  2208. word-wrap:break-word;
  2209. text-transform:none;
  2210. }
  2211. #u95214_div {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:85px;
  2217. height:30px;
  2218. background:inherit;
  2219. background-color:rgba(255, 255, 255, 0);
  2220. border:none;
  2221. border-left:0px;
  2222. border-top:0px;
  2223. border-right:0px;
  2224. border-radius:0px;
  2225. border-bottom-right-radius:0px;
  2226. border-bottom-left-radius:0px;
  2227. -moz-box-shadow:none;
  2228. -webkit-box-shadow:none;
  2229. box-shadow:none;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:14px;
  2234. line-height:30px;
  2235. }
  2236. #u95214 {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:528px;
  2240. top:897px;
  2241. width:85px;
  2242. height:30px;
  2243. display:flex;
  2244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2245. font-weight:400;
  2246. font-style:normal;
  2247. font-size:14px;
  2248. line-height:30px;
  2249. }
  2250. #u95214 .text {
  2251. position:absolute;
  2252. align-self:flex-start;
  2253. padding:0px 0px 0px 0px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u95214_text {
  2258. border-width:0px;
  2259. white-space:nowrap;
  2260. text-transform:none;
  2261. }
  2262. #u95215_div {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:71px;
  2268. height:30px;
  2269. background:inherit;
  2270. background-color:rgba(255, 255, 255, 0);
  2271. border:none;
  2272. border-left:0px;
  2273. border-top:0px;
  2274. border-right:0px;
  2275. border-radius:0px;
  2276. border-bottom-right-radius:0px;
  2277. border-bottom-left-radius:0px;
  2278. -moz-box-shadow:none;
  2279. -webkit-box-shadow:none;
  2280. box-shadow:none;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:14px;
  2285. color:#7F7F7F;
  2286. line-height:30px;
  2287. }
  2288. #u95215 {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:430px;
  2292. top:747px;
  2293. width:71px;
  2294. height:30px;
  2295. display:flex;
  2296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2297. font-weight:400;
  2298. font-style:normal;
  2299. font-size:14px;
  2300. color:#7F7F7F;
  2301. line-height:30px;
  2302. }
  2303. #u95215 .text {
  2304. position:absolute;
  2305. align-self:flex-start;
  2306. padding:0px 0px 0px 0px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u95215_text {
  2311. border-width:0px;
  2312. white-space:nowrap;
  2313. text-transform:none;
  2314. }
  2315. #u95216_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:85px;
  2321. height:30px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. border:none;
  2325. border-left:0px;
  2326. border-top:0px;
  2327. border-right:0px;
  2328. border-radius:0px;
  2329. border-bottom-right-radius:0px;
  2330. border-bottom-left-radius:0px;
  2331. -moz-box-shadow:none;
  2332. -webkit-box-shadow:none;
  2333. box-shadow:none;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:14px;
  2338. color:#7F7F7F;
  2339. line-height:30px;
  2340. }
  2341. #u95216 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:745px;
  2345. top:897px;
  2346. width:85px;
  2347. height:30px;
  2348. display:flex;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:14px;
  2353. color:#7F7F7F;
  2354. line-height:30px;
  2355. }
  2356. #u95216 .text {
  2357. position:absolute;
  2358. align-self:flex-start;
  2359. padding:0px 0px 0px 0px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u95216_text {
  2364. border-width:0px;
  2365. white-space:nowrap;
  2366. text-transform:none;
  2367. }
  2368. #u95217_div {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:29px;
  2374. height:30px;
  2375. background:inherit;
  2376. background-color:rgba(255, 255, 255, 0);
  2377. border:none;
  2378. border-left:0px;
  2379. border-top:0px;
  2380. border-right:0px;
  2381. border-radius:0px;
  2382. border-bottom-right-radius:0px;
  2383. border-bottom-left-radius:0px;
  2384. -moz-box-shadow:none;
  2385. -webkit-box-shadow:none;
  2386. box-shadow:none;
  2387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. font-size:14px;
  2391. line-height:30px;
  2392. }
  2393. #u95217 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:825px;
  2397. top:897px;
  2398. width:29px;
  2399. height:30px;
  2400. display:flex;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:14px;
  2405. line-height:30px;
  2406. }
  2407. #u95217 .text {
  2408. position:absolute;
  2409. align-self:flex-start;
  2410. padding:0px 0px 0px 0px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u95217_text {
  2415. border-width:0px;
  2416. white-space:nowrap;
  2417. text-transform:none;
  2418. }
  2419. #u95218_div {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:80px;
  2425. height:30px;
  2426. background:inherit;
  2427. background-color:rgba(255, 255, 255, 0);
  2428. border:none;
  2429. border-left:0px;
  2430. border-top:0px;
  2431. border-right:0px;
  2432. border-radius:0px;
  2433. border-bottom-right-radius:0px;
  2434. border-bottom-left-radius:0px;
  2435. -moz-box-shadow:none;
  2436. -webkit-box-shadow:none;
  2437. box-shadow:none;
  2438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2439. font-weight:400;
  2440. font-style:normal;
  2441. font-size:14px;
  2442. color:#7F7F7F;
  2443. line-height:30px;
  2444. }
  2445. #u95218 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:144px;
  2449. top:897px;
  2450. width:80px;
  2451. height:30px;
  2452. display:flex;
  2453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2454. font-weight:400;
  2455. font-style:normal;
  2456. font-size:14px;
  2457. color:#7F7F7F;
  2458. line-height:30px;
  2459. }
  2460. #u95218 .text {
  2461. position:absolute;
  2462. align-self:flex-start;
  2463. padding:0px 0px 0px 0px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u95218_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. }
  2472. #u95219_div {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:43px;
  2478. height:30px;
  2479. background:inherit;
  2480. background-color:rgba(255, 255, 255, 0);
  2481. border:none;
  2482. border-left:0px;
  2483. border-top:0px;
  2484. border-right:0px;
  2485. border-radius:0px;
  2486. border-bottom-right-radius:0px;
  2487. border-bottom-left-radius:0px;
  2488. -moz-box-shadow:none;
  2489. -webkit-box-shadow:none;
  2490. box-shadow:none;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:14px;
  2495. line-height:30px;
  2496. }
  2497. #u95219 {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:224px;
  2501. top:897px;
  2502. width:43px;
  2503. height:30px;
  2504. display:flex;
  2505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:14px;
  2509. line-height:30px;
  2510. }
  2511. #u95219 .text {
  2512. position:absolute;
  2513. align-self:flex-start;
  2514. padding:0px 0px 0px 0px;
  2515. box-sizing:border-box;
  2516. width:100%;
  2517. }
  2518. #u95219_text {
  2519. border-width:0px;
  2520. white-space:nowrap;
  2521. text-transform:none;
  2522. }
  2523. #u95220_div {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:127px;
  2529. height:30px;
  2530. background:inherit;
  2531. background-color:rgba(255, 255, 255, 0);
  2532. border:none;
  2533. border-left:0px;
  2534. border-top:0px;
  2535. border-right:0px;
  2536. border-radius:0px;
  2537. border-bottom-right-radius:0px;
  2538. border-bottom-left-radius:0px;
  2539. -moz-box-shadow:none;
  2540. -webkit-box-shadow:none;
  2541. box-shadow:none;
  2542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. font-size:14px;
  2546. color:#7F7F7F;
  2547. line-height:30px;
  2548. }
  2549. #u95220 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:144px;
  2553. top:747px;
  2554. width:127px;
  2555. height:30px;
  2556. display:flex;
  2557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. font-size:14px;
  2561. color:#7F7F7F;
  2562. line-height:30px;
  2563. }
  2564. #u95220 .text {
  2565. position:absolute;
  2566. align-self:flex-start;
  2567. padding:0px 0px 0px 0px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u95220_text {
  2572. border-width:0px;
  2573. white-space:nowrap;
  2574. text-transform:none;
  2575. }
  2576. #u95221_img {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:160px;
  2582. height:100px;
  2583. }
  2584. #u95221 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:430px;
  2588. top:777px;
  2589. width:160px;
  2590. height:100px;
  2591. display:flex;
  2592. }
  2593. #u95221 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 2px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u95221_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. visibility:hidden;
  2605. }
  2606. #u95222_img {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:160px;
  2612. height:100px;
  2613. }
  2614. #u95222 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:610px;
  2618. top:777px;
  2619. width:160px;
  2620. height:100px;
  2621. display:flex;
  2622. }
  2623. #u95222 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 2px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u95222_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. visibility:hidden;
  2635. }
  2636. #u95223_img {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:160px;
  2642. height:100px;
  2643. }
  2644. #u95223 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:144px;
  2648. top:777px;
  2649. width:160px;
  2650. height:100px;
  2651. display:flex;
  2652. }
  2653. #u95223 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 2px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u95223_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u95224_div {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:141px;
  2672. height:35px;
  2673. background:inherit;
  2674. background-color:rgba(255, 255, 255, 0);
  2675. border:none;
  2676. border-top:0px;
  2677. border-right:0px;
  2678. border-bottom:0px;
  2679. border-radius:0px;
  2680. border-top-left-radius:0px;
  2681. border-bottom-left-radius:0px;
  2682. -moz-box-shadow:none;
  2683. -webkit-box-shadow:none;
  2684. box-shadow:none;
  2685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2686. font-weight:500;
  2687. font-style:normal;
  2688. font-size:18px;
  2689. }
  2690. #u95224 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:135px;
  2694. top:991px;
  2695. width:141px;
  2696. height:35px;
  2697. display:flex;
  2698. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2699. font-weight:500;
  2700. font-style:normal;
  2701. font-size:18px;
  2702. }
  2703. #u95224 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:5px 10px 5px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u95224_text {
  2711. border-width:0px;
  2712. white-space:nowrap;
  2713. text-transform:none;
  2714. }
  2715. #u95225_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:923px;
  2721. height:2px;
  2722. }
  2723. #u95225 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:144px;
  2727. top:681px;
  2728. width:922px;
  2729. height:1px;
  2730. display:flex;
  2731. }
  2732. #u95225 .text {
  2733. position:absolute;
  2734. align-self:center;
  2735. padding:2px 2px 2px 2px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u95225_text {
  2740. border-width:0px;
  2741. word-wrap:break-word;
  2742. text-transform:none;
  2743. visibility:hidden;
  2744. }
  2745. #u95226_div {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:119px;
  2751. height:35px;
  2752. background:inherit;
  2753. background-color:rgba(255, 255, 255, 0);
  2754. border:none;
  2755. border-top:0px;
  2756. border-right:0px;
  2757. border-bottom:0px;
  2758. border-radius:0px;
  2759. border-top-left-radius:0px;
  2760. border-bottom-left-radius:0px;
  2761. -moz-box-shadow:none;
  2762. -webkit-box-shadow:none;
  2763. box-shadow:none;
  2764. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2765. font-weight:500;
  2766. font-style:normal;
  2767. font-size:18px;
  2768. }
  2769. #u95226 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:135px;
  2773. top:1046px;
  2774. width:119px;
  2775. height:35px;
  2776. display:flex;
  2777. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2778. font-weight:500;
  2779. font-style:normal;
  2780. font-size:18px;
  2781. }
  2782. #u95226 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:5px 10px 5px 0px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u95226_text {
  2790. border-width:0px;
  2791. white-space:nowrap;
  2792. text-transform:none;
  2793. }
  2794. #u95227_div {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:111px;
  2800. height:25px;
  2801. background:inherit;
  2802. background-color:rgba(255, 255, 255, 0);
  2803. box-sizing:border-box;
  2804. border-width:3px;
  2805. border-style:solid;
  2806. border-color:rgba(51, 51, 51, 1);
  2807. border-top:0px;
  2808. border-right:0px;
  2809. border-bottom:0px;
  2810. border-radius:0px;
  2811. border-top-left-radius:0px;
  2812. border-bottom-left-radius:0px;
  2813. -moz-box-shadow:none;
  2814. -webkit-box-shadow:none;
  2815. box-shadow:none;
  2816. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2817. font-weight:500;
  2818. font-style:normal;
  2819. font-size:18px;
  2820. }
  2821. #u95227 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:125px;
  2825. top:350px;
  2826. width:111px;
  2827. height:25px;
  2828. display:flex;
  2829. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2830. font-weight:500;
  2831. font-style:normal;
  2832. font-size:18px;
  2833. }
  2834. #u95227 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:0px 10px 0px 10px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u95227_text {
  2842. border-width:0px;
  2843. white-space:nowrap;
  2844. text-transform:none;
  2845. }
  2846. #u95228_div {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:0px;
  2850. top:0px;
  2851. width:1000px;
  2852. height:1060px;
  2853. background:inherit;
  2854. background-color:rgba(255, 255, 255, 1);
  2855. box-sizing:border-box;
  2856. border-width:1px;
  2857. border-style:solid;
  2858. border-color:rgba(215, 215, 215, 1);
  2859. border-radius:0px;
  2860. -moz-box-shadow:none;
  2861. -webkit-box-shadow:none;
  2862. box-shadow:none;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:14px;
  2867. color:#AAAAAA;
  2868. text-align:center;
  2869. line-height:30px;
  2870. }
  2871. #u95228 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:105px;
  2875. top:1129px;
  2876. width:1000px;
  2877. height:1060px;
  2878. display:flex;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:14px;
  2883. color:#AAAAAA;
  2884. text-align:center;
  2885. line-height:30px;
  2886. }
  2887. #u95228 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:5px 10px 5px 10px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u95228_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. visibility:hidden;
  2899. }
  2900. #u95229_div {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:111px;
  2906. height:25px;
  2907. background:inherit;
  2908. background-color:rgba(255, 255, 255, 0);
  2909. box-sizing:border-box;
  2910. border-width:3px;
  2911. border-style:solid;
  2912. border-color:rgba(51, 51, 51, 1);
  2913. border-top:0px;
  2914. border-right:0px;
  2915. border-bottom:0px;
  2916. border-radius:0px;
  2917. border-top-left-radius:0px;
  2918. border-bottom-left-radius:0px;
  2919. -moz-box-shadow:none;
  2920. -webkit-box-shadow:none;
  2921. box-shadow:none;
  2922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2923. font-weight:500;
  2924. font-style:normal;
  2925. font-size:18px;
  2926. }
  2927. #u95229 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:125px;
  2931. top:1150px;
  2932. width:111px;
  2933. height:25px;
  2934. display:flex;
  2935. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2936. font-weight:500;
  2937. font-style:normal;
  2938. font-size:18px;
  2939. }
  2940. #u95229 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:0px 10px 0px 10px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u95229_text {
  2948. border-width:0px;
  2949. white-space:nowrap;
  2950. text-transform:none;
  2951. }
  2952. #u95230_div {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:155px;
  2958. height:35px;
  2959. background:inherit;
  2960. background-color:rgba(255, 255, 255, 0);
  2961. border:none;
  2962. border-top:0px;
  2963. border-right:0px;
  2964. border-bottom:0px;
  2965. border-radius:0px;
  2966. border-top-left-radius:0px;
  2967. border-bottom-left-radius:0px;
  2968. -moz-box-shadow:none;
  2969. -webkit-box-shadow:none;
  2970. box-shadow:none;
  2971. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2972. font-weight:500;
  2973. font-style:normal;
  2974. font-size:18px;
  2975. }
  2976. #u95230 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:144px;
  2980. top:1190px;
  2981. width:155px;
  2982. height:35px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2985. font-weight:500;
  2986. font-style:normal;
  2987. font-size:18px;
  2988. }
  2989. #u95230 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:5px 10px 5px 0px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u95230_text {
  2997. border-width:0px;
  2998. white-space:nowrap;
  2999. text-transform:none;
  3000. }
  3001. #u95231_div {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:80px;
  3007. height:30px;
  3008. background:inherit;
  3009. background-color:rgba(255, 255, 255, 0);
  3010. border:none;
  3011. border-left:0px;
  3012. border-top:0px;
  3013. border-right:0px;
  3014. border-radius:0px;
  3015. border-bottom-right-radius:0px;
  3016. border-bottom-left-radius:0px;
  3017. -moz-box-shadow:none;
  3018. -webkit-box-shadow:none;
  3019. box-shadow:none;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:14px;
  3024. color:#7F7F7F;
  3025. line-height:30px;
  3026. }
  3027. #u95231 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:144px;
  3031. top:1429px;
  3032. width:80px;
  3033. height:30px;
  3034. display:flex;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:14px;
  3039. color:#7F7F7F;
  3040. line-height:30px;
  3041. }
  3042. #u95231 .text {
  3043. position:absolute;
  3044. align-self:flex-start;
  3045. padding:0px 0px 0px 0px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u95231_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. }
  3054. #u95232_div {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:82px;
  3060. height:30px;
  3061. background:inherit;
  3062. background-color:rgba(255, 255, 255, 0);
  3063. border:none;
  3064. border-left:0px;
  3065. border-top:0px;
  3066. border-right:0px;
  3067. border-radius:0px;
  3068. border-bottom-right-radius:0px;
  3069. border-bottom-left-radius:0px;
  3070. -moz-box-shadow:none;
  3071. -webkit-box-shadow:none;
  3072. box-shadow:none;
  3073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3074. font-weight:400;
  3075. font-style:normal;
  3076. font-size:14px;
  3077. line-height:30px;
  3078. }
  3079. #u95232 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:224px;
  3083. top:1429px;
  3084. width:82px;
  3085. height:30px;
  3086. display:flex;
  3087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:14px;
  3091. line-height:30px;
  3092. }
  3093. #u95232 .text {
  3094. position:absolute;
  3095. align-self:flex-start;
  3096. padding:0px 0px 0px 0px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u95232_text {
  3101. border-width:0px;
  3102. white-space:nowrap;
  3103. text-transform:none;
  3104. }
  3105. #u95233_div {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:80px;
  3111. height:30px;
  3112. background:inherit;
  3113. background-color:rgba(255, 255, 255, 0);
  3114. border:none;
  3115. border-left:0px;
  3116. border-top:0px;
  3117. border-right:0px;
  3118. border-radius:0px;
  3119. border-bottom-right-radius:0px;
  3120. border-bottom-left-radius:0px;
  3121. -moz-box-shadow:none;
  3122. -webkit-box-shadow:none;
  3123. box-shadow:none;
  3124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:14px;
  3128. color:#7F7F7F;
  3129. line-height:30px;
  3130. }
  3131. #u95233 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:448px;
  3135. top:1389px;
  3136. width:80px;
  3137. height:30px;
  3138. display:flex;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:14px;
  3143. color:#7F7F7F;
  3144. line-height:30px;
  3145. }
  3146. #u95233 .text {
  3147. position:absolute;
  3148. align-self:flex-start;
  3149. padding:0px 0px 0px 0px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u95233_text {
  3154. border-width:0px;
  3155. word-wrap:break-word;
  3156. text-transform:none;
  3157. }
  3158. #u95234_div {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:85px;
  3164. height:30px;
  3165. background:inherit;
  3166. background-color:rgba(255, 255, 255, 0);
  3167. border:none;
  3168. border-left:0px;
  3169. border-top:0px;
  3170. border-right:0px;
  3171. border-radius:0px;
  3172. border-bottom-right-radius:0px;
  3173. border-bottom-left-radius:0px;
  3174. -moz-box-shadow:none;
  3175. -webkit-box-shadow:none;
  3176. box-shadow:none;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:14px;
  3181. line-height:30px;
  3182. }
  3183. #u95234 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:528px;
  3187. top:1389px;
  3188. width:85px;
  3189. height:30px;
  3190. display:flex;
  3191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:14px;
  3195. line-height:30px;
  3196. }
  3197. #u95234 .text {
  3198. position:absolute;
  3199. align-self:flex-start;
  3200. padding:0px 0px 0px 0px;
  3201. box-sizing:border-box;
  3202. width:100%;
  3203. }
  3204. #u95234_text {
  3205. border-width:0px;
  3206. white-space:nowrap;
  3207. text-transform:none;
  3208. }
  3209. #u95235_div {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:71px;
  3215. height:30px;
  3216. background:inherit;
  3217. background-color:rgba(255, 255, 255, 0);
  3218. border:none;
  3219. border-left:0px;
  3220. border-top:0px;
  3221. border-right:0px;
  3222. border-radius:0px;
  3223. border-bottom-right-radius:0px;
  3224. border-bottom-left-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:14px;
  3232. color:#7F7F7F;
  3233. line-height:30px;
  3234. }
  3235. #u95235 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:430px;
  3239. top:1239px;
  3240. width:71px;
  3241. height:30px;
  3242. display:flex;
  3243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. font-size:14px;
  3247. color:#7F7F7F;
  3248. line-height:30px;
  3249. }
  3250. #u95235 .text {
  3251. position:absolute;
  3252. align-self:flex-start;
  3253. padding:0px 0px 0px 0px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u95235_text {
  3258. border-width:0px;
  3259. white-space:nowrap;
  3260. text-transform:none;
  3261. }
  3262. #u95236_div {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:85px;
  3268. height:30px;
  3269. background:inherit;
  3270. background-color:rgba(255, 255, 255, 0);
  3271. border:none;
  3272. border-left:0px;
  3273. border-top:0px;
  3274. border-right:0px;
  3275. border-radius:0px;
  3276. border-bottom-right-radius:0px;
  3277. border-bottom-left-radius:0px;
  3278. -moz-box-shadow:none;
  3279. -webkit-box-shadow:none;
  3280. box-shadow:none;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:14px;
  3285. color:#7F7F7F;
  3286. line-height:30px;
  3287. }
  3288. #u95236 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:745px;
  3292. top:1389px;
  3293. width:85px;
  3294. height:30px;
  3295. display:flex;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:14px;
  3300. color:#7F7F7F;
  3301. line-height:30px;
  3302. }
  3303. #u95236 .text {
  3304. position:absolute;
  3305. align-self:flex-start;
  3306. padding:0px 0px 0px 0px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u95236_text {
  3311. border-width:0px;
  3312. white-space:nowrap;
  3313. text-transform:none;
  3314. }
  3315. #u95237_div {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:29px;
  3321. height:30px;
  3322. background:inherit;
  3323. background-color:rgba(255, 255, 255, 0);
  3324. border:none;
  3325. border-left:0px;
  3326. border-top:0px;
  3327. border-right:0px;
  3328. border-radius:0px;
  3329. border-bottom-right-radius:0px;
  3330. border-bottom-left-radius:0px;
  3331. -moz-box-shadow:none;
  3332. -webkit-box-shadow:none;
  3333. box-shadow:none;
  3334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:14px;
  3338. line-height:30px;
  3339. }
  3340. #u95237 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:825px;
  3344. top:1389px;
  3345. width:29px;
  3346. height:30px;
  3347. display:flex;
  3348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3349. font-weight:400;
  3350. font-style:normal;
  3351. font-size:14px;
  3352. line-height:30px;
  3353. }
  3354. #u95237 .text {
  3355. position:absolute;
  3356. align-self:flex-start;
  3357. padding:0px 0px 0px 0px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u95237_text {
  3362. border-width:0px;
  3363. white-space:nowrap;
  3364. text-transform:none;
  3365. }
  3366. #u95238_div {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:80px;
  3372. height:30px;
  3373. background:inherit;
  3374. background-color:rgba(255, 255, 255, 0);
  3375. border:none;
  3376. border-left:0px;
  3377. border-top:0px;
  3378. border-right:0px;
  3379. border-radius:0px;
  3380. border-bottom-right-radius:0px;
  3381. border-bottom-left-radius:0px;
  3382. -moz-box-shadow:none;
  3383. -webkit-box-shadow:none;
  3384. box-shadow:none;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:14px;
  3389. color:#7F7F7F;
  3390. line-height:30px;
  3391. }
  3392. #u95238 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:144px;
  3396. top:1389px;
  3397. width:80px;
  3398. height:30px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:14px;
  3404. color:#7F7F7F;
  3405. line-height:30px;
  3406. }
  3407. #u95238 .text {
  3408. position:absolute;
  3409. align-self:flex-start;
  3410. padding:0px 0px 0px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u95238_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. }
  3419. #u95239_div {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:43px;
  3425. height:30px;
  3426. background:inherit;
  3427. background-color:rgba(255, 255, 255, 0);
  3428. border:none;
  3429. border-left:0px;
  3430. border-top:0px;
  3431. border-right:0px;
  3432. border-radius:0px;
  3433. border-bottom-right-radius:0px;
  3434. border-bottom-left-radius:0px;
  3435. -moz-box-shadow:none;
  3436. -webkit-box-shadow:none;
  3437. box-shadow:none;
  3438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3439. font-weight:400;
  3440. font-style:normal;
  3441. font-size:14px;
  3442. line-height:30px;
  3443. }
  3444. #u95239 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:224px;
  3448. top:1389px;
  3449. width:43px;
  3450. height:30px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:14px;
  3456. line-height:30px;
  3457. }
  3458. #u95239 .text {
  3459. position:absolute;
  3460. align-self:flex-start;
  3461. padding:0px 0px 0px 0px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u95239_text {
  3466. border-width:0px;
  3467. white-space:nowrap;
  3468. text-transform:none;
  3469. }
  3470. #u95240_div {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:127px;
  3476. height:30px;
  3477. background:inherit;
  3478. background-color:rgba(255, 255, 255, 0);
  3479. border:none;
  3480. border-left:0px;
  3481. border-top:0px;
  3482. border-right:0px;
  3483. border-radius:0px;
  3484. border-bottom-right-radius:0px;
  3485. border-bottom-left-radius:0px;
  3486. -moz-box-shadow:none;
  3487. -webkit-box-shadow:none;
  3488. box-shadow:none;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:14px;
  3493. color:#7F7F7F;
  3494. line-height:30px;
  3495. }
  3496. #u95240 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:144px;
  3500. top:1239px;
  3501. width:127px;
  3502. height:30px;
  3503. display:flex;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:14px;
  3508. color:#7F7F7F;
  3509. line-height:30px;
  3510. }
  3511. #u95240 .text {
  3512. position:absolute;
  3513. align-self:flex-start;
  3514. padding:0px 0px 0px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u95240_text {
  3519. border-width:0px;
  3520. white-space:nowrap;
  3521. text-transform:none;
  3522. }
  3523. #u95241_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:160px;
  3529. height:100px;
  3530. }
  3531. #u95241 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:430px;
  3535. top:1269px;
  3536. width:160px;
  3537. height:100px;
  3538. display:flex;
  3539. }
  3540. #u95241 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 2px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u95241_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. visibility:hidden;
  3552. }
  3553. #u95242_img {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:160px;
  3559. height:100px;
  3560. }
  3561. #u95242 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:610px;
  3565. top:1269px;
  3566. width:160px;
  3567. height:100px;
  3568. display:flex;
  3569. }
  3570. #u95242 .text {
  3571. position:absolute;
  3572. align-self:center;
  3573. padding:2px 2px 2px 2px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u95242_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u95243_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:160px;
  3589. height:100px;
  3590. }
  3591. #u95243 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:144px;
  3595. top:1269px;
  3596. width:160px;
  3597. height:100px;
  3598. display:flex;
  3599. }
  3600. #u95243 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 2px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u95243_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u95244_div {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:119px;
  3619. height:35px;
  3620. background:inherit;
  3621. background-color:rgba(255, 255, 255, 0);
  3622. border:none;
  3623. border-top:0px;
  3624. border-right:0px;
  3625. border-bottom:0px;
  3626. border-radius:0px;
  3627. border-top-left-radius:0px;
  3628. border-bottom-left-radius:0px;
  3629. -moz-box-shadow:none;
  3630. -webkit-box-shadow:none;
  3631. box-shadow:none;
  3632. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3633. font-weight:500;
  3634. font-style:normal;
  3635. font-size:18px;
  3636. }
  3637. #u95244 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:144px;
  3641. top:1500px;
  3642. width:119px;
  3643. height:35px;
  3644. display:flex;
  3645. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3646. font-weight:500;
  3647. font-style:normal;
  3648. font-size:18px;
  3649. }
  3650. #u95244 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:5px 10px 5px 0px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u95244_text {
  3658. border-width:0px;
  3659. white-space:nowrap;
  3660. text-transform:none;
  3661. }
  3662. #u95245_div {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:99px;
  3668. height:30px;
  3669. background:inherit;
  3670. background-color:rgba(255, 255, 255, 0);
  3671. border:none;
  3672. border-left:0px;
  3673. border-top:0px;
  3674. border-right:0px;
  3675. border-radius:0px;
  3676. border-bottom-right-radius:0px;
  3677. border-bottom-left-radius:0px;
  3678. -moz-box-shadow:none;
  3679. -webkit-box-shadow:none;
  3680. box-shadow:none;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:14px;
  3685. color:#7F7F7F;
  3686. line-height:30px;
  3687. }
  3688. #u95245 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:430px;
  3692. top:1545px;
  3693. width:99px;
  3694. height:30px;
  3695. display:flex;
  3696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3697. font-weight:400;
  3698. font-style:normal;
  3699. font-size:14px;
  3700. color:#7F7F7F;
  3701. line-height:30px;
  3702. }
  3703. #u95245 .text {
  3704. position:absolute;
  3705. align-self:flex-start;
  3706. padding:0px 0px 0px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u95245_text {
  3711. border-width:0px;
  3712. white-space:nowrap;
  3713. text-transform:none;
  3714. }
  3715. #u95246_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:113px;
  3721. height:30px;
  3722. background:inherit;
  3723. background-color:rgba(255, 255, 255, 0);
  3724. border:none;
  3725. border-left:0px;
  3726. border-top:0px;
  3727. border-right:0px;
  3728. border-radius:0px;
  3729. border-bottom-right-radius:0px;
  3730. border-bottom-left-radius:0px;
  3731. -moz-box-shadow:none;
  3732. -webkit-box-shadow:none;
  3733. box-shadow:none;
  3734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:14px;
  3738. color:#7F7F7F;
  3739. line-height:30px;
  3740. }
  3741. #u95246 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:144px;
  3745. top:1545px;
  3746. width:113px;
  3747. height:30px;
  3748. display:flex;
  3749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:14px;
  3753. color:#7F7F7F;
  3754. line-height:30px;
  3755. }
  3756. #u95246 .text {
  3757. position:absolute;
  3758. align-self:flex-start;
  3759. padding:0px 0px 0px 0px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u95246_text {
  3764. border-width:0px;
  3765. white-space:nowrap;
  3766. text-transform:none;
  3767. }
  3768. #u95247_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:160px;
  3774. height:100px;
  3775. }
  3776. #u95247 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:430px;
  3780. top:1575px;
  3781. width:160px;
  3782. height:100px;
  3783. display:flex;
  3784. }
  3785. #u95247 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 2px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u95247_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. visibility:hidden;
  3797. }
  3798. #u95248_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:160px;
  3804. height:100px;
  3805. }
  3806. #u95248 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:144px;
  3810. top:1575px;
  3811. width:160px;
  3812. height:100px;
  3813. display:flex;
  3814. }
  3815. #u95248 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 2px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u95248_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. visibility:hidden;
  3827. }
  3828. #u95249_img {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:923px;
  3834. height:2px;
  3835. }
  3836. #u95249 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:144px;
  3840. top:1479px;
  3841. width:922px;
  3842. height:1px;
  3843. display:flex;
  3844. }
  3845. #u95249 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 2px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u95249_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. visibility:hidden;
  3857. }
  3858. #u95250_div {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:85px;
  3864. height:30px;
  3865. background:inherit;
  3866. background-color:rgba(255, 255, 255, 0);
  3867. border:none;
  3868. border-left:0px;
  3869. border-top:0px;
  3870. border-right:0px;
  3871. border-radius:0px;
  3872. border-bottom-right-radius:0px;
  3873. border-bottom-left-radius:0px;
  3874. -moz-box-shadow:none;
  3875. -webkit-box-shadow:none;
  3876. box-shadow:none;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:14px;
  3881. color:#7F7F7F;
  3882. line-height:30px;
  3883. }
  3884. #u95250 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:718px;
  3888. top:1545px;
  3889. width:85px;
  3890. height:30px;
  3891. display:flex;
  3892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:14px;
  3896. color:#7F7F7F;
  3897. line-height:30px;
  3898. }
  3899. #u95250 .text {
  3900. position:absolute;
  3901. align-self:flex-start;
  3902. padding:0px 0px 0px 0px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u95250_text {
  3907. border-width:0px;
  3908. white-space:nowrap;
  3909. text-transform:none;
  3910. }
  3911. #u95251_img {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:160px;
  3917. height:100px;
  3918. }
  3919. #u95251 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:718px;
  3923. top:1575px;
  3924. width:160px;
  3925. height:100px;
  3926. display:flex;
  3927. }
  3928. #u95251 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 2px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u95251_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u95252_div {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:57px;
  3947. height:30px;
  3948. background:inherit;
  3949. background-color:rgba(255, 255, 255, 0);
  3950. border:none;
  3951. border-left:0px;
  3952. border-top:0px;
  3953. border-right:0px;
  3954. border-radius:0px;
  3955. border-bottom-right-radius:0px;
  3956. border-bottom-left-radius:0px;
  3957. -moz-box-shadow:none;
  3958. -webkit-box-shadow:none;
  3959. box-shadow:none;
  3960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. font-size:14px;
  3964. color:#7F7F7F;
  3965. line-height:30px;
  3966. }
  3967. #u95252 {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:144px;
  3971. top:1695px;
  3972. width:57px;
  3973. height:30px;
  3974. display:flex;
  3975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3976. font-weight:400;
  3977. font-style:normal;
  3978. font-size:14px;
  3979. color:#7F7F7F;
  3980. line-height:30px;
  3981. }
  3982. #u95252 .text {
  3983. position:absolute;
  3984. align-self:flex-start;
  3985. padding:0px 0px 0px 0px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u95252_text {
  3990. border-width:0px;
  3991. white-space:nowrap;
  3992. text-transform:none;
  3993. }
  3994. #u95253_img {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:160px;
  4000. height:100px;
  4001. }
  4002. #u95253 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:144px;
  4006. top:1725px;
  4007. width:160px;
  4008. height:100px;
  4009. display:flex;
  4010. }
  4011. #u95253 .text {
  4012. position:absolute;
  4013. align-self:center;
  4014. padding:2px 2px 2px 2px;
  4015. box-sizing:border-box;
  4016. width:100%;
  4017. }
  4018. #u95253_text {
  4019. border-width:0px;
  4020. word-wrap:break-word;
  4021. text-transform:none;
  4022. visibility:hidden;
  4023. }
  4024. #u95254_div {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:71px;
  4030. height:30px;
  4031. background:inherit;
  4032. background-color:rgba(255, 255, 255, 0);
  4033. border:none;
  4034. border-left:0px;
  4035. border-top:0px;
  4036. border-right:0px;
  4037. border-radius:0px;
  4038. border-bottom-right-radius:0px;
  4039. border-bottom-left-radius:0px;
  4040. -moz-box-shadow:none;
  4041. -webkit-box-shadow:none;
  4042. box-shadow:none;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:14px;
  4047. color:#7F7F7F;
  4048. line-height:30px;
  4049. }
  4050. #u95254 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:144px;
  4054. top:1955px;
  4055. width:71px;
  4056. height:30px;
  4057. display:flex;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:14px;
  4062. color:#7F7F7F;
  4063. line-height:30px;
  4064. }
  4065. #u95254 .text {
  4066. position:absolute;
  4067. align-self:flex-start;
  4068. padding:0px 0px 0px 0px;
  4069. box-sizing:border-box;
  4070. width:100%;
  4071. }
  4072. #u95254_text {
  4073. border-width:0px;
  4074. white-space:nowrap;
  4075. text-transform:none;
  4076. }
  4077. #u95255_img {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:160px;
  4083. height:100px;
  4084. }
  4085. #u95255 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:144px;
  4089. top:1985px;
  4090. width:160px;
  4091. height:100px;
  4092. display:flex;
  4093. }
  4094. #u95255 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:2px 2px 2px 2px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u95255_text {
  4102. border-width:0px;
  4103. word-wrap:break-word;
  4104. text-transform:none;
  4105. visibility:hidden;
  4106. }
  4107. #u95256_img {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:0px;
  4112. width:160px;
  4113. height:100px;
  4114. }
  4115. #u95256 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:314px;
  4119. top:1725px;
  4120. width:160px;
  4121. height:100px;
  4122. display:flex;
  4123. }
  4124. #u95256 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:2px 2px 2px 2px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u95256_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. visibility:hidden;
  4136. }
  4137. #u95257_img {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:160px;
  4143. height:100px;
  4144. }
  4145. #u95257 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:314px;
  4149. top:1985px;
  4150. width:160px;
  4151. height:100px;
  4152. display:flex;
  4153. }
  4154. #u95257 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 2px 2px 2px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u95257_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u95258_img {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:160px;
  4173. height:100px;
  4174. }
  4175. #u95258 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:484px;
  4179. top:1725px;
  4180. width:160px;
  4181. height:100px;
  4182. display:flex;
  4183. }
  4184. #u95258 .text {
  4185. position:absolute;
  4186. align-self:center;
  4187. padding:2px 2px 2px 2px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u95258_text {
  4192. border-width:0px;
  4193. word-wrap:break-word;
  4194. text-transform:none;
  4195. visibility:hidden;
  4196. }
  4197. #u95259_img {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:160px;
  4203. height:100px;
  4204. }
  4205. #u95259 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:484px;
  4209. top:1985px;
  4210. width:160px;
  4211. height:100px;
  4212. display:flex;
  4213. }
  4214. #u95259 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 2px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u95259_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. visibility:hidden;
  4226. }
  4227. #u95260_img {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:160px;
  4233. height:100px;
  4234. }
  4235. #u95260 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:654px;
  4239. top:1725px;
  4240. width:160px;
  4241. height:100px;
  4242. display:flex;
  4243. }
  4244. #u95260 .text {
  4245. position:absolute;
  4246. align-self:center;
  4247. padding:2px 2px 2px 2px;
  4248. box-sizing:border-box;
  4249. width:100%;
  4250. }
  4251. #u95260_text {
  4252. border-width:0px;
  4253. word-wrap:break-word;
  4254. text-transform:none;
  4255. visibility:hidden;
  4256. }
  4257. #u95261_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:160px;
  4263. height:100px;
  4264. }
  4265. #u95261 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:824px;
  4269. top:1725px;
  4270. width:160px;
  4271. height:100px;
  4272. display:flex;
  4273. }
  4274. #u95261 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 2px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u95261_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. visibility:hidden;
  4286. }
  4287. #u95262_img {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:160px;
  4293. height:100px;
  4294. }
  4295. #u95262 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:144px;
  4299. top:1835px;
  4300. width:160px;
  4301. height:100px;
  4302. display:flex;
  4303. }
  4304. #u95262 .text {
  4305. position:absolute;
  4306. align-self:center;
  4307. padding:2px 2px 2px 2px;
  4308. box-sizing:border-box;
  4309. width:100%;
  4310. }
  4311. #u95262_text {
  4312. border-width:0px;
  4313. word-wrap:break-word;
  4314. text-transform:none;
  4315. visibility:hidden;
  4316. }
  4317. #u95263_img {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:160px;
  4323. height:100px;
  4324. }
  4325. #u95263 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:314px;
  4329. top:1835px;
  4330. width:160px;
  4331. height:100px;
  4332. display:flex;
  4333. }
  4334. #u95263 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 2px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u95263_text {
  4342. border-width:0px;
  4343. word-wrap:break-word;
  4344. text-transform:none;
  4345. visibility:hidden;
  4346. }
  4347. #u95264 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:0px;
  4353. height:0px;
  4354. }
  4355. #u95265_img {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:-5px;
  4359. top:-5px;
  4360. width:370px;
  4361. height:200px;
  4362. }
  4363. #u95265 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:1155px;
  4367. top:1649px;
  4368. width:360px;
  4369. height:190px;
  4370. display:flex;
  4371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4372. font-weight:400;
  4373. font-style:normal;
  4374. font-size:12px;
  4375. color:#FFFFFF;
  4376. }
  4377. #u95265 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:2px 2px 2px 2px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u95265_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. visibility:hidden;
  4389. }
  4390. #u95266_div {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:37px;
  4396. height:25px;
  4397. background:inherit;
  4398. background-color:rgba(255, 255, 255, 0);
  4399. border:none;
  4400. border-radius:0px;
  4401. -moz-box-shadow:none;
  4402. -webkit-box-shadow:none;
  4403. box-shadow:none;
  4404. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4405. font-weight:500;
  4406. font-style:normal;
  4407. font-size:18px;
  4408. }
  4409. #u95266 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:1178px;
  4413. top:1665px;
  4414. width:37px;
  4415. height:25px;
  4416. display:flex;
  4417. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4418. font-weight:500;
  4419. font-style:normal;
  4420. font-size:18px;
  4421. }
  4422. #u95266 .text {
  4423. position:absolute;
  4424. align-self:flex-start;
  4425. padding:0px 0px 0px 0px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u95266_text {
  4430. border-width:0px;
  4431. white-space:nowrap;
  4432. text-transform:none;
  4433. }
  4434. #u95267_img {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:8px;
  4440. height:8px;
  4441. }
  4442. #u95267 {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:1492px;
  4446. top:1661px;
  4447. width:8px;
  4448. height:8px;
  4449. display:flex;
  4450. opacity:0.5;
  4451. }
  4452. #u95267 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 2px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u95267_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u95268_div {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:80px;
  4471. height:30px;
  4472. background:inherit;
  4473. background-color:rgba(51, 153, 255, 1);
  4474. border:none;
  4475. border-radius:4px;
  4476. -moz-box-shadow:none;
  4477. -webkit-box-shadow:none;
  4478. box-shadow:none;
  4479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:14px;
  4483. color:#FFFFFF;
  4484. }
  4485. #u95268 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:1420px;
  4489. top:1793px;
  4490. width:80px;
  4491. height:30px;
  4492. display:flex;
  4493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4494. font-weight:400;
  4495. font-style:normal;
  4496. font-size:14px;
  4497. color:#FFFFFF;
  4498. }
  4499. #u95268 .text {
  4500. position:absolute;
  4501. align-self:center;
  4502. padding:8px 0px 8px 0px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u95268_text {
  4507. border-width:0px;
  4508. word-wrap:break-word;
  4509. text-transform:none;
  4510. }
  4511. #u95269 {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:0px;
  4517. height:0px;
  4518. }
  4519. #u95270_div {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:322px;
  4525. height:80px;
  4526. background:inherit;
  4527. background-color:rgba(255, 255, 255, 1);
  4528. box-sizing:border-box;
  4529. border-width:1px;
  4530. border-style:solid;
  4531. border-color:rgba(51, 153, 255, 1);
  4532. border-radius:2px;
  4533. -moz-box-shadow:none;
  4534. -webkit-box-shadow:none;
  4535. box-shadow:none;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:12px;
  4540. color:#FFFFFF;
  4541. text-align:left;
  4542. }
  4543. #u95270 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:1178px;
  4547. top:1700px;
  4548. width:322px;
  4549. height:80px;
  4550. display:flex;
  4551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:12px;
  4555. color:#FFFFFF;
  4556. text-align:left;
  4557. }
  4558. #u95270 .text {
  4559. position:absolute;
  4560. align-self:center;
  4561. padding:8px 15px 8px 15px;
  4562. box-sizing:border-box;
  4563. width:100%;
  4564. }
  4565. #u95270_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. }
  4570. #u95271_div {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:99px;
  4576. height:20px;
  4577. background:inherit;
  4578. background-color:rgba(255, 255, 255, 0);
  4579. border:none;
  4580. border-radius:0px;
  4581. -moz-box-shadow:none;
  4582. -webkit-box-shadow:none;
  4583. box-shadow:none;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. color:#D7D7D7;
  4588. }
  4589. #u95271 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:1189px;
  4593. top:1711px;
  4594. width:99px;
  4595. height:20px;
  4596. display:flex;
  4597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4598. font-weight:400;
  4599. font-style:normal;
  4600. color:#D7D7D7;
  4601. }
  4602. #u95271 .text {
  4603. position:absolute;
  4604. align-self:flex-start;
  4605. padding:0px 0px 0px 0px;
  4606. box-sizing:border-box;
  4607. width:100%;
  4608. }
  4609. #u95271_text {
  4610. border-width:0px;
  4611. white-space:nowrap;
  4612. text-transform:none;
  4613. }
  4614. #u95272_div {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:60px;
  4620. height:30px;
  4621. background:inherit;
  4622. background-color:rgba(255, 255, 255, 1);
  4623. box-sizing:border-box;
  4624. border-width:1px;
  4625. border-style:solid;
  4626. border-color:rgba(170, 170, 170, 1);
  4627. border-radius:4px;
  4628. -moz-box-shadow:none;
  4629. -webkit-box-shadow:none;
  4630. box-shadow:none;
  4631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4632. font-weight:400;
  4633. font-style:normal;
  4634. font-size:14px;
  4635. }
  4636. #u95272 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:1350px;
  4640. top:1793px;
  4641. width:60px;
  4642. height:30px;
  4643. display:flex;
  4644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. font-size:14px;
  4648. }
  4649. #u95272 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 2px 2px 2px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u95272_text {
  4657. border-width:0px;
  4658. word-wrap:break-word;
  4659. text-transform:none;
  4660. }
  4661. #u95273 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:0px;
  4667. height:0px;
  4668. }
  4669. #u95274_img {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:-5px;
  4673. top:-5px;
  4674. width:370px;
  4675. height:200px;
  4676. }
  4677. #u95274 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:1155px;
  4681. top:1867px;
  4682. width:360px;
  4683. height:190px;
  4684. display:flex;
  4685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4686. font-weight:400;
  4687. font-style:normal;
  4688. font-size:12px;
  4689. color:#FFFFFF;
  4690. }
  4691. #u95274 .text {
  4692. position:absolute;
  4693. align-self:center;
  4694. padding:2px 2px 2px 2px;
  4695. box-sizing:border-box;
  4696. width:100%;
  4697. }
  4698. #u95274_text {
  4699. border-width:0px;
  4700. word-wrap:break-word;
  4701. text-transform:none;
  4702. visibility:hidden;
  4703. }
  4704. #u95275_div {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:0px;
  4709. width:37px;
  4710. height:25px;
  4711. background:inherit;
  4712. background-color:rgba(255, 255, 255, 0);
  4713. border:none;
  4714. border-radius:0px;
  4715. -moz-box-shadow:none;
  4716. -webkit-box-shadow:none;
  4717. box-shadow:none;
  4718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4719. font-weight:500;
  4720. font-style:normal;
  4721. font-size:18px;
  4722. }
  4723. #u95275 {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:1178px;
  4727. top:1883px;
  4728. width:37px;
  4729. height:25px;
  4730. display:flex;
  4731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4732. font-weight:500;
  4733. font-style:normal;
  4734. font-size:18px;
  4735. }
  4736. #u95275 .text {
  4737. position:absolute;
  4738. align-self:flex-start;
  4739. padding:0px 0px 0px 0px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u95275_text {
  4744. border-width:0px;
  4745. white-space:nowrap;
  4746. text-transform:none;
  4747. }
  4748. #u95276_img {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:8px;
  4754. height:8px;
  4755. }
  4756. #u95276 {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:1492px;
  4760. top:1879px;
  4761. width:8px;
  4762. height:8px;
  4763. display:flex;
  4764. opacity:0.5;
  4765. }
  4766. #u95276 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 2px 2px 2px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u95276_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u95277_div {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:80px;
  4785. height:30px;
  4786. background:inherit;
  4787. background-color:rgba(51, 153, 255, 1);
  4788. border:none;
  4789. border-radius:4px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:14px;
  4797. color:#FFFFFF;
  4798. }
  4799. #u95277 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:1420px;
  4803. top:2011px;
  4804. width:80px;
  4805. height:30px;
  4806. display:flex;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:14px;
  4811. color:#FFFFFF;
  4812. }
  4813. #u95277 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:8px 0px 8px 0px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u95277_text {
  4821. border-width:0px;
  4822. word-wrap:break-word;
  4823. text-transform:none;
  4824. }
  4825. #u95278 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:0px;
  4831. height:0px;
  4832. }
  4833. #u95279_div {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:322px;
  4839. height:80px;
  4840. background:inherit;
  4841. background-color:rgba(255, 255, 255, 1);
  4842. box-sizing:border-box;
  4843. border-width:1px;
  4844. border-style:solid;
  4845. border-color:rgba(51, 153, 255, 1);
  4846. border-radius:2px;
  4847. -moz-box-shadow:none;
  4848. -webkit-box-shadow:none;
  4849. box-shadow:none;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:12px;
  4854. color:#FFFFFF;
  4855. text-align:left;
  4856. }
  4857. #u95279 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:1178px;
  4861. top:1918px;
  4862. width:322px;
  4863. height:80px;
  4864. display:flex;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:12px;
  4869. color:#FFFFFF;
  4870. text-align:left;
  4871. }
  4872. #u95279 .text {
  4873. position:absolute;
  4874. align-self:center;
  4875. padding:8px 15px 8px 15px;
  4876. box-sizing:border-box;
  4877. width:100%;
  4878. }
  4879. #u95279_text {
  4880. border-width:0px;
  4881. word-wrap:break-word;
  4882. text-transform:none;
  4883. }
  4884. #u95280_div {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:99px;
  4890. height:20px;
  4891. background:inherit;
  4892. background-color:rgba(255, 255, 255, 0);
  4893. border:none;
  4894. border-radius:0px;
  4895. -moz-box-shadow:none;
  4896. -webkit-box-shadow:none;
  4897. box-shadow:none;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. color:#D7D7D7;
  4902. }
  4903. #u95280 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:1189px;
  4907. top:1929px;
  4908. width:99px;
  4909. height:20px;
  4910. display:flex;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. color:#D7D7D7;
  4915. }
  4916. #u95280 .text {
  4917. position:absolute;
  4918. align-self:flex-start;
  4919. padding:0px 0px 0px 0px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u95280_text {
  4924. border-width:0px;
  4925. white-space:nowrap;
  4926. text-transform:none;
  4927. }
  4928. #u95281_div {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:60px;
  4934. height:30px;
  4935. background:inherit;
  4936. background-color:rgba(255, 255, 255, 1);
  4937. box-sizing:border-box;
  4938. border-width:1px;
  4939. border-style:solid;
  4940. border-color:rgba(170, 170, 170, 1);
  4941. border-radius:4px;
  4942. -moz-box-shadow:none;
  4943. -webkit-box-shadow:none;
  4944. box-shadow:none;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:14px;
  4949. }
  4950. #u95281 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:1350px;
  4954. top:2011px;
  4955. width:60px;
  4956. height:30px;
  4957. display:flex;
  4958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:14px;
  4962. }
  4963. #u95281 .text {
  4964. position:absolute;
  4965. align-self:center;
  4966. padding:2px 2px 2px 2px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u95281_text {
  4971. border-width:0px;
  4972. word-wrap:break-word;
  4973. text-transform:none;
  4974. }