styles.css 93 KB

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