styles.css 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3421px;
  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. #u25549_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u25549 {
  28. border-width:0px;
  29. position:absolute;
  30. left:463px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u25549 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u25549_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u25550_img {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:433px;
  55. height:865px;
  56. }
  57. #u25550 {
  58. border-width:0px;
  59. position:absolute;
  60. left:926px;
  61. top:0px;
  62. width:433px;
  63. height:865px;
  64. display:flex;
  65. }
  66. #u25550 .text {
  67. position:absolute;
  68. align-self:center;
  69. padding:2px 2px 2px 2px;
  70. box-sizing:border-box;
  71. width:100%;
  72. }
  73. #u25550_text {
  74. border-width:0px;
  75. word-wrap:break-word;
  76. text-transform:none;
  77. visibility:hidden;
  78. }
  79. #u25551_img {
  80. border-width:0px;
  81. position:absolute;
  82. left:0px;
  83. top:0px;
  84. width:433px;
  85. height:865px;
  86. }
  87. #u25551 {
  88. border-width:0px;
  89. position:absolute;
  90. left:1389px;
  91. top:0px;
  92. width:433px;
  93. height:865px;
  94. display:flex;
  95. }
  96. #u25551 .text {
  97. position:absolute;
  98. align-self:center;
  99. padding:2px 2px 2px 2px;
  100. box-sizing:border-box;
  101. width:100%;
  102. }
  103. #u25551_text {
  104. border-width:0px;
  105. word-wrap:break-word;
  106. text-transform:none;
  107. visibility:hidden;
  108. }
  109. #u25552_img {
  110. border-width:0px;
  111. position:absolute;
  112. left:0px;
  113. top:0px;
  114. width:433px;
  115. height:865px;
  116. }
  117. #u25552 {
  118. border-width:0px;
  119. position:absolute;
  120. left:1852px;
  121. top:0px;
  122. width:433px;
  123. height:865px;
  124. display:flex;
  125. }
  126. #u25552 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u25552_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u25554_img {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:433px;
  145. height:865px;
  146. }
  147. #u25554 {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:433px;
  153. height:865px;
  154. display:flex;
  155. }
  156. #u25554 .text {
  157. position:absolute;
  158. align-self:center;
  159. padding:2px 2px 2px 2px;
  160. box-sizing:border-box;
  161. width:100%;
  162. }
  163. #u25554_text {
  164. border-width:0px;
  165. word-wrap:break-word;
  166. text-transform:none;
  167. visibility:hidden;
  168. }
  169. #u25555_div {
  170. border-width:0px;
  171. position:absolute;
  172. left:0px;
  173. top:0px;
  174. width:375px;
  175. height:40px;
  176. background:inherit;
  177. background-color:rgba(255, 255, 255, 1);
  178. box-sizing:border-box;
  179. border-width:1px;
  180. border-style:solid;
  181. border-color:rgba(215, 215, 215, 1);
  182. border-left:0px;
  183. border-top:0px;
  184. border-right:0px;
  185. border-radius:0px;
  186. border-bottom-right-radius:0px;
  187. border-bottom-left-radius:0px;
  188. -moz-box-shadow:none;
  189. -webkit-box-shadow:none;
  190. box-shadow:none;
  191. }
  192. #u25555 {
  193. border-width:0px;
  194. position:absolute;
  195. left:29px;
  196. top:67px;
  197. width:375px;
  198. height:40px;
  199. display:flex;
  200. }
  201. #u25555 .text {
  202. position:absolute;
  203. align-self:center;
  204. padding:2px 2px 2px 2px;
  205. box-sizing:border-box;
  206. width:100%;
  207. }
  208. #u25555_text {
  209. border-width:0px;
  210. word-wrap:break-word;
  211. text-transform:none;
  212. visibility:hidden;
  213. }
  214. #u25556 {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:0px;
  220. height:0px;
  221. }
  222. #u25557_div {
  223. border-width:0px;
  224. position:absolute;
  225. left:0px;
  226. top:0px;
  227. width:88px;
  228. height:32px;
  229. background:inherit;
  230. background-color:rgba(255, 255, 255, 1);
  231. box-sizing:border-box;
  232. border-width:1px;
  233. border-style:solid;
  234. border-color:rgba(242, 242, 242, 1);
  235. border-radius:33px;
  236. -moz-box-shadow:none;
  237. -webkit-box-shadow:none;
  238. box-shadow:none;
  239. }
  240. #u25557 {
  241. border-width:0px;
  242. position:absolute;
  243. left:309px;
  244. top:71px;
  245. width:88px;
  246. height:32px;
  247. display:flex;
  248. }
  249. #u25557 .text {
  250. position:absolute;
  251. align-self:center;
  252. padding:2px 2px 2px 2px;
  253. box-sizing:border-box;
  254. width:100%;
  255. }
  256. #u25557_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u25558 {
  263. border-width:0px;
  264. position:absolute;
  265. left:0px;
  266. top:0px;
  267. width:0px;
  268. height:0px;
  269. }
  270. #u25559_img {
  271. border-width:0px;
  272. position:absolute;
  273. left:0px;
  274. top:0px;
  275. width:18px;
  276. height:18px;
  277. }
  278. #u25559 {
  279. border-width:0px;
  280. position:absolute;
  281. left:372px;
  282. top:78px;
  283. width:18px;
  284. height:18px;
  285. display:flex;
  286. }
  287. #u25559 .text {
  288. position:absolute;
  289. align-self:center;
  290. padding:2px 2px 2px 2px;
  291. box-sizing:border-box;
  292. width:100%;
  293. }
  294. #u25559_text {
  295. border-width:0px;
  296. word-wrap:break-word;
  297. text-transform:none;
  298. visibility:hidden;
  299. }
  300. #u25560_img {
  301. border-width:0px;
  302. position:absolute;
  303. left:0px;
  304. top:0px;
  305. width:6px;
  306. height:6px;
  307. }
  308. #u25560 {
  309. border-width:0px;
  310. position:absolute;
  311. left:378px;
  312. top:84px;
  313. width:6px;
  314. height:6px;
  315. display:flex;
  316. }
  317. #u25560 .text {
  318. position:absolute;
  319. align-self:center;
  320. padding:2px 2px 2px 2px;
  321. box-sizing:border-box;
  322. width:100%;
  323. }
  324. #u25560_text {
  325. border-width:0px;
  326. word-wrap:break-word;
  327. text-transform:none;
  328. visibility:hidden;
  329. }
  330. #u25561 {
  331. border-width:0px;
  332. position:absolute;
  333. left:0px;
  334. top:0px;
  335. width:0px;
  336. height:0px;
  337. }
  338. #u25562_img {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:5px;
  344. height:5px;
  345. }
  346. #u25562 {
  347. border-width:0px;
  348. position:absolute;
  349. left:323px;
  350. top:85px;
  351. width:5px;
  352. height:5px;
  353. display:flex;
  354. }
  355. #u25562 .text {
  356. position:absolute;
  357. align-self:center;
  358. padding:2px 2px 2px 2px;
  359. box-sizing:border-box;
  360. width:100%;
  361. }
  362. #u25562_text {
  363. border-width:0px;
  364. word-wrap:break-word;
  365. text-transform:none;
  366. visibility:hidden;
  367. }
  368. #u25563_img {
  369. border-width:0px;
  370. position:absolute;
  371. left:0px;
  372. top:0px;
  373. width:5px;
  374. height:5px;
  375. }
  376. #u25563 {
  377. border-width:0px;
  378. position:absolute;
  379. left:339px;
  380. top:85px;
  381. width:5px;
  382. height:5px;
  383. display:flex;
  384. }
  385. #u25563 .text {
  386. position:absolute;
  387. align-self:center;
  388. padding:2px 2px 2px 2px;
  389. box-sizing:border-box;
  390. width:100%;
  391. }
  392. #u25563_text {
  393. border-width:0px;
  394. word-wrap:break-word;
  395. text-transform:none;
  396. visibility:hidden;
  397. }
  398. #u25564_img {
  399. border-width:0px;
  400. position:absolute;
  401. left:0px;
  402. top:0px;
  403. width:7px;
  404. height:7px;
  405. }
  406. #u25564 {
  407. border-width:0px;
  408. position:absolute;
  409. left:330px;
  410. top:84px;
  411. width:7px;
  412. height:7px;
  413. display:flex;
  414. }
  415. #u25564 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u25564_text {
  423. border-width:0px;
  424. word-wrap:break-word;
  425. text-transform:none;
  426. visibility:hidden;
  427. }
  428. #u25565_img {
  429. border-width:0px;
  430. position:absolute;
  431. left:0px;
  432. top:0px;
  433. width:19px;
  434. height:2px;
  435. }
  436. #u25565 {
  437. border-width:0px;
  438. position:absolute;
  439. left:347px;
  440. top:87px;
  441. width:18px;
  442. height:1px;
  443. display:flex;
  444. -webkit-transform:rotate(90deg);
  445. -moz-transform:rotate(90deg);
  446. -ms-transform:rotate(90deg);
  447. transform:rotate(90deg);
  448. }
  449. #u25565 .text {
  450. position:absolute;
  451. align-self:center;
  452. padding:2px 2px 2px 2px;
  453. box-sizing:border-box;
  454. width:100%;
  455. }
  456. #u25565_text {
  457. border-width:0px;
  458. word-wrap:break-word;
  459. text-transform:none;
  460. visibility:hidden;
  461. }
  462. #u25566_img {
  463. border-width:0px;
  464. position:absolute;
  465. left:0px;
  466. top:0px;
  467. width:375px;
  468. height:44px;
  469. }
  470. #u25566 {
  471. border-width:0px;
  472. position:absolute;
  473. left:29px;
  474. top:24px;
  475. width:375px;
  476. height:44px;
  477. display:flex;
  478. }
  479. #u25566 .text {
  480. position:absolute;
  481. align-self:center;
  482. padding:2px 2px 2px 2px;
  483. box-sizing:border-box;
  484. width:100%;
  485. }
  486. #u25566_text {
  487. border-width:0px;
  488. word-wrap:break-word;
  489. text-transform:none;
  490. visibility:hidden;
  491. }
  492. #u25567_div {
  493. border-width:0px;
  494. position:absolute;
  495. left:0px;
  496. top:0px;
  497. width:375px;
  498. height:50px;
  499. background:inherit;
  500. background-color:rgba(255, 255, 255, 1);
  501. box-sizing:border-box;
  502. border-width:1px;
  503. border-style:solid;
  504. border-color:rgba(242, 242, 242, 1);
  505. border-radius:26px;
  506. border-top-left-radius:0px;
  507. border-top-right-radius:0px;
  508. -moz-box-shadow:none;
  509. -webkit-box-shadow:none;
  510. box-shadow:none;
  511. }
  512. #u25567 {
  513. border-width:0px;
  514. position:absolute;
  515. left:29px;
  516. top:788px;
  517. width:375px;
  518. height:50px;
  519. display:flex;
  520. }
  521. #u25567 .text {
  522. position:absolute;
  523. align-self:center;
  524. padding:2px 2px 2px 2px;
  525. box-sizing:border-box;
  526. width:100%;
  527. }
  528. #u25567_text {
  529. border-width:0px;
  530. word-wrap:break-word;
  531. text-transform:none;
  532. visibility:hidden;
  533. }
  534. #u25568 {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:0px;
  540. height:0px;
  541. }
  542. #u25569_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u25569 {
  551. border-width:0px;
  552. position:absolute;
  553. left:69px;
  554. top:792px;
  555. width:24px;
  556. height:24px;
  557. display:flex;
  558. font-size:8px;
  559. }
  560. #u25569 .text {
  561. position:absolute;
  562. align-self:center;
  563. padding:2px 2px 2px 2px;
  564. box-sizing:border-box;
  565. width:100%;
  566. }
  567. #u25569_text {
  568. border-width:0px;
  569. word-wrap:break-word;
  570. text-transform:none;
  571. }
  572. #u25570_div {
  573. border-width:0px;
  574. position:absolute;
  575. left:0px;
  576. top:0px;
  577. width:25px;
  578. height:17px;
  579. background:inherit;
  580. background-color:rgba(255, 255, 255, 0);
  581. border:none;
  582. border-radius:0px;
  583. -moz-box-shadow:none;
  584. -webkit-box-shadow:none;
  585. box-shadow:none;
  586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  587. font-weight:400;
  588. font-style:normal;
  589. font-size:12px;
  590. }
  591. #u25570 {
  592. border-width:0px;
  593. position:absolute;
  594. left:69px;
  595. top:817px;
  596. width:25px;
  597. height:17px;
  598. display:flex;
  599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  600. font-weight:400;
  601. font-style:normal;
  602. font-size:12px;
  603. }
  604. #u25570 .text {
  605. position:absolute;
  606. align-self:flex-start;
  607. padding:0px 0px 0px 0px;
  608. box-sizing:border-box;
  609. width:100%;
  610. }
  611. #u25570_text {
  612. border-width:0px;
  613. white-space:nowrap;
  614. text-transform:none;
  615. }
  616. #u25571 {
  617. border-width:0px;
  618. position:absolute;
  619. left:0px;
  620. top:0px;
  621. width:0px;
  622. height:0px;
  623. }
  624. #u25572_img {
  625. border-width:0px;
  626. position:absolute;
  627. left:0px;
  628. top:0px;
  629. width:24px;
  630. height:24px;
  631. }
  632. #u25572 {
  633. border-width:0px;
  634. position:absolute;
  635. left:339px;
  636. top:794px;
  637. width:24px;
  638. height:24px;
  639. display:flex;
  640. font-size:8px;
  641. }
  642. #u25572 .text {
  643. position:absolute;
  644. align-self:center;
  645. padding:2px 2px 2px 2px;
  646. box-sizing:border-box;
  647. width:100%;
  648. }
  649. #u25572_text {
  650. border-width:0px;
  651. word-wrap:break-word;
  652. text-transform:none;
  653. }
  654. #u25573_div {
  655. border-width:0px;
  656. position:absolute;
  657. left:0px;
  658. top:0px;
  659. width:25px;
  660. height:17px;
  661. background:inherit;
  662. background-color:rgba(255, 255, 255, 0);
  663. border:none;
  664. border-radius:0px;
  665. -moz-box-shadow:none;
  666. -webkit-box-shadow:none;
  667. box-shadow:none;
  668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  669. font-weight:400;
  670. font-style:normal;
  671. font-size:12px;
  672. }
  673. #u25573 {
  674. border-width:0px;
  675. position:absolute;
  676. left:339px;
  677. top:819px;
  678. width:25px;
  679. height:17px;
  680. display:flex;
  681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  682. font-weight:400;
  683. font-style:normal;
  684. font-size:12px;
  685. }
  686. #u25573 .text {
  687. position:absolute;
  688. align-self:flex-start;
  689. padding:0px 0px 0px 0px;
  690. box-sizing:border-box;
  691. width:100%;
  692. }
  693. #u25573_text {
  694. border-width:0px;
  695. white-space:nowrap;
  696. text-transform:none;
  697. }
  698. #u25574_div {
  699. border-width:0px;
  700. position:absolute;
  701. left:0px;
  702. top:0px;
  703. width:375px;
  704. height:681px;
  705. background:inherit;
  706. background-color:rgba(242, 242, 242, 0.462745098039216);
  707. border:none;
  708. border-radius:0px;
  709. -moz-box-shadow:none;
  710. -webkit-box-shadow:none;
  711. box-shadow:none;
  712. }
  713. #u25574 {
  714. border-width:0px;
  715. position:absolute;
  716. left:29px;
  717. top:107px;
  718. width:375px;
  719. height:681px;
  720. display:flex;
  721. }
  722. #u25574 .text {
  723. position:absolute;
  724. align-self:center;
  725. padding:2px 2px 2px 2px;
  726. box-sizing:border-box;
  727. width:100%;
  728. }
  729. #u25574_text {
  730. border-width:0px;
  731. word-wrap:break-word;
  732. text-transform:none;
  733. visibility:hidden;
  734. }
  735. #u25575 {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:0px;
  741. height:0px;
  742. }
  743. #u25576_img {
  744. border-width:0px;
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:24px;
  749. height:24px;
  750. }
  751. #u25576 {
  752. border-width:0px;
  753. position:absolute;
  754. left:251px;
  755. top:792px;
  756. width:24px;
  757. height:24px;
  758. display:flex;
  759. font-size:8px;
  760. }
  761. #u25576 .text {
  762. position:absolute;
  763. align-self:center;
  764. padding:2px 2px 2px 2px;
  765. box-sizing:border-box;
  766. width:100%;
  767. }
  768. #u25576_text {
  769. border-width:0px;
  770. word-wrap:break-word;
  771. text-transform:none;
  772. }
  773. #u25577_div {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:37px;
  779. height:17px;
  780. background:inherit;
  781. background-color:rgba(255, 255, 255, 0);
  782. border:none;
  783. border-radius:0px;
  784. -moz-box-shadow:none;
  785. -webkit-box-shadow:none;
  786. box-shadow:none;
  787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  788. font-weight:400;
  789. font-style:normal;
  790. font-size:12px;
  791. }
  792. #u25577 {
  793. border-width:0px;
  794. position:absolute;
  795. left:245px;
  796. top:817px;
  797. width:37px;
  798. height:17px;
  799. display:flex;
  800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  801. font-weight:400;
  802. font-style:normal;
  803. font-size:12px;
  804. }
  805. #u25577 .text {
  806. position:absolute;
  807. align-self:flex-start;
  808. padding:0px 0px 0px 0px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u25577_text {
  813. border-width:0px;
  814. white-space:nowrap;
  815. text-transform:none;
  816. }
  817. #u25578 {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:0px;
  823. height:0px;
  824. }
  825. #u25579_img {
  826. border-width:0px;
  827. position:absolute;
  828. left:0px;
  829. top:0px;
  830. width:24px;
  831. height:24px;
  832. }
  833. #u25579 {
  834. border-width:0px;
  835. position:absolute;
  836. left:157px;
  837. top:792px;
  838. width:24px;
  839. height:24px;
  840. display:flex;
  841. font-size:8px;
  842. }
  843. #u25579 .text {
  844. position:absolute;
  845. align-self:center;
  846. padding:2px 2px 2px 2px;
  847. box-sizing:border-box;
  848. width:100%;
  849. }
  850. #u25579_text {
  851. border-width:0px;
  852. word-wrap:break-word;
  853. text-transform:none;
  854. }
  855. #u25580_div {
  856. border-width:0px;
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:37px;
  861. height:17px;
  862. background:inherit;
  863. background-color:rgba(255, 255, 255, 0);
  864. border:none;
  865. border-radius:0px;
  866. -moz-box-shadow:none;
  867. -webkit-box-shadow:none;
  868. box-shadow:none;
  869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  870. font-weight:400;
  871. font-style:normal;
  872. font-size:12px;
  873. }
  874. #u25580 {
  875. border-width:0px;
  876. position:absolute;
  877. left:151px;
  878. top:817px;
  879. width:37px;
  880. height:17px;
  881. display:flex;
  882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  883. font-weight:400;
  884. font-style:normal;
  885. font-size:12px;
  886. }
  887. #u25580 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u25580_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u25581_div {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:375px;
  905. height:740px;
  906. background:inherit;
  907. background-color:rgba(242, 242, 242, 1);
  908. border:none;
  909. border-top:0px;
  910. border-radius:25px;
  911. border-top-left-radius:0px;
  912. border-top-right-radius:0px;
  913. -moz-box-shadow:none;
  914. -webkit-box-shadow:none;
  915. box-shadow:none;
  916. }
  917. #u25581 {
  918. border-width:0px;
  919. position:absolute;
  920. left:29px;
  921. top:105px;
  922. width:375px;
  923. height:740px;
  924. display:flex;
  925. }
  926. #u25581 .text {
  927. position:absolute;
  928. align-self:center;
  929. padding:2px 2px 2px 2px;
  930. box-sizing:border-box;
  931. width:100%;
  932. }
  933. #u25581_text {
  934. border-width:0px;
  935. word-wrap:break-word;
  936. text-transform:none;
  937. visibility:hidden;
  938. }
  939. #u25582_div {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:375px;
  945. height:700px;
  946. background:inherit;
  947. background-color:rgba(255, 255, 255, 1);
  948. border:none;
  949. border-top:0px;
  950. border-radius:25px;
  951. border-top-left-radius:0px;
  952. border-top-right-radius:0px;
  953. -moz-box-shadow:none;
  954. -webkit-box-shadow:none;
  955. box-shadow:none;
  956. }
  957. #u25582 {
  958. border-width:0px;
  959. position:absolute;
  960. left:29px;
  961. top:145px;
  962. width:375px;
  963. height:700px;
  964. display:flex;
  965. }
  966. #u25582 .text {
  967. position:absolute;
  968. align-self:center;
  969. padding:2px 2px 2px 2px;
  970. box-sizing:border-box;
  971. width:100%;
  972. }
  973. #u25582_text {
  974. border-width:0px;
  975. word-wrap:break-word;
  976. text-transform:none;
  977. visibility:hidden;
  978. }
  979. #u25583 {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:0px;
  985. height:0px;
  986. }
  987. #u25584_img {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:11px;
  993. height:18px;
  994. }
  995. #u25584 {
  996. border-width:0px;
  997. position:absolute;
  998. left:40px;
  999. top:79px;
  1000. width:11px;
  1001. height:18px;
  1002. display:flex;
  1003. }
  1004. #u25584 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u25584_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. visibility:hidden;
  1016. }
  1017. #u25585_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:65px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#000000;
  1036. }
  1037. #u25585 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:184px;
  1041. top:78px;
  1042. width:65px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#000000;
  1050. }
  1051. #u25585 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u25585_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u25586_div {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:329px;
  1069. height:40px;
  1070. background:inherit;
  1071. background-color:rgba(170, 170, 170, 0);
  1072. border:none;
  1073. border-radius:19px;
  1074. -moz-box-shadow:none;
  1075. -webkit-box-shadow:none;
  1076. box-shadow:none;
  1077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1078. font-weight:400;
  1079. font-style:normal;
  1080. font-size:14px;
  1081. color:#7F7F7F;
  1082. text-align:center;
  1083. line-height:30px;
  1084. }
  1085. #u25586 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:52px;
  1089. top:795px;
  1090. width:329px;
  1091. height:40px;
  1092. display:flex;
  1093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1094. font-weight:400;
  1095. font-style:normal;
  1096. font-size:14px;
  1097. color:#7F7F7F;
  1098. text-align:center;
  1099. line-height:30px;
  1100. }
  1101. #u25586 .text {
  1102. position:absolute;
  1103. align-self:center;
  1104. padding:0px 0px 0px 0px;
  1105. box-sizing:border-box;
  1106. width:100%;
  1107. }
  1108. #u25586_text {
  1109. border-width:0px;
  1110. word-wrap:break-word;
  1111. text-transform:none;
  1112. }
  1113. #u25587_div {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:0px;
  1117. top:0px;
  1118. width:70px;
  1119. height:30px;
  1120. background:inherit;
  1121. background-color:rgba(255, 255, 255, 0);
  1122. box-sizing:border-box;
  1123. border-width:1px;
  1124. border-style:solid;
  1125. border-color:rgba(24, 144, 255, 1);
  1126. border-radius:26px;
  1127. -moz-box-shadow:none;
  1128. -webkit-box-shadow:none;
  1129. box-shadow:none;
  1130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1131. font-weight:400;
  1132. font-style:normal;
  1133. font-size:12px;
  1134. color:#1890FF;
  1135. text-align:center;
  1136. }
  1137. #u25587 {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:40px;
  1141. top:110px;
  1142. width:70px;
  1143. height:30px;
  1144. display:flex;
  1145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1146. font-weight:400;
  1147. font-style:normal;
  1148. font-size:12px;
  1149. color:#1890FF;
  1150. text-align:center;
  1151. }
  1152. #u25587 .text {
  1153. position:absolute;
  1154. align-self:center;
  1155. padding:0px 0px 0px 0px;
  1156. box-sizing:border-box;
  1157. width:100%;
  1158. }
  1159. #u25587_text {
  1160. border-width:0px;
  1161. word-wrap:break-word;
  1162. text-transform:none;
  1163. }
  1164. #u25588_div {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:0px;
  1168. top:0px;
  1169. width:70px;
  1170. height:30px;
  1171. background:inherit;
  1172. background-color:rgba(255, 255, 255, 0);
  1173. box-sizing:border-box;
  1174. border-width:1px;
  1175. border-style:solid;
  1176. border-color:rgba(215, 215, 215, 1);
  1177. border-radius:26px;
  1178. -moz-box-shadow:none;
  1179. -webkit-box-shadow:none;
  1180. box-shadow:none;
  1181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1182. font-weight:400;
  1183. font-style:normal;
  1184. font-size:12px;
  1185. color:#7F7F7F;
  1186. text-align:center;
  1187. }
  1188. #u25588 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:117px;
  1192. top:110px;
  1193. width:70px;
  1194. height:30px;
  1195. display:flex;
  1196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1197. font-weight:400;
  1198. font-style:normal;
  1199. font-size:12px;
  1200. color:#7F7F7F;
  1201. text-align:center;
  1202. }
  1203. #u25588 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u25588_text {
  1211. border-width:0px;
  1212. word-wrap:break-word;
  1213. text-transform:none;
  1214. }
  1215. #u25589_div {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:70px;
  1221. height:30px;
  1222. background:inherit;
  1223. background-color:rgba(255, 255, 255, 0);
  1224. box-sizing:border-box;
  1225. border-width:1px;
  1226. border-style:solid;
  1227. border-color:rgba(215, 215, 215, 1);
  1228. border-radius:26px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:12px;
  1236. color:#7F7F7F;
  1237. text-align:center;
  1238. }
  1239. #u25589 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:194px;
  1243. top:110px;
  1244. width:70px;
  1245. height:30px;
  1246. display:flex;
  1247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1248. font-weight:400;
  1249. font-style:normal;
  1250. font-size:12px;
  1251. color:#7F7F7F;
  1252. text-align:center;
  1253. }
  1254. #u25589 .text {
  1255. position:absolute;
  1256. align-self:center;
  1257. padding:0px 0px 0px 0px;
  1258. box-sizing:border-box;
  1259. width:100%;
  1260. }
  1261. #u25589_text {
  1262. border-width:0px;
  1263. word-wrap:break-word;
  1264. text-transform:none;
  1265. }
  1266. #u25590 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:0px;
  1270. top:0px;
  1271. width:0px;
  1272. height:0px;
  1273. }
  1274. #u25591_div {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:0px;
  1278. top:0px;
  1279. width:353px;
  1280. height:100px;
  1281. background:inherit;
  1282. background-color:rgba(255, 255, 255, 1);
  1283. border:none;
  1284. border-radius:4px;
  1285. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1286. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1287. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1288. }
  1289. #u25591 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:40px;
  1293. top:298px;
  1294. width:353px;
  1295. height:100px;
  1296. display:flex;
  1297. }
  1298. #u25591 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u25591_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u25592_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:91px;
  1317. height:30px;
  1318. background:inherit;
  1319. background-color:rgba(255, 255, 255, 0);
  1320. border:none;
  1321. border-left:0px;
  1322. border-top:0px;
  1323. border-right:0px;
  1324. border-radius:0px;
  1325. border-bottom-right-radius:0px;
  1326. border-bottom-left-radius:0px;
  1327. -moz-box-shadow:none;
  1328. -webkit-box-shadow:none;
  1329. box-shadow:none;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:18px;
  1334. line-height:30px;
  1335. }
  1336. #u25592 {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:155px;
  1340. top:308px;
  1341. width:91px;
  1342. height:30px;
  1343. display:flex;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:18px;
  1348. line-height:30px;
  1349. }
  1350. #u25592 .text {
  1351. position:absolute;
  1352. align-self:flex-start;
  1353. padding:0px 0px 0px 0px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u25592_text {
  1358. border-width:0px;
  1359. white-space:nowrap;
  1360. text-transform:none;
  1361. }
  1362. #u25593 {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:0px;
  1366. top:0px;
  1367. width:0px;
  1368. height:0px;
  1369. }
  1370. #u25594_img {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:7px;
  1376. height:11px;
  1377. }
  1378. #u25594 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:155px;
  1382. top:372px;
  1383. width:7px;
  1384. height:11px;
  1385. display:flex;
  1386. }
  1387. #u25594 .text {
  1388. position:absolute;
  1389. align-self:center;
  1390. padding:2px 2px 2px 2px;
  1391. box-sizing:border-box;
  1392. width:100%;
  1393. }
  1394. #u25594_text {
  1395. border-width:0px;
  1396. word-wrap:break-word;
  1397. text-transform:none;
  1398. visibility:hidden;
  1399. }
  1400. #u25595_div {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:157px;
  1406. height:17px;
  1407. background:inherit;
  1408. background-color:rgba(255, 255, 255, 0);
  1409. border:none;
  1410. border-left:0px;
  1411. border-top:0px;
  1412. border-right:0px;
  1413. border-radius:0px;
  1414. border-bottom-right-radius:0px;
  1415. border-bottom-left-radius:0px;
  1416. -moz-box-shadow:none;
  1417. -webkit-box-shadow:none;
  1418. box-shadow:none;
  1419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1420. font-weight:400;
  1421. font-style:normal;
  1422. font-size:12px;
  1423. color:#AAAAAA;
  1424. }
  1425. #u25595 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:166px;
  1429. top:369px;
  1430. width:157px;
  1431. height:17px;
  1432. display:flex;
  1433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1434. font-weight:400;
  1435. font-style:normal;
  1436. font-size:12px;
  1437. color:#AAAAAA;
  1438. }
  1439. #u25595 .text {
  1440. position:absolute;
  1441. align-self:flex-start;
  1442. padding:0px 0px 0px 0px;
  1443. box-sizing:border-box;
  1444. width:100%;
  1445. }
  1446. #u25595_text {
  1447. border-width:0px;
  1448. white-space:nowrap;
  1449. text-transform:none;
  1450. }
  1451. #u25596 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:0px;
  1455. top:0px;
  1456. width:0px;
  1457. height:0px;
  1458. }
  1459. #u25597_div {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:73px;
  1465. height:30px;
  1466. background:inherit;
  1467. background-color:rgba(255, 255, 255, 0);
  1468. border:none;
  1469. border-left:0px;
  1470. border-top:0px;
  1471. border-right:0px;
  1472. border-radius:0px;
  1473. border-bottom-right-radius:0px;
  1474. border-bottom-left-radius:0px;
  1475. -moz-box-shadow:none;
  1476. -webkit-box-shadow:none;
  1477. box-shadow:none;
  1478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1479. font-weight:400;
  1480. font-style:normal;
  1481. font-size:12px;
  1482. line-height:30px;
  1483. }
  1484. #u25597 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:155px;
  1488. top:339px;
  1489. width:73px;
  1490. height:30px;
  1491. display:flex;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:12px;
  1496. line-height:30px;
  1497. }
  1498. #u25597 .text {
  1499. position:absolute;
  1500. align-self:flex-start;
  1501. padding:0px 0px 0px 0px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u25597_text {
  1506. border-width:0px;
  1507. white-space:nowrap;
  1508. text-transform:none;
  1509. }
  1510. #u25598_div {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:0px;
  1514. top:0px;
  1515. width:37px;
  1516. height:17px;
  1517. background:inherit;
  1518. background-color:rgba(255, 255, 255, 0);
  1519. border:none;
  1520. border-left:0px;
  1521. border-top:0px;
  1522. border-right:0px;
  1523. border-radius:0px;
  1524. border-bottom-right-radius:0px;
  1525. border-bottom-left-radius:0px;
  1526. -moz-box-shadow:none;
  1527. -webkit-box-shadow:none;
  1528. box-shadow:none;
  1529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1530. font-weight:400;
  1531. font-style:normal;
  1532. font-size:12px;
  1533. color:#F59A23;
  1534. }
  1535. #u25598 {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:346px;
  1539. top:308px;
  1540. width:37px;
  1541. height:17px;
  1542. display:flex;
  1543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1544. font-weight:400;
  1545. font-style:normal;
  1546. font-size:12px;
  1547. color:#F59A23;
  1548. }
  1549. #u25598 .text {
  1550. position:absolute;
  1551. align-self:flex-start;
  1552. padding:0px 0px 0px 0px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u25598_text {
  1557. border-width:0px;
  1558. white-space:nowrap;
  1559. text-transform:none;
  1560. }
  1561. #u25599_img {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:0px;
  1565. top:0px;
  1566. width:82px;
  1567. height:80px;
  1568. }
  1569. #u25599 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:50px;
  1573. top:308px;
  1574. width:82px;
  1575. height:80px;
  1576. display:flex;
  1577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1578. font-weight:400;
  1579. font-style:normal;
  1580. color:#AAAAAA;
  1581. }
  1582. #u25599 .text {
  1583. position:absolute;
  1584. align-self:center;
  1585. padding:2px 2px 2px 2px;
  1586. box-sizing:border-box;
  1587. width:100%;
  1588. }
  1589. #u25599_text {
  1590. border-width:0px;
  1591. word-wrap:break-word;
  1592. text-transform:none;
  1593. }
  1594. #u25600_div {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:366px;
  1600. height:280px;
  1601. background:inherit;
  1602. background-color:rgba(255, 255, 255, 0);
  1603. border:none;
  1604. border-left:0px;
  1605. border-top:0px;
  1606. border-right:0px;
  1607. border-radius:0px;
  1608. border-bottom-right-radius:0px;
  1609. border-bottom-left-radius:0px;
  1610. -moz-box-shadow:none;
  1611. -webkit-box-shadow:none;
  1612. box-shadow:none;
  1613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1614. font-weight:400;
  1615. font-style:normal;
  1616. font-size:12px;
  1617. }
  1618. #u25600 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:15px;
  1622. top:873px;
  1623. width:366px;
  1624. height:280px;
  1625. display:flex;
  1626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1627. font-weight:400;
  1628. font-style:normal;
  1629. font-size:12px;
  1630. }
  1631. #u25600 .text {
  1632. position:absolute;
  1633. align-self:flex-start;
  1634. padding:0px 0px 0px 0px;
  1635. box-sizing:border-box;
  1636. width:100%;
  1637. }
  1638. #u25600_text {
  1639. border-width:0px;
  1640. word-wrap:break-word;
  1641. text-transform:none;
  1642. }
  1643. #u25601 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:0px;
  1647. top:0px;
  1648. width:0px;
  1649. height:0px;
  1650. }
  1651. #u25602_div {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:353px;
  1657. height:100px;
  1658. background:inherit;
  1659. background-color:rgba(255, 255, 255, 1);
  1660. border:none;
  1661. border-radius:4px;
  1662. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1663. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1664. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1665. }
  1666. #u25602 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:40px;
  1670. top:188px;
  1671. width:353px;
  1672. height:100px;
  1673. display:flex;
  1674. }
  1675. #u25602 .text {
  1676. position:absolute;
  1677. align-self:center;
  1678. padding:2px 2px 2px 2px;
  1679. box-sizing:border-box;
  1680. width:100%;
  1681. }
  1682. #u25602_text {
  1683. border-width:0px;
  1684. word-wrap:break-word;
  1685. text-transform:none;
  1686. visibility:hidden;
  1687. }
  1688. #u25603_div {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:91px;
  1694. height:30px;
  1695. background:inherit;
  1696. background-color:rgba(255, 255, 255, 0);
  1697. border:none;
  1698. border-left:0px;
  1699. border-top:0px;
  1700. border-right:0px;
  1701. border-radius:0px;
  1702. border-bottom-right-radius:0px;
  1703. border-bottom-left-radius:0px;
  1704. -moz-box-shadow:none;
  1705. -webkit-box-shadow:none;
  1706. box-shadow:none;
  1707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:18px;
  1711. line-height:30px;
  1712. }
  1713. #u25603 {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:155px;
  1717. top:198px;
  1718. width:91px;
  1719. height:30px;
  1720. display:flex;
  1721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:18px;
  1725. line-height:30px;
  1726. }
  1727. #u25603 .text {
  1728. position:absolute;
  1729. align-self:flex-start;
  1730. padding:0px 0px 0px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u25603_text {
  1735. border-width:0px;
  1736. white-space:nowrap;
  1737. text-transform:none;
  1738. }
  1739. #u25604 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:0px;
  1745. height:0px;
  1746. }
  1747. #u25605_img {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:7px;
  1753. height:11px;
  1754. }
  1755. #u25605 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:155px;
  1759. top:262px;
  1760. width:7px;
  1761. height:11px;
  1762. display:flex;
  1763. }
  1764. #u25605 .text {
  1765. position:absolute;
  1766. align-self:center;
  1767. padding:2px 2px 2px 2px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u25605_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. visibility:hidden;
  1776. }
  1777. #u25606_div {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:157px;
  1783. height:17px;
  1784. background:inherit;
  1785. background-color:rgba(255, 255, 255, 0);
  1786. border:none;
  1787. border-left:0px;
  1788. border-top:0px;
  1789. border-right:0px;
  1790. border-radius:0px;
  1791. border-bottom-right-radius:0px;
  1792. border-bottom-left-radius:0px;
  1793. -moz-box-shadow:none;
  1794. -webkit-box-shadow:none;
  1795. box-shadow:none;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:12px;
  1800. color:#AAAAAA;
  1801. }
  1802. #u25606 {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:166px;
  1806. top:259px;
  1807. width:157px;
  1808. height:17px;
  1809. display:flex;
  1810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:12px;
  1814. color:#AAAAAA;
  1815. }
  1816. #u25606 .text {
  1817. position:absolute;
  1818. align-self:flex-start;
  1819. padding:0px 0px 0px 0px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u25606_text {
  1824. border-width:0px;
  1825. white-space:nowrap;
  1826. text-transform:none;
  1827. }
  1828. #u25607 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:0px;
  1834. height:0px;
  1835. }
  1836. #u25608_div {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:73px;
  1842. height:30px;
  1843. background:inherit;
  1844. background-color:rgba(255, 255, 255, 0);
  1845. border:none;
  1846. border-left:0px;
  1847. border-top:0px;
  1848. border-right:0px;
  1849. border-radius:0px;
  1850. border-bottom-right-radius:0px;
  1851. border-bottom-left-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. line-height:30px;
  1860. }
  1861. #u25608 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:155px;
  1865. top:229px;
  1866. width:73px;
  1867. height:30px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. line-height:30px;
  1874. }
  1875. #u25608 .text {
  1876. position:absolute;
  1877. align-self:flex-start;
  1878. padding:0px 0px 0px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u25608_text {
  1883. border-width:0px;
  1884. white-space:nowrap;
  1885. text-transform:none;
  1886. }
  1887. #u25609_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:82px;
  1893. height:80px;
  1894. }
  1895. #u25609 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:50px;
  1899. top:198px;
  1900. width:82px;
  1901. height:80px;
  1902. display:flex;
  1903. }
  1904. #u25609 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:2px 2px 2px 2px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u25609_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. visibility:hidden;
  1916. }
  1917. #u25610 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:0px;
  1923. height:0px;
  1924. }
  1925. #u25611_div {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:353px;
  1931. height:100px;
  1932. background:inherit;
  1933. background-color:rgba(255, 255, 255, 1);
  1934. border:none;
  1935. border-radius:4px;
  1936. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1937. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1938. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1939. }
  1940. #u25611 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:40px;
  1944. top:408px;
  1945. width:353px;
  1946. height:100px;
  1947. display:flex;
  1948. }
  1949. #u25611 .text {
  1950. position:absolute;
  1951. align-self:center;
  1952. padding:2px 2px 2px 2px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u25611_text {
  1957. border-width:0px;
  1958. word-wrap:break-word;
  1959. text-transform:none;
  1960. visibility:hidden;
  1961. }
  1962. #u25612_div {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:91px;
  1968. height:30px;
  1969. background:inherit;
  1970. background-color:rgba(255, 255, 255, 0);
  1971. border:none;
  1972. border-left:0px;
  1973. border-top:0px;
  1974. border-right:0px;
  1975. border-radius:0px;
  1976. border-bottom-right-radius:0px;
  1977. border-bottom-left-radius:0px;
  1978. -moz-box-shadow:none;
  1979. -webkit-box-shadow:none;
  1980. box-shadow:none;
  1981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:18px;
  1985. line-height:30px;
  1986. }
  1987. #u25612 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:155px;
  1991. top:418px;
  1992. width:91px;
  1993. height:30px;
  1994. display:flex;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:18px;
  1999. line-height:30px;
  2000. }
  2001. #u25612 .text {
  2002. position:absolute;
  2003. align-self:flex-start;
  2004. padding:0px 0px 0px 0px;
  2005. box-sizing:border-box;
  2006. width:100%;
  2007. }
  2008. #u25612_text {
  2009. border-width:0px;
  2010. white-space:nowrap;
  2011. text-transform:none;
  2012. }
  2013. #u25613 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:0px;
  2019. height:0px;
  2020. }
  2021. #u25614_img {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:7px;
  2027. height:11px;
  2028. }
  2029. #u25614 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:155px;
  2033. top:482px;
  2034. width:7px;
  2035. height:11px;
  2036. display:flex;
  2037. }
  2038. #u25614 .text {
  2039. position:absolute;
  2040. align-self:center;
  2041. padding:2px 2px 2px 2px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u25614_text {
  2046. border-width:0px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. visibility:hidden;
  2050. }
  2051. #u25615_div {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:157px;
  2057. height:17px;
  2058. background:inherit;
  2059. background-color:rgba(255, 255, 255, 0);
  2060. border:none;
  2061. border-left:0px;
  2062. border-top:0px;
  2063. border-right:0px;
  2064. border-radius:0px;
  2065. border-bottom-right-radius:0px;
  2066. border-bottom-left-radius:0px;
  2067. -moz-box-shadow:none;
  2068. -webkit-box-shadow:none;
  2069. box-shadow:none;
  2070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2071. font-weight:400;
  2072. font-style:normal;
  2073. font-size:12px;
  2074. color:#AAAAAA;
  2075. }
  2076. #u25615 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:166px;
  2080. top:479px;
  2081. width:157px;
  2082. height:17px;
  2083. display:flex;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:12px;
  2088. color:#AAAAAA;
  2089. }
  2090. #u25615 .text {
  2091. position:absolute;
  2092. align-self:flex-start;
  2093. padding:0px 0px 0px 0px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u25615_text {
  2098. border-width:0px;
  2099. white-space:nowrap;
  2100. text-transform:none;
  2101. }
  2102. #u25616 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:0px;
  2108. height:0px;
  2109. }
  2110. #u25617_div {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:73px;
  2116. height:30px;
  2117. background:inherit;
  2118. background-color:rgba(255, 255, 255, 0);
  2119. border:none;
  2120. border-left:0px;
  2121. border-top:0px;
  2122. border-right:0px;
  2123. border-radius:0px;
  2124. border-bottom-right-radius:0px;
  2125. border-bottom-left-radius:0px;
  2126. -moz-box-shadow:none;
  2127. -webkit-box-shadow:none;
  2128. box-shadow:none;
  2129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:12px;
  2133. line-height:30px;
  2134. }
  2135. #u25617 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:155px;
  2139. top:449px;
  2140. width:73px;
  2141. height:30px;
  2142. display:flex;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. font-size:12px;
  2147. line-height:30px;
  2148. }
  2149. #u25617 .text {
  2150. position:absolute;
  2151. align-self:flex-start;
  2152. padding:0px 0px 0px 0px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u25617_text {
  2157. border-width:0px;
  2158. white-space:nowrap;
  2159. text-transform:none;
  2160. }
  2161. #u25618_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:37px;
  2167. height:17px;
  2168. background:inherit;
  2169. background-color:rgba(255, 255, 255, 0);
  2170. border:none;
  2171. border-left:0px;
  2172. border-top:0px;
  2173. border-right:0px;
  2174. border-radius:0px;
  2175. border-bottom-right-radius:0px;
  2176. border-bottom-left-radius:0px;
  2177. -moz-box-shadow:none;
  2178. -webkit-box-shadow:none;
  2179. box-shadow:none;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:12px;
  2184. color:#D7D7D7;
  2185. }
  2186. #u25618 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:346px;
  2190. top:418px;
  2191. width:37px;
  2192. height:17px;
  2193. display:flex;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:12px;
  2198. color:#D7D7D7;
  2199. }
  2200. #u25618 .text {
  2201. position:absolute;
  2202. align-self:flex-start;
  2203. padding:0px 0px 0px 0px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u25618_text {
  2208. border-width:0px;
  2209. white-space:nowrap;
  2210. text-transform:none;
  2211. }
  2212. #u25619_img {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:82px;
  2218. height:80px;
  2219. }
  2220. #u25619 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:52px;
  2224. top:418px;
  2225. width:82px;
  2226. height:80px;
  2227. display:flex;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. color:#AAAAAA;
  2232. }
  2233. #u25619 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 2px 2px 2px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u25619_text {
  2241. border-width:0px;
  2242. word-wrap:break-word;
  2243. text-transform:none;
  2244. }
  2245. #u25620_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:798px;
  2251. height:750px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 0);
  2254. border:none;
  2255. border-left:0px;
  2256. border-top:0px;
  2257. border-right:0px;
  2258. border-radius:0px;
  2259. border-bottom-right-radius:0px;
  2260. border-bottom-left-radius:0px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:18px;
  2268. color:#D9001B;
  2269. line-height:30px;
  2270. }
  2271. #u25620 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:2317px;
  2275. top:355px;
  2276. width:798px;
  2277. height:750px;
  2278. display:flex;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:18px;
  2283. color:#D9001B;
  2284. line-height:30px;
  2285. }
  2286. #u25620 .text {
  2287. position:absolute;
  2288. align-self:flex-start;
  2289. padding:0px 0px 0px 0px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u25620_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. }
  2298. #u25621 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:0px;
  2304. height:0px;
  2305. }
  2306. #u25622_div {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:346px;
  2312. height:220px;
  2313. background:inherit;
  2314. background-color:rgba(255, 255, 255, 1);
  2315. border:none;
  2316. border-radius:9px;
  2317. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2318. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2319. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2320. }
  2321. #u25622 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:2318px;
  2325. top:89px;
  2326. width:346px;
  2327. height:220px;
  2328. display:flex;
  2329. }
  2330. #u25622 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:2px 2px 2px 2px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u25622_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. visibility:hidden;
  2342. }
  2343. #u25623_div {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:49px;
  2349. height:33px;
  2350. background:inherit;
  2351. background-color:rgba(255, 255, 255, 0);
  2352. border:none;
  2353. border-radius:0px;
  2354. -moz-box-shadow:none;
  2355. -webkit-box-shadow:none;
  2356. box-shadow:none;
  2357. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2358. font-weight:650;
  2359. font-style:normal;
  2360. font-size:24px;
  2361. text-align:center;
  2362. }
  2363. #u25623 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:2467px;
  2367. top:113px;
  2368. width:49px;
  2369. height:33px;
  2370. display:flex;
  2371. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2372. font-weight:650;
  2373. font-style:normal;
  2374. font-size:24px;
  2375. text-align:center;
  2376. }
  2377. #u25623 .text {
  2378. position:absolute;
  2379. align-self:center;
  2380. padding:0px 0px 0px 0px;
  2381. box-sizing:border-box;
  2382. width:100%;
  2383. }
  2384. #u25623_text {
  2385. border-width:0px;
  2386. white-space:nowrap;
  2387. text-transform:none;
  2388. }
  2389. #u25624_div {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:173px;
  2395. height:60px;
  2396. background:inherit;
  2397. background-color:rgba(255, 255, 255, 0);
  2398. box-sizing:border-box;
  2399. border-width:1px;
  2400. border-style:solid;
  2401. border-color:rgba(215, 215, 215, 1);
  2402. border-left:0px;
  2403. border-bottom:0px;
  2404. border-radius:0px;
  2405. border-top-left-radius:0px;
  2406. border-bottom-right-radius:0px;
  2407. -moz-box-shadow:none;
  2408. -webkit-box-shadow:none;
  2409. box-shadow:none;
  2410. font-family:'ArialMT', 'Arial', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:22px;
  2414. color:#0099FF;
  2415. text-align:center;
  2416. }
  2417. #u25624 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:2317px;
  2421. top:249px;
  2422. width:173px;
  2423. height:60px;
  2424. display:flex;
  2425. font-family:'ArialMT', 'Arial', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:22px;
  2429. color:#0099FF;
  2430. text-align:center;
  2431. }
  2432. #u25624 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:0px 0px 0px 0px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u25624_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. }
  2444. #u25625_div {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:300px;
  2450. height:50px;
  2451. background:inherit;
  2452. background-color:rgba(255, 255, 255, 0);
  2453. border:none;
  2454. border-radius:0px;
  2455. -moz-box-shadow:none;
  2456. -webkit-box-shadow:none;
  2457. box-shadow:none;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:18px;
  2462. color:#555555;
  2463. text-align:center;
  2464. }
  2465. #u25625 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:2340px;
  2469. top:169px;
  2470. width:300px;
  2471. height:50px;
  2472. display:flex;
  2473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:18px;
  2477. color:#555555;
  2478. text-align:center;
  2479. }
  2480. #u25625 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:0px 0px 0px 0px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u25625_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. }
  2492. #u25626_div {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:173px;
  2498. height:60px;
  2499. background:inherit;
  2500. background-color:rgba(255, 255, 255, 0);
  2501. box-sizing:border-box;
  2502. border-width:1px;
  2503. border-style:solid;
  2504. border-color:rgba(215, 215, 215, 1);
  2505. border-left:0px;
  2506. border-right:0px;
  2507. border-bottom:0px;
  2508. border-radius:0px;
  2509. border-top-left-radius:0px;
  2510. border-top-right-radius:0px;
  2511. -moz-box-shadow:none;
  2512. -webkit-box-shadow:none;
  2513. box-shadow:none;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:22px;
  2518. color:#0099FF;
  2519. text-align:center;
  2520. }
  2521. #u25626 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:2490px;
  2525. top:249px;
  2526. width:173px;
  2527. height:60px;
  2528. display:flex;
  2529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:22px;
  2533. color:#0099FF;
  2534. text-align:center;
  2535. }
  2536. #u25626 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:0px 0px 0px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u25626_text {
  2544. border-width:0px;
  2545. word-wrap:break-word;
  2546. text-transform:none;
  2547. }
  2548. #u25627 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:0px;
  2554. height:0px;
  2555. }
  2556. #u25628_div {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:346px;
  2562. height:220px;
  2563. background:inherit;
  2564. background-color:rgba(255, 255, 255, 1);
  2565. border:none;
  2566. border-radius:9px;
  2567. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2568. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2569. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2570. }
  2571. #u25628 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:2700px;
  2575. top:89px;
  2576. width:346px;
  2577. height:220px;
  2578. display:flex;
  2579. }
  2580. #u25628 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 2px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u25628_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. visibility:hidden;
  2592. }
  2593. #u25629_div {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:49px;
  2599. height:33px;
  2600. background:inherit;
  2601. background-color:rgba(255, 255, 255, 0);
  2602. border:none;
  2603. border-radius:0px;
  2604. -moz-box-shadow:none;
  2605. -webkit-box-shadow:none;
  2606. box-shadow:none;
  2607. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2608. font-weight:650;
  2609. font-style:normal;
  2610. font-size:24px;
  2611. text-align:center;
  2612. }
  2613. #u25629 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:2849px;
  2617. top:113px;
  2618. width:49px;
  2619. height:33px;
  2620. display:flex;
  2621. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2622. font-weight:650;
  2623. font-style:normal;
  2624. font-size:24px;
  2625. text-align:center;
  2626. }
  2627. #u25629 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:0px 0px 0px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u25629_text {
  2635. border-width:0px;
  2636. white-space:nowrap;
  2637. text-transform:none;
  2638. }
  2639. #u25630_div {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:173px;
  2645. height:60px;
  2646. background:inherit;
  2647. background-color:rgba(255, 255, 255, 0);
  2648. box-sizing:border-box;
  2649. border-width:1px;
  2650. border-style:solid;
  2651. border-color:rgba(215, 215, 215, 1);
  2652. border-left:0px;
  2653. border-bottom:0px;
  2654. border-radius:0px;
  2655. border-top-left-radius:0px;
  2656. border-bottom-right-radius:0px;
  2657. -moz-box-shadow:none;
  2658. -webkit-box-shadow:none;
  2659. box-shadow:none;
  2660. font-family:'ArialMT', 'Arial', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:22px;
  2664. color:#0099FF;
  2665. text-align:center;
  2666. }
  2667. #u25630 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:2699px;
  2671. top:249px;
  2672. width:173px;
  2673. height:60px;
  2674. display:flex;
  2675. font-family:'ArialMT', 'Arial', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:22px;
  2679. color:#0099FF;
  2680. text-align:center;
  2681. }
  2682. #u25630 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:0px 0px 0px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u25630_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. }
  2694. #u25631_div {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:300px;
  2700. height:25px;
  2701. background:inherit;
  2702. background-color:rgba(255, 255, 255, 0);
  2703. border:none;
  2704. border-radius:0px;
  2705. -moz-box-shadow:none;
  2706. -webkit-box-shadow:none;
  2707. box-shadow:none;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:18px;
  2712. color:#555555;
  2713. text-align:center;
  2714. }
  2715. #u25631 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:2722px;
  2719. top:182px;
  2720. width:300px;
  2721. height:25px;
  2722. display:flex;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:18px;
  2727. color:#555555;
  2728. text-align:center;
  2729. }
  2730. #u25631 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:0px 0px 0px 0px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u25631_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. }
  2742. #u25632_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:173px;
  2748. height:60px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 0);
  2751. box-sizing:border-box;
  2752. border-width:1px;
  2753. border-style:solid;
  2754. border-color:rgba(215, 215, 215, 1);
  2755. border-left:0px;
  2756. border-right:0px;
  2757. border-bottom:0px;
  2758. border-radius:0px;
  2759. border-top-left-radius:0px;
  2760. border-top-right-radius:0px;
  2761. -moz-box-shadow:none;
  2762. -webkit-box-shadow:none;
  2763. box-shadow:none;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:22px;
  2768. color:#0099FF;
  2769. text-align:center;
  2770. }
  2771. #u25632 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:2872px;
  2775. top:249px;
  2776. width:173px;
  2777. height:60px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:22px;
  2783. color:#0099FF;
  2784. text-align:center;
  2785. }
  2786. #u25632 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:0px 0px 0px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u25632_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. }
  2798. #u25633 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:0px;
  2804. height:0px;
  2805. }
  2806. #u25634_div {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:346px;
  2812. height:220px;
  2813. background:inherit;
  2814. background-color:rgba(255, 255, 255, 1);
  2815. border:none;
  2816. border-radius:9px;
  2817. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2818. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2819. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2820. }
  2821. #u25634 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:3075px;
  2825. top:89px;
  2826. width:346px;
  2827. height:220px;
  2828. display:flex;
  2829. }
  2830. #u25634 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 2px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u25634_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u25635_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:49px;
  2849. height:33px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 0);
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2858. font-weight:650;
  2859. font-style:normal;
  2860. font-size:24px;
  2861. text-align:center;
  2862. }
  2863. #u25635 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:3224px;
  2867. top:113px;
  2868. width:49px;
  2869. height:33px;
  2870. display:flex;
  2871. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2872. font-weight:650;
  2873. font-style:normal;
  2874. font-size:24px;
  2875. text-align:center;
  2876. }
  2877. #u25635 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:0px 0px 0px 0px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u25635_text {
  2885. border-width:0px;
  2886. white-space:nowrap;
  2887. text-transform:none;
  2888. }
  2889. #u25636_div {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:173px;
  2895. height:60px;
  2896. background:inherit;
  2897. background-color:rgba(255, 255, 255, 0);
  2898. box-sizing:border-box;
  2899. border-width:1px;
  2900. border-style:solid;
  2901. border-color:rgba(215, 215, 215, 1);
  2902. border-left:0px;
  2903. border-bottom:0px;
  2904. border-radius:0px;
  2905. border-top-left-radius:0px;
  2906. border-bottom-right-radius:0px;
  2907. -moz-box-shadow:none;
  2908. -webkit-box-shadow:none;
  2909. box-shadow:none;
  2910. font-family:'ArialMT', 'Arial', sans-serif;
  2911. font-weight:400;
  2912. font-style:normal;
  2913. font-size:22px;
  2914. color:#0099FF;
  2915. text-align:center;
  2916. }
  2917. #u25636 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:3074px;
  2921. top:249px;
  2922. width:173px;
  2923. height:60px;
  2924. display:flex;
  2925. font-family:'ArialMT', 'Arial', sans-serif;
  2926. font-weight:400;
  2927. font-style:normal;
  2928. font-size:22px;
  2929. color:#0099FF;
  2930. text-align:center;
  2931. }
  2932. #u25636 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:0px 0px 0px 0px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u25636_text {
  2940. border-width:0px;
  2941. word-wrap:break-word;
  2942. text-transform:none;
  2943. }
  2944. #u25637_div {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:300px;
  2950. height:25px;
  2951. background:inherit;
  2952. background-color:rgba(255, 255, 255, 0);
  2953. border:none;
  2954. border-radius:0px;
  2955. -moz-box-shadow:none;
  2956. -webkit-box-shadow:none;
  2957. box-shadow:none;
  2958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2959. font-weight:400;
  2960. font-style:normal;
  2961. font-size:18px;
  2962. color:#555555;
  2963. text-align:center;
  2964. }
  2965. #u25637 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:3097px;
  2969. top:182px;
  2970. width:300px;
  2971. height:25px;
  2972. display:flex;
  2973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. font-size:18px;
  2977. color:#555555;
  2978. text-align:center;
  2979. }
  2980. #u25637 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:0px 0px 0px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u25637_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. }
  2992. #u25638_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:173px;
  2998. height:60px;
  2999. background:inherit;
  3000. background-color:rgba(255, 255, 255, 0);
  3001. box-sizing:border-box;
  3002. border-width:1px;
  3003. border-style:solid;
  3004. border-color:rgba(215, 215, 215, 1);
  3005. border-left:0px;
  3006. border-right:0px;
  3007. border-bottom:0px;
  3008. border-radius:0px;
  3009. border-top-left-radius:0px;
  3010. border-top-right-radius:0px;
  3011. -moz-box-shadow:none;
  3012. -webkit-box-shadow:none;
  3013. box-shadow:none;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:22px;
  3018. color:#0099FF;
  3019. text-align:center;
  3020. }
  3021. #u25638 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:3247px;
  3025. top:249px;
  3026. width:173px;
  3027. height:60px;
  3028. display:flex;
  3029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3030. font-weight:400;
  3031. font-style:normal;
  3032. font-size:22px;
  3033. color:#0099FF;
  3034. text-align:center;
  3035. }
  3036. #u25638 .text {
  3037. position:absolute;
  3038. align-self:center;
  3039. padding:0px 0px 0px 0px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u25638_text {
  3044. border-width:0px;
  3045. word-wrap:break-word;
  3046. text-transform:none;
  3047. }
  3048. #u25639 {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:0px;
  3054. height:0px;
  3055. }
  3056. #u25640_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:300px;
  3062. height:222px;
  3063. background:inherit;
  3064. background-color:rgba(255, 255, 255, 1);
  3065. border:none;
  3066. border-radius:10px;
  3067. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3068. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3069. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3070. }
  3071. #u25640 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:394px;
  3075. top:873px;
  3076. width:300px;
  3077. height:222px;
  3078. display:flex;
  3079. }
  3080. #u25640 .text {
  3081. position:absolute;
  3082. align-self:center;
  3083. padding:2px 2px 2px 2px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u25640_text {
  3088. border-width:0px;
  3089. word-wrap:break-word;
  3090. text-transform:none;
  3091. visibility:hidden;
  3092. }
  3093. #u25641_div {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:37px;
  3099. height:30px;
  3100. background:inherit;
  3101. background-color:rgba(255, 255, 255, 0);
  3102. border:none;
  3103. border-left:0px;
  3104. border-top:0px;
  3105. border-right:0px;
  3106. border-radius:0px;
  3107. border-bottom-right-radius:0px;
  3108. border-bottom-left-radius:0px;
  3109. -moz-box-shadow:none;
  3110. -webkit-box-shadow:none;
  3111. box-shadow:none;
  3112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3113. font-weight:400;
  3114. font-style:normal;
  3115. font-size:18px;
  3116. text-align:center;
  3117. line-height:30px;
  3118. }
  3119. #u25641 {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:526px;
  3123. top:891px;
  3124. width:37px;
  3125. height:30px;
  3126. display:flex;
  3127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3128. font-weight:400;
  3129. font-style:normal;
  3130. font-size:18px;
  3131. text-align:center;
  3132. line-height:30px;
  3133. }
  3134. #u25641 .text {
  3135. position:absolute;
  3136. align-self:flex-start;
  3137. padding:0px 0px 0px 0px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u25641_text {
  3142. border-width:0px;
  3143. white-space:nowrap;
  3144. text-transform:none;
  3145. }
  3146. #u25642_div {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:258px;
  3152. height:90px;
  3153. background:inherit;
  3154. background-color:rgba(255, 255, 255, 0);
  3155. border:none;
  3156. border-left:0px;
  3157. border-top:0px;
  3158. border-right:0px;
  3159. border-radius:0px;
  3160. border-bottom-right-radius:0px;
  3161. border-bottom-left-radius:0px;
  3162. -moz-box-shadow:none;
  3163. -webkit-box-shadow:none;
  3164. box-shadow:none;
  3165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:12px;
  3169. line-height:30px;
  3170. }
  3171. #u25642 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:415px;
  3175. top:931px;
  3176. width:258px;
  3177. height:90px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:12px;
  3183. line-height:30px;
  3184. }
  3185. #u25642 .text {
  3186. position:absolute;
  3187. align-self:flex-start;
  3188. padding:0px 0px 0px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u25642_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. }
  3197. #u25643_img {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:301px;
  3203. height:2px;
  3204. }
  3205. #u25643 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:394px;
  3209. top:1043px;
  3210. width:300px;
  3211. height:1px;
  3212. display:flex;
  3213. }
  3214. #u25643 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 2px 2px 2px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u25643_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. visibility:hidden;
  3226. }
  3227. #u25644_div {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:37px;
  3233. height:30px;
  3234. background:inherit;
  3235. background-color:rgba(255, 255, 255, 0);
  3236. border:none;
  3237. border-left:0px;
  3238. border-top:0px;
  3239. border-right:0px;
  3240. border-radius:0px;
  3241. border-bottom-right-radius:0px;
  3242. border-bottom-left-radius:0px;
  3243. -moz-box-shadow:none;
  3244. -webkit-box-shadow:none;
  3245. box-shadow:none;
  3246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3247. font-weight:400;
  3248. font-style:normal;
  3249. font-size:18px;
  3250. color:#1890FF;
  3251. text-align:center;
  3252. line-height:30px;
  3253. }
  3254. #u25644 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:609px;
  3258. top:1054px;
  3259. width:37px;
  3260. height:30px;
  3261. display:flex;
  3262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3263. font-weight:400;
  3264. font-style:normal;
  3265. font-size:18px;
  3266. color:#1890FF;
  3267. text-align:center;
  3268. line-height:30px;
  3269. }
  3270. #u25644 .text {
  3271. position:absolute;
  3272. align-self:flex-start;
  3273. padding:0px 0px 0px 0px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u25644_text {
  3278. border-width:0px;
  3279. white-space:nowrap;
  3280. text-transform:none;
  3281. }
  3282. #u25645_div {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:73px;
  3288. height:30px;
  3289. background:inherit;
  3290. background-color:rgba(255, 255, 255, 0);
  3291. border:none;
  3292. border-left:0px;
  3293. border-top:0px;
  3294. border-right:0px;
  3295. border-radius:0px;
  3296. border-bottom-right-radius:0px;
  3297. border-bottom-left-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:18px;
  3305. color:#1890FF;
  3306. text-align:center;
  3307. line-height:30px;
  3308. }
  3309. #u25645 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:436px;
  3313. top:1054px;
  3314. width:73px;
  3315. height:30px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:18px;
  3321. color:#1890FF;
  3322. text-align:center;
  3323. line-height:30px;
  3324. }
  3325. #u25645 .text {
  3326. position:absolute;
  3327. align-self:flex-start;
  3328. padding:0px 0px 0px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u25645_text {
  3333. border-width:0px;
  3334. white-space:nowrap;
  3335. text-transform:none;
  3336. }
  3337. #u25646_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:2px;
  3343. height:51px;
  3344. }
  3345. #u25646 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:544px;
  3349. top:1045px;
  3350. width:1px;
  3351. height:50px;
  3352. display:flex;
  3353. }
  3354. #u25646 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 2px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u25646_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. visibility:hidden;
  3366. }
  3367. #u25647 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:0px;
  3373. height:0px;
  3374. }
  3375. #u25648_div {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:375px;
  3381. height:40px;
  3382. background:inherit;
  3383. background-color:rgba(129, 211, 248, 0.0980392156862745);
  3384. border:none;
  3385. border-bottom:0px;
  3386. border-radius:3px;
  3387. border-bottom-right-radius:0px;
  3388. border-bottom-left-radius:0px;
  3389. -moz-box-shadow:none;
  3390. -webkit-box-shadow:none;
  3391. box-shadow:none;
  3392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3393. font-weight:400;
  3394. font-style:normal;
  3395. font-size:12px;
  3396. text-align:left;
  3397. line-height:20px;
  3398. }
  3399. #u25648 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:29px;
  3403. top:145px;
  3404. width:375px;
  3405. height:40px;
  3406. display:flex;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:12px;
  3411. text-align:left;
  3412. line-height:20px;
  3413. }
  3414. #u25648 .text {
  3415. position:absolute;
  3416. align-self:flex-start;
  3417. padding:10px 10px 10px 10px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u25648_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. }
  3426. #u25649 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:0px;
  3432. height:0px;
  3433. }
  3434. #u25650_img {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:6px;
  3440. height:10px;
  3441. }
  3442. #u25650 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:385px;
  3446. top:159px;
  3447. width:6px;
  3448. height:10px;
  3449. display:flex;
  3450. -webkit-transform:rotate(180deg);
  3451. -moz-transform:rotate(180deg);
  3452. -ms-transform:rotate(180deg);
  3453. transform:rotate(180deg);
  3454. }
  3455. #u25650 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 2px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u25650_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u25651 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:0px;
  3474. height:0px;
  3475. }
  3476. #u25652_div {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:375px;
  3482. height:740px;
  3483. background:inherit;
  3484. background-color:rgba(51, 51, 51, 0.533333333333333);
  3485. border:none;
  3486. border-top:0px;
  3487. border-radius:25px;
  3488. border-top-left-radius:0px;
  3489. border-top-right-radius:0px;
  3490. -moz-box-shadow:none;
  3491. -webkit-box-shadow:none;
  3492. box-shadow:none;
  3493. }
  3494. #u25652 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:1417px;
  3498. top:110px;
  3499. width:375px;
  3500. height:740px;
  3501. display:flex;
  3502. }
  3503. #u25652 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:2px 2px 2px 2px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u25652_text {
  3511. border-width:0px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. visibility:hidden;
  3515. }
  3516. #u25653_div {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:375px;
  3522. height:130px;
  3523. background:inherit;
  3524. background-color:rgba(242, 242, 242, 1);
  3525. border:none;
  3526. border-top:0px;
  3527. border-radius:25px;
  3528. border-top-left-radius:0px;
  3529. border-top-right-radius:0px;
  3530. -moz-box-shadow:none;
  3531. -webkit-box-shadow:none;
  3532. box-shadow:none;
  3533. }
  3534. #u25653 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:1417px;
  3538. top:720px;
  3539. width:375px;
  3540. height:130px;
  3541. display:flex;
  3542. }
  3543. #u25653 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 2px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u25653_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u25654 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:0px;
  3562. height:0px;
  3563. }
  3564. #u25655_div {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:375px;
  3570. height:60px;
  3571. background:inherit;
  3572. background-color:rgba(255, 255, 255, 1);
  3573. box-sizing:border-box;
  3574. border-width:1px;
  3575. border-style:solid;
  3576. border-color:rgba(242, 242, 242, 1);
  3577. border-left:0px;
  3578. border-right:0px;
  3579. border-radius:0px;
  3580. border-top-left-radius:0px;
  3581. border-top-right-radius:0px;
  3582. border-bottom-right-radius:0px;
  3583. border-bottom-left-radius:0px;
  3584. -moz-box-shadow:none;
  3585. -webkit-box-shadow:none;
  3586. box-shadow:none;
  3587. }
  3588. #u25655 {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:1417px;
  3592. top:720px;
  3593. width:375px;
  3594. height:60px;
  3595. display:flex;
  3596. }
  3597. #u25655 .text {
  3598. position:absolute;
  3599. align-self:center;
  3600. padding:2px 2px 2px 2px;
  3601. box-sizing:border-box;
  3602. width:100%;
  3603. }
  3604. #u25655_text {
  3605. border-width:0px;
  3606. word-wrap:break-word;
  3607. text-transform:none;
  3608. visibility:hidden;
  3609. }
  3610. #u25656_div {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:57px;
  3616. height:30px;
  3617. background:inherit;
  3618. background-color:rgba(255, 255, 255, 0);
  3619. border:none;
  3620. border-left:0px;
  3621. border-top:0px;
  3622. border-right:0px;
  3623. border-radius:0px;
  3624. border-bottom-right-radius:0px;
  3625. border-bottom-left-radius:0px;
  3626. -moz-box-shadow:none;
  3627. -webkit-box-shadow:none;
  3628. box-shadow:none;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:14px;
  3633. line-height:30px;
  3634. }
  3635. #u25656 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:1576px;
  3639. top:735px;
  3640. width:57px;
  3641. height:30px;
  3642. display:flex;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:14px;
  3647. line-height:30px;
  3648. }
  3649. #u25656 .text {
  3650. position:absolute;
  3651. align-self:flex-start;
  3652. padding:0px 0px 0px 0px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u25656_text {
  3657. border-width:0px;
  3658. white-space:nowrap;
  3659. text-transform:none;
  3660. }
  3661. #u25657 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:0px;
  3665. top:0px;
  3666. width:0px;
  3667. height:0px;
  3668. }
  3669. #u25658_div {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:375px;
  3675. height:60px;
  3676. background:inherit;
  3677. background-color:rgba(255, 255, 255, 1);
  3678. box-sizing:border-box;
  3679. border-width:1px;
  3680. border-style:solid;
  3681. border-color:rgba(242, 242, 242, 1);
  3682. border-top:0px;
  3683. border-radius:20px;
  3684. border-top-left-radius:0px;
  3685. border-top-right-radius:0px;
  3686. -moz-box-shadow:none;
  3687. -webkit-box-shadow:none;
  3688. box-shadow:none;
  3689. }
  3690. #u25658 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:1417px;
  3694. top:790px;
  3695. width:375px;
  3696. height:60px;
  3697. display:flex;
  3698. }
  3699. #u25658 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 2px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u25658_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. visibility:hidden;
  3711. }
  3712. #u25659_div {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:29px;
  3718. height:30px;
  3719. background:inherit;
  3720. background-color:rgba(255, 255, 255, 0);
  3721. border:none;
  3722. border-left:0px;
  3723. border-top:0px;
  3724. border-right:0px;
  3725. border-radius:0px;
  3726. border-bottom-right-radius:0px;
  3727. border-bottom-left-radius:0px;
  3728. -moz-box-shadow:none;
  3729. -webkit-box-shadow:none;
  3730. box-shadow:none;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:14px;
  3735. line-height:30px;
  3736. }
  3737. #u25659 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:1590px;
  3741. top:805px;
  3742. width:29px;
  3743. height:30px;
  3744. display:flex;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:14px;
  3749. line-height:30px;
  3750. }
  3751. #u25659 .text {
  3752. position:absolute;
  3753. align-self:flex-start;
  3754. padding:0px 0px 0px 0px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u25659_text {
  3759. border-width:0px;
  3760. white-space:nowrap;
  3761. text-transform:none;
  3762. }
  3763. #u25660 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:0px;
  3769. height:0px;
  3770. }
  3771. #u25661_div {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:375px;
  3777. height:740px;
  3778. background:inherit;
  3779. background-color:rgba(51, 51, 51, 0.533333333333333);
  3780. border:none;
  3781. border-top:0px;
  3782. border-radius:25px;
  3783. border-top-left-radius:0px;
  3784. border-top-right-radius:0px;
  3785. -moz-box-shadow:none;
  3786. -webkit-box-shadow:none;
  3787. box-shadow:none;
  3788. }
  3789. #u25661 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:955px;
  3793. top:110px;
  3794. width:375px;
  3795. height:740px;
  3796. display:flex;
  3797. }
  3798. #u25661 .text {
  3799. position:absolute;
  3800. align-self:center;
  3801. padding:2px 2px 2px 2px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u25661_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. visibility:hidden;
  3810. }
  3811. #u25662_div {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:375px;
  3817. height:130px;
  3818. background:inherit;
  3819. background-color:rgba(242, 242, 242, 1);
  3820. border:none;
  3821. border-top:0px;
  3822. border-radius:25px;
  3823. border-top-left-radius:0px;
  3824. border-top-right-radius:0px;
  3825. -moz-box-shadow:none;
  3826. -webkit-box-shadow:none;
  3827. box-shadow:none;
  3828. }
  3829. #u25662 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:955px;
  3833. top:720px;
  3834. width:375px;
  3835. height:130px;
  3836. display:flex;
  3837. }
  3838. #u25662 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 2px 2px 2px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u25662_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. visibility:hidden;
  3850. }
  3851. #u25663 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:0px;
  3857. height:0px;
  3858. }
  3859. #u25664_div {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:375px;
  3865. height:60px;
  3866. background:inherit;
  3867. background-color:rgba(255, 255, 255, 1);
  3868. box-sizing:border-box;
  3869. border-width:1px;
  3870. border-style:solid;
  3871. border-color:rgba(242, 242, 242, 1);
  3872. border-left:0px;
  3873. border-right:0px;
  3874. border-radius:0px;
  3875. border-top-left-radius:0px;
  3876. border-top-right-radius:0px;
  3877. border-bottom-right-radius:0px;
  3878. border-bottom-left-radius:0px;
  3879. -moz-box-shadow:none;
  3880. -webkit-box-shadow:none;
  3881. box-shadow:none;
  3882. }
  3883. #u25664 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:955px;
  3887. top:720px;
  3888. width:375px;
  3889. height:60px;
  3890. display:flex;
  3891. }
  3892. #u25664 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 2px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u25664_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u25665_div {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:57px;
  3911. height:30px;
  3912. background:inherit;
  3913. background-color:rgba(255, 255, 255, 0);
  3914. border:none;
  3915. border-left:0px;
  3916. border-top:0px;
  3917. border-right:0px;
  3918. border-radius:0px;
  3919. border-bottom-right-radius:0px;
  3920. border-bottom-left-radius:0px;
  3921. -moz-box-shadow:none;
  3922. -webkit-box-shadow:none;
  3923. box-shadow:none;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:14px;
  3928. line-height:30px;
  3929. }
  3930. #u25665 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:1114px;
  3934. top:735px;
  3935. width:57px;
  3936. height:30px;
  3937. display:flex;
  3938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:14px;
  3942. line-height:30px;
  3943. }
  3944. #u25665 .text {
  3945. position:absolute;
  3946. align-self:flex-start;
  3947. padding:0px 0px 0px 0px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u25665_text {
  3952. border-width:0px;
  3953. white-space:nowrap;
  3954. text-transform:none;
  3955. }
  3956. #u25666 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:0px;
  3962. height:0px;
  3963. }
  3964. #u25667_div {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:375px;
  3970. height:60px;
  3971. background:inherit;
  3972. background-color:rgba(255, 255, 255, 1);
  3973. box-sizing:border-box;
  3974. border-width:1px;
  3975. border-style:solid;
  3976. border-color:rgba(242, 242, 242, 1);
  3977. border-top:0px;
  3978. border-radius:20px;
  3979. border-top-left-radius:0px;
  3980. border-top-right-radius:0px;
  3981. -moz-box-shadow:none;
  3982. -webkit-box-shadow:none;
  3983. box-shadow:none;
  3984. }
  3985. #u25667 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:955px;
  3989. top:790px;
  3990. width:375px;
  3991. height:60px;
  3992. display:flex;
  3993. }
  3994. #u25667 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 2px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u25667_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. visibility:hidden;
  4006. }
  4007. #u25668_div {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:29px;
  4013. height:30px;
  4014. background:inherit;
  4015. background-color:rgba(255, 255, 255, 0);
  4016. border:none;
  4017. border-left:0px;
  4018. border-top:0px;
  4019. border-right:0px;
  4020. border-radius:0px;
  4021. border-bottom-right-radius:0px;
  4022. border-bottom-left-radius:0px;
  4023. -moz-box-shadow:none;
  4024. -webkit-box-shadow:none;
  4025. box-shadow:none;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:14px;
  4030. line-height:30px;
  4031. }
  4032. #u25668 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:1128px;
  4036. top:805px;
  4037. width:29px;
  4038. height:30px;
  4039. display:flex;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:14px;
  4044. line-height:30px;
  4045. }
  4046. #u25668 .text {
  4047. position:absolute;
  4048. align-self:flex-start;
  4049. padding:0px 0px 0px 0px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u25668_text {
  4054. border-width:0px;
  4055. white-space:nowrap;
  4056. text-transform:none;
  4057. }
  4058. #u25669 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:0px;
  4064. height:0px;
  4065. }
  4066. #u25670_div {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:375px;
  4072. height:60px;
  4073. background:inherit;
  4074. background-color:rgba(255, 255, 255, 1);
  4075. box-sizing:border-box;
  4076. border-width:1px;
  4077. border-style:solid;
  4078. border-color:rgba(242, 242, 242, 1);
  4079. border-left:0px;
  4080. border-right:0px;
  4081. border-radius:0px;
  4082. border-top-left-radius:0px;
  4083. border-top-right-radius:0px;
  4084. border-bottom-right-radius:0px;
  4085. border-bottom-left-radius:0px;
  4086. -moz-box-shadow:none;
  4087. -webkit-box-shadow:none;
  4088. box-shadow:none;
  4089. }
  4090. #u25670 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:955px;
  4094. top:660px;
  4095. width:375px;
  4096. height:60px;
  4097. display:flex;
  4098. }
  4099. #u25670 .text {
  4100. position:absolute;
  4101. align-self:center;
  4102. padding:2px 2px 2px 2px;
  4103. box-sizing:border-box;
  4104. width:100%;
  4105. }
  4106. #u25670_text {
  4107. border-width:0px;
  4108. word-wrap:break-word;
  4109. text-transform:none;
  4110. visibility:hidden;
  4111. }
  4112. #u25671_div {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:57px;
  4118. height:30px;
  4119. background:inherit;
  4120. background-color:rgba(255, 255, 255, 0);
  4121. border:none;
  4122. border-left:0px;
  4123. border-top:0px;
  4124. border-right:0px;
  4125. border-radius:0px;
  4126. border-bottom-right-radius:0px;
  4127. border-bottom-left-radius:0px;
  4128. -moz-box-shadow:none;
  4129. -webkit-box-shadow:none;
  4130. box-shadow:none;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:14px;
  4135. line-height:30px;
  4136. }
  4137. #u25671 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:1114px;
  4141. top:675px;
  4142. width:57px;
  4143. height:30px;
  4144. display:flex;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:14px;
  4149. line-height:30px;
  4150. }
  4151. #u25671 .text {
  4152. position:absolute;
  4153. align-self:flex-start;
  4154. padding:0px 0px 0px 0px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u25671_text {
  4159. border-width:0px;
  4160. white-space:nowrap;
  4161. text-transform:none;
  4162. }
  4163. #u25672 {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:0px;
  4169. height:0px;
  4170. }
  4171. #u25673_div {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:375px;
  4177. height:740px;
  4178. background:inherit;
  4179. background-color:rgba(51, 51, 51, 0.533333333333333);
  4180. border:none;
  4181. border-top:0px;
  4182. border-radius:25px;
  4183. border-top-left-radius:0px;
  4184. border-top-right-radius:0px;
  4185. -moz-box-shadow:none;
  4186. -webkit-box-shadow:none;
  4187. box-shadow:none;
  4188. }
  4189. #u25673 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:492px;
  4193. top:110px;
  4194. width:375px;
  4195. height:740px;
  4196. display:flex;
  4197. }
  4198. #u25673 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:2px 2px 2px 2px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u25673_text {
  4206. border-width:0px;
  4207. word-wrap:break-word;
  4208. text-transform:none;
  4209. visibility:hidden;
  4210. }
  4211. #u25674_div {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:375px;
  4217. height:130px;
  4218. background:inherit;
  4219. background-color:rgba(242, 242, 242, 1);
  4220. border:none;
  4221. border-top:0px;
  4222. border-radius:25px;
  4223. border-top-left-radius:0px;
  4224. border-top-right-radius:0px;
  4225. -moz-box-shadow:none;
  4226. -webkit-box-shadow:none;
  4227. box-shadow:none;
  4228. }
  4229. #u25674 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:492px;
  4233. top:720px;
  4234. width:375px;
  4235. height:130px;
  4236. display:flex;
  4237. }
  4238. #u25674 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 2px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u25674_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. visibility:hidden;
  4250. }
  4251. #u25675 {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:0px;
  4257. height:0px;
  4258. }
  4259. #u25676_div {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:375px;
  4265. height:60px;
  4266. background:inherit;
  4267. background-color:rgba(255, 255, 255, 1);
  4268. box-sizing:border-box;
  4269. border-width:1px;
  4270. border-style:solid;
  4271. border-color:rgba(242, 242, 242, 1);
  4272. border-left:0px;
  4273. border-right:0px;
  4274. border-radius:0px;
  4275. border-top-left-radius:0px;
  4276. border-top-right-radius:0px;
  4277. border-bottom-right-radius:0px;
  4278. border-bottom-left-radius:0px;
  4279. -moz-box-shadow:none;
  4280. -webkit-box-shadow:none;
  4281. box-shadow:none;
  4282. }
  4283. #u25676 {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:492px;
  4287. top:720px;
  4288. width:375px;
  4289. height:60px;
  4290. display:flex;
  4291. }
  4292. #u25676 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 2px 2px 2px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u25676_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u25677_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:57px;
  4311. height:30px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 0);
  4314. border:none;
  4315. border-left:0px;
  4316. border-top:0px;
  4317. border-right:0px;
  4318. border-radius:0px;
  4319. border-bottom-right-radius:0px;
  4320. border-bottom-left-radius:0px;
  4321. -moz-box-shadow:none;
  4322. -webkit-box-shadow:none;
  4323. box-shadow:none;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:14px;
  4328. line-height:30px;
  4329. }
  4330. #u25677 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:651px;
  4334. top:735px;
  4335. width:57px;
  4336. height:30px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:14px;
  4342. line-height:30px;
  4343. }
  4344. #u25677 .text {
  4345. position:absolute;
  4346. align-self:flex-start;
  4347. padding:0px 0px 0px 0px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u25677_text {
  4352. border-width:0px;
  4353. white-space:nowrap;
  4354. text-transform:none;
  4355. }
  4356. #u25678 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:0px;
  4362. height:0px;
  4363. }
  4364. #u25679_div {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:375px;
  4370. height:60px;
  4371. background:inherit;
  4372. background-color:rgba(255, 255, 255, 1);
  4373. box-sizing:border-box;
  4374. border-width:1px;
  4375. border-style:solid;
  4376. border-color:rgba(242, 242, 242, 1);
  4377. border-top:0px;
  4378. border-radius:20px;
  4379. border-top-left-radius:0px;
  4380. border-top-right-radius:0px;
  4381. -moz-box-shadow:none;
  4382. -webkit-box-shadow:none;
  4383. box-shadow:none;
  4384. }
  4385. #u25679 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:492px;
  4389. top:790px;
  4390. width:375px;
  4391. height:60px;
  4392. display:flex;
  4393. }
  4394. #u25679 .text {
  4395. position:absolute;
  4396. align-self:center;
  4397. padding:2px 2px 2px 2px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u25679_text {
  4402. border-width:0px;
  4403. word-wrap:break-word;
  4404. text-transform:none;
  4405. visibility:hidden;
  4406. }
  4407. #u25680_div {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:0px;
  4411. top:0px;
  4412. width:29px;
  4413. height:30px;
  4414. background:inherit;
  4415. background-color:rgba(255, 255, 255, 0);
  4416. border:none;
  4417. border-left:0px;
  4418. border-top:0px;
  4419. border-right:0px;
  4420. border-radius:0px;
  4421. border-bottom-right-radius:0px;
  4422. border-bottom-left-radius:0px;
  4423. -moz-box-shadow:none;
  4424. -webkit-box-shadow:none;
  4425. box-shadow:none;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:14px;
  4430. line-height:30px;
  4431. }
  4432. #u25680 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:665px;
  4436. top:805px;
  4437. width:29px;
  4438. height:30px;
  4439. display:flex;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:14px;
  4444. line-height:30px;
  4445. }
  4446. #u25680 .text {
  4447. position:absolute;
  4448. align-self:flex-start;
  4449. padding:0px 0px 0px 0px;
  4450. box-sizing:border-box;
  4451. width:100%;
  4452. }
  4453. #u25680_text {
  4454. border-width:0px;
  4455. white-space:nowrap;
  4456. text-transform:none;
  4457. }
  4458. #u25681 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:0px;
  4464. height:0px;
  4465. }
  4466. #u25682_div {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:375px;
  4472. height:60px;
  4473. background:inherit;
  4474. background-color:rgba(255, 255, 255, 1);
  4475. box-sizing:border-box;
  4476. border-width:1px;
  4477. border-style:solid;
  4478. border-color:rgba(242, 242, 242, 1);
  4479. border-left:0px;
  4480. border-right:0px;
  4481. border-radius:0px;
  4482. border-top-left-radius:0px;
  4483. border-top-right-radius:0px;
  4484. border-bottom-right-radius:0px;
  4485. border-bottom-left-radius:0px;
  4486. -moz-box-shadow:none;
  4487. -webkit-box-shadow:none;
  4488. box-shadow:none;
  4489. }
  4490. #u25682 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:492px;
  4494. top:660px;
  4495. width:375px;
  4496. height:60px;
  4497. display:flex;
  4498. }
  4499. #u25682 .text {
  4500. position:absolute;
  4501. align-self:center;
  4502. padding:2px 2px 2px 2px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u25682_text {
  4507. border-width:0px;
  4508. word-wrap:break-word;
  4509. text-transform:none;
  4510. visibility:hidden;
  4511. }
  4512. #u25683_div {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:57px;
  4518. height:30px;
  4519. background:inherit;
  4520. background-color:rgba(255, 255, 255, 0);
  4521. border:none;
  4522. border-left:0px;
  4523. border-top:0px;
  4524. border-right:0px;
  4525. border-radius:0px;
  4526. border-bottom-right-radius:0px;
  4527. border-bottom-left-radius:0px;
  4528. -moz-box-shadow:none;
  4529. -webkit-box-shadow:none;
  4530. box-shadow:none;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:14px;
  4535. line-height:30px;
  4536. }
  4537. #u25683 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:651px;
  4541. top:675px;
  4542. width:57px;
  4543. height:30px;
  4544. display:flex;
  4545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4546. font-weight:400;
  4547. font-style:normal;
  4548. font-size:14px;
  4549. line-height:30px;
  4550. }
  4551. #u25683 .text {
  4552. position:absolute;
  4553. align-self:flex-start;
  4554. padding:0px 0px 0px 0px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u25683_text {
  4559. border-width:0px;
  4560. white-space:nowrap;
  4561. text-transform:none;
  4562. }
  4563. #u25684 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:0px;
  4569. height:0px;
  4570. }
  4571. #u25685_div {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:375px;
  4577. height:740px;
  4578. background:inherit;
  4579. background-color:rgba(51, 51, 51, 0.533333333333333);
  4580. border:none;
  4581. border-top:0px;
  4582. border-radius:25px;
  4583. border-top-left-radius:0px;
  4584. border-top-right-radius:0px;
  4585. -moz-box-shadow:none;
  4586. -webkit-box-shadow:none;
  4587. box-shadow:none;
  4588. }
  4589. #u25685 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:1881px;
  4593. top:110px;
  4594. width:375px;
  4595. height:740px;
  4596. display:flex;
  4597. }
  4598. #u25685 .text {
  4599. position:absolute;
  4600. align-self:center;
  4601. padding:2px 2px 2px 2px;
  4602. box-sizing:border-box;
  4603. width:100%;
  4604. }
  4605. #u25685_text {
  4606. border-width:0px;
  4607. word-wrap:break-word;
  4608. text-transform:none;
  4609. visibility:hidden;
  4610. }
  4611. #u25686_div {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:375px;
  4617. height:130px;
  4618. background:inherit;
  4619. background-color:rgba(242, 242, 242, 1);
  4620. border:none;
  4621. border-top:0px;
  4622. border-radius:25px;
  4623. border-top-left-radius:0px;
  4624. border-top-right-radius:0px;
  4625. -moz-box-shadow:none;
  4626. -webkit-box-shadow:none;
  4627. box-shadow:none;
  4628. }
  4629. #u25686 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:1881px;
  4633. top:720px;
  4634. width:375px;
  4635. height:130px;
  4636. display:flex;
  4637. }
  4638. #u25686 .text {
  4639. position:absolute;
  4640. align-self:center;
  4641. padding:2px 2px 2px 2px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u25686_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. visibility:hidden;
  4650. }
  4651. #u25687 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:0px;
  4657. height:0px;
  4658. }
  4659. #u25688_div {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:375px;
  4665. height:60px;
  4666. background:inherit;
  4667. background-color:rgba(255, 255, 255, 1);
  4668. box-sizing:border-box;
  4669. border-width:1px;
  4670. border-style:solid;
  4671. border-color:rgba(242, 242, 242, 1);
  4672. border-left:0px;
  4673. border-right:0px;
  4674. border-radius:0px;
  4675. border-top-left-radius:0px;
  4676. border-top-right-radius:0px;
  4677. border-bottom-right-radius:0px;
  4678. border-bottom-left-radius:0px;
  4679. -moz-box-shadow:none;
  4680. -webkit-box-shadow:none;
  4681. box-shadow:none;
  4682. }
  4683. #u25688 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:1881px;
  4687. top:720px;
  4688. width:375px;
  4689. height:60px;
  4690. display:flex;
  4691. }
  4692. #u25688 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:2px 2px 2px 2px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u25688_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. visibility:hidden;
  4704. }
  4705. #u25689_div {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:0px;
  4709. top:0px;
  4710. width:57px;
  4711. height:30px;
  4712. background:inherit;
  4713. background-color:rgba(255, 255, 255, 0);
  4714. border:none;
  4715. border-left:0px;
  4716. border-top:0px;
  4717. border-right:0px;
  4718. border-radius:0px;
  4719. border-bottom-right-radius:0px;
  4720. border-bottom-left-radius:0px;
  4721. -moz-box-shadow:none;
  4722. -webkit-box-shadow:none;
  4723. box-shadow:none;
  4724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:14px;
  4728. line-height:30px;
  4729. }
  4730. #u25689 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:2040px;
  4734. top:735px;
  4735. width:57px;
  4736. height:30px;
  4737. display:flex;
  4738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:14px;
  4742. line-height:30px;
  4743. }
  4744. #u25689 .text {
  4745. position:absolute;
  4746. align-self:flex-start;
  4747. padding:0px 0px 0px 0px;
  4748. box-sizing:border-box;
  4749. width:100%;
  4750. }
  4751. #u25689_text {
  4752. border-width:0px;
  4753. white-space:nowrap;
  4754. text-transform:none;
  4755. }
  4756. #u25690 {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:0px;
  4762. height:0px;
  4763. }
  4764. #u25691_div {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:375px;
  4770. height:60px;
  4771. background:inherit;
  4772. background-color:rgba(255, 255, 255, 1);
  4773. box-sizing:border-box;
  4774. border-width:1px;
  4775. border-style:solid;
  4776. border-color:rgba(242, 242, 242, 1);
  4777. border-top:0px;
  4778. border-radius:20px;
  4779. border-top-left-radius:0px;
  4780. border-top-right-radius:0px;
  4781. -moz-box-shadow:none;
  4782. -webkit-box-shadow:none;
  4783. box-shadow:none;
  4784. }
  4785. #u25691 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:1881px;
  4789. top:790px;
  4790. width:375px;
  4791. height:60px;
  4792. display:flex;
  4793. }
  4794. #u25691 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:2px 2px 2px 2px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u25691_text {
  4802. border-width:0px;
  4803. word-wrap:break-word;
  4804. text-transform:none;
  4805. visibility:hidden;
  4806. }
  4807. #u25692_div {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:29px;
  4813. height:30px;
  4814. background:inherit;
  4815. background-color:rgba(255, 255, 255, 0);
  4816. border:none;
  4817. border-left:0px;
  4818. border-top:0px;
  4819. border-right:0px;
  4820. border-radius:0px;
  4821. border-bottom-right-radius:0px;
  4822. border-bottom-left-radius:0px;
  4823. -moz-box-shadow:none;
  4824. -webkit-box-shadow:none;
  4825. box-shadow:none;
  4826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:14px;
  4830. line-height:30px;
  4831. }
  4832. #u25692 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:2054px;
  4836. top:805px;
  4837. width:29px;
  4838. height:30px;
  4839. display:flex;
  4840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:14px;
  4844. line-height:30px;
  4845. }
  4846. #u25692 .text {
  4847. position:absolute;
  4848. align-self:flex-start;
  4849. padding:0px 0px 0px 0px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u25692_text {
  4854. border-width:0px;
  4855. white-space:nowrap;
  4856. text-transform:none;
  4857. }
  4858. #u25693 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:0px;
  4864. height:0px;
  4865. }
  4866. #u25694_div {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:375px;
  4872. height:60px;
  4873. background:inherit;
  4874. background-color:rgba(255, 255, 255, 1);
  4875. box-sizing:border-box;
  4876. border-width:1px;
  4877. border-style:solid;
  4878. border-color:rgba(242, 242, 242, 1);
  4879. border-left:0px;
  4880. border-right:0px;
  4881. border-radius:0px;
  4882. border-top-left-radius:0px;
  4883. border-top-right-radius:0px;
  4884. border-bottom-right-radius:0px;
  4885. border-bottom-left-radius:0px;
  4886. -moz-box-shadow:none;
  4887. -webkit-box-shadow:none;
  4888. box-shadow:none;
  4889. }
  4890. #u25694 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:1881px;
  4894. top:660px;
  4895. width:375px;
  4896. height:60px;
  4897. display:flex;
  4898. }
  4899. #u25694 .text {
  4900. position:absolute;
  4901. align-self:center;
  4902. padding:2px 2px 2px 2px;
  4903. box-sizing:border-box;
  4904. width:100%;
  4905. }
  4906. #u25694_text {
  4907. border-width:0px;
  4908. word-wrap:break-word;
  4909. text-transform:none;
  4910. visibility:hidden;
  4911. }
  4912. #u25695_div {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:57px;
  4918. height:30px;
  4919. background:inherit;
  4920. background-color:rgba(255, 255, 255, 0);
  4921. border:none;
  4922. border-left:0px;
  4923. border-top:0px;
  4924. border-right:0px;
  4925. border-radius:0px;
  4926. border-bottom-right-radius:0px;
  4927. border-bottom-left-radius:0px;
  4928. -moz-box-shadow:none;
  4929. -webkit-box-shadow:none;
  4930. box-shadow:none;
  4931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:14px;
  4935. line-height:30px;
  4936. }
  4937. #u25695 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:2040px;
  4941. top:675px;
  4942. width:57px;
  4943. height:30px;
  4944. display:flex;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:14px;
  4949. line-height:30px;
  4950. }
  4951. #u25695 .text {
  4952. position:absolute;
  4953. align-self:flex-start;
  4954. padding:0px 0px 0px 0px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u25695_text {
  4959. border-width:0px;
  4960. white-space:nowrap;
  4961. text-transform:none;
  4962. }
  4963. #u25696 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:0px;
  4969. height:0px;
  4970. }
  4971. #u25697_div {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:353px;
  4977. height:100px;
  4978. background:inherit;
  4979. background-color:rgba(255, 255, 255, 1);
  4980. border:none;
  4981. border-radius:4px;
  4982. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4983. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4984. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4985. }
  4986. #u25697 {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:40px;
  4990. top:518px;
  4991. width:353px;
  4992. height:100px;
  4993. display:flex;
  4994. }
  4995. #u25697 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 2px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u25697_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u25698_div {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:91px;
  5014. height:30px;
  5015. background:inherit;
  5016. background-color:rgba(255, 255, 255, 0);
  5017. border:none;
  5018. border-left:0px;
  5019. border-top:0px;
  5020. border-right:0px;
  5021. border-radius:0px;
  5022. border-bottom-right-radius:0px;
  5023. border-bottom-left-radius:0px;
  5024. -moz-box-shadow:none;
  5025. -webkit-box-shadow:none;
  5026. box-shadow:none;
  5027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:18px;
  5031. line-height:30px;
  5032. }
  5033. #u25698 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:155px;
  5037. top:528px;
  5038. width:91px;
  5039. height:30px;
  5040. display:flex;
  5041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:18px;
  5045. line-height:30px;
  5046. }
  5047. #u25698 .text {
  5048. position:absolute;
  5049. align-self:flex-start;
  5050. padding:0px 0px 0px 0px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u25698_text {
  5055. border-width:0px;
  5056. white-space:nowrap;
  5057. text-transform:none;
  5058. }
  5059. #u25699 {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:0px;
  5065. height:0px;
  5066. }
  5067. #u25700_img {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:7px;
  5073. height:11px;
  5074. }
  5075. #u25700 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:155px;
  5079. top:592px;
  5080. width:7px;
  5081. height:11px;
  5082. display:flex;
  5083. }
  5084. #u25700 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:2px 2px 2px 2px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u25700_text {
  5092. border-width:0px;
  5093. word-wrap:break-word;
  5094. text-transform:none;
  5095. visibility:hidden;
  5096. }
  5097. #u25701_div {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:157px;
  5103. height:17px;
  5104. background:inherit;
  5105. background-color:rgba(255, 255, 255, 0);
  5106. border:none;
  5107. border-left:0px;
  5108. border-top:0px;
  5109. border-right:0px;
  5110. border-radius:0px;
  5111. border-bottom-right-radius:0px;
  5112. border-bottom-left-radius:0px;
  5113. -moz-box-shadow:none;
  5114. -webkit-box-shadow:none;
  5115. box-shadow:none;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:12px;
  5120. color:#AAAAAA;
  5121. }
  5122. #u25701 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:166px;
  5126. top:589px;
  5127. width:157px;
  5128. height:17px;
  5129. display:flex;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:12px;
  5134. color:#AAAAAA;
  5135. }
  5136. #u25701 .text {
  5137. position:absolute;
  5138. align-self:flex-start;
  5139. padding:0px 0px 0px 0px;
  5140. box-sizing:border-box;
  5141. width:100%;
  5142. }
  5143. #u25701_text {
  5144. border-width:0px;
  5145. white-space:nowrap;
  5146. text-transform:none;
  5147. }
  5148. #u25702 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:0px;
  5154. height:0px;
  5155. }
  5156. #u25703_div {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:0px;
  5160. top:0px;
  5161. width:73px;
  5162. height:30px;
  5163. background:inherit;
  5164. background-color:rgba(255, 255, 255, 0);
  5165. border:none;
  5166. border-left:0px;
  5167. border-top:0px;
  5168. border-right:0px;
  5169. border-radius:0px;
  5170. border-bottom-right-radius:0px;
  5171. border-bottom-left-radius:0px;
  5172. -moz-box-shadow:none;
  5173. -webkit-box-shadow:none;
  5174. box-shadow:none;
  5175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. font-size:12px;
  5179. line-height:30px;
  5180. }
  5181. #u25703 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:155px;
  5185. top:559px;
  5186. width:73px;
  5187. height:30px;
  5188. display:flex;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:12px;
  5193. line-height:30px;
  5194. }
  5195. #u25703 .text {
  5196. position:absolute;
  5197. align-self:flex-start;
  5198. padding:0px 0px 0px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u25703_text {
  5203. border-width:0px;
  5204. white-space:nowrap;
  5205. text-transform:none;
  5206. }
  5207. #u25704_div {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:37px;
  5213. height:17px;
  5214. background:inherit;
  5215. background-color:rgba(255, 255, 255, 0);
  5216. border:none;
  5217. border-left:0px;
  5218. border-top:0px;
  5219. border-right:0px;
  5220. border-radius:0px;
  5221. border-bottom-right-radius:0px;
  5222. border-bottom-left-radius:0px;
  5223. -moz-box-shadow:none;
  5224. -webkit-box-shadow:none;
  5225. box-shadow:none;
  5226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5227. font-weight:400;
  5228. font-style:normal;
  5229. font-size:12px;
  5230. color:#D7D7D7;
  5231. }
  5232. #u25704 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:346px;
  5236. top:528px;
  5237. width:37px;
  5238. height:17px;
  5239. display:flex;
  5240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5241. font-weight:400;
  5242. font-style:normal;
  5243. font-size:12px;
  5244. color:#D7D7D7;
  5245. }
  5246. #u25704 .text {
  5247. position:absolute;
  5248. align-self:flex-start;
  5249. padding:0px 0px 0px 0px;
  5250. box-sizing:border-box;
  5251. width:100%;
  5252. }
  5253. #u25704_text {
  5254. border-width:0px;
  5255. white-space:nowrap;
  5256. text-transform:none;
  5257. }
  5258. #u25705_img {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:82px;
  5264. height:80px;
  5265. }
  5266. #u25705 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:52px;
  5270. top:534px;
  5271. width:82px;
  5272. height:80px;
  5273. display:flex;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. color:#AAAAAA;
  5278. }
  5279. #u25705 .text {
  5280. position:absolute;
  5281. align-self:center;
  5282. padding:2px 2px 2px 2px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u25705_text {
  5287. border-width:0px;
  5288. word-wrap:break-word;
  5289. text-transform:none;
  5290. }
  5291. #u25706 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:0px;
  5297. height:0px;
  5298. }
  5299. #u25707_div {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:353px;
  5305. height:100px;
  5306. background:inherit;
  5307. background-color:rgba(255, 255, 255, 1);
  5308. border:none;
  5309. border-radius:4px;
  5310. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5311. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5312. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5313. }
  5314. #u25707 {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:40px;
  5318. top:628px;
  5319. width:353px;
  5320. height:100px;
  5321. display:flex;
  5322. }
  5323. #u25707 .text {
  5324. position:absolute;
  5325. align-self:center;
  5326. padding:2px 2px 2px 2px;
  5327. box-sizing:border-box;
  5328. width:100%;
  5329. }
  5330. #u25707_text {
  5331. border-width:0px;
  5332. word-wrap:break-word;
  5333. text-transform:none;
  5334. visibility:hidden;
  5335. }
  5336. #u25708_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:91px;
  5342. height:30px;
  5343. background:inherit;
  5344. background-color:rgba(255, 255, 255, 0);
  5345. border:none;
  5346. border-left:0px;
  5347. border-top:0px;
  5348. border-right:0px;
  5349. border-radius:0px;
  5350. border-bottom-right-radius:0px;
  5351. border-bottom-left-radius:0px;
  5352. -moz-box-shadow:none;
  5353. -webkit-box-shadow:none;
  5354. box-shadow:none;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. font-size:18px;
  5359. line-height:30px;
  5360. }
  5361. #u25708 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:155px;
  5365. top:638px;
  5366. width:91px;
  5367. height:30px;
  5368. display:flex;
  5369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:18px;
  5373. line-height:30px;
  5374. }
  5375. #u25708 .text {
  5376. position:absolute;
  5377. align-self:flex-start;
  5378. padding:0px 0px 0px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u25708_text {
  5383. border-width:0px;
  5384. white-space:nowrap;
  5385. text-transform:none;
  5386. }
  5387. #u25709 {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:0px;
  5393. height:0px;
  5394. }
  5395. #u25710_img {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:7px;
  5401. height:11px;
  5402. }
  5403. #u25710 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:155px;
  5407. top:702px;
  5408. width:7px;
  5409. height:11px;
  5410. display:flex;
  5411. }
  5412. #u25710 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 2px 2px 2px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u25710_text {
  5420. border-width:0px;
  5421. word-wrap:break-word;
  5422. text-transform:none;
  5423. visibility:hidden;
  5424. }
  5425. #u25711_div {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:157px;
  5431. height:17px;
  5432. background:inherit;
  5433. background-color:rgba(255, 255, 255, 0);
  5434. border:none;
  5435. border-left:0px;
  5436. border-top:0px;
  5437. border-right:0px;
  5438. border-radius:0px;
  5439. border-bottom-right-radius:0px;
  5440. border-bottom-left-radius:0px;
  5441. -moz-box-shadow:none;
  5442. -webkit-box-shadow:none;
  5443. box-shadow:none;
  5444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:12px;
  5448. color:#AAAAAA;
  5449. }
  5450. #u25711 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:166px;
  5454. top:699px;
  5455. width:157px;
  5456. height:17px;
  5457. display:flex;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:12px;
  5462. color:#AAAAAA;
  5463. }
  5464. #u25711 .text {
  5465. position:absolute;
  5466. align-self:flex-start;
  5467. padding:0px 0px 0px 0px;
  5468. box-sizing:border-box;
  5469. width:100%;
  5470. }
  5471. #u25711_text {
  5472. border-width:0px;
  5473. white-space:nowrap;
  5474. text-transform:none;
  5475. }
  5476. #u25712 {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:0px;
  5482. height:0px;
  5483. }
  5484. #u25713_div {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:73px;
  5490. height:30px;
  5491. background:inherit;
  5492. background-color:rgba(255, 255, 255, 0);
  5493. border:none;
  5494. border-left:0px;
  5495. border-top:0px;
  5496. border-right:0px;
  5497. border-radius:0px;
  5498. border-bottom-right-radius:0px;
  5499. border-bottom-left-radius:0px;
  5500. -moz-box-shadow:none;
  5501. -webkit-box-shadow:none;
  5502. box-shadow:none;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:12px;
  5507. line-height:30px;
  5508. }
  5509. #u25713 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:155px;
  5513. top:669px;
  5514. width:73px;
  5515. height:30px;
  5516. display:flex;
  5517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5518. font-weight:400;
  5519. font-style:normal;
  5520. font-size:12px;
  5521. line-height:30px;
  5522. }
  5523. #u25713 .text {
  5524. position:absolute;
  5525. align-self:flex-start;
  5526. padding:0px 0px 0px 0px;
  5527. box-sizing:border-box;
  5528. width:100%;
  5529. }
  5530. #u25713_text {
  5531. border-width:0px;
  5532. white-space:nowrap;
  5533. text-transform:none;
  5534. }
  5535. #u25714_div {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:37px;
  5541. height:17px;
  5542. background:inherit;
  5543. background-color:rgba(255, 255, 255, 0);
  5544. border:none;
  5545. border-left:0px;
  5546. border-top:0px;
  5547. border-right:0px;
  5548. border-radius:0px;
  5549. border-bottom-right-radius:0px;
  5550. border-bottom-left-radius:0px;
  5551. -moz-box-shadow:none;
  5552. -webkit-box-shadow:none;
  5553. box-shadow:none;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:12px;
  5558. color:#D9001B;
  5559. }
  5560. #u25714 {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:346px;
  5564. top:638px;
  5565. width:37px;
  5566. height:17px;
  5567. display:flex;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:12px;
  5572. color:#D9001B;
  5573. }
  5574. #u25714 .text {
  5575. position:absolute;
  5576. align-self:flex-start;
  5577. padding:0px 0px 0px 0px;
  5578. box-sizing:border-box;
  5579. width:100%;
  5580. }
  5581. #u25714_text {
  5582. border-width:0px;
  5583. white-space:nowrap;
  5584. text-transform:none;
  5585. }
  5586. #u25715_img {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:82px;
  5592. height:80px;
  5593. }
  5594. #u25715 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:52px;
  5598. top:638px;
  5599. width:82px;
  5600. height:80px;
  5601. display:flex;
  5602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. color:#AAAAAA;
  5606. }
  5607. #u25715 .text {
  5608. position:absolute;
  5609. align-self:center;
  5610. padding:2px 2px 2px 2px;
  5611. box-sizing:border-box;
  5612. width:100%;
  5613. }
  5614. #u25715_text {
  5615. border-width:0px;
  5616. word-wrap:break-word;
  5617. text-transform:none;
  5618. }
  5619. #u25716_div {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:353px;
  5625. height:24px;
  5626. background:inherit;
  5627. background-color:rgba(236, 128, 141, 0.2);
  5628. border:none;
  5629. border-top:0px;
  5630. border-radius:9px;
  5631. border-top-left-radius:0px;
  5632. border-top-right-radius:0px;
  5633. -moz-box-shadow:none;
  5634. -webkit-box-shadow:none;
  5635. box-shadow:none;
  5636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:11px;
  5640. color:#D9001B;
  5641. }
  5642. #u25716 {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:40px;
  5646. top:728px;
  5647. width:353px;
  5648. height:24px;
  5649. display:flex;
  5650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:11px;
  5654. color:#D9001B;
  5655. }
  5656. #u25716 .text {
  5657. position:absolute;
  5658. align-self:center;
  5659. padding:2px 2px 2px 2px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u25716_text {
  5664. border-width:0px;
  5665. word-wrap:break-word;
  5666. text-transform:none;
  5667. }
  5668. #u25717_div {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:330px;
  5674. height:40px;
  5675. background:inherit;
  5676. background-color:rgba(255, 255, 255, 0);
  5677. border:none;
  5678. border-left:0px;
  5679. border-top:0px;
  5680. border-right:0px;
  5681. border-radius:0px;
  5682. border-bottom-right-radius:0px;
  5683. border-bottom-left-radius:0px;
  5684. -moz-box-shadow:none;
  5685. -webkit-box-shadow:none;
  5686. box-shadow:none;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:14px;
  5691. color:#D9001B;
  5692. }
  5693. #u25717 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:978px;
  5697. top:765px;
  5698. width:330px;
  5699. height:40px;
  5700. display:flex;
  5701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5702. font-weight:400;
  5703. font-style:normal;
  5704. font-size:14px;
  5705. color:#D9001B;
  5706. }
  5707. #u25717 .text {
  5708. position:absolute;
  5709. align-self:flex-start;
  5710. padding:0px 0px 0px 0px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u25717_text {
  5715. border-width:0px;
  5716. white-space:nowrap;
  5717. text-transform:none;
  5718. }
  5719. #u25718 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:0px;
  5725. height:0px;
  5726. }
  5727. #u25719_div {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:0px;
  5732. width:300px;
  5733. height:222px;
  5734. background:inherit;
  5735. background-color:rgba(255, 255, 255, 1);
  5736. border:none;
  5737. border-radius:10px;
  5738. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5739. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5740. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5741. }
  5742. #u25719 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:710px;
  5746. top:873px;
  5747. width:300px;
  5748. height:222px;
  5749. display:flex;
  5750. }
  5751. #u25719 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 2px 2px 2px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u25719_text {
  5759. border-width:0px;
  5760. word-wrap:break-word;
  5761. text-transform:none;
  5762. visibility:hidden;
  5763. }
  5764. #u25720_div {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:73px;
  5770. height:30px;
  5771. background:inherit;
  5772. background-color:rgba(255, 255, 255, 0);
  5773. border:none;
  5774. border-left:0px;
  5775. border-top:0px;
  5776. border-right:0px;
  5777. border-radius:0px;
  5778. border-bottom-right-radius:0px;
  5779. border-bottom-left-radius:0px;
  5780. -moz-box-shadow:none;
  5781. -webkit-box-shadow:none;
  5782. box-shadow:none;
  5783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:18px;
  5787. text-align:center;
  5788. line-height:30px;
  5789. }
  5790. #u25720 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:824px;
  5794. top:891px;
  5795. width:73px;
  5796. height:30px;
  5797. display:flex;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:18px;
  5802. text-align:center;
  5803. line-height:30px;
  5804. }
  5805. #u25720 .text {
  5806. position:absolute;
  5807. align-self:flex-start;
  5808. padding:0px 0px 0px 0px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u25720_text {
  5813. border-width:0px;
  5814. white-space:nowrap;
  5815. text-transform:none;
  5816. }
  5817. #u25721_div {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:258px;
  5823. height:60px;
  5824. background:inherit;
  5825. background-color:rgba(255, 255, 255, 0);
  5826. border:none;
  5827. border-left:0px;
  5828. border-top:0px;
  5829. border-right:0px;
  5830. border-radius:0px;
  5831. border-bottom-right-radius:0px;
  5832. border-bottom-left-radius:0px;
  5833. -moz-box-shadow:none;
  5834. -webkit-box-shadow:none;
  5835. box-shadow:none;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. line-height:30px;
  5841. }
  5842. #u25721 {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:731px;
  5846. top:931px;
  5847. width:258px;
  5848. height:60px;
  5849. display:flex;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5851. font-weight:400;
  5852. font-style:normal;
  5853. font-size:12px;
  5854. line-height:30px;
  5855. }
  5856. #u25721 .text {
  5857. position:absolute;
  5858. align-self:flex-start;
  5859. padding:0px 0px 0px 0px;
  5860. box-sizing:border-box;
  5861. width:100%;
  5862. }
  5863. #u25721_text {
  5864. border-width:0px;
  5865. word-wrap:break-word;
  5866. text-transform:none;
  5867. }
  5868. #u25722_img {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:301px;
  5874. height:2px;
  5875. }
  5876. #u25722 {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:710px;
  5880. top:1043px;
  5881. width:300px;
  5882. height:1px;
  5883. display:flex;
  5884. }
  5885. #u25722 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 2px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u25722_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u25723_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:37px;
  5904. height:30px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 0);
  5907. border:none;
  5908. border-left:0px;
  5909. border-top:0px;
  5910. border-right:0px;
  5911. border-radius:0px;
  5912. border-bottom-right-radius:0px;
  5913. border-bottom-left-radius:0px;
  5914. -moz-box-shadow:none;
  5915. -webkit-box-shadow:none;
  5916. box-shadow:none;
  5917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:18px;
  5921. color:#1890FF;
  5922. text-align:center;
  5923. line-height:30px;
  5924. }
  5925. #u25723 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:842px;
  5929. top:1054px;
  5930. width:37px;
  5931. height:30px;
  5932. display:flex;
  5933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:18px;
  5937. color:#1890FF;
  5938. text-align:center;
  5939. line-height:30px;
  5940. }
  5941. #u25723 .text {
  5942. position:absolute;
  5943. align-self:flex-start;
  5944. padding:0px 0px 0px 0px;
  5945. box-sizing:border-box;
  5946. width:100%;
  5947. }
  5948. #u25723_text {
  5949. border-width:0px;
  5950. white-space:nowrap;
  5951. text-transform:none;
  5952. }