styles.css 123 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1338px;
  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. #u54582 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u54583 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u54583 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u54583_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u54583_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u54584_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u54584 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u54584 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u54584_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u54585 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u54586_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u54586 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u54586 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u54586_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u54587 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u54588 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u54588 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u54588_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u54588_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u54589 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u54589 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u54589_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u54589_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u54590 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u54591 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u54591 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u54591_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u54591_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u54592 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u54592 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u54592_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u54592_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u54593 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u54593 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u54593_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u54593_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u54594 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u54594 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u54594_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u54594_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u54595 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u54595 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u54595_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u54595_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u54596_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u54596 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u54596 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u54596_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u54597 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u54598 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u54598 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u54598_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u54598_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u54599_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u54599 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u54599 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u54599_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u54600 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u54601 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u54601 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u54601_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u54601_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u54602_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u54602 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u54602 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u54602_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u54603_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u54603 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u54603 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u54603_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u54604 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u54605 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u54605 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u54605_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u54605_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u54606_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u54606 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u54606 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u54606_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u54607 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u54608 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u54608 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u54608_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u54608_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u54609_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u54609 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u54609 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u54609_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u54610_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:735px;
  809. background:inherit;
  810. background-color:rgba(255, 255, 255, 1);
  811. border-top:0px;
  812. border-radius:25px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u54610 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:105px;
  823. width:375px;
  824. height:735px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u54610 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u54610_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u54611_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:73px;
  848. height:30px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 0);
  851. border-left:0px;
  852. border-top:0px;
  853. border-right:0px;
  854. border-radius:0px;
  855. border-bottom-right-radius:0px;
  856. border-bottom-left-radius:0px;
  857. filter:drop-shadow(none);
  858. transition:none;
  859. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  860. font-weight:500;
  861. font-style:normal;
  862. font-size:18px;
  863. line-height:30px;
  864. }
  865. #u54611 {
  866. border-width:0px;
  867. position:absolute;
  868. left:51px;
  869. top:120px;
  870. width:73px;
  871. height:30px;
  872. display:flex;
  873. transition:none;
  874. transform-origin:50% 50%;
  875. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  876. font-weight:500;
  877. font-style:normal;
  878. font-size:18px;
  879. line-height:30px;
  880. }
  881. #u54611 .text {
  882. position:absolute;
  883. align-self:flex-start;
  884. padding:0px 0px 0px 0px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u54611_text {
  889. border-width:0px;
  890. white-space:nowrap;
  891. text-transform:none;
  892. }
  893. #u54612 {
  894. border-width:0px;
  895. position:absolute;
  896. left:42px;
  897. top:79px;
  898. width:11px;
  899. height:18px;
  900. display:flex;
  901. transition:none;
  902. }
  903. #u54612 .text {
  904. position:absolute;
  905. align-self:center;
  906. padding:2px 2px 2px 2px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u54612_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:11px;
  916. height:18px;
  917. }
  918. #u54612_text {
  919. border-width:0px;
  920. word-wrap:break-word;
  921. text-transform:none;
  922. visibility:hidden;
  923. }
  924. #u54613 {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:0px;
  929. width:0px;
  930. height:0px;
  931. }
  932. #u54614_div {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:375px;
  938. height:80px;
  939. background:inherit;
  940. background-color:rgba(255, 255, 255, 1);
  941. box-sizing:border-box;
  942. border-width:1px;
  943. border-style:solid;
  944. border-color:rgba(242, 242, 242, 1);
  945. border-radius:0px;
  946. filter:drop-shadow(none);
  947. transition:none;
  948. }
  949. #u54614 {
  950. border-width:0px;
  951. position:absolute;
  952. left:29px;
  953. top:295px;
  954. width:375px;
  955. height:80px;
  956. display:flex;
  957. transition:none;
  958. transform-origin:50% 50%;
  959. }
  960. #u54614 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:2px 2px 2px 2px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u54614_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. visibility:hidden;
  972. }
  973. #u54615 {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:0px;
  979. height:0px;
  980. }
  981. #u54616_div {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:199px;
  987. height:30px;
  988. background:inherit;
  989. background-color:rgba(255, 255, 255, 0);
  990. border-left:0px;
  991. border-top:0px;
  992. border-right:0px;
  993. border-radius:0px;
  994. border-bottom-right-radius:0px;
  995. border-bottom-left-radius:0px;
  996. filter:drop-shadow(none);
  997. transition:none;
  998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  999. font-weight:400;
  1000. font-style:normal;
  1001. font-size:18px;
  1002. line-height:30px;
  1003. }
  1004. #u54616 {
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:51px;
  1008. top:309px;
  1009. width:199px;
  1010. height:30px;
  1011. display:flex;
  1012. transition:none;
  1013. transform-origin:50% 50%;
  1014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1015. font-weight:400;
  1016. font-style:normal;
  1017. font-size:18px;
  1018. line-height:30px;
  1019. }
  1020. #u54616 .text {
  1021. position:absolute;
  1022. align-self:flex-start;
  1023. padding:0px 0px 0px 0px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u54616_text {
  1028. border-width:0px;
  1029. white-space:nowrap;
  1030. text-transform:none;
  1031. }
  1032. #u54617 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:0px;
  1038. height:0px;
  1039. }
  1040. #u54618 {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:51px;
  1044. top:347px;
  1045. width:7px;
  1046. height:11px;
  1047. display:flex;
  1048. transition:none;
  1049. }
  1050. #u54618 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u54618_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:7px;
  1063. height:11px;
  1064. }
  1065. #u54618_text {
  1066. border-width:0px;
  1067. word-wrap:break-word;
  1068. text-transform:none;
  1069. visibility:hidden;
  1070. }
  1071. #u54619_div {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:157px;
  1077. height:17px;
  1078. background:inherit;
  1079. background-color:rgba(255, 255, 255, 0);
  1080. border-left:0px;
  1081. border-top:0px;
  1082. border-right:0px;
  1083. border-radius:0px;
  1084. border-bottom-right-radius:0px;
  1085. border-bottom-left-radius:0px;
  1086. filter:drop-shadow(none);
  1087. transition:none;
  1088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1089. font-weight:400;
  1090. font-style:normal;
  1091. font-size:12px;
  1092. color:#AAAAAA;
  1093. }
  1094. #u54619 {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:62px;
  1098. top:344px;
  1099. width:157px;
  1100. height:17px;
  1101. display:flex;
  1102. transition:none;
  1103. transform-origin:50% 50%;
  1104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1105. font-weight:400;
  1106. font-style:normal;
  1107. font-size:12px;
  1108. color:#AAAAAA;
  1109. }
  1110. #u54619 .text {
  1111. position:absolute;
  1112. align-self:flex-start;
  1113. padding:0px 0px 0px 0px;
  1114. box-sizing:border-box;
  1115. width:100%;
  1116. }
  1117. #u54619_text {
  1118. border-width:0px;
  1119. white-space:nowrap;
  1120. text-transform:none;
  1121. }
  1122. #u54620 {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:0px;
  1126. top:0px;
  1127. width:0px;
  1128. height:0px;
  1129. }
  1130. #u54621 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:384px;
  1134. top:330px;
  1135. width:7px;
  1136. height:11px;
  1137. display:flex;
  1138. -webkit-transform:rotate(180deg);
  1139. -moz-transform:rotate(180deg);
  1140. -ms-transform:rotate(180deg);
  1141. transform:rotate(180deg);
  1142. transition:none;
  1143. }
  1144. #u54621 .text {
  1145. position:absolute;
  1146. align-self:center;
  1147. padding:2px 2px 2px 2px;
  1148. box-sizing:border-box;
  1149. width:100%;
  1150. }
  1151. #u54621_img {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:0px;
  1155. top:0px;
  1156. width:7px;
  1157. height:11px;
  1158. }
  1159. #u54621_text {
  1160. border-width:0px;
  1161. word-wrap:break-word;
  1162. text-transform:none;
  1163. visibility:hidden;
  1164. }
  1165. #u54622 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:0px;
  1171. height:0px;
  1172. }
  1173. #u54623_div {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:0px;
  1177. top:0px;
  1178. width:375px;
  1179. height:80px;
  1180. background:inherit;
  1181. background-color:rgba(255, 255, 255, 1);
  1182. box-sizing:border-box;
  1183. border-width:1px;
  1184. border-style:solid;
  1185. border-color:rgba(242, 242, 242, 1);
  1186. border-radius:0px;
  1187. filter:drop-shadow(none);
  1188. transition:none;
  1189. }
  1190. #u54623 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:29px;
  1194. top:374px;
  1195. width:375px;
  1196. height:80px;
  1197. display:flex;
  1198. transition:none;
  1199. transform-origin:50% 50%;
  1200. }
  1201. #u54623 .text {
  1202. position:absolute;
  1203. align-self:center;
  1204. padding:2px 2px 2px 2px;
  1205. box-sizing:border-box;
  1206. width:100%;
  1207. }
  1208. #u54623_text {
  1209. border-width:0px;
  1210. word-wrap:break-word;
  1211. text-transform:none;
  1212. visibility:hidden;
  1213. }
  1214. #u54624 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:0px;
  1218. top:0px;
  1219. width:0px;
  1220. height:0px;
  1221. }
  1222. #u54625_div {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:0px;
  1226. top:0px;
  1227. width:109px;
  1228. height:30px;
  1229. background:inherit;
  1230. background-color:rgba(255, 255, 255, 0);
  1231. border-left:0px;
  1232. border-top:0px;
  1233. border-right:0px;
  1234. border-radius:0px;
  1235. border-bottom-right-radius:0px;
  1236. border-bottom-left-radius:0px;
  1237. filter:drop-shadow(none);
  1238. transition:none;
  1239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1240. font-weight:400;
  1241. font-style:normal;
  1242. font-size:18px;
  1243. line-height:30px;
  1244. }
  1245. #u54625 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:51px;
  1249. top:388px;
  1250. width:109px;
  1251. height:30px;
  1252. display:flex;
  1253. transition:none;
  1254. transform-origin:50% 50%;
  1255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1256. font-weight:400;
  1257. font-style:normal;
  1258. font-size:18px;
  1259. line-height:30px;
  1260. }
  1261. #u54625 .text {
  1262. position:absolute;
  1263. align-self:flex-start;
  1264. padding:0px 0px 0px 0px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u54625_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u54626 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:0px;
  1279. height:0px;
  1280. }
  1281. #u54627 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:51px;
  1285. top:426px;
  1286. width:7px;
  1287. height:11px;
  1288. display:flex;
  1289. transition:none;
  1290. }
  1291. #u54627 .text {
  1292. position:absolute;
  1293. align-self:center;
  1294. padding:2px 2px 2px 2px;
  1295. box-sizing:border-box;
  1296. width:100%;
  1297. }
  1298. #u54627_img {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:0px;
  1302. top:0px;
  1303. width:7px;
  1304. height:11px;
  1305. }
  1306. #u54627_text {
  1307. border-width:0px;
  1308. word-wrap:break-word;
  1309. text-transform:none;
  1310. visibility:hidden;
  1311. }
  1312. #u54628_div {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:157px;
  1318. height:17px;
  1319. background:inherit;
  1320. background-color:rgba(255, 255, 255, 0);
  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. filter:drop-shadow(none);
  1328. transition:none;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:12px;
  1333. color:#AAAAAA;
  1334. }
  1335. #u54628 {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:62px;
  1339. top:423px;
  1340. width:157px;
  1341. height:17px;
  1342. display:flex;
  1343. transition:none;
  1344. transform-origin:50% 50%;
  1345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1346. font-weight:400;
  1347. font-style:normal;
  1348. font-size:12px;
  1349. color:#AAAAAA;
  1350. }
  1351. #u54628 .text {
  1352. position:absolute;
  1353. align-self:flex-start;
  1354. padding:0px 0px 0px 0px;
  1355. box-sizing:border-box;
  1356. width:100%;
  1357. }
  1358. #u54628_text {
  1359. border-width:0px;
  1360. white-space:nowrap;
  1361. text-transform:none;
  1362. }
  1363. #u54629 {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:0px;
  1369. height:0px;
  1370. }
  1371. #u54630 {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:384px;
  1375. top:409px;
  1376. width:7px;
  1377. height:11px;
  1378. display:flex;
  1379. -webkit-transform:rotate(180deg);
  1380. -moz-transform:rotate(180deg);
  1381. -ms-transform:rotate(180deg);
  1382. transform:rotate(180deg);
  1383. transition:none;
  1384. }
  1385. #u54630 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u54630_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:7px;
  1398. height:11px;
  1399. }
  1400. #u54630_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u54631 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u54632_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:375px;
  1420. height:80px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 1);
  1423. box-sizing:border-box;
  1424. border-width:1px;
  1425. border-style:solid;
  1426. border-color:rgba(242, 242, 242, 1);
  1427. border-radius:0px;
  1428. filter:drop-shadow(none);
  1429. transition:none;
  1430. }
  1431. #u54632 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:29px;
  1435. top:453px;
  1436. width:375px;
  1437. height:80px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. }
  1442. #u54632 .text {
  1443. position:absolute;
  1444. align-self:center;
  1445. padding:2px 2px 2px 2px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u54632_text {
  1450. border-width:0px;
  1451. word-wrap:break-word;
  1452. text-transform:none;
  1453. visibility:hidden;
  1454. }
  1455. #u54633 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:0px;
  1461. height:0px;
  1462. }
  1463. #u54634_div {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:0px;
  1467. top:0px;
  1468. width:181px;
  1469. height:30px;
  1470. background:inherit;
  1471. background-color:rgba(255, 255, 255, 0);
  1472. border-left:0px;
  1473. border-top:0px;
  1474. border-right:0px;
  1475. border-radius:0px;
  1476. border-bottom-right-radius:0px;
  1477. border-bottom-left-radius:0px;
  1478. filter:drop-shadow(none);
  1479. transition:none;
  1480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1481. font-weight:400;
  1482. font-style:normal;
  1483. font-size:18px;
  1484. line-height:30px;
  1485. }
  1486. #u54634 {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:51px;
  1490. top:467px;
  1491. width:181px;
  1492. height:30px;
  1493. display:flex;
  1494. transition:none;
  1495. transform-origin:50% 50%;
  1496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1497. font-weight:400;
  1498. font-style:normal;
  1499. font-size:18px;
  1500. line-height:30px;
  1501. }
  1502. #u54634 .text {
  1503. position:absolute;
  1504. align-self:flex-start;
  1505. padding:0px 0px 0px 0px;
  1506. box-sizing:border-box;
  1507. width:100%;
  1508. }
  1509. #u54634_text {
  1510. border-width:0px;
  1511. white-space:nowrap;
  1512. text-transform:none;
  1513. }
  1514. #u54635 {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:0px;
  1518. top:0px;
  1519. width:0px;
  1520. height:0px;
  1521. }
  1522. #u54636 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:51px;
  1526. top:505px;
  1527. width:7px;
  1528. height:11px;
  1529. display:flex;
  1530. transition:none;
  1531. }
  1532. #u54636 .text {
  1533. position:absolute;
  1534. align-self:center;
  1535. padding:2px 2px 2px 2px;
  1536. box-sizing:border-box;
  1537. width:100%;
  1538. }
  1539. #u54636_img {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:0px;
  1543. top:0px;
  1544. width:7px;
  1545. height:11px;
  1546. }
  1547. #u54636_text {
  1548. border-width:0px;
  1549. word-wrap:break-word;
  1550. text-transform:none;
  1551. visibility:hidden;
  1552. }
  1553. #u54637_div {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:0px;
  1558. width:157px;
  1559. height:17px;
  1560. background:inherit;
  1561. background-color:rgba(255, 255, 255, 0);
  1562. border-left:0px;
  1563. border-top:0px;
  1564. border-right:0px;
  1565. border-radius:0px;
  1566. border-bottom-right-radius:0px;
  1567. border-bottom-left-radius:0px;
  1568. filter:drop-shadow(none);
  1569. transition:none;
  1570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1571. font-weight:400;
  1572. font-style:normal;
  1573. font-size:12px;
  1574. color:#AAAAAA;
  1575. }
  1576. #u54637 {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:62px;
  1580. top:502px;
  1581. width:157px;
  1582. height:17px;
  1583. display:flex;
  1584. transition:none;
  1585. transform-origin:50% 50%;
  1586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1587. font-weight:400;
  1588. font-style:normal;
  1589. font-size:12px;
  1590. color:#AAAAAA;
  1591. }
  1592. #u54637 .text {
  1593. position:absolute;
  1594. align-self:flex-start;
  1595. padding:0px 0px 0px 0px;
  1596. box-sizing:border-box;
  1597. width:100%;
  1598. }
  1599. #u54637_text {
  1600. border-width:0px;
  1601. white-space:nowrap;
  1602. text-transform:none;
  1603. }
  1604. #u54638 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:0px;
  1608. top:0px;
  1609. width:0px;
  1610. height:0px;
  1611. }
  1612. #u54639 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:384px;
  1616. top:488px;
  1617. width:7px;
  1618. height:11px;
  1619. display:flex;
  1620. -webkit-transform:rotate(180deg);
  1621. -moz-transform:rotate(180deg);
  1622. -ms-transform:rotate(180deg);
  1623. transform:rotate(180deg);
  1624. transition:none;
  1625. }
  1626. #u54639 .text {
  1627. position:absolute;
  1628. align-self:center;
  1629. padding:2px 2px 2px 2px;
  1630. box-sizing:border-box;
  1631. width:100%;
  1632. }
  1633. #u54639_img {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:7px;
  1639. height:11px;
  1640. }
  1641. #u54639_text {
  1642. border-width:0px;
  1643. word-wrap:break-word;
  1644. text-transform:none;
  1645. visibility:hidden;
  1646. }
  1647. #u54640 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:453px;
  1651. top:0px;
  1652. width:433px;
  1653. height:865px;
  1654. }
  1655. #u54641 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:433px;
  1661. height:865px;
  1662. display:flex;
  1663. transition:none;
  1664. }
  1665. #u54641 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u54641_img {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:433px;
  1678. height:865px;
  1679. }
  1680. #u54641_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. visibility:hidden;
  1685. }
  1686. #u54642_div {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:375px;
  1692. height:40px;
  1693. background:inherit;
  1694. background-color:rgba(255, 255, 255, 1);
  1695. box-sizing:border-box;
  1696. border-width:1px;
  1697. border-style:solid;
  1698. border-color:rgba(215, 215, 215, 1);
  1699. border-left:0px;
  1700. border-top:0px;
  1701. border-right:0px;
  1702. border-radius:0px;
  1703. border-bottom-right-radius:0px;
  1704. border-bottom-left-radius:0px;
  1705. filter:drop-shadow(none);
  1706. transition:none;
  1707. }
  1708. #u54642 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:29px;
  1712. top:67px;
  1713. width:375px;
  1714. height:40px;
  1715. display:flex;
  1716. transition:none;
  1717. transform-origin:50% 50%;
  1718. }
  1719. #u54642 .text {
  1720. position:absolute;
  1721. align-self:center;
  1722. padding:2px 2px 2px 2px;
  1723. box-sizing:border-box;
  1724. width:100%;
  1725. }
  1726. #u54642_text {
  1727. border-width:0px;
  1728. word-wrap:break-word;
  1729. text-transform:none;
  1730. visibility:hidden;
  1731. }
  1732. #u54643 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:0px;
  1738. height:0px;
  1739. }
  1740. #u54644_div {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:88px;
  1746. height:32px;
  1747. background:inherit;
  1748. background-color:rgba(255, 255, 255, 1);
  1749. box-sizing:border-box;
  1750. border-width:1px;
  1751. border-style:solid;
  1752. border-color:rgba(242, 242, 242, 1);
  1753. border-radius:33px;
  1754. filter:drop-shadow(none);
  1755. transition:none;
  1756. }
  1757. #u54644 {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:309px;
  1761. top:71px;
  1762. width:88px;
  1763. height:32px;
  1764. display:flex;
  1765. transition:none;
  1766. transform-origin:50% 50%;
  1767. }
  1768. #u54644 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:2px 2px 2px 2px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u54644_text {
  1776. border-width:0px;
  1777. word-wrap:break-word;
  1778. text-transform:none;
  1779. visibility:hidden;
  1780. }
  1781. #u54645 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:0px;
  1787. height:0px;
  1788. }
  1789. #u54646 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:372px;
  1793. top:78px;
  1794. width:18px;
  1795. height:18px;
  1796. display:flex;
  1797. transition:none;
  1798. }
  1799. #u54646 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 2px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u54646_img {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:18px;
  1812. height:18px;
  1813. }
  1814. #u54646_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. visibility:hidden;
  1819. }
  1820. #u54647 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:378px;
  1824. top:84px;
  1825. width:6px;
  1826. height:6px;
  1827. display:flex;
  1828. transition:none;
  1829. }
  1830. #u54647 .text {
  1831. position:absolute;
  1832. align-self:center;
  1833. padding:2px 2px 2px 2px;
  1834. box-sizing:border-box;
  1835. width:100%;
  1836. }
  1837. #u54647_img {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:6px;
  1843. height:6px;
  1844. }
  1845. #u54647_text {
  1846. border-width:0px;
  1847. word-wrap:break-word;
  1848. text-transform:none;
  1849. visibility:hidden;
  1850. }
  1851. #u54648 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:0px;
  1857. height:0px;
  1858. }
  1859. #u54649 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:323px;
  1863. top:85px;
  1864. width:5px;
  1865. height:5px;
  1866. display:flex;
  1867. transition:none;
  1868. }
  1869. #u54649 .text {
  1870. position:absolute;
  1871. align-self:center;
  1872. padding:2px 2px 2px 2px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u54649_img {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:5px;
  1882. height:5px;
  1883. }
  1884. #u54649_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. visibility:hidden;
  1889. }
  1890. #u54650 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:339px;
  1894. top:85px;
  1895. width:5px;
  1896. height:5px;
  1897. display:flex;
  1898. transition:none;
  1899. }
  1900. #u54650 .text {
  1901. position:absolute;
  1902. align-self:center;
  1903. padding:2px 2px 2px 2px;
  1904. box-sizing:border-box;
  1905. width:100%;
  1906. }
  1907. #u54650_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:5px;
  1913. height:5px;
  1914. }
  1915. #u54650_text {
  1916. border-width:0px;
  1917. word-wrap:break-word;
  1918. text-transform:none;
  1919. visibility:hidden;
  1920. }
  1921. #u54651 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:330px;
  1925. top:84px;
  1926. width:7px;
  1927. height:7px;
  1928. display:flex;
  1929. transition:none;
  1930. }
  1931. #u54651 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 2px 2px 2px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u54651_img {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:7px;
  1944. height:7px;
  1945. }
  1946. #u54651_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. visibility:hidden;
  1951. }
  1952. #u54652 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:347px;
  1956. top:87px;
  1957. width:18px;
  1958. height:1px;
  1959. display:flex;
  1960. -webkit-transform:rotate(90deg);
  1961. -moz-transform:rotate(90deg);
  1962. -ms-transform:rotate(90deg);
  1963. transform:rotate(90deg);
  1964. transition:none;
  1965. }
  1966. #u54652 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 2px 2px 2px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u54652_img {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:19px;
  1979. height:2px;
  1980. }
  1981. #u54652_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. visibility:hidden;
  1986. }
  1987. #u54653 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:29px;
  1991. top:24px;
  1992. width:375px;
  1993. height:44px;
  1994. display:flex;
  1995. transition:none;
  1996. }
  1997. #u54653 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 2px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u54653_img {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:375px;
  2010. height:44px;
  2011. }
  2012. #u54653_text {
  2013. border-width:0px;
  2014. word-wrap:break-word;
  2015. text-transform:none;
  2016. visibility:hidden;
  2017. }
  2018. #u54654_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:375px;
  2024. height:50px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 1);
  2027. box-sizing:border-box;
  2028. border-width:1px;
  2029. border-style:solid;
  2030. border-color:rgba(242, 242, 242, 1);
  2031. border-radius:26px;
  2032. border-top-left-radius:0px;
  2033. border-top-right-radius:0px;
  2034. filter:drop-shadow(none);
  2035. transition:none;
  2036. }
  2037. #u54654 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:29px;
  2041. top:788px;
  2042. width:375px;
  2043. height:50px;
  2044. display:flex;
  2045. transition:none;
  2046. transform-origin:50% 50%;
  2047. }
  2048. #u54654 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 2px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u54654_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. visibility:hidden;
  2060. }
  2061. #u54655 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:0px;
  2067. height:0px;
  2068. }
  2069. #u54656 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:69px;
  2073. top:792px;
  2074. width:24px;
  2075. height:24px;
  2076. display:flex;
  2077. transition:none;
  2078. font-size:8px;
  2079. }
  2080. #u54656 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 2px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u54656_img {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:24px;
  2093. height:24px;
  2094. }
  2095. #u54656_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. }
  2100. #u54657_div {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:25px;
  2106. height:17px;
  2107. background:inherit;
  2108. background-color:rgba(255, 255, 255, 0);
  2109. border-radius:0px;
  2110. filter:drop-shadow(none);
  2111. transition:none;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. }
  2117. #u54657 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:69px;
  2121. top:817px;
  2122. width:25px;
  2123. height:17px;
  2124. display:flex;
  2125. transition:none;
  2126. transform-origin:50% 50%;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:12px;
  2131. }
  2132. #u54657 .text {
  2133. position:absolute;
  2134. align-self:flex-start;
  2135. padding:0px 0px 0px 0px;
  2136. box-sizing:border-box;
  2137. width:100%;
  2138. }
  2139. #u54657_text {
  2140. border-width:0px;
  2141. white-space:nowrap;
  2142. text-transform:none;
  2143. }
  2144. #u54658 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:0px;
  2150. height:0px;
  2151. }
  2152. #u54659 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:339px;
  2156. top:794px;
  2157. width:24px;
  2158. height:24px;
  2159. display:flex;
  2160. transition:none;
  2161. font-size:8px;
  2162. }
  2163. #u54659 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u54659_img {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:24px;
  2176. height:24px;
  2177. }
  2178. #u54659_text {
  2179. border-width:0px;
  2180. word-wrap:break-word;
  2181. text-transform:none;
  2182. }
  2183. #u54660_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:25px;
  2189. height:17px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 0);
  2192. border-radius:0px;
  2193. filter:drop-shadow(none);
  2194. transition:none;
  2195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:12px;
  2199. }
  2200. #u54660 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:339px;
  2204. top:819px;
  2205. width:25px;
  2206. height:17px;
  2207. display:flex;
  2208. transition:none;
  2209. transform-origin:50% 50%;
  2210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:12px;
  2214. }
  2215. #u54660 .text {
  2216. position:absolute;
  2217. align-self:flex-start;
  2218. padding:0px 0px 0px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u54660_text {
  2223. border-width:0px;
  2224. white-space:nowrap;
  2225. text-transform:none;
  2226. }
  2227. #u54661_div {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:375px;
  2233. height:681px;
  2234. background:inherit;
  2235. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2236. border-radius:0px;
  2237. filter:drop-shadow(none);
  2238. transition:none;
  2239. }
  2240. #u54661 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:29px;
  2244. top:107px;
  2245. width:375px;
  2246. height:681px;
  2247. display:flex;
  2248. transition:none;
  2249. transform-origin:50% 50%;
  2250. }
  2251. #u54661 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u54661_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u54662 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:0px;
  2270. height:0px;
  2271. }
  2272. #u54663 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:251px;
  2276. top:792px;
  2277. width:24px;
  2278. height:24px;
  2279. display:flex;
  2280. transition:none;
  2281. font-size:8px;
  2282. }
  2283. #u54663 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 2px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u54663_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:24px;
  2296. height:24px;
  2297. }
  2298. #u54663_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. }
  2303. #u54664_div {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:37px;
  2309. height:17px;
  2310. background:inherit;
  2311. background-color:rgba(255, 255, 255, 0);
  2312. border-radius:0px;
  2313. filter:drop-shadow(none);
  2314. transition:none;
  2315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:12px;
  2319. }
  2320. #u54664 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:245px;
  2324. top:817px;
  2325. width:37px;
  2326. height:17px;
  2327. display:flex;
  2328. transition:none;
  2329. transform-origin:50% 50%;
  2330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:12px;
  2334. }
  2335. #u54664 .text {
  2336. position:absolute;
  2337. align-self:flex-start;
  2338. padding:0px 0px 0px 0px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u54664_text {
  2343. border-width:0px;
  2344. white-space:nowrap;
  2345. text-transform:none;
  2346. }
  2347. #u54665 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:0px;
  2353. height:0px;
  2354. }
  2355. #u54666 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:157px;
  2359. top:792px;
  2360. width:24px;
  2361. height:24px;
  2362. display:flex;
  2363. transition:none;
  2364. font-size:8px;
  2365. }
  2366. #u54666 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 2px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u54666_img {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:24px;
  2379. height:24px;
  2380. }
  2381. #u54666_text {
  2382. border-width:0px;
  2383. word-wrap:break-word;
  2384. text-transform:none;
  2385. }
  2386. #u54667_div {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:37px;
  2392. height:17px;
  2393. background:inherit;
  2394. background-color:rgba(255, 255, 255, 0);
  2395. border-radius:0px;
  2396. filter:drop-shadow(none);
  2397. transition:none;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:12px;
  2402. }
  2403. #u54667 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:151px;
  2407. top:817px;
  2408. width:37px;
  2409. height:17px;
  2410. display:flex;
  2411. transition:none;
  2412. transform-origin:50% 50%;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:12px;
  2417. }
  2418. #u54667 .text {
  2419. position:absolute;
  2420. align-self:flex-start;
  2421. padding:0px 0px 0px 0px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u54667_text {
  2426. border-width:0px;
  2427. white-space:nowrap;
  2428. text-transform:none;
  2429. }
  2430. #u54668_div {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:375px;
  2436. height:735px;
  2437. background:inherit;
  2438. background-color:rgba(242, 242, 242, 1);
  2439. border-top:0px;
  2440. border-radius:25px;
  2441. border-top-left-radius:0px;
  2442. border-top-right-radius:0px;
  2443. filter:drop-shadow(none);
  2444. transition:none;
  2445. }
  2446. #u54668 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:482px;
  2450. top:105px;
  2451. width:375px;
  2452. height:735px;
  2453. display:flex;
  2454. transition:none;
  2455. transform-origin:50% 50%;
  2456. }
  2457. #u54668 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 2px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u54668_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. visibility:hidden;
  2469. }
  2470. #u54669_div {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:375px;
  2476. height:735px;
  2477. background:inherit;
  2478. background-color:rgba(255, 255, 255, 1);
  2479. border-top:0px;
  2480. border-radius:22px;
  2481. border-top-left-radius:0px;
  2482. border-top-right-radius:0px;
  2483. filter:drop-shadow(none);
  2484. transition:none;
  2485. }
  2486. #u54669 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:482px;
  2490. top:105px;
  2491. width:375px;
  2492. height:735px;
  2493. display:flex;
  2494. transition:none;
  2495. transform-origin:50% 50%;
  2496. }
  2497. #u54669 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 2px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u54669_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u54670 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:495px;
  2514. top:79px;
  2515. width:11px;
  2516. height:18px;
  2517. display:flex;
  2518. transition:none;
  2519. }
  2520. #u54670 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 2px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u54670_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:11px;
  2533. height:18px;
  2534. }
  2535. #u54670_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. visibility:hidden;
  2540. }
  2541. #u54671_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:85px;
  2547. height:30px;
  2548. background:inherit;
  2549. background-color:rgba(255, 255, 255, 0);
  2550. border-left:0px;
  2551. border-top:0px;
  2552. border-right:0px;
  2553. border-radius:0px;
  2554. border-bottom-right-radius:0px;
  2555. border-bottom-left-radius:0px;
  2556. filter:drop-shadow(none);
  2557. transition:none;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. font-size:14px;
  2562. color:#555555;
  2563. line-height:30px;
  2564. }
  2565. #u54671 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:501px;
  2569. top:150px;
  2570. width:85px;
  2571. height:30px;
  2572. display:flex;
  2573. transition:none;
  2574. transform-origin:50% 50%;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:14px;
  2579. color:#555555;
  2580. line-height:30px;
  2581. }
  2582. #u54671 .text {
  2583. position:absolute;
  2584. align-self:flex-start;
  2585. padding:0px 0px 0px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u54671_text {
  2590. border-width:0px;
  2591. white-space:nowrap;
  2592. text-transform:none;
  2593. }
  2594. #u54672 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:0px;
  2600. height:0px;
  2601. }
  2602. #u54673_div {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:0px;
  2606. top:0px;
  2607. width:375px;
  2608. height:50px;
  2609. background:inherit;
  2610. background-color:rgba(255, 255, 255, 1);
  2611. box-sizing:border-box;
  2612. border-width:1px;
  2613. border-style:solid;
  2614. border-color:rgba(215, 215, 215, 0.4980392156862745);
  2615. border-left:0px;
  2616. border-right:0px;
  2617. border-radius:0px;
  2618. border-top-left-radius:0px;
  2619. border-top-right-radius:0px;
  2620. border-bottom-right-radius:0px;
  2621. border-bottom-left-radius:0px;
  2622. filter:drop-shadow(none);
  2623. transition:none;
  2624. }
  2625. #u54673 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:482px;
  2629. top:201px;
  2630. width:375px;
  2631. height:50px;
  2632. display:flex;
  2633. transition:none;
  2634. transform-origin:50% 50%;
  2635. }
  2636. #u54673 .text {
  2637. position:absolute;
  2638. align-self:center;
  2639. padding:2px 2px 2px 2px;
  2640. box-sizing:border-box;
  2641. width:100%;
  2642. }
  2643. #u54673_text {
  2644. border-width:0px;
  2645. word-wrap:break-word;
  2646. text-transform:none;
  2647. visibility:hidden;
  2648. }
  2649. #u54674_div {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:0px;
  2654. width:43px;
  2655. height:30px;
  2656. background:inherit;
  2657. background-color:rgba(255, 255, 255, 0);
  2658. border-left:0px;
  2659. border-top:0px;
  2660. border-right:0px;
  2661. border-radius:0px;
  2662. border-bottom-right-radius:0px;
  2663. border-bottom-left-radius:0px;
  2664. filter:drop-shadow(none);
  2665. transition:none;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:14px;
  2670. line-height:30px;
  2671. }
  2672. #u54674 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:506px;
  2676. top:211px;
  2677. width:43px;
  2678. height:30px;
  2679. display:flex;
  2680. transition:none;
  2681. transform-origin:50% 50%;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:14px;
  2686. line-height:30px;
  2687. }
  2688. #u54674 .text {
  2689. position:absolute;
  2690. align-self:flex-start;
  2691. padding:0px 0px 0px 0px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u54674_text {
  2696. border-width:0px;
  2697. white-space:nowrap;
  2698. text-transform:none;
  2699. }
  2700. #u54675 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:834px;
  2704. top:220px;
  2705. width:7px;
  2706. height:12px;
  2707. display:flex;
  2708. transition:none;
  2709. }
  2710. #u54675 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u54675_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:7px;
  2723. height:12px;
  2724. }
  2725. #u54675_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u54676 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:0px;
  2737. height:0px;
  2738. }
  2739. #u54677_div {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:375px;
  2745. height:50px;
  2746. background:inherit;
  2747. background-color:rgba(255, 255, 255, 1);
  2748. box-sizing:border-box;
  2749. border-width:1px;
  2750. border-style:solid;
  2751. border-color:rgba(215, 215, 215, 0.4980392156862745);
  2752. border-left:0px;
  2753. border-right:0px;
  2754. border-radius:0px;
  2755. border-top-left-radius:0px;
  2756. border-top-right-radius:0px;
  2757. border-bottom-right-radius:0px;
  2758. border-bottom-left-radius:0px;
  2759. filter:drop-shadow(none);
  2760. transition:none;
  2761. }
  2762. #u54677 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:482px;
  2766. top:250px;
  2767. width:375px;
  2768. height:50px;
  2769. display:flex;
  2770. transition:none;
  2771. transform-origin:50% 50%;
  2772. }
  2773. #u54677 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 2px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u54677_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. visibility:hidden;
  2785. }
  2786. #u54678_div {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:46px;
  2792. height:30px;
  2793. background:inherit;
  2794. background-color:rgba(255, 255, 255, 0);
  2795. border-left:0px;
  2796. border-top:0px;
  2797. border-right:0px;
  2798. border-radius:0px;
  2799. border-bottom-right-radius:0px;
  2800. border-bottom-left-radius:0px;
  2801. filter:drop-shadow(none);
  2802. transition:none;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:14px;
  2807. line-height:30px;
  2808. }
  2809. #u54678 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:506px;
  2813. top:260px;
  2814. width:46px;
  2815. height:30px;
  2816. display:flex;
  2817. transition:none;
  2818. transform-origin:50% 50%;
  2819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2820. font-weight:400;
  2821. font-style:normal;
  2822. font-size:14px;
  2823. line-height:30px;
  2824. }
  2825. #u54678 .text {
  2826. position:absolute;
  2827. align-self:flex-start;
  2828. padding:0px 0px 0px 0px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u54678_text {
  2833. border-width:0px;
  2834. white-space:nowrap;
  2835. text-transform:none;
  2836. }
  2837. #u54679 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:834px;
  2841. top:269px;
  2842. width:7px;
  2843. height:12px;
  2844. display:flex;
  2845. transition:none;
  2846. }
  2847. #u54679 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:2px 2px 2px 2px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u54679_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:7px;
  2860. height:12px;
  2861. }
  2862. #u54679_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. visibility:hidden;
  2867. }
  2868. #u54680 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:0px;
  2874. height:0px;
  2875. }
  2876. #u54681_div {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:375px;
  2882. height:50px;
  2883. background:inherit;
  2884. background-color:rgba(255, 255, 255, 1);
  2885. box-sizing:border-box;
  2886. border-width:1px;
  2887. border-style:solid;
  2888. border-color:rgba(215, 215, 215, 0.4980392156862745);
  2889. border-left:0px;
  2890. border-right:0px;
  2891. border-radius:0px;
  2892. border-top-left-radius:0px;
  2893. border-top-right-radius:0px;
  2894. border-bottom-right-radius:0px;
  2895. border-bottom-left-radius:0px;
  2896. filter:drop-shadow(none);
  2897. transition:none;
  2898. }
  2899. #u54681 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:482px;
  2903. top:299px;
  2904. width:375px;
  2905. height:50px;
  2906. display:flex;
  2907. transition:none;
  2908. transform-origin:50% 50%;
  2909. }
  2910. #u54681 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 2px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u54681_text {
  2918. border-width:0px;
  2919. word-wrap:break-word;
  2920. text-transform:none;
  2921. visibility:hidden;
  2922. }
  2923. #u54682_div {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:46px;
  2929. height:30px;
  2930. background:inherit;
  2931. background-color:rgba(255, 255, 255, 0);
  2932. border-left:0px;
  2933. border-top:0px;
  2934. border-right:0px;
  2935. border-radius:0px;
  2936. border-bottom-right-radius:0px;
  2937. border-bottom-left-radius:0px;
  2938. filter:drop-shadow(none);
  2939. transition:none;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:14px;
  2944. line-height:30px;
  2945. }
  2946. #u54682 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:506px;
  2950. top:309px;
  2951. width:46px;
  2952. height:30px;
  2953. display:flex;
  2954. transition:none;
  2955. transform-origin:50% 50%;
  2956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:14px;
  2960. line-height:30px;
  2961. }
  2962. #u54682 .text {
  2963. position:absolute;
  2964. align-self:flex-start;
  2965. padding:0px 0px 0px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u54682_text {
  2970. border-width:0px;
  2971. white-space:nowrap;
  2972. text-transform:none;
  2973. }
  2974. #u54683 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:834px;
  2978. top:318px;
  2979. width:7px;
  2980. height:12px;
  2981. display:flex;
  2982. transition:none;
  2983. }
  2984. #u54683 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 2px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u54683_img {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:7px;
  2997. height:12px;
  2998. }
  2999. #u54683_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. visibility:hidden;
  3004. }
  3005. #u54684 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:0px;
  3011. height:0px;
  3012. }
  3013. #u54685_div {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:375px;
  3019. height:50px;
  3020. background:inherit;
  3021. background-color:rgba(255, 255, 255, 1);
  3022. box-sizing:border-box;
  3023. border-width:1px;
  3024. border-style:solid;
  3025. border-color:rgba(215, 215, 215, 0.4980392156862745);
  3026. border-left:0px;
  3027. border-right:0px;
  3028. border-radius:0px;
  3029. border-top-left-radius:0px;
  3030. border-top-right-radius:0px;
  3031. border-bottom-right-radius:0px;
  3032. border-bottom-left-radius:0px;
  3033. filter:drop-shadow(none);
  3034. transition:none;
  3035. }
  3036. #u54685 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:482px;
  3040. top:348px;
  3041. width:375px;
  3042. height:50px;
  3043. display:flex;
  3044. transition:none;
  3045. transform-origin:50% 50%;
  3046. }
  3047. #u54685 .text {
  3048. position:absolute;
  3049. align-self:center;
  3050. padding:2px 2px 2px 2px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u54685_text {
  3055. border-width:0px;
  3056. word-wrap:break-word;
  3057. text-transform:none;
  3058. visibility:hidden;
  3059. }
  3060. #u54686_div {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:46px;
  3066. height:30px;
  3067. background:inherit;
  3068. background-color:rgba(255, 255, 255, 0);
  3069. border-left:0px;
  3070. border-top:0px;
  3071. border-right:0px;
  3072. border-radius:0px;
  3073. border-bottom-right-radius:0px;
  3074. border-bottom-left-radius:0px;
  3075. filter:drop-shadow(none);
  3076. transition:none;
  3077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3078. font-weight:400;
  3079. font-style:normal;
  3080. font-size:14px;
  3081. line-height:30px;
  3082. }
  3083. #u54686 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:506px;
  3087. top:358px;
  3088. width:46px;
  3089. height:30px;
  3090. display:flex;
  3091. transition:none;
  3092. transform-origin:50% 50%;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:14px;
  3097. line-height:30px;
  3098. }
  3099. #u54686 .text {
  3100. position:absolute;
  3101. align-self:flex-start;
  3102. padding:0px 0px 0px 0px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u54686_text {
  3107. border-width:0px;
  3108. white-space:nowrap;
  3109. text-transform:none;
  3110. }
  3111. #u54687 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:834px;
  3115. top:367px;
  3116. width:7px;
  3117. height:12px;
  3118. display:flex;
  3119. transition:none;
  3120. }
  3121. #u54687 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 2px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u54687_img {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:7px;
  3134. height:12px;
  3135. }
  3136. #u54687_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. visibility:hidden;
  3141. }
  3142. #u54688 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:0px;
  3148. height:0px;
  3149. }
  3150. #u54689_div {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:375px;
  3156. height:50px;
  3157. background:inherit;
  3158. background-color:rgba(255, 255, 255, 1);
  3159. box-sizing:border-box;
  3160. border-width:1px;
  3161. border-style:solid;
  3162. border-color:rgba(215, 215, 215, 0.4980392156862745);
  3163. border-left:0px;
  3164. border-right:0px;
  3165. border-radius:0px;
  3166. border-top-left-radius:0px;
  3167. border-top-right-radius:0px;
  3168. border-bottom-right-radius:0px;
  3169. border-bottom-left-radius:0px;
  3170. filter:drop-shadow(none);
  3171. transition:none;
  3172. }
  3173. #u54689 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:482px;
  3177. top:397px;
  3178. width:375px;
  3179. height:50px;
  3180. display:flex;
  3181. transition:none;
  3182. transform-origin:50% 50%;
  3183. }
  3184. #u54689 .text {
  3185. position:absolute;
  3186. align-self:center;
  3187. padding:2px 2px 2px 2px;
  3188. box-sizing:border-box;
  3189. width:100%;
  3190. }
  3191. #u54689_text {
  3192. border-width:0px;
  3193. word-wrap:break-word;
  3194. text-transform:none;
  3195. visibility:hidden;
  3196. }
  3197. #u54690_div {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:46px;
  3203. height:30px;
  3204. background:inherit;
  3205. background-color:rgba(255, 255, 255, 0);
  3206. border-left:0px;
  3207. border-top:0px;
  3208. border-right:0px;
  3209. border-radius:0px;
  3210. border-bottom-right-radius:0px;
  3211. border-bottom-left-radius:0px;
  3212. filter:drop-shadow(none);
  3213. transition:none;
  3214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:14px;
  3218. line-height:30px;
  3219. }
  3220. #u54690 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:506px;
  3224. top:407px;
  3225. width:46px;
  3226. height:30px;
  3227. display:flex;
  3228. transition:none;
  3229. transform-origin:50% 50%;
  3230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. font-size:14px;
  3234. line-height:30px;
  3235. }
  3236. #u54690 .text {
  3237. position:absolute;
  3238. align-self:flex-start;
  3239. padding:0px 0px 0px 0px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u54690_text {
  3244. border-width:0px;
  3245. white-space:nowrap;
  3246. text-transform:none;
  3247. }
  3248. #u54691 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:834px;
  3252. top:416px;
  3253. width:7px;
  3254. height:12px;
  3255. display:flex;
  3256. transition:none;
  3257. }
  3258. #u54691 .text {
  3259. position:absolute;
  3260. align-self:center;
  3261. padding:2px 2px 2px 2px;
  3262. box-sizing:border-box;
  3263. width:100%;
  3264. }
  3265. #u54691_img {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:7px;
  3271. height:12px;
  3272. }
  3273. #u54691_text {
  3274. border-width:0px;
  3275. word-wrap:break-word;
  3276. text-transform:none;
  3277. visibility:hidden;
  3278. }
  3279. #u54692 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:0px;
  3285. height:0px;
  3286. }
  3287. #u54693_div {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:375px;
  3293. height:50px;
  3294. background:inherit;
  3295. background-color:rgba(255, 255, 255, 1);
  3296. box-sizing:border-box;
  3297. border-width:1px;
  3298. border-style:solid;
  3299. border-color:rgba(215, 215, 215, 0.4980392156862745);
  3300. border-left:0px;
  3301. border-right:0px;
  3302. border-radius:0px;
  3303. border-top-left-radius:0px;
  3304. border-top-right-radius:0px;
  3305. border-bottom-right-radius:0px;
  3306. border-bottom-left-radius:0px;
  3307. filter:drop-shadow(none);
  3308. transition:none;
  3309. }
  3310. #u54693 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:482px;
  3314. top:446px;
  3315. width:375px;
  3316. height:50px;
  3317. display:flex;
  3318. transition:none;
  3319. transform-origin:50% 50%;
  3320. }
  3321. #u54693 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 2px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u54693_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. visibility:hidden;
  3333. }
  3334. #u54694_div {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:46px;
  3340. height:30px;
  3341. background:inherit;
  3342. background-color:rgba(255, 255, 255, 0);
  3343. border-left:0px;
  3344. border-top:0px;
  3345. border-right:0px;
  3346. border-radius:0px;
  3347. border-bottom-right-radius:0px;
  3348. border-bottom-left-radius:0px;
  3349. filter:drop-shadow(none);
  3350. transition:none;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:14px;
  3355. line-height:30px;
  3356. }
  3357. #u54694 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:506px;
  3361. top:456px;
  3362. width:46px;
  3363. height:30px;
  3364. display:flex;
  3365. transition:none;
  3366. transform-origin:50% 50%;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:14px;
  3371. line-height:30px;
  3372. }
  3373. #u54694 .text {
  3374. position:absolute;
  3375. align-self:flex-start;
  3376. padding:0px 0px 0px 0px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u54694_text {
  3381. border-width:0px;
  3382. white-space:nowrap;
  3383. text-transform:none;
  3384. }
  3385. #u54695 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:834px;
  3389. top:465px;
  3390. width:7px;
  3391. height:12px;
  3392. display:flex;
  3393. transition:none;
  3394. }
  3395. #u54695 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 2px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u54695_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:7px;
  3408. height:12px;
  3409. }
  3410. #u54695_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. visibility:hidden;
  3415. }
  3416. #u54696 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:0px;
  3422. height:0px;
  3423. }
  3424. #u54697_div {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:375px;
  3430. height:50px;
  3431. background:inherit;
  3432. background-color:rgba(255, 255, 255, 1);
  3433. box-sizing:border-box;
  3434. border-width:1px;
  3435. border-style:solid;
  3436. border-color:rgba(215, 215, 215, 0.4980392156862745);
  3437. border-left:0px;
  3438. border-right:0px;
  3439. border-radius:0px;
  3440. border-top-left-radius:0px;
  3441. border-top-right-radius:0px;
  3442. border-bottom-right-radius:0px;
  3443. border-bottom-left-radius:0px;
  3444. filter:drop-shadow(none);
  3445. transition:none;
  3446. }
  3447. #u54697 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:482px;
  3451. top:495px;
  3452. width:375px;
  3453. height:50px;
  3454. display:flex;
  3455. transition:none;
  3456. transform-origin:50% 50%;
  3457. }
  3458. #u54697 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 2px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u54697_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u54698_div {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:45px;
  3477. height:30px;
  3478. background:inherit;
  3479. background-color:rgba(255, 255, 255, 0);
  3480. border-left:0px;
  3481. border-top:0px;
  3482. border-right:0px;
  3483. border-radius:0px;
  3484. border-bottom-right-radius:0px;
  3485. border-bottom-left-radius:0px;
  3486. filter:drop-shadow(none);
  3487. transition:none;
  3488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3489. font-weight:400;
  3490. font-style:normal;
  3491. font-size:14px;
  3492. line-height:30px;
  3493. }
  3494. #u54698 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:506px;
  3498. top:505px;
  3499. width:45px;
  3500. height:30px;
  3501. display:flex;
  3502. transition:none;
  3503. transform-origin:50% 50%;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:14px;
  3508. line-height:30px;
  3509. }
  3510. #u54698 .text {
  3511. position:absolute;
  3512. align-self:flex-start;
  3513. padding:0px 0px 0px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u54698_text {
  3518. border-width:0px;
  3519. white-space:nowrap;
  3520. text-transform:none;
  3521. }
  3522. #u54699 {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:834px;
  3526. top:514px;
  3527. width:7px;
  3528. height:12px;
  3529. display:flex;
  3530. transition:none;
  3531. }
  3532. #u54699 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 2px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u54699_img {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:7px;
  3545. height:12px;
  3546. }
  3547. #u54699_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. visibility:hidden;
  3552. }
  3553. #u54700 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:0px;
  3559. height:0px;
  3560. }
  3561. #u54701_div {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:375px;
  3567. height:50px;
  3568. background:inherit;
  3569. background-color:rgba(255, 255, 255, 1);
  3570. box-sizing:border-box;
  3571. border-width:1px;
  3572. border-style:solid;
  3573. border-color:rgba(215, 215, 215, 0.4980392156862745);
  3574. border-left:0px;
  3575. border-right:0px;
  3576. border-radius:0px;
  3577. border-top-left-radius:0px;
  3578. border-top-right-radius:0px;
  3579. border-bottom-right-radius:0px;
  3580. border-bottom-left-radius:0px;
  3581. filter:drop-shadow(none);
  3582. transition:none;
  3583. }
  3584. #u54701 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:482px;
  3588. top:544px;
  3589. width:375px;
  3590. height:50px;
  3591. display:flex;
  3592. transition:none;
  3593. transform-origin:50% 50%;
  3594. }
  3595. #u54701 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 2px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u54701_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u54702_div {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:46px;
  3614. height:30px;
  3615. background:inherit;
  3616. background-color:rgba(255, 255, 255, 0);
  3617. border-left:0px;
  3618. border-top:0px;
  3619. border-right:0px;
  3620. border-radius:0px;
  3621. border-bottom-right-radius:0px;
  3622. border-bottom-left-radius:0px;
  3623. filter:drop-shadow(none);
  3624. transition:none;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:14px;
  3629. line-height:30px;
  3630. }
  3631. #u54702 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:506px;
  3635. top:554px;
  3636. width:46px;
  3637. height:30px;
  3638. display:flex;
  3639. transition:none;
  3640. transform-origin:50% 50%;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:14px;
  3645. line-height:30px;
  3646. }
  3647. #u54702 .text {
  3648. position:absolute;
  3649. align-self:flex-start;
  3650. padding:0px 0px 0px 0px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u54702_text {
  3655. border-width:0px;
  3656. white-space:nowrap;
  3657. text-transform:none;
  3658. }
  3659. #u54703 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:834px;
  3663. top:563px;
  3664. width:7px;
  3665. height:12px;
  3666. display:flex;
  3667. transition:none;
  3668. }
  3669. #u54703 .text {
  3670. position:absolute;
  3671. align-self:center;
  3672. padding:2px 2px 2px 2px;
  3673. box-sizing:border-box;
  3674. width:100%;
  3675. }
  3676. #u54703_img {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:7px;
  3682. height:12px;
  3683. }
  3684. #u54703_text {
  3685. border-width:0px;
  3686. word-wrap:break-word;
  3687. text-transform:none;
  3688. visibility:hidden;
  3689. }
  3690. #u54704_div {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:375px;
  3696. height:140px;
  3697. background:inherit;
  3698. background-color:rgba(242, 242, 242, 0.2980392156862745);
  3699. border-top:0px;
  3700. border-radius:0px;
  3701. border-top-left-radius:0px;
  3702. border-top-right-radius:0px;
  3703. filter:drop-shadow(none);
  3704. transition:none;
  3705. }
  3706. #u54704 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:29px;
  3710. top:155px;
  3711. width:375px;
  3712. height:140px;
  3713. display:flex;
  3714. transition:none;
  3715. transform-origin:50% 50%;
  3716. }
  3717. #u54704 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:2px 2px 2px 2px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u54704_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. visibility:hidden;
  3729. }
  3730. #u54705 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:0px;
  3736. height:0px;
  3737. }
  3738. #u54706_div {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:342px;
  3744. height:30px;
  3745. background:inherit;
  3746. background-color:rgba(242, 242, 242, 0.8);
  3747. border-radius:19px;
  3748. filter:drop-shadow(none);
  3749. transition:none;
  3750. font-family:"Microsoft YaHei", sans-serif;
  3751. font-weight:400;
  3752. font-style:normal;
  3753. font-size:14px;
  3754. color:#CCCCCC;
  3755. text-align:left;
  3756. }
  3757. #u54706 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:49px;
  3761. top:165px;
  3762. width:342px;
  3763. height:30px;
  3764. display:flex;
  3765. transition:none;
  3766. transform-origin:50% 50%;
  3767. font-family:"Microsoft YaHei", sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:14px;
  3771. color:#CCCCCC;
  3772. text-align:left;
  3773. }
  3774. #u54706 .text {
  3775. position:absolute;
  3776. align-self:center;
  3777. padding:2px 8px 2px 8px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u54706_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. visibility:hidden;
  3786. }
  3787. #u54707_input {
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:200px;
  3792. height:25px;
  3793. padding:2px 2px 2px 2px;
  3794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3795. font-weight:400;
  3796. font-style:normal;
  3797. font-size:14px;
  3798. letter-spacing:normal;
  3799. color:#000000;
  3800. vertical-align:none;
  3801. text-align:left;
  3802. text-transform:none;
  3803. background-color:transparent;
  3804. border-color:transparent;
  3805. }
  3806. #u54707_input.hint {
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:200px;
  3811. height:25px;
  3812. padding:2px 2px 2px 2px;
  3813. font-family:"Microsoft YaHei", sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:12px;
  3817. letter-spacing:normal;
  3818. color:#AAAAAA;
  3819. vertical-align:none;
  3820. text-align:left;
  3821. text-transform:none;
  3822. background-color:transparent;
  3823. border-color:transparent;
  3824. }
  3825. #u54707_input.disabled {
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:200px;
  3830. height:25px;
  3831. padding:2px 2px 2px 2px;
  3832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:14px;
  3836. letter-spacing:normal;
  3837. color:#000000;
  3838. vertical-align:none;
  3839. text-align:left;
  3840. text-transform:none;
  3841. background-color:transparent;
  3842. border-color:transparent;
  3843. }
  3844. #u54707_input.hint.disabled {
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:200px;
  3849. height:25px;
  3850. padding:2px 2px 2px 2px;
  3851. font-family:"Microsoft YaHei", sans-serif;
  3852. font-weight:400;
  3853. font-style:normal;
  3854. font-size:12px;
  3855. letter-spacing:normal;
  3856. color:#AAAAAA;
  3857. vertical-align:none;
  3858. text-align:left;
  3859. text-transform:none;
  3860. background-color:transparent;
  3861. border-color:transparent;
  3862. }
  3863. #u54707_div {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:200px;
  3869. height:25px;
  3870. background:inherit;
  3871. background-color:rgba(255, 255, 255, 0);
  3872. border-radius:0px;
  3873. filter:drop-shadow(none);
  3874. transition:none;
  3875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3876. font-weight:400;
  3877. font-style:normal;
  3878. font-size:14px;
  3879. }
  3880. #u54707 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:79px;
  3884. top:166px;
  3885. width:200px;
  3886. height:25px;
  3887. display:flex;
  3888. transition:none;
  3889. transform-origin:50% 50%;
  3890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:14px;
  3894. }
  3895. #u54707 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:2px 2px 2px 2px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u54707_div.hint {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:200px;
  3908. height:25px;
  3909. background:inherit;
  3910. background-color:rgba(255, 255, 255, 0);
  3911. border-radius:0px;
  3912. filter:drop-shadow(none);
  3913. transition:none;
  3914. font-family:"Microsoft YaHei", sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:14px;
  3918. }
  3919. #u54707.hint {
  3920. }
  3921. #u54707_div.disabled {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:200px;
  3927. height:25px;
  3928. background:inherit;
  3929. background-color:rgba(240, 240, 240, 1);
  3930. border-radius:0px;
  3931. filter:drop-shadow(none);
  3932. transition:none;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. }
  3938. #u54707.disabled {
  3939. }
  3940. #u54707_div.hint.disabled {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:200px;
  3946. height:25px;
  3947. background:inherit;
  3948. background-color:rgba(240, 240, 240, 1);
  3949. border-radius:0px;
  3950. filter:drop-shadow(none);
  3951. transition:none;
  3952. font-family:"Microsoft YaHei", sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:14px;
  3956. }
  3957. #u54707.hint.disabled {
  3958. }
  3959. #u54708 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:59px;
  3963. top:172px;
  3964. width:14px;
  3965. height:14px;
  3966. display:flex;
  3967. transition:none;
  3968. }
  3969. #u54708 .text {
  3970. position:absolute;
  3971. align-self:center;
  3972. padding:2px 2px 2px 2px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u54708_img {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:14px;
  3982. height:14px;
  3983. }
  3984. #u54708_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. visibility:hidden;
  3989. }
  3990. #u54709_div {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:41px;
  3996. height:30px;
  3997. background:inherit;
  3998. background-color:rgba(255, 255, 255, 0);
  3999. border-left:0px;
  4000. border-top:0px;
  4001. border-right:0px;
  4002. border-radius:0px;
  4003. border-bottom-right-radius:0px;
  4004. border-bottom-left-radius:0px;
  4005. filter:drop-shadow(none);
  4006. transition:none;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:10px;
  4011. color:#AAAAAA;
  4012. line-height:30px;
  4013. }
  4014. #u54709 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:51px;
  4018. top:195px;
  4019. width:41px;
  4020. height:30px;
  4021. display:flex;
  4022. transition:none;
  4023. transform-origin:50% 50%;
  4024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:10px;
  4028. color:#AAAAAA;
  4029. line-height:30px;
  4030. }
  4031. #u54709 .text {
  4032. position:absolute;
  4033. align-self:flex-start;
  4034. padding:0px 0px 0px 0px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u54709_text {
  4039. border-width:0px;
  4040. white-space:nowrap;
  4041. text-transform:none;
  4042. }
  4043. #u54710_div {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:375px;
  4049. height:40px;
  4050. background:inherit;
  4051. background-color:rgba(255, 255, 255, 1);
  4052. border-top:0px;
  4053. border-radius:0px;
  4054. border-top-left-radius:0px;
  4055. border-top-right-radius:0px;
  4056. filter:drop-shadow(none);
  4057. transition:none;
  4058. }
  4059. #u54710 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:29px;
  4063. top:225px;
  4064. width:375px;
  4065. height:40px;
  4066. display:flex;
  4067. transition:none;
  4068. transform-origin:50% 50%;
  4069. }
  4070. #u54710 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:2px 2px 2px 2px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u54710_text {
  4078. border-width:0px;
  4079. word-wrap:break-word;
  4080. text-transform:none;
  4081. visibility:hidden;
  4082. }
  4083. #u54711 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:0px;
  4089. height:0px;
  4090. }
  4091. #u54712_input {
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:66px;
  4096. height:30px;
  4097. padding:2px 2px 2px 2px;
  4098. font-family:'ArialMT', 'Arial', sans-serif;
  4099. font-weight:400;
  4100. font-style:normal;
  4101. font-size:12px;
  4102. letter-spacing:normal;
  4103. color:#333333;
  4104. vertical-align:none;
  4105. text-align:left;
  4106. text-transform:none;
  4107. background-color:transparent;
  4108. border-color:transparent;
  4109. }
  4110. #u54712_input.disabled {
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:66px;
  4115. height:30px;
  4116. padding:2px 2px 2px 2px;
  4117. font-family:'ArialMT', 'Arial', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. letter-spacing:normal;
  4122. color:#333333;
  4123. vertical-align:none;
  4124. text-align:left;
  4125. text-transform:none;
  4126. background-color:transparent;
  4127. border-color:transparent;
  4128. }
  4129. #u54712_div {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:66px;
  4135. height:30px;
  4136. background:inherit;
  4137. background-color:rgba(255, 255, 255, 0);
  4138. border-radius:0px;
  4139. filter:drop-shadow(none);
  4140. transition:none;
  4141. font-size:12px;
  4142. color:#333333;
  4143. }
  4144. #u54712 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:44px;
  4148. top:230px;
  4149. width:66px;
  4150. height:30px;
  4151. display:flex;
  4152. transition:none;
  4153. transform-origin:50% 50%;
  4154. font-size:12px;
  4155. color:#333333;
  4156. }
  4157. #u54712 .text {
  4158. position:absolute;
  4159. align-self:flex-start;
  4160. padding:2px 2px 2px 2px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u54712_div.disabled {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:66px;
  4170. height:30px;
  4171. background:inherit;
  4172. background-color:rgba(240, 240, 240, 1);
  4173. border-radius:0px;
  4174. filter:drop-shadow(none);
  4175. transition:none;
  4176. font-size:12px;
  4177. color:#333333;
  4178. }
  4179. #u54712.disabled {
  4180. }
  4181. .u54712_input_option {
  4182. font-size:12px;
  4183. }
  4184. #u54713_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:49px;
  4190. height:30px;
  4191. background:inherit;
  4192. background-color:rgba(255, 255, 255, 0);
  4193. border-left:0px;
  4194. border-top:0px;
  4195. border-right:0px;
  4196. border-radius:0px;
  4197. border-bottom-right-radius:0px;
  4198. border-bottom-left-radius:0px;
  4199. filter:drop-shadow(none);
  4200. transition:none;
  4201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:12px;
  4205. line-height:30px;
  4206. }
  4207. #u54713 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:335px;
  4211. top:230px;
  4212. width:49px;
  4213. height:30px;
  4214. display:flex;
  4215. transition:none;
  4216. transform-origin:50% 50%;
  4217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:12px;
  4221. line-height:30px;
  4222. }
  4223. #u54713 .text {
  4224. position:absolute;
  4225. align-self:flex-start;
  4226. padding:0px 0px 0px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u54713_text {
  4231. border-width:0px;
  4232. white-space:nowrap;
  4233. text-transform:none;
  4234. }
  4235. #u54714_div {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:41px;
  4241. height:30px;
  4242. background:inherit;
  4243. background-color:rgba(255, 255, 255, 0);
  4244. border-left:0px;
  4245. border-top:0px;
  4246. border-right:0px;
  4247. border-radius:0px;
  4248. border-bottom-right-radius:0px;
  4249. border-bottom-left-radius:0px;
  4250. filter:drop-shadow(none);
  4251. transition:none;
  4252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:10px;
  4256. color:#AAAAAA;
  4257. line-height:30px;
  4258. }
  4259. #u54714 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:51px;
  4263. top:265px;
  4264. width:41px;
  4265. height:30px;
  4266. display:flex;
  4267. transition:none;
  4268. transform-origin:50% 50%;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:10px;
  4273. color:#AAAAAA;
  4274. line-height:30px;
  4275. }
  4276. #u54714 .text {
  4277. position:absolute;
  4278. align-self:flex-start;
  4279. padding:0px 0px 0px 0px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u54714_text {
  4284. border-width:0px;
  4285. white-space:nowrap;
  4286. text-transform:none;
  4287. }
  4288. #u54715_div {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:73px;
  4294. height:30px;
  4295. background:inherit;
  4296. background-color:rgba(255, 255, 255, 0);
  4297. border-left:0px;
  4298. border-top:0px;
  4299. border-right:0px;
  4300. border-radius:0px;
  4301. border-bottom-right-radius:0px;
  4302. border-bottom-left-radius:0px;
  4303. filter:drop-shadow(none);
  4304. transition:none;
  4305. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4306. font-weight:500;
  4307. font-style:normal;
  4308. font-size:18px;
  4309. line-height:30px;
  4310. }
  4311. #u54715 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:501px;
  4315. top:120px;
  4316. width:73px;
  4317. height:30px;
  4318. display:flex;
  4319. transition:none;
  4320. transform-origin:50% 50%;
  4321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4322. font-weight:500;
  4323. font-style:normal;
  4324. font-size:18px;
  4325. line-height:30px;
  4326. }
  4327. #u54715 .text {
  4328. position:absolute;
  4329. align-self:flex-start;
  4330. padding:0px 0px 0px 0px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u54715_text {
  4335. border-width:0px;
  4336. white-space:nowrap;
  4337. text-transform:none;
  4338. }
  4339. #u54716 {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:905px;
  4343. top:0px;
  4344. width:433px;
  4345. height:865px;
  4346. }
  4347. #u54717 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:433px;
  4353. height:865px;
  4354. display:flex;
  4355. transition:none;
  4356. }
  4357. #u54717 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:2px 2px 2px 2px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u54717_img {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:433px;
  4370. height:865px;
  4371. }
  4372. #u54717_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u54718_div {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:375px;
  4384. height:40px;
  4385. background:inherit;
  4386. background-color:rgba(255, 255, 255, 1);
  4387. box-sizing:border-box;
  4388. border-width:1px;
  4389. border-style:solid;
  4390. border-color:rgba(215, 215, 215, 1);
  4391. border-left:0px;
  4392. border-top:0px;
  4393. border-right:0px;
  4394. border-radius:0px;
  4395. border-bottom-right-radius:0px;
  4396. border-bottom-left-radius:0px;
  4397. filter:drop-shadow(none);
  4398. transition:none;
  4399. }
  4400. #u54718 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:29px;
  4404. top:67px;
  4405. width:375px;
  4406. height:40px;
  4407. display:flex;
  4408. transition:none;
  4409. transform-origin:50% 50%;
  4410. }
  4411. #u54718 .text {
  4412. position:absolute;
  4413. align-self:center;
  4414. padding:2px 2px 2px 2px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u54718_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. visibility:hidden;
  4423. }
  4424. #u54719 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:0px;
  4430. height:0px;
  4431. }
  4432. #u54720_div {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:88px;
  4438. height:32px;
  4439. background:inherit;
  4440. background-color:rgba(255, 255, 255, 1);
  4441. box-sizing:border-box;
  4442. border-width:1px;
  4443. border-style:solid;
  4444. border-color:rgba(242, 242, 242, 1);
  4445. border-radius:33px;
  4446. filter:drop-shadow(none);
  4447. transition:none;
  4448. }
  4449. #u54720 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:309px;
  4453. top:71px;
  4454. width:88px;
  4455. height:32px;
  4456. display:flex;
  4457. transition:none;
  4458. transform-origin:50% 50%;
  4459. }
  4460. #u54720 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 2px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u54720_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u54721 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:0px;
  4479. height:0px;
  4480. }
  4481. #u54722 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:372px;
  4485. top:78px;
  4486. width:18px;
  4487. height:18px;
  4488. display:flex;
  4489. transition:none;
  4490. }
  4491. #u54722 .text {
  4492. position:absolute;
  4493. align-self:center;
  4494. padding:2px 2px 2px 2px;
  4495. box-sizing:border-box;
  4496. width:100%;
  4497. }
  4498. #u54722_img {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:18px;
  4504. height:18px;
  4505. }
  4506. #u54722_text {
  4507. border-width:0px;
  4508. word-wrap:break-word;
  4509. text-transform:none;
  4510. visibility:hidden;
  4511. }
  4512. #u54723 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:378px;
  4516. top:84px;
  4517. width:6px;
  4518. height:6px;
  4519. display:flex;
  4520. transition:none;
  4521. }
  4522. #u54723 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 2px 2px 2px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u54723_img {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:6px;
  4535. height:6px;
  4536. }
  4537. #u54723_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u54724 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:0px;
  4549. height:0px;
  4550. }
  4551. #u54725 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:323px;
  4555. top:85px;
  4556. width:5px;
  4557. height:5px;
  4558. display:flex;
  4559. transition:none;
  4560. }
  4561. #u54725 .text {
  4562. position:absolute;
  4563. align-self:center;
  4564. padding:2px 2px 2px 2px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u54725_img {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:5px;
  4574. height:5px;
  4575. }
  4576. #u54725_text {
  4577. border-width:0px;
  4578. word-wrap:break-word;
  4579. text-transform:none;
  4580. visibility:hidden;
  4581. }
  4582. #u54726 {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:339px;
  4586. top:85px;
  4587. width:5px;
  4588. height:5px;
  4589. display:flex;
  4590. transition:none;
  4591. }
  4592. #u54726 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:2px 2px 2px 2px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u54726_img {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:5px;
  4605. height:5px;
  4606. }
  4607. #u54726_text {
  4608. border-width:0px;
  4609. word-wrap:break-word;
  4610. text-transform:none;
  4611. visibility:hidden;
  4612. }
  4613. #u54727 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:330px;
  4617. top:84px;
  4618. width:7px;
  4619. height:7px;
  4620. display:flex;
  4621. transition:none;
  4622. }
  4623. #u54727 .text {
  4624. position:absolute;
  4625. align-self:center;
  4626. padding:2px 2px 2px 2px;
  4627. box-sizing:border-box;
  4628. width:100%;
  4629. }
  4630. #u54727_img {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:7px;
  4636. height:7px;
  4637. }
  4638. #u54727_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. visibility:hidden;
  4643. }
  4644. #u54728 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:347px;
  4648. top:87px;
  4649. width:18px;
  4650. height:1px;
  4651. display:flex;
  4652. -webkit-transform:rotate(90deg);
  4653. -moz-transform:rotate(90deg);
  4654. -ms-transform:rotate(90deg);
  4655. transform:rotate(90deg);
  4656. transition:none;
  4657. }
  4658. #u54728 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:2px 2px 2px 2px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u54728_img {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:19px;
  4671. height:2px;
  4672. }
  4673. #u54728_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. visibility:hidden;
  4678. }
  4679. #u54729 {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:29px;
  4683. top:24px;
  4684. width:375px;
  4685. height:44px;
  4686. display:flex;
  4687. transition:none;
  4688. }
  4689. #u54729 .text {
  4690. position:absolute;
  4691. align-self:center;
  4692. padding:2px 2px 2px 2px;
  4693. box-sizing:border-box;
  4694. width:100%;
  4695. }
  4696. #u54729_img {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:375px;
  4702. height:44px;
  4703. }
  4704. #u54729_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. visibility:hidden;
  4709. }
  4710. #u54730_div {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:375px;
  4716. height:50px;
  4717. background:inherit;
  4718. background-color:rgba(255, 255, 255, 1);
  4719. box-sizing:border-box;
  4720. border-width:1px;
  4721. border-style:solid;
  4722. border-color:rgba(242, 242, 242, 1);
  4723. border-radius:26px;
  4724. border-top-left-radius:0px;
  4725. border-top-right-radius:0px;
  4726. filter:drop-shadow(none);
  4727. transition:none;
  4728. }
  4729. #u54730 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:29px;
  4733. top:788px;
  4734. width:375px;
  4735. height:50px;
  4736. display:flex;
  4737. transition:none;
  4738. transform-origin:50% 50%;
  4739. }
  4740. #u54730 .text {
  4741. position:absolute;
  4742. align-self:center;
  4743. padding:2px 2px 2px 2px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u54730_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. visibility:hidden;
  4752. }
  4753. #u54731 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:0px;
  4759. height:0px;
  4760. }
  4761. #u54732 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:69px;
  4765. top:792px;
  4766. width:24px;
  4767. height:24px;
  4768. display:flex;
  4769. transition:none;
  4770. font-size:8px;
  4771. }
  4772. #u54732 .text {
  4773. position:absolute;
  4774. align-self:center;
  4775. padding:2px 2px 2px 2px;
  4776. box-sizing:border-box;
  4777. width:100%;
  4778. }
  4779. #u54732_img {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:24px;
  4785. height:24px;
  4786. }
  4787. #u54732_text {
  4788. border-width:0px;
  4789. word-wrap:break-word;
  4790. text-transform:none;
  4791. }
  4792. #u54733_div {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:25px;
  4798. height:17px;
  4799. background:inherit;
  4800. background-color:rgba(255, 255, 255, 0);
  4801. border-radius:0px;
  4802. filter:drop-shadow(none);
  4803. transition:none;
  4804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4805. font-weight:400;
  4806. font-style:normal;
  4807. font-size:12px;
  4808. }
  4809. #u54733 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:69px;
  4813. top:817px;
  4814. width:25px;
  4815. height:17px;
  4816. display:flex;
  4817. transition:none;
  4818. transform-origin:50% 50%;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:12px;
  4823. }
  4824. #u54733 .text {
  4825. position:absolute;
  4826. align-self:flex-start;
  4827. padding:0px 0px 0px 0px;
  4828. box-sizing:border-box;
  4829. width:100%;
  4830. }
  4831. #u54733_text {
  4832. border-width:0px;
  4833. white-space:nowrap;
  4834. text-transform:none;
  4835. }
  4836. #u54734 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:0px;
  4842. height:0px;
  4843. }
  4844. #u54735 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:339px;
  4848. top:794px;
  4849. width:24px;
  4850. height:24px;
  4851. display:flex;
  4852. transition:none;
  4853. font-size:8px;
  4854. }
  4855. #u54735 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 2px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u54735_img {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:0px;
  4866. top:0px;
  4867. width:24px;
  4868. height:24px;
  4869. }
  4870. #u54735_text {
  4871. border-width:0px;
  4872. word-wrap:break-word;
  4873. text-transform:none;
  4874. }
  4875. #u54736_div {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:25px;
  4881. height:17px;
  4882. background:inherit;
  4883. background-color:rgba(255, 255, 255, 0);
  4884. border-radius:0px;
  4885. filter:drop-shadow(none);
  4886. transition:none;
  4887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:12px;
  4891. }
  4892. #u54736 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:339px;
  4896. top:819px;
  4897. width:25px;
  4898. height:17px;
  4899. display:flex;
  4900. transition:none;
  4901. transform-origin:50% 50%;
  4902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4903. font-weight:400;
  4904. font-style:normal;
  4905. font-size:12px;
  4906. }
  4907. #u54736 .text {
  4908. position:absolute;
  4909. align-self:flex-start;
  4910. padding:0px 0px 0px 0px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u54736_text {
  4915. border-width:0px;
  4916. white-space:nowrap;
  4917. text-transform:none;
  4918. }
  4919. #u54737_div {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:375px;
  4925. height:681px;
  4926. background:inherit;
  4927. background-color:rgba(242, 242, 242, 0.4627450980392157);
  4928. border-radius:0px;
  4929. filter:drop-shadow(none);
  4930. transition:none;
  4931. }
  4932. #u54737 {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:29px;
  4936. top:107px;
  4937. width:375px;
  4938. height:681px;
  4939. display:flex;
  4940. transition:none;
  4941. transform-origin:50% 50%;
  4942. }
  4943. #u54737 .text {
  4944. position:absolute;
  4945. align-self:center;
  4946. padding:2px 2px 2px 2px;
  4947. box-sizing:border-box;
  4948. width:100%;
  4949. }
  4950. #u54737_text {
  4951. border-width:0px;
  4952. word-wrap:break-word;
  4953. text-transform:none;
  4954. visibility:hidden;
  4955. }
  4956. #u54738 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:0px;
  4962. height:0px;
  4963. }
  4964. #u54739 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:251px;
  4968. top:792px;
  4969. width:24px;
  4970. height:24px;
  4971. display:flex;
  4972. transition:none;
  4973. font-size:8px;
  4974. }
  4975. #u54739 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:2px 2px 2px 2px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u54739_img {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:24px;
  4988. height:24px;
  4989. }
  4990. #u54739_text {
  4991. border-width:0px;
  4992. word-wrap:break-word;
  4993. text-transform:none;
  4994. }
  4995. #u54740_div {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:37px;
  5001. height:17px;
  5002. background:inherit;
  5003. background-color:rgba(255, 255, 255, 0);
  5004. border-radius:0px;
  5005. filter:drop-shadow(none);
  5006. transition:none;
  5007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:12px;
  5011. }
  5012. #u54740 {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:245px;
  5016. top:817px;
  5017. width:37px;
  5018. height:17px;
  5019. display:flex;
  5020. transition:none;
  5021. transform-origin:50% 50%;
  5022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5023. font-weight:400;
  5024. font-style:normal;
  5025. font-size:12px;
  5026. }
  5027. #u54740 .text {
  5028. position:absolute;
  5029. align-self:flex-start;
  5030. padding:0px 0px 0px 0px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u54740_text {
  5035. border-width:0px;
  5036. white-space:nowrap;
  5037. text-transform:none;
  5038. }
  5039. #u54741 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:0px;
  5045. height:0px;
  5046. }
  5047. #u54742 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:157px;
  5051. top:792px;
  5052. width:24px;
  5053. height:24px;
  5054. display:flex;
  5055. transition:none;
  5056. font-size:8px;
  5057. }
  5058. #u54742 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:2px 2px 2px 2px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u54742_img {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:24px;
  5071. height:24px;
  5072. }
  5073. #u54742_text {
  5074. border-width:0px;
  5075. word-wrap:break-word;
  5076. text-transform:none;
  5077. }
  5078. #u54743_div {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:37px;
  5084. height:17px;
  5085. background:inherit;
  5086. background-color:rgba(255, 255, 255, 0);
  5087. border-radius:0px;
  5088. filter:drop-shadow(none);
  5089. transition:none;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:12px;
  5094. }
  5095. #u54743 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:151px;
  5099. top:817px;
  5100. width:37px;
  5101. height:17px;
  5102. display:flex;
  5103. transition:none;
  5104. transform-origin:50% 50%;
  5105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5106. font-weight:400;
  5107. font-style:normal;
  5108. font-size:12px;
  5109. }
  5110. #u54743 .text {
  5111. position:absolute;
  5112. align-self:flex-start;
  5113. padding:0px 0px 0px 0px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u54743_text {
  5118. border-width:0px;
  5119. white-space:nowrap;
  5120. text-transform:none;
  5121. }
  5122. #u54744_div {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:375px;
  5128. height:735px;
  5129. background:inherit;
  5130. background-color:rgba(242, 242, 242, 1);
  5131. border-top:0px;
  5132. border-radius:25px;
  5133. border-top-left-radius:0px;
  5134. border-top-right-radius:0px;
  5135. filter:drop-shadow(none);
  5136. transition:none;
  5137. }
  5138. #u54744 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:934px;
  5142. top:105px;
  5143. width:375px;
  5144. height:735px;
  5145. display:flex;
  5146. transition:none;
  5147. transform-origin:50% 50%;
  5148. }
  5149. #u54744 .text {
  5150. position:absolute;
  5151. align-self:center;
  5152. padding:2px 2px 2px 2px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u54744_text {
  5157. border-width:0px;
  5158. word-wrap:break-word;
  5159. text-transform:none;
  5160. visibility:hidden;
  5161. }
  5162. #u54745_div {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:375px;
  5168. height:735px;
  5169. background:inherit;
  5170. background-color:rgba(255, 255, 255, 1);
  5171. border-top:0px;
  5172. border-radius:22px;
  5173. border-top-left-radius:0px;
  5174. border-top-right-radius:0px;
  5175. filter:drop-shadow(none);
  5176. transition:none;
  5177. }
  5178. #u54745 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:934px;
  5182. top:105px;
  5183. width:375px;
  5184. height:735px;
  5185. display:flex;
  5186. transition:none;
  5187. transform-origin:50% 50%;
  5188. }
  5189. #u54745 .text {
  5190. position:absolute;
  5191. align-self:center;
  5192. padding:2px 2px 2px 2px;
  5193. box-sizing:border-box;
  5194. width:100%;
  5195. }
  5196. #u54745_text {
  5197. border-width:0px;
  5198. word-wrap:break-word;
  5199. text-transform:none;
  5200. visibility:hidden;
  5201. }
  5202. #u54746 {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:947px;
  5206. top:79px;
  5207. width:11px;
  5208. height:18px;
  5209. display:flex;
  5210. transition:none;
  5211. }
  5212. #u54746 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 2px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u54746_img {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:11px;
  5225. height:18px;
  5226. }
  5227. #u54746_text {
  5228. border-width:0px;
  5229. word-wrap:break-word;
  5230. text-transform:none;
  5231. visibility:hidden;
  5232. }
  5233. #u54747_div {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:132px;
  5239. height:30px;
  5240. background:inherit;
  5241. background-color:rgba(255, 255, 255, 0);
  5242. border-left:0px;
  5243. border-top:0px;
  5244. border-right:0px;
  5245. border-radius:0px;
  5246. border-bottom-right-radius:0px;
  5247. border-bottom-left-radius:0px;
  5248. filter:drop-shadow(none);
  5249. transition:none;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:14px;
  5254. color:#555555;
  5255. line-height:30px;
  5256. }
  5257. #u54747 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:953px;
  5261. top:150px;
  5262. width:132px;
  5263. height:30px;
  5264. display:flex;
  5265. transition:none;
  5266. transform-origin:50% 50%;
  5267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:14px;
  5271. color:#555555;
  5272. line-height:30px;
  5273. }
  5274. #u54747 .text {
  5275. position:absolute;
  5276. align-self:flex-start;
  5277. padding:0px 0px 0px 0px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u54747_text {
  5282. border-width:0px;
  5283. white-space:nowrap;
  5284. text-transform:none;
  5285. }
  5286. #u54748 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:0px;
  5292. height:0px;
  5293. }
  5294. #u54749_div {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:375px;
  5300. height:50px;
  5301. background:inherit;
  5302. background-color:rgba(255, 255, 255, 1);
  5303. box-sizing:border-box;
  5304. border-width:1px;
  5305. border-style:solid;
  5306. border-color:rgba(215, 215, 215, 0.4980392156862745);
  5307. border-left:0px;
  5308. border-right:0px;
  5309. border-radius:0px;
  5310. border-top-left-radius:0px;
  5311. border-top-right-radius:0px;
  5312. border-bottom-right-radius:0px;
  5313. border-bottom-left-radius:0px;
  5314. filter:drop-shadow(none);
  5315. transition:none;
  5316. }
  5317. #u54749 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:934px;
  5321. top:201px;
  5322. width:375px;
  5323. height:50px;
  5324. display:flex;
  5325. transition:none;
  5326. transform-origin:50% 50%;
  5327. }
  5328. #u54749 .text {
  5329. position:absolute;
  5330. align-self:center;
  5331. padding:2px 2px 2px 2px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u54749_text {
  5336. border-width:0px;
  5337. word-wrap:break-word;
  5338. text-transform:none;
  5339. visibility:hidden;
  5340. }
  5341. #u54750_div {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:35px;
  5347. height:30px;
  5348. background:inherit;
  5349. background-color:rgba(255, 255, 255, 0);
  5350. border-left:0px;
  5351. border-top:0px;
  5352. border-right:0px;
  5353. border-radius:0px;
  5354. border-bottom-right-radius:0px;
  5355. border-bottom-left-radius:0px;
  5356. filter:drop-shadow(none);
  5357. transition:none;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:14px;
  5362. line-height:30px;
  5363. }
  5364. #u54750 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:958px;
  5368. top:211px;
  5369. width:35px;
  5370. height:30px;
  5371. display:flex;
  5372. transition:none;
  5373. transform-origin:50% 50%;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:14px;
  5378. line-height:30px;
  5379. }
  5380. #u54750 .text {
  5381. position:absolute;
  5382. align-self:flex-start;
  5383. padding:0px 0px 0px 0px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u54750_text {
  5388. border-width:0px;
  5389. white-space:nowrap;
  5390. text-transform:none;
  5391. }
  5392. #u54751 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:1286px;
  5396. top:220px;
  5397. width:7px;
  5398. height:12px;
  5399. display:flex;
  5400. transition:none;
  5401. }
  5402. #u54751 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 2px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u54751_img {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:7px;
  5415. height:12px;
  5416. }
  5417. #u54751_text {
  5418. border-width:0px;
  5419. word-wrap:break-word;
  5420. text-transform:none;
  5421. visibility:hidden;
  5422. }
  5423. #u54752 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:0px;
  5429. height:0px;
  5430. }
  5431. #u54753_div {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:375px;
  5437. height:50px;
  5438. background:inherit;
  5439. background-color:rgba(255, 255, 255, 1);
  5440. box-sizing:border-box;
  5441. border-width:1px;
  5442. border-style:solid;
  5443. border-color:rgba(215, 215, 215, 0.4980392156862745);
  5444. border-left:0px;
  5445. border-right:0px;
  5446. border-radius:0px;
  5447. border-top-left-radius:0px;
  5448. border-top-right-radius:0px;
  5449. border-bottom-right-radius:0px;
  5450. border-bottom-left-radius:0px;
  5451. filter:drop-shadow(none);
  5452. transition:none;
  5453. }
  5454. #u54753 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:934px;
  5458. top:250px;
  5459. width:375px;
  5460. height:50px;
  5461. display:flex;
  5462. transition:none;
  5463. transform-origin:50% 50%;
  5464. }
  5465. #u54753 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:2px 2px 2px 2px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u54753_text {
  5473. border-width:0px;
  5474. word-wrap:break-word;
  5475. text-transform:none;
  5476. visibility:hidden;
  5477. }
  5478. #u54754_div {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:37px;
  5484. height:30px;
  5485. background:inherit;
  5486. background-color:rgba(255, 255, 255, 0);
  5487. border-left:0px;
  5488. border-top:0px;
  5489. border-right:0px;
  5490. border-radius:0px;
  5491. border-bottom-right-radius:0px;
  5492. border-bottom-left-radius:0px;
  5493. filter:drop-shadow(none);
  5494. transition:none;
  5495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5496. font-weight:400;
  5497. font-style:normal;
  5498. font-size:14px;
  5499. line-height:30px;
  5500. }
  5501. #u54754 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:958px;
  5505. top:260px;
  5506. width:37px;
  5507. height:30px;
  5508. display:flex;
  5509. transition:none;
  5510. transform-origin:50% 50%;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:14px;
  5515. line-height:30px;
  5516. }
  5517. #u54754 .text {
  5518. position:absolute;
  5519. align-self:flex-start;
  5520. padding:0px 0px 0px 0px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u54754_text {
  5525. border-width:0px;
  5526. white-space:nowrap;
  5527. text-transform:none;
  5528. }
  5529. #u54755 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:1286px;
  5533. top:269px;
  5534. width:7px;
  5535. height:12px;
  5536. display:flex;
  5537. transition:none;
  5538. }
  5539. #u54755 .text {
  5540. position:absolute;
  5541. align-self:center;
  5542. padding:2px 2px 2px 2px;
  5543. box-sizing:border-box;
  5544. width:100%;
  5545. }
  5546. #u54755_img {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:7px;
  5552. height:12px;
  5553. }
  5554. #u54755_text {
  5555. border-width:0px;
  5556. word-wrap:break-word;
  5557. text-transform:none;
  5558. visibility:hidden;
  5559. }
  5560. #u54756 {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:0px;
  5564. top:0px;
  5565. width:0px;
  5566. height:0px;
  5567. }
  5568. #u54757_div {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:375px;
  5574. height:50px;
  5575. background:inherit;
  5576. background-color:rgba(255, 255, 255, 1);
  5577. box-sizing:border-box;
  5578. border-width:1px;
  5579. border-style:solid;
  5580. border-color:rgba(215, 215, 215, 0.4980392156862745);
  5581. border-left:0px;
  5582. border-right:0px;
  5583. border-radius:0px;
  5584. border-top-left-radius:0px;
  5585. border-top-right-radius:0px;
  5586. border-bottom-right-radius:0px;
  5587. border-bottom-left-radius:0px;
  5588. filter:drop-shadow(none);
  5589. transition:none;
  5590. }
  5591. #u54757 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:934px;
  5595. top:299px;
  5596. width:375px;
  5597. height:50px;
  5598. display:flex;
  5599. transition:none;
  5600. transform-origin:50% 50%;
  5601. }
  5602. #u54757 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:2px 2px 2px 2px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u54757_text {
  5610. border-width:0px;
  5611. word-wrap:break-word;
  5612. text-transform:none;
  5613. visibility:hidden;
  5614. }
  5615. #u54758_div {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:23px;
  5621. height:30px;
  5622. background:inherit;
  5623. background-color:rgba(255, 255, 255, 0);
  5624. border-left:0px;
  5625. border-top:0px;
  5626. border-right:0px;
  5627. border-radius:0px;
  5628. border-bottom-right-radius:0px;
  5629. border-bottom-left-radius:0px;
  5630. filter:drop-shadow(none);
  5631. transition:none;
  5632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:14px;
  5636. line-height:30px;
  5637. }
  5638. #u54758 {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:958px;
  5642. top:309px;
  5643. width:23px;
  5644. height:30px;
  5645. display:flex;
  5646. transition:none;
  5647. transform-origin:50% 50%;
  5648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5649. font-weight:400;
  5650. font-style:normal;
  5651. font-size:14px;
  5652. line-height:30px;
  5653. }
  5654. #u54758 .text {
  5655. position:absolute;
  5656. align-self:flex-start;
  5657. padding:0px 0px 0px 0px;
  5658. box-sizing:border-box;
  5659. width:100%;
  5660. }
  5661. #u54758_text {
  5662. border-width:0px;
  5663. white-space:nowrap;
  5664. text-transform:none;
  5665. }
  5666. #u54759 {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:1286px;
  5670. top:318px;
  5671. width:7px;
  5672. height:12px;
  5673. display:flex;
  5674. transition:none;
  5675. }
  5676. #u54759 .text {
  5677. position:absolute;
  5678. align-self:center;
  5679. padding:2px 2px 2px 2px;
  5680. box-sizing:border-box;
  5681. width:100%;
  5682. }
  5683. #u54759_img {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:7px;
  5689. height:12px;
  5690. }
  5691. #u54759_text {
  5692. border-width:0px;
  5693. word-wrap:break-word;
  5694. text-transform:none;
  5695. visibility:hidden;
  5696. }
  5697. #u54760 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:0px;
  5703. height:0px;
  5704. }
  5705. #u54761_div {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:375px;
  5711. height:50px;
  5712. background:inherit;
  5713. background-color:rgba(255, 255, 255, 1);
  5714. box-sizing:border-box;
  5715. border-width:1px;
  5716. border-style:solid;
  5717. border-color:rgba(215, 215, 215, 0.4980392156862745);
  5718. border-left:0px;
  5719. border-right:0px;
  5720. border-radius:0px;
  5721. border-top-left-radius:0px;
  5722. border-top-right-radius:0px;
  5723. border-bottom-right-radius:0px;
  5724. border-bottom-left-radius:0px;
  5725. filter:drop-shadow(none);
  5726. transition:none;
  5727. }
  5728. #u54761 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:934px;
  5732. top:348px;
  5733. width:375px;
  5734. height:50px;
  5735. display:flex;
  5736. transition:none;
  5737. transform-origin:50% 50%;
  5738. }
  5739. #u54761 .text {
  5740. position:absolute;
  5741. align-self:center;
  5742. padding:2px 2px 2px 2px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u54761_text {
  5747. border-width:0px;
  5748. word-wrap:break-word;
  5749. text-transform:none;
  5750. visibility:hidden;
  5751. }
  5752. #u54762_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:37px;
  5758. height:30px;
  5759. background:inherit;
  5760. background-color:rgba(255, 255, 255, 0);
  5761. border-left:0px;
  5762. border-top:0px;
  5763. border-right:0px;
  5764. border-radius:0px;
  5765. border-bottom-right-radius:0px;
  5766. border-bottom-left-radius:0px;
  5767. filter:drop-shadow(none);
  5768. transition:none;
  5769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:14px;
  5773. line-height:30px;
  5774. }
  5775. #u54762 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:958px;
  5779. top:358px;
  5780. width:37px;
  5781. height:30px;
  5782. display:flex;
  5783. transition:none;
  5784. transform-origin:50% 50%;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:14px;
  5789. line-height:30px;
  5790. }
  5791. #u54762 .text {
  5792. position:absolute;
  5793. align-self:flex-start;
  5794. padding:0px 0px 0px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u54762_text {
  5799. border-width:0px;
  5800. white-space:nowrap;
  5801. text-transform:none;
  5802. }
  5803. #u54763 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:1286px;
  5807. top:367px;
  5808. width:7px;
  5809. height:12px;
  5810. display:flex;
  5811. transition:none;
  5812. }
  5813. #u54763 .text {
  5814. position:absolute;
  5815. align-self:center;
  5816. padding:2px 2px 2px 2px;
  5817. box-sizing:border-box;
  5818. width:100%;
  5819. }
  5820. #u54763_img {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:7px;
  5826. height:12px;
  5827. }
  5828. #u54763_text {
  5829. border-width:0px;
  5830. word-wrap:break-word;
  5831. text-transform:none;
  5832. visibility:hidden;
  5833. }
  5834. #u54764 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:0px;
  5840. height:0px;
  5841. }
  5842. #u54765_div {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:375px;
  5848. height:50px;
  5849. background:inherit;
  5850. background-color:rgba(255, 255, 255, 1);
  5851. box-sizing:border-box;
  5852. border-width:1px;
  5853. border-style:solid;
  5854. border-color:rgba(215, 215, 215, 0.4980392156862745);
  5855. border-left:0px;
  5856. border-right:0px;
  5857. border-radius:0px;
  5858. border-top-left-radius:0px;
  5859. border-top-right-radius:0px;
  5860. border-bottom-right-radius:0px;
  5861. border-bottom-left-radius:0px;
  5862. filter:drop-shadow(none);
  5863. transition:none;
  5864. }
  5865. #u54765 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:934px;
  5869. top:397px;
  5870. width:375px;
  5871. height:50px;
  5872. display:flex;
  5873. transition:none;
  5874. transform-origin:50% 50%;
  5875. }
  5876. #u54765 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:2px 2px 2px 2px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u54765_text {
  5884. border-width:0px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. visibility:hidden;
  5888. }
  5889. #u54766_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:37px;
  5895. height:30px;
  5896. background:inherit;
  5897. background-color:rgba(255, 255, 255, 0);
  5898. border-left:0px;
  5899. border-top:0px;
  5900. border-right:0px;
  5901. border-radius:0px;
  5902. border-bottom-right-radius:0px;
  5903. border-bottom-left-radius:0px;
  5904. filter:drop-shadow(none);
  5905. transition:none;
  5906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:14px;
  5910. line-height:30px;
  5911. }
  5912. #u54766 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:958px;
  5916. top:407px;
  5917. width:37px;
  5918. height:30px;
  5919. display:flex;
  5920. transition:none;
  5921. transform-origin:50% 50%;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:14px;
  5926. line-height:30px;
  5927. }
  5928. #u54766 .text {
  5929. position:absolute;
  5930. align-self:flex-start;
  5931. padding:0px 0px 0px 0px;
  5932. box-sizing:border-box;
  5933. width:100%;
  5934. }
  5935. #u54766_text {
  5936. border-width:0px;
  5937. white-space:nowrap;
  5938. text-transform:none;
  5939. }
  5940. #u54767 {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:1286px;
  5944. top:416px;
  5945. width:7px;
  5946. height:12px;
  5947. display:flex;
  5948. transition:none;
  5949. }
  5950. #u54767 .text {
  5951. position:absolute;
  5952. align-self:center;
  5953. padding:2px 2px 2px 2px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u54767_img {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:7px;
  5963. height:12px;
  5964. }
  5965. #u54767_text {
  5966. border-width:0px;
  5967. word-wrap:break-word;
  5968. text-transform:none;
  5969. visibility:hidden;
  5970. }
  5971. #u54768 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:0px;
  5977. height:0px;
  5978. }
  5979. #u54769_div {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:375px;
  5985. height:50px;
  5986. background:inherit;
  5987. background-color:rgba(255, 255, 255, 1);
  5988. box-sizing:border-box;
  5989. border-width:1px;
  5990. border-style:solid;
  5991. border-color:rgba(215, 215, 215, 0.4980392156862745);
  5992. border-left:0px;
  5993. border-right:0px;
  5994. border-radius:0px;
  5995. border-top-left-radius:0px;
  5996. border-top-right-radius:0px;
  5997. border-bottom-right-radius:0px;
  5998. border-bottom-left-radius:0px;
  5999. filter:drop-shadow(none);
  6000. transition:none;
  6001. }
  6002. #u54769 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:934px;
  6006. top:446px;
  6007. width:375px;
  6008. height:50px;
  6009. display:flex;
  6010. transition:none;
  6011. transform-origin:50% 50%;
  6012. }
  6013. #u54769 .text {
  6014. position:absolute;
  6015. align-self:center;
  6016. padding:2px 2px 2px 2px;
  6017. box-sizing:border-box;
  6018. width:100%;
  6019. }
  6020. #u54769_text {
  6021. border-width:0px;
  6022. word-wrap:break-word;
  6023. text-transform:none;
  6024. visibility:hidden;
  6025. }
  6026. #u54770_div {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:37px;
  6032. height:30px;
  6033. background:inherit;
  6034. background-color:rgba(255, 255, 255, 0);
  6035. border-left:0px;
  6036. border-top:0px;
  6037. border-right:0px;
  6038. border-radius:0px;
  6039. border-bottom-right-radius:0px;
  6040. border-bottom-left-radius:0px;
  6041. filter:drop-shadow(none);
  6042. transition:none;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:14px;
  6047. line-height:30px;
  6048. }
  6049. #u54770 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:958px;
  6053. top:456px;
  6054. width:37px;
  6055. height:30px;
  6056. display:flex;
  6057. transition:none;
  6058. transform-origin:50% 50%;
  6059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. font-size:14px;
  6063. line-height:30px;
  6064. }
  6065. #u54770 .text {
  6066. position:absolute;
  6067. align-self:flex-start;
  6068. padding:0px 0px 0px 0px;
  6069. box-sizing:border-box;
  6070. width:100%;
  6071. }
  6072. #u54770_text {
  6073. border-width:0px;
  6074. white-space:nowrap;
  6075. text-transform:none;
  6076. }
  6077. #u54771 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:1286px;
  6081. top:465px;
  6082. width:7px;
  6083. height:12px;
  6084. display:flex;
  6085. transition:none;
  6086. }
  6087. #u54771 .text {
  6088. position:absolute;
  6089. align-self:center;
  6090. padding:2px 2px 2px 2px;
  6091. box-sizing:border-box;
  6092. width:100%;
  6093. }
  6094. #u54771_img {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:7px;
  6100. height:12px;
  6101. }
  6102. #u54771_text {
  6103. border-width:0px;
  6104. word-wrap:break-word;
  6105. text-transform:none;
  6106. visibility:hidden;
  6107. }
  6108. #u54772_div {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:73px;
  6114. height:30px;
  6115. background:inherit;
  6116. background-color:rgba(255, 255, 255, 0);
  6117. border-left:0px;
  6118. border-top:0px;
  6119. border-right:0px;
  6120. border-radius:0px;
  6121. border-bottom-right-radius:0px;
  6122. border-bottom-left-radius:0px;
  6123. filter:drop-shadow(none);
  6124. transition:none;
  6125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6126. font-weight:500;
  6127. font-style:normal;
  6128. font-size:18px;
  6129. line-height:30px;
  6130. }
  6131. #u54772 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:953px;
  6135. top:120px;
  6136. width:73px;
  6137. height:30px;
  6138. display:flex;
  6139. transition:none;
  6140. transform-origin:50% 50%;
  6141. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6142. font-weight:500;
  6143. font-style:normal;
  6144. font-size:18px;
  6145. line-height:30px;
  6146. }
  6147. #u54772 .text {
  6148. position:absolute;
  6149. align-self:flex-start;
  6150. padding:0px 0px 0px 0px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u54772_text {
  6155. border-width:0px;
  6156. white-space:nowrap;
  6157. text-transform:none;
  6158. }
  6159. #u54773 {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:0px;
  6165. height:0px;
  6166. }
  6167. #u54774_div {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:0px;
  6171. top:0px;
  6172. width:375px;
  6173. height:80px;
  6174. background:inherit;
  6175. background-color:rgba(255, 255, 255, 1);
  6176. box-sizing:border-box;
  6177. border-width:1px;
  6178. border-style:solid;
  6179. border-color:rgba(242, 242, 242, 1);
  6180. border-radius:0px;
  6181. filter:drop-shadow(none);
  6182. transition:none;
  6183. }
  6184. #u54774 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:29px;
  6188. top:533px;
  6189. width:375px;
  6190. height:80px;
  6191. display:flex;
  6192. transition:none;
  6193. transform-origin:50% 50%;
  6194. }
  6195. #u54774 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 2px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u54774_text {
  6203. border-width:0px;
  6204. word-wrap:break-word;
  6205. text-transform:none;
  6206. visibility:hidden;
  6207. }
  6208. #u54775 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:0px;
  6214. height:0px;
  6215. }
  6216. #u54776_div {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:109px;
  6222. height:30px;
  6223. background:inherit;
  6224. background-color:rgba(255, 255, 255, 0);
  6225. border-left:0px;
  6226. border-top:0px;
  6227. border-right:0px;
  6228. border-radius:0px;
  6229. border-bottom-right-radius:0px;
  6230. border-bottom-left-radius:0px;
  6231. filter:drop-shadow(none);
  6232. transition:none;
  6233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6234. font-weight:400;
  6235. font-style:normal;
  6236. font-size:18px;
  6237. line-height:30px;
  6238. }
  6239. #u54776 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:51px;
  6243. top:547px;
  6244. width:109px;
  6245. height:30px;
  6246. display:flex;
  6247. transition:none;
  6248. transform-origin:50% 50%;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:18px;
  6253. line-height:30px;
  6254. }
  6255. #u54776 .text {
  6256. position:absolute;
  6257. align-self:flex-start;
  6258. padding:0px 0px 0px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u54776_text {
  6263. border-width:0px;
  6264. white-space:nowrap;
  6265. text-transform:none;
  6266. }
  6267. #u54777 {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:0px;
  6273. height:0px;
  6274. }
  6275. #u54778 {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:51px;
  6279. top:585px;
  6280. width:7px;
  6281. height:11px;
  6282. display:flex;
  6283. transition:none;
  6284. }
  6285. #u54778 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:2px 2px 2px 2px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u54778_img {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:7px;
  6298. height:11px;
  6299. }
  6300. #u54778_text {
  6301. border-width:0px;
  6302. word-wrap:break-word;
  6303. text-transform:none;
  6304. visibility:hidden;
  6305. }
  6306. #u54779_div {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:157px;
  6312. height:17px;
  6313. background:inherit;
  6314. background-color:rgba(255, 255, 255, 0);
  6315. border-left:0px;
  6316. border-top:0px;
  6317. border-right:0px;
  6318. border-radius:0px;
  6319. border-bottom-right-radius:0px;
  6320. border-bottom-left-radius:0px;
  6321. filter:drop-shadow(none);
  6322. transition:none;
  6323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:12px;
  6327. color:#AAAAAA;
  6328. }
  6329. #u54779 {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:62px;
  6333. top:582px;
  6334. width:157px;
  6335. height:17px;
  6336. display:flex;
  6337. transition:none;
  6338. transform-origin:50% 50%;
  6339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:12px;
  6343. color:#AAAAAA;
  6344. }
  6345. #u54779 .text {
  6346. position:absolute;
  6347. align-self:flex-start;
  6348. padding:0px 0px 0px 0px;
  6349. box-sizing:border-box;
  6350. width:100%;
  6351. }
  6352. #u54779_text {
  6353. border-width:0px;
  6354. white-space:nowrap;
  6355. text-transform:none;
  6356. }
  6357. #u54780 {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:0px;
  6361. top:0px;
  6362. width:0px;
  6363. height:0px;
  6364. }
  6365. #u54781 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:384px;
  6369. top:568px;
  6370. width:7px;
  6371. height:11px;
  6372. display:flex;
  6373. -webkit-transform:rotate(180deg);
  6374. -moz-transform:rotate(180deg);
  6375. -ms-transform:rotate(180deg);
  6376. transform:rotate(180deg);
  6377. transition:none;
  6378. }
  6379. #u54781 .text {
  6380. position:absolute;
  6381. align-self:center;
  6382. padding:2px 2px 2px 2px;
  6383. box-sizing:border-box;
  6384. width:100%;
  6385. }
  6386. #u54781_img {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:7px;
  6392. height:11px;
  6393. }
  6394. #u54781_text {
  6395. border-width:0px;
  6396. word-wrap:break-word;
  6397. text-transform:none;
  6398. visibility:hidden;
  6399. }
  6400. #u54782 {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:0px;
  6406. height:0px;
  6407. }
  6408. #u54783_div {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:375px;
  6414. height:80px;
  6415. background:inherit;
  6416. background-color:rgba(255, 255, 255, 1);
  6417. box-sizing:border-box;
  6418. border-width:1px;
  6419. border-style:solid;
  6420. border-color:rgba(242, 242, 242, 1);
  6421. border-radius:0px;
  6422. filter:drop-shadow(none);
  6423. transition:none;
  6424. }
  6425. #u54783 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:29px;
  6429. top:612px;
  6430. width:375px;
  6431. height:80px;
  6432. display:flex;
  6433. transition:none;
  6434. transform-origin:50% 50%;
  6435. }
  6436. #u54783 .text {
  6437. position:absolute;
  6438. align-self:center;
  6439. padding:2px 2px 2px 2px;
  6440. box-sizing:border-box;
  6441. width:100%;
  6442. }
  6443. #u54783_text {
  6444. border-width:0px;
  6445. word-wrap:break-word;
  6446. text-transform:none;
  6447. visibility:hidden;
  6448. }
  6449. #u54784 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:0px;
  6455. height:0px;
  6456. }
  6457. #u54785_div {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:0px;
  6461. top:0px;
  6462. width:109px;
  6463. height:30px;
  6464. background:inherit;
  6465. background-color:rgba(255, 255, 255, 0);
  6466. border-left:0px;
  6467. border-top:0px;
  6468. border-right:0px;
  6469. border-radius:0px;
  6470. border-bottom-right-radius:0px;
  6471. border-bottom-left-radius:0px;
  6472. filter:drop-shadow(none);
  6473. transition:none;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:18px;
  6478. line-height:30px;
  6479. }
  6480. #u54785 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:51px;
  6484. top:626px;
  6485. width:109px;
  6486. height:30px;
  6487. display:flex;
  6488. transition:none;
  6489. transform-origin:50% 50%;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:18px;
  6494. line-height:30px;
  6495. }
  6496. #u54785 .text {
  6497. position:absolute;
  6498. align-self:flex-start;
  6499. padding:0px 0px 0px 0px;
  6500. box-sizing:border-box;
  6501. width:100%;
  6502. }
  6503. #u54785_text {
  6504. border-width:0px;
  6505. white-space:nowrap;
  6506. text-transform:none;
  6507. }
  6508. #u54786 {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:0px;
  6514. height:0px;
  6515. }
  6516. #u54787 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:51px;
  6520. top:664px;
  6521. width:7px;
  6522. height:11px;
  6523. display:flex;
  6524. transition:none;
  6525. }
  6526. #u54787 .text {
  6527. position:absolute;
  6528. align-self:center;
  6529. padding:2px 2px 2px 2px;
  6530. box-sizing:border-box;
  6531. width:100%;
  6532. }
  6533. #u54787_img {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:0px;
  6537. top:0px;
  6538. width:7px;
  6539. height:11px;
  6540. }
  6541. #u54787_text {
  6542. border-width:0px;
  6543. word-wrap:break-word;
  6544. text-transform:none;
  6545. visibility:hidden;
  6546. }
  6547. #u54788_div {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:157px;
  6553. height:17px;
  6554. background:inherit;
  6555. background-color:rgba(255, 255, 255, 0);
  6556. border-left:0px;
  6557. border-top:0px;
  6558. border-right:0px;
  6559. border-radius:0px;
  6560. border-bottom-right-radius:0px;
  6561. border-bottom-left-radius:0px;
  6562. filter:drop-shadow(none);
  6563. transition:none;
  6564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6565. font-weight:400;
  6566. font-style:normal;
  6567. font-size:12px;
  6568. color:#AAAAAA;
  6569. }
  6570. #u54788 {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:62px;
  6574. top:661px;
  6575. width:157px;
  6576. height:17px;
  6577. display:flex;
  6578. transition:none;
  6579. transform-origin:50% 50%;
  6580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6581. font-weight:400;
  6582. font-style:normal;
  6583. font-size:12px;
  6584. color:#AAAAAA;
  6585. }
  6586. #u54788 .text {
  6587. position:absolute;
  6588. align-self:flex-start;
  6589. padding:0px 0px 0px 0px;
  6590. box-sizing:border-box;
  6591. width:100%;
  6592. }
  6593. #u54788_text {
  6594. border-width:0px;
  6595. white-space:nowrap;
  6596. text-transform:none;
  6597. }
  6598. #u54789 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:0px;
  6604. height:0px;
  6605. }
  6606. #u54790 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:384px;
  6610. top:647px;
  6611. width:7px;
  6612. height:11px;
  6613. display:flex;
  6614. -webkit-transform:rotate(180deg);
  6615. -moz-transform:rotate(180deg);
  6616. -ms-transform:rotate(180deg);
  6617. transform:rotate(180deg);
  6618. transition:none;
  6619. }
  6620. #u54790 .text {
  6621. position:absolute;
  6622. align-self:center;
  6623. padding:2px 2px 2px 2px;
  6624. box-sizing:border-box;
  6625. width:100%;
  6626. }
  6627. #u54790_img {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:7px;
  6633. height:11px;
  6634. }
  6635. #u54790_text {
  6636. border-width:0px;
  6637. word-wrap:break-word;
  6638. text-transform:none;
  6639. visibility:hidden;
  6640. }
  6641. #u54791 {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:0px;
  6645. top:0px;
  6646. width:0px;
  6647. height:0px;
  6648. }
  6649. #u54792_div {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:375px;
  6655. height:80px;
  6656. background:inherit;
  6657. background-color:rgba(255, 255, 255, 1);
  6658. box-sizing:border-box;
  6659. border-width:1px;
  6660. border-style:solid;
  6661. border-color:rgba(242, 242, 242, 1);
  6662. border-radius:0px;
  6663. filter:drop-shadow(none);
  6664. transition:none;
  6665. }
  6666. #u54792 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:29px;
  6670. top:691px;
  6671. width:375px;
  6672. height:80px;
  6673. display:flex;
  6674. transition:none;
  6675. transform-origin:50% 50%;
  6676. }
  6677. #u54792 .text {
  6678. position:absolute;
  6679. align-self:center;
  6680. padding:2px 2px 2px 2px;
  6681. box-sizing:border-box;
  6682. width:100%;
  6683. }
  6684. #u54792_text {
  6685. border-width:0px;
  6686. word-wrap:break-word;
  6687. text-transform:none;
  6688. visibility:hidden;
  6689. }
  6690. #u54793 {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:0px;
  6696. height:0px;
  6697. }
  6698. #u54794_div {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:109px;
  6704. height:30px;
  6705. background:inherit;
  6706. background-color:rgba(255, 255, 255, 0);
  6707. border-left:0px;
  6708. border-top:0px;
  6709. border-right:0px;
  6710. border-radius:0px;
  6711. border-bottom-right-radius:0px;
  6712. border-bottom-left-radius:0px;
  6713. filter:drop-shadow(none);
  6714. transition:none;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:18px;
  6719. line-height:30px;
  6720. }
  6721. #u54794 {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:51px;
  6725. top:705px;
  6726. width:109px;
  6727. height:30px;
  6728. display:flex;
  6729. transition:none;
  6730. transform-origin:50% 50%;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:18px;
  6735. line-height:30px;
  6736. }
  6737. #u54794 .text {
  6738. position:absolute;
  6739. align-self:flex-start;
  6740. padding:0px 0px 0px 0px;
  6741. box-sizing:border-box;
  6742. width:100%;
  6743. }
  6744. #u54794_text {
  6745. border-width:0px;
  6746. white-space:nowrap;
  6747. text-transform:none;
  6748. }
  6749. #u54795 {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:0px;
  6755. height:0px;
  6756. }
  6757. #u54796 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:51px;
  6761. top:743px;
  6762. width:7px;
  6763. height:11px;
  6764. display:flex;
  6765. transition:none;
  6766. }
  6767. #u54796 .text {
  6768. position:absolute;
  6769. align-self:center;
  6770. padding:2px 2px 2px 2px;
  6771. box-sizing:border-box;
  6772. width:100%;
  6773. }
  6774. #u54796_img {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:7px;
  6780. height:11px;
  6781. }
  6782. #u54796_text {
  6783. border-width:0px;
  6784. word-wrap:break-word;
  6785. text-transform:none;
  6786. visibility:hidden;
  6787. }
  6788. #u54797_div {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:157px;
  6794. height:17px;
  6795. background:inherit;
  6796. background-color:rgba(255, 255, 255, 0);
  6797. border-left:0px;
  6798. border-top:0px;
  6799. border-right:0px;
  6800. border-radius:0px;
  6801. border-bottom-right-radius:0px;
  6802. border-bottom-left-radius:0px;
  6803. filter:drop-shadow(none);
  6804. transition:none;
  6805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:12px;
  6809. color:#AAAAAA;
  6810. }
  6811. #u54797 {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:62px;
  6815. top:740px;
  6816. width:157px;
  6817. height:17px;
  6818. display:flex;
  6819. transition:none;
  6820. transform-origin:50% 50%;
  6821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. font-size:12px;
  6825. color:#AAAAAA;
  6826. }
  6827. #u54797 .text {
  6828. position:absolute;
  6829. align-self:flex-start;
  6830. padding:0px 0px 0px 0px;
  6831. box-sizing:border-box;
  6832. width:100%;
  6833. }
  6834. #u54797_text {
  6835. border-width:0px;
  6836. white-space:nowrap;
  6837. text-transform:none;
  6838. }
  6839. #u54798 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:0px;
  6845. height:0px;
  6846. }
  6847. #u54799 {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:384px;
  6851. top:726px;
  6852. width:7px;
  6853. height:11px;
  6854. display:flex;
  6855. -webkit-transform:rotate(180deg);
  6856. -moz-transform:rotate(180deg);
  6857. -ms-transform:rotate(180deg);
  6858. transform:rotate(180deg);
  6859. transition:none;
  6860. }
  6861. #u54799 .text {
  6862. position:absolute;
  6863. align-self:center;
  6864. padding:2px 2px 2px 2px;
  6865. box-sizing:border-box;
  6866. width:100%;
  6867. }
  6868. #u54799_img {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:7px;
  6874. height:11px;
  6875. }
  6876. #u54799_text {
  6877. border-width:0px;
  6878. word-wrap:break-word;
  6879. text-transform:none;
  6880. visibility:hidden;
  6881. }
  6882. #u54800_div {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:335px;
  6888. height:40px;
  6889. background:inherit;
  6890. background-color:rgba(24, 144, 255, 1);
  6891. box-sizing:border-box;
  6892. border-width:1px;
  6893. border-style:solid;
  6894. border-color:rgba(24, 144, 255, 1);
  6895. border-radius:19px;
  6896. filter:drop-shadow(none);
  6897. transition:none;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:14px;
  6902. color:#FFFFFF;
  6903. text-align:center;
  6904. line-height:30px;
  6905. }
  6906. #u54800 {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:955px;
  6910. top:780px;
  6911. width:335px;
  6912. height:40px;
  6913. display:flex;
  6914. transition:none;
  6915. transform-origin:50% 50%;
  6916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:14px;
  6920. color:#FFFFFF;
  6921. text-align:center;
  6922. line-height:30px;
  6923. }
  6924. #u54800 .text {
  6925. position:absolute;
  6926. align-self:center;
  6927. padding:0px 0px 0px 0px;
  6928. box-sizing:border-box;
  6929. width:100%;
  6930. }
  6931. #u54800_text {
  6932. border-width:0px;
  6933. word-wrap:break-word;
  6934. text-transform:none;
  6935. }
  6936. #u54801_div {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:49px;
  6942. height:30px;
  6943. background:inherit;
  6944. background-color:rgba(255, 255, 255, 0);
  6945. border-left:0px;
  6946. border-top:0px;
  6947. border-right:0px;
  6948. border-radius:0px;
  6949. border-bottom-right-radius:0px;
  6950. border-bottom-left-radius:0px;
  6951. filter:drop-shadow(none);
  6952. transition:none;
  6953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:14px;
  6957. color:#D9001B;
  6958. line-height:30px;
  6959. }
  6960. #u54801 {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:958px;
  6964. top:512px;
  6965. width:49px;
  6966. height:30px;
  6967. display:flex;
  6968. transition:none;
  6969. transform-origin:50% 50%;
  6970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6971. font-weight:400;
  6972. font-style:normal;
  6973. font-size:14px;
  6974. color:#D9001B;
  6975. line-height:30px;
  6976. }
  6977. #u54801 .text {
  6978. position:absolute;
  6979. align-self:flex-start;
  6980. padding:0px 0px 0px 0px;
  6981. box-sizing:border-box;
  6982. width:100%;
  6983. }
  6984. #u54801_text {
  6985. border-width:0px;
  6986. white-space:nowrap;
  6987. text-transform:none;
  6988. }