styles.css 96 KB

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