styles.css 178 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2243px;
  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. #u54327_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u54327 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u54327 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u54327_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u54328_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u54328 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u54328 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u54328_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u54329 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u54330_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u54330 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u54330 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u54330_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u54331 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u54332_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u54332 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u54332 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u54332_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u54333_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u54333 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u54333 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u54333_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u54334 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u54335_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u54335 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u54335 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u54335_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u54336_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u54336 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u54336 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u54336_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u54337_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u54337 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u54337 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u54337_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u54338_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u54338 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u54338 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u54338_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u54339_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u54339 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u54339 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u54339_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u54340_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u54340 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u54340 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u54340_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u54341 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u54342_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u54342 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u54342 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u54342_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u54343_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u54343 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u54343 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u54343_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u54344 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u54345_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u54345 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u54345 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u54345_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u54346_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u54346 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u54346 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u54346_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u54347_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u54347 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u54347 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u54347_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u54348 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u54349_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u54349 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u54349 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u54349_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u54350_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u54350 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u54350 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u54350_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u54351 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u54352_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u54352 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u54352 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u54352_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u54353_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u54353 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u54353 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u54353_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u54354_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:971px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u54354 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:971px;
  804. display:flex;
  805. }
  806. #u54354 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u54354_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u54355_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:156px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. border:none;
  829. border-top:0px;
  830. border-radius:0px;
  831. border-top-left-radius:0px;
  832. border-top-right-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. }
  837. #u54355 {
  838. border-width:0px;
  839. position:absolute;
  840. left:29px;
  841. top:106px;
  842. width:375px;
  843. height:156px;
  844. display:flex;
  845. }
  846. #u54355 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:2px 2px 2px 2px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u54355_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. visibility:hidden;
  858. }
  859. #u54356_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:11px;
  865. height:18px;
  866. }
  867. #u54356 {
  868. border-width:0px;
  869. position:absolute;
  870. left:42px;
  871. top:79px;
  872. width:11px;
  873. height:18px;
  874. display:flex;
  875. }
  876. #u54356 .text {
  877. position:absolute;
  878. align-self:center;
  879. padding:2px 2px 2px 2px;
  880. box-sizing:border-box;
  881. width:100%;
  882. }
  883. #u54356_text {
  884. border-width:0px;
  885. word-wrap:break-word;
  886. text-transform:none;
  887. visibility:hidden;
  888. }
  889. #u54357_div {
  890. border-width:0px;
  891. position:absolute;
  892. left:0px;
  893. top:0px;
  894. width:73px;
  895. height:30px;
  896. background:inherit;
  897. background-color:rgba(255, 255, 255, 0);
  898. border:none;
  899. border-left:0px;
  900. border-top:0px;
  901. border-right:0px;
  902. border-radius:0px;
  903. border-bottom-right-radius:0px;
  904. border-bottom-left-radius:0px;
  905. -moz-box-shadow:none;
  906. -webkit-box-shadow:none;
  907. box-shadow:none;
  908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  909. font-weight:500;
  910. font-style:normal;
  911. font-size:18px;
  912. line-height:30px;
  913. }
  914. #u54357 {
  915. border-width:0px;
  916. position:absolute;
  917. left:48px;
  918. top:120px;
  919. width:73px;
  920. height:30px;
  921. display:flex;
  922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  923. font-weight:500;
  924. font-style:normal;
  925. font-size:18px;
  926. line-height:30px;
  927. }
  928. #u54357 .text {
  929. position:absolute;
  930. align-self:flex-start;
  931. padding:0px 0px 0px 0px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u54357_text {
  936. border-width:0px;
  937. white-space:nowrap;
  938. text-transform:none;
  939. }
  940. #u54358 {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:0px;
  946. height:0px;
  947. }
  948. #u54359_img {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:375px;
  954. height:50px;
  955. }
  956. #u54359 {
  957. border-width:0px;
  958. position:absolute;
  959. left:29px;
  960. top:162px;
  961. width:375px;
  962. height:50px;
  963. display:flex;
  964. }
  965. #u54359 .text {
  966. position:absolute;
  967. align-self:center;
  968. padding:2px 2px 2px 2px;
  969. box-sizing:border-box;
  970. width:100%;
  971. }
  972. #u54359_text {
  973. border-width:0px;
  974. word-wrap:break-word;
  975. text-transform:none;
  976. visibility:hidden;
  977. }
  978. #u54360_div {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:64px;
  984. height:30px;
  985. background:inherit;
  986. background-color:rgba(255, 255, 255, 0);
  987. border:none;
  988. border-left:0px;
  989. border-top:0px;
  990. border-right:0px;
  991. border-radius:0px;
  992. border-bottom-right-radius:0px;
  993. border-bottom-left-radius:0px;
  994. -moz-box-shadow:none;
  995. -webkit-box-shadow:none;
  996. box-shadow:none;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:14px;
  1001. line-height:30px;
  1002. }
  1003. #u54360 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:53px;
  1007. top:172px;
  1008. width:64px;
  1009. height:30px;
  1010. display:flex;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. font-size:14px;
  1015. line-height:30px;
  1016. }
  1017. #u54360 .text {
  1018. position:absolute;
  1019. align-self:flex-start;
  1020. padding:0px 0px 0px 0px;
  1021. box-sizing:border-box;
  1022. width:100%;
  1023. }
  1024. #u54360_text {
  1025. border-width:0px;
  1026. white-space:nowrap;
  1027. text-transform:none;
  1028. }
  1029. #u54361_img {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:8px;
  1035. height:13px;
  1036. }
  1037. #u54361 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:380px;
  1041. top:179px;
  1042. width:8px;
  1043. height:13px;
  1044. display:flex;
  1045. -webkit-transform:rotate(180deg);
  1046. -moz-transform:rotate(180deg);
  1047. -ms-transform:rotate(180deg);
  1048. transform:rotate(180deg);
  1049. }
  1050. #u54361 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u54361_text {
  1058. border-width:0px;
  1059. word-wrap:break-word;
  1060. text-transform:none;
  1061. visibility:hidden;
  1062. }
  1063. #u54362_div {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:161px;
  1069. height:30px;
  1070. background:inherit;
  1071. background-color:rgba(255, 255, 255, 0);
  1072. border:none;
  1073. border-left:0px;
  1074. border-top:0px;
  1075. border-right:0px;
  1076. border-radius:0px;
  1077. border-bottom-right-radius:0px;
  1078. border-bottom-left-radius:0px;
  1079. -moz-box-shadow:none;
  1080. -webkit-box-shadow:none;
  1081. box-shadow:none;
  1082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1083. font-weight:400;
  1084. font-style:normal;
  1085. font-size:14px;
  1086. text-align:right;
  1087. line-height:30px;
  1088. }
  1089. #u54362 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:211px;
  1093. top:172px;
  1094. width:161px;
  1095. height:30px;
  1096. display:flex;
  1097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1098. font-weight:400;
  1099. font-style:normal;
  1100. font-size:14px;
  1101. text-align:right;
  1102. line-height:30px;
  1103. }
  1104. #u54362 .text {
  1105. position:absolute;
  1106. align-self:flex-start;
  1107. padding:0px 0px 0px 0px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u54362_text {
  1112. border-width:0px;
  1113. white-space:nowrap;
  1114. text-transform:none;
  1115. }
  1116. #u54363 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:0px;
  1120. top:0px;
  1121. width:0px;
  1122. height:0px;
  1123. }
  1124. #u54364_div {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:375px;
  1130. height:50px;
  1131. background:inherit;
  1132. background-color:rgba(255, 255, 255, 1);
  1133. border:none;
  1134. border-left:0px;
  1135. border-right:0px;
  1136. border-radius:0px;
  1137. border-top-left-radius:0px;
  1138. border-top-right-radius:0px;
  1139. border-bottom-right-radius:0px;
  1140. border-bottom-left-radius:0px;
  1141. -moz-box-shadow:none;
  1142. -webkit-box-shadow:none;
  1143. box-shadow:none;
  1144. }
  1145. #u54364 {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:29px;
  1149. top:212px;
  1150. width:375px;
  1151. height:50px;
  1152. display:flex;
  1153. }
  1154. #u54364 .text {
  1155. position:absolute;
  1156. align-self:center;
  1157. padding:2px 2px 2px 2px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u54364_text {
  1162. border-width:0px;
  1163. word-wrap:break-word;
  1164. text-transform:none;
  1165. visibility:hidden;
  1166. }
  1167. #u54365_div {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:64px;
  1173. height:30px;
  1174. background:inherit;
  1175. background-color:rgba(255, 255, 255, 0);
  1176. border:none;
  1177. border-left:0px;
  1178. border-top:0px;
  1179. border-right:0px;
  1180. border-radius:0px;
  1181. border-bottom-right-radius:0px;
  1182. border-bottom-left-radius:0px;
  1183. -moz-box-shadow:none;
  1184. -webkit-box-shadow:none;
  1185. box-shadow:none;
  1186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1187. font-weight:400;
  1188. font-style:normal;
  1189. font-size:14px;
  1190. line-height:30px;
  1191. }
  1192. #u54365 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:53px;
  1196. top:222px;
  1197. width:64px;
  1198. height:30px;
  1199. display:flex;
  1200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1201. font-weight:400;
  1202. font-style:normal;
  1203. font-size:14px;
  1204. line-height:30px;
  1205. }
  1206. #u54365 .text {
  1207. position:absolute;
  1208. align-self:flex-start;
  1209. padding:0px 0px 0px 0px;
  1210. box-sizing:border-box;
  1211. width:100%;
  1212. }
  1213. #u54365_text {
  1214. border-width:0px;
  1215. white-space:nowrap;
  1216. text-transform:none;
  1217. }
  1218. #u54366_img {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:8px;
  1224. height:13px;
  1225. }
  1226. #u54366 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:380px;
  1230. top:231px;
  1231. width:8px;
  1232. height:13px;
  1233. display:flex;
  1234. -webkit-transform:rotate(180deg);
  1235. -moz-transform:rotate(180deg);
  1236. -ms-transform:rotate(180deg);
  1237. transform:rotate(180deg);
  1238. }
  1239. #u54366 .text {
  1240. position:absolute;
  1241. align-self:center;
  1242. padding:2px 2px 2px 2px;
  1243. box-sizing:border-box;
  1244. width:100%;
  1245. }
  1246. #u54366_text {
  1247. border-width:0px;
  1248. word-wrap:break-word;
  1249. text-transform:none;
  1250. visibility:hidden;
  1251. }
  1252. #u54367_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:29px;
  1258. height:30px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 255, 0);
  1261. border:none;
  1262. border-left:0px;
  1263. border-top:0px;
  1264. border-right:0px;
  1265. border-radius:0px;
  1266. border-bottom-right-radius:0px;
  1267. border-bottom-left-radius:0px;
  1268. -moz-box-shadow:none;
  1269. -webkit-box-shadow:none;
  1270. box-shadow:none;
  1271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1272. font-weight:400;
  1273. font-style:normal;
  1274. font-size:14px;
  1275. text-align:right;
  1276. line-height:30px;
  1277. }
  1278. #u54367 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:343px;
  1282. top:222px;
  1283. width:29px;
  1284. height:30px;
  1285. display:flex;
  1286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1287. font-weight:400;
  1288. font-style:normal;
  1289. font-size:14px;
  1290. text-align:right;
  1291. line-height:30px;
  1292. }
  1293. #u54367 .text {
  1294. position:absolute;
  1295. align-self:flex-start;
  1296. padding:0px 0px 0px 0px;
  1297. box-sizing:border-box;
  1298. width:100%;
  1299. }
  1300. #u54367_text {
  1301. border-width:0px;
  1302. white-space:nowrap;
  1303. text-transform:none;
  1304. }
  1305. #u54368 {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:0px;
  1311. height:0px;
  1312. }
  1313. #u54370_img {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:433px;
  1319. height:865px;
  1320. }
  1321. #u54370 {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:906px;
  1325. top:0px;
  1326. width:433px;
  1327. height:865px;
  1328. display:flex;
  1329. }
  1330. #u54370 .text {
  1331. position:absolute;
  1332. align-self:center;
  1333. padding:2px 2px 2px 2px;
  1334. box-sizing:border-box;
  1335. width:100%;
  1336. }
  1337. #u54370_text {
  1338. border-width:0px;
  1339. word-wrap:break-word;
  1340. text-transform:none;
  1341. visibility:hidden;
  1342. }
  1343. #u54371_div {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:375px;
  1349. height:40px;
  1350. background:inherit;
  1351. background-color:rgba(255, 255, 255, 1);
  1352. box-sizing:border-box;
  1353. border-width:1px;
  1354. border-style:solid;
  1355. border-color:rgba(215, 215, 215, 1);
  1356. border-left:0px;
  1357. border-top:0px;
  1358. border-right:0px;
  1359. border-radius:0px;
  1360. border-bottom-right-radius:0px;
  1361. border-bottom-left-radius:0px;
  1362. -moz-box-shadow:none;
  1363. -webkit-box-shadow:none;
  1364. box-shadow:none;
  1365. }
  1366. #u54371 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:935px;
  1370. top:67px;
  1371. width:375px;
  1372. height:40px;
  1373. display:flex;
  1374. }
  1375. #u54371 .text {
  1376. position:absolute;
  1377. align-self:center;
  1378. padding:2px 2px 2px 2px;
  1379. box-sizing:border-box;
  1380. width:100%;
  1381. }
  1382. #u54371_text {
  1383. border-width:0px;
  1384. word-wrap:break-word;
  1385. text-transform:none;
  1386. visibility:hidden;
  1387. }
  1388. #u54372 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:0px;
  1394. height:0px;
  1395. }
  1396. #u54373_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:88px;
  1402. height:32px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 1);
  1405. box-sizing:border-box;
  1406. border-width:1px;
  1407. border-style:solid;
  1408. border-color:rgba(242, 242, 242, 1);
  1409. border-radius:33px;
  1410. -moz-box-shadow:none;
  1411. -webkit-box-shadow:none;
  1412. box-shadow:none;
  1413. }
  1414. #u54373 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:1215px;
  1418. top:71px;
  1419. width:88px;
  1420. height:32px;
  1421. display:flex;
  1422. }
  1423. #u54373 .text {
  1424. position:absolute;
  1425. align-self:center;
  1426. padding:2px 2px 2px 2px;
  1427. box-sizing:border-box;
  1428. width:100%;
  1429. }
  1430. #u54373_text {
  1431. border-width:0px;
  1432. word-wrap:break-word;
  1433. text-transform:none;
  1434. visibility:hidden;
  1435. }
  1436. #u54374 {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:0px;
  1440. top:0px;
  1441. width:0px;
  1442. height:0px;
  1443. }
  1444. #u54375_img {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:18px;
  1450. height:18px;
  1451. }
  1452. #u54375 {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:1278px;
  1456. top:78px;
  1457. width:18px;
  1458. height:18px;
  1459. display:flex;
  1460. }
  1461. #u54375 .text {
  1462. position:absolute;
  1463. align-self:center;
  1464. padding:2px 2px 2px 2px;
  1465. box-sizing:border-box;
  1466. width:100%;
  1467. }
  1468. #u54375_text {
  1469. border-width:0px;
  1470. word-wrap:break-word;
  1471. text-transform:none;
  1472. visibility:hidden;
  1473. }
  1474. #u54376_img {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:6px;
  1480. height:6px;
  1481. }
  1482. #u54376 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1284px;
  1486. top:84px;
  1487. width:6px;
  1488. height:6px;
  1489. display:flex;
  1490. }
  1491. #u54376 .text {
  1492. position:absolute;
  1493. align-self:center;
  1494. padding:2px 2px 2px 2px;
  1495. box-sizing:border-box;
  1496. width:100%;
  1497. }
  1498. #u54376_text {
  1499. border-width:0px;
  1500. word-wrap:break-word;
  1501. text-transform:none;
  1502. visibility:hidden;
  1503. }
  1504. #u54377 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:0px;
  1510. height:0px;
  1511. }
  1512. #u54378_img {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:5px;
  1518. height:5px;
  1519. }
  1520. #u54378 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:1229px;
  1524. top:85px;
  1525. width:5px;
  1526. height:5px;
  1527. display:flex;
  1528. }
  1529. #u54378 .text {
  1530. position:absolute;
  1531. align-self:center;
  1532. padding:2px 2px 2px 2px;
  1533. box-sizing:border-box;
  1534. width:100%;
  1535. }
  1536. #u54378_text {
  1537. border-width:0px;
  1538. word-wrap:break-word;
  1539. text-transform:none;
  1540. visibility:hidden;
  1541. }
  1542. #u54379_img {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:0px;
  1547. width:5px;
  1548. height:5px;
  1549. }
  1550. #u54379 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:1245px;
  1554. top:85px;
  1555. width:5px;
  1556. height:5px;
  1557. display:flex;
  1558. }
  1559. #u54379 .text {
  1560. position:absolute;
  1561. align-self:center;
  1562. padding:2px 2px 2px 2px;
  1563. box-sizing:border-box;
  1564. width:100%;
  1565. }
  1566. #u54379_text {
  1567. border-width:0px;
  1568. word-wrap:break-word;
  1569. text-transform:none;
  1570. visibility:hidden;
  1571. }
  1572. #u54380_img {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:7px;
  1578. height:7px;
  1579. }
  1580. #u54380 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:1236px;
  1584. top:84px;
  1585. width:7px;
  1586. height:7px;
  1587. display:flex;
  1588. }
  1589. #u54380 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:2px 2px 2px 2px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u54380_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. visibility:hidden;
  1601. }
  1602. #u54381_img {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:19px;
  1608. height:2px;
  1609. }
  1610. #u54381 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:1253px;
  1614. top:87px;
  1615. width:18px;
  1616. height:1px;
  1617. display:flex;
  1618. -webkit-transform:rotate(90deg);
  1619. -moz-transform:rotate(90deg);
  1620. -ms-transform:rotate(90deg);
  1621. transform:rotate(90deg);
  1622. }
  1623. #u54381 .text {
  1624. position:absolute;
  1625. align-self:center;
  1626. padding:2px 2px 2px 2px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u54381_text {
  1631. border-width:0px;
  1632. word-wrap:break-word;
  1633. text-transform:none;
  1634. visibility:hidden;
  1635. }
  1636. #u54382_img {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:375px;
  1642. height:44px;
  1643. }
  1644. #u54382 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:935px;
  1648. top:24px;
  1649. width:375px;
  1650. height:44px;
  1651. display:flex;
  1652. }
  1653. #u54382 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u54382_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u54383_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:375px;
  1672. height:50px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 1);
  1675. box-sizing:border-box;
  1676. border-width:1px;
  1677. border-style:solid;
  1678. border-color:rgba(242, 242, 242, 1);
  1679. border-radius:26px;
  1680. border-top-left-radius:0px;
  1681. border-top-right-radius:0px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. }
  1686. #u54383 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:935px;
  1690. top:788px;
  1691. width:375px;
  1692. height:50px;
  1693. display:flex;
  1694. }
  1695. #u54383 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u54383_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u54384 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:0px;
  1714. height:0px;
  1715. }
  1716. #u54385_img {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:24px;
  1722. height:24px;
  1723. }
  1724. #u54385 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:975px;
  1728. top:792px;
  1729. width:24px;
  1730. height:24px;
  1731. display:flex;
  1732. font-size:8px;
  1733. }
  1734. #u54385 .text {
  1735. position:absolute;
  1736. align-self:center;
  1737. padding:2px 2px 2px 2px;
  1738. box-sizing:border-box;
  1739. width:100%;
  1740. }
  1741. #u54385_text {
  1742. border-width:0px;
  1743. word-wrap:break-word;
  1744. text-transform:none;
  1745. }
  1746. #u54386_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:25px;
  1752. height:17px;
  1753. background:inherit;
  1754. background-color:rgba(255, 255, 255, 0);
  1755. border:none;
  1756. border-radius:0px;
  1757. -moz-box-shadow:none;
  1758. -webkit-box-shadow:none;
  1759. box-shadow:none;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:12px;
  1764. }
  1765. #u54386 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:975px;
  1769. top:817px;
  1770. width:25px;
  1771. height:17px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:12px;
  1777. }
  1778. #u54386 .text {
  1779. position:absolute;
  1780. align-self:flex-start;
  1781. padding:0px 0px 0px 0px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u54386_text {
  1786. border-width:0px;
  1787. white-space:nowrap;
  1788. text-transform:none;
  1789. }
  1790. #u54387 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:0px;
  1796. height:0px;
  1797. }
  1798. #u54388_img {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:24px;
  1804. height:24px;
  1805. }
  1806. #u54388 {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:1245px;
  1810. top:794px;
  1811. width:24px;
  1812. height:24px;
  1813. display:flex;
  1814. font-size:8px;
  1815. }
  1816. #u54388 .text {
  1817. position:absolute;
  1818. align-self:center;
  1819. padding:2px 2px 2px 2px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u54388_text {
  1824. border-width:0px;
  1825. word-wrap:break-word;
  1826. text-transform:none;
  1827. }
  1828. #u54389_div {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:25px;
  1834. height:17px;
  1835. background:inherit;
  1836. background-color:rgba(255, 255, 255, 0);
  1837. border:none;
  1838. border-radius:0px;
  1839. -moz-box-shadow:none;
  1840. -webkit-box-shadow:none;
  1841. box-shadow:none;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:12px;
  1846. }
  1847. #u54389 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:1245px;
  1851. top:819px;
  1852. width:25px;
  1853. height:17px;
  1854. display:flex;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. }
  1860. #u54389 .text {
  1861. position:absolute;
  1862. align-self:flex-start;
  1863. padding:0px 0px 0px 0px;
  1864. box-sizing:border-box;
  1865. width:100%;
  1866. }
  1867. #u54389_text {
  1868. border-width:0px;
  1869. white-space:nowrap;
  1870. text-transform:none;
  1871. }
  1872. #u54390_div {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:375px;
  1878. height:681px;
  1879. background:inherit;
  1880. background-color:rgba(242, 242, 242, 0.462745098039216);
  1881. border:none;
  1882. border-radius:0px;
  1883. -moz-box-shadow:none;
  1884. -webkit-box-shadow:none;
  1885. box-shadow:none;
  1886. }
  1887. #u54390 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:935px;
  1891. top:107px;
  1892. width:375px;
  1893. height:681px;
  1894. display:flex;
  1895. }
  1896. #u54390 .text {
  1897. position:absolute;
  1898. align-self:center;
  1899. padding:2px 2px 2px 2px;
  1900. box-sizing:border-box;
  1901. width:100%;
  1902. }
  1903. #u54390_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. visibility:hidden;
  1908. }
  1909. #u54391 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:0px;
  1915. height:0px;
  1916. }
  1917. #u54392_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:24px;
  1923. height:24px;
  1924. }
  1925. #u54392 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:1157px;
  1929. top:792px;
  1930. width:24px;
  1931. height:24px;
  1932. display:flex;
  1933. font-size:8px;
  1934. }
  1935. #u54392 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 2px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u54392_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u54393_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:37px;
  1953. height:17px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 0);
  1956. border:none;
  1957. border-radius:0px;
  1958. -moz-box-shadow:none;
  1959. -webkit-box-shadow:none;
  1960. box-shadow:none;
  1961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:12px;
  1965. }
  1966. #u54393 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:1151px;
  1970. top:817px;
  1971. width:37px;
  1972. height:17px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:12px;
  1978. }
  1979. #u54393 .text {
  1980. position:absolute;
  1981. align-self:flex-start;
  1982. padding:0px 0px 0px 0px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u54393_text {
  1987. border-width:0px;
  1988. white-space:nowrap;
  1989. text-transform:none;
  1990. }
  1991. #u54394 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:0px;
  1997. height:0px;
  1998. }
  1999. #u54395_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:24px;
  2005. height:24px;
  2006. }
  2007. #u54395 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:1063px;
  2011. top:792px;
  2012. width:24px;
  2013. height:24px;
  2014. display:flex;
  2015. font-size:8px;
  2016. }
  2017. #u54395 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:2px 2px 2px 2px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u54395_text {
  2025. border-width:0px;
  2026. word-wrap:break-word;
  2027. text-transform:none;
  2028. }
  2029. #u54396_div {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:37px;
  2035. height:17px;
  2036. background:inherit;
  2037. background-color:rgba(255, 255, 255, 0);
  2038. border:none;
  2039. border-radius:0px;
  2040. -moz-box-shadow:none;
  2041. -webkit-box-shadow:none;
  2042. box-shadow:none;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. }
  2048. #u54396 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:1057px;
  2052. top:817px;
  2053. width:37px;
  2054. height:17px;
  2055. display:flex;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:12px;
  2060. }
  2061. #u54396 .text {
  2062. position:absolute;
  2063. align-self:flex-start;
  2064. padding:0px 0px 0px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u54396_text {
  2069. border-width:0px;
  2070. white-space:nowrap;
  2071. text-transform:none;
  2072. }
  2073. #u54397_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:375px;
  2079. height:735px;
  2080. background:inherit;
  2081. background-color:rgba(242, 242, 242, 1);
  2082. border:none;
  2083. border-top:0px;
  2084. border-radius:25px;
  2085. border-top-left-radius:0px;
  2086. border-top-right-radius:0px;
  2087. -moz-box-shadow:none;
  2088. -webkit-box-shadow:none;
  2089. box-shadow:none;
  2090. }
  2091. #u54397 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:935px;
  2095. top:105px;
  2096. width:375px;
  2097. height:735px;
  2098. display:flex;
  2099. }
  2100. #u54397 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u54397_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u54398_div {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:375px;
  2119. height:735px;
  2120. background:inherit;
  2121. background-color:rgba(255, 255, 255, 1);
  2122. border:none;
  2123. border-top:0px;
  2124. border-radius:22px;
  2125. border-top-left-radius:0px;
  2126. border-top-right-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. }
  2131. #u54398 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:935px;
  2135. top:105px;
  2136. width:375px;
  2137. height:735px;
  2138. display:flex;
  2139. }
  2140. #u54398 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 2px 2px 2px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u54398_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. visibility:hidden;
  2152. }
  2153. #u54399_img {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:11px;
  2159. height:18px;
  2160. }
  2161. #u54399 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:948px;
  2165. top:79px;
  2166. width:11px;
  2167. height:18px;
  2168. display:flex;
  2169. }
  2170. #u54399 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 2px 2px 2px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u54399_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. visibility:hidden;
  2182. }
  2183. #u54400_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:73px;
  2189. height:30px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 0);
  2192. border:none;
  2193. border-left:0px;
  2194. border-top:0px;
  2195. border-right:0px;
  2196. border-radius:0px;
  2197. border-bottom-right-radius:0px;
  2198. border-bottom-left-radius:0px;
  2199. -moz-box-shadow:none;
  2200. -webkit-box-shadow:none;
  2201. box-shadow:none;
  2202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2203. font-weight:500;
  2204. font-style:normal;
  2205. font-size:18px;
  2206. line-height:30px;
  2207. }
  2208. #u54400 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:954px;
  2212. top:120px;
  2213. width:73px;
  2214. height:30px;
  2215. display:flex;
  2216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2217. font-weight:500;
  2218. font-style:normal;
  2219. font-size:18px;
  2220. line-height:30px;
  2221. }
  2222. #u54400 .text {
  2223. position:absolute;
  2224. align-self:flex-start;
  2225. padding:0px 0px 0px 0px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u54400_text {
  2230. border-width:0px;
  2231. white-space:nowrap;
  2232. text-transform:none;
  2233. }
  2234. #u54401_div {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:335px;
  2240. height:40px;
  2241. background:inherit;
  2242. background-color:rgba(24, 144, 255, 1);
  2243. box-sizing:border-box;
  2244. border-width:1px;
  2245. border-style:solid;
  2246. border-color:rgba(24, 144, 255, 1);
  2247. border-radius:19px;
  2248. -moz-box-shadow:none;
  2249. -webkit-box-shadow:none;
  2250. box-shadow:none;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:14px;
  2255. color:#FFFFFF;
  2256. text-align:center;
  2257. line-height:30px;
  2258. }
  2259. #u54401 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:955px;
  2263. top:729px;
  2264. width:335px;
  2265. height:40px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:14px;
  2271. color:#FFFFFF;
  2272. text-align:center;
  2273. line-height:30px;
  2274. }
  2275. #u54401 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:0px 0px 0px 0px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u54401_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. }
  2287. #u54402 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:0px;
  2293. height:0px;
  2294. }
  2295. #u54403_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:375px;
  2301. height:50px;
  2302. }
  2303. #u54403 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:935px;
  2307. top:162px;
  2308. width:375px;
  2309. height:50px;
  2310. display:flex;
  2311. }
  2312. #u54403 .text {
  2313. position:absolute;
  2314. align-self:center;
  2315. padding:2px 2px 2px 2px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u54403_text {
  2320. border-width:0px;
  2321. word-wrap:break-word;
  2322. text-transform:none;
  2323. visibility:hidden;
  2324. }
  2325. #u54404_div {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:57px;
  2331. height:30px;
  2332. background:inherit;
  2333. background-color:rgba(255, 255, 255, 0);
  2334. border:none;
  2335. border-left:0px;
  2336. border-top:0px;
  2337. border-right:0px;
  2338. border-radius:0px;
  2339. border-bottom-right-radius:0px;
  2340. border-bottom-left-radius:0px;
  2341. -moz-box-shadow:none;
  2342. -webkit-box-shadow:none;
  2343. box-shadow:none;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:14px;
  2348. line-height:30px;
  2349. }
  2350. #u54404 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:959px;
  2354. top:172px;
  2355. width:57px;
  2356. height:30px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. line-height:30px;
  2363. }
  2364. #u54404 .text {
  2365. position:absolute;
  2366. align-self:flex-start;
  2367. padding:0px 0px 0px 0px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u54404_text {
  2372. border-width:0px;
  2373. white-space:nowrap;
  2374. text-transform:none;
  2375. }
  2376. #u54405_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:8px;
  2382. height:13px;
  2383. }
  2384. #u54405 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:1286px;
  2388. top:179px;
  2389. width:8px;
  2390. height:13px;
  2391. display:flex;
  2392. -webkit-transform:rotate(180deg);
  2393. -moz-transform:rotate(180deg);
  2394. -ms-transform:rotate(180deg);
  2395. transform:rotate(180deg);
  2396. }
  2397. #u54405 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u54405_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u54406_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:29px;
  2416. height:30px;
  2417. background:inherit;
  2418. background-color:rgba(255, 255, 255, 0);
  2419. border:none;
  2420. border-left:0px;
  2421. border-top:0px;
  2422. border-right:0px;
  2423. border-radius:0px;
  2424. border-bottom-right-radius:0px;
  2425. border-bottom-left-radius:0px;
  2426. -moz-box-shadow:none;
  2427. -webkit-box-shadow:none;
  2428. box-shadow:none;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:14px;
  2433. text-align:right;
  2434. line-height:30px;
  2435. }
  2436. #u54406 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:1249px;
  2440. top:172px;
  2441. width:29px;
  2442. height:30px;
  2443. display:flex;
  2444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:14px;
  2448. text-align:right;
  2449. line-height:30px;
  2450. }
  2451. #u54406 .text {
  2452. position:absolute;
  2453. align-self:flex-start;
  2454. padding:0px 0px 0px 0px;
  2455. box-sizing:border-box;
  2456. width:100%;
  2457. }
  2458. #u54406_text {
  2459. border-width:0px;
  2460. white-space:nowrap;
  2461. text-transform:none;
  2462. }
  2463. #u54407 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:0px;
  2469. height:0px;
  2470. }
  2471. #u54408_img {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:375px;
  2477. height:50px;
  2478. }
  2479. #u54408 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:935px;
  2483. top:212px;
  2484. width:375px;
  2485. height:50px;
  2486. display:flex;
  2487. }
  2488. #u54408 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 2px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u54408_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. visibility:hidden;
  2500. }
  2501. #u54409_div {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:71px;
  2507. height:30px;
  2508. background:inherit;
  2509. background-color:rgba(255, 255, 255, 0);
  2510. border:none;
  2511. border-left:0px;
  2512. border-top:0px;
  2513. border-right:0px;
  2514. border-radius:0px;
  2515. border-bottom-right-radius:0px;
  2516. border-bottom-left-radius:0px;
  2517. -moz-box-shadow:none;
  2518. -webkit-box-shadow:none;
  2519. box-shadow:none;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:14px;
  2524. line-height:30px;
  2525. }
  2526. #u54409 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:959px;
  2530. top:222px;
  2531. width:71px;
  2532. height:30px;
  2533. display:flex;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:14px;
  2538. line-height:30px;
  2539. }
  2540. #u54409 .text {
  2541. position:absolute;
  2542. align-self:flex-start;
  2543. padding:0px 0px 0px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u54409_text {
  2548. border-width:0px;
  2549. white-space:nowrap;
  2550. text-transform:none;
  2551. }
  2552. #u54410_div {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:83px;
  2558. height:30px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 0);
  2561. border:none;
  2562. border-left:0px;
  2563. border-top:0px;
  2564. border-right:0px;
  2565. border-radius:0px;
  2566. border-bottom-right-radius:0px;
  2567. border-bottom-left-radius:0px;
  2568. -moz-box-shadow:none;
  2569. -webkit-box-shadow:none;
  2570. box-shadow:none;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:14px;
  2575. text-align:right;
  2576. line-height:30px;
  2577. }
  2578. #u54410 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:1195px;
  2582. top:222px;
  2583. width:83px;
  2584. height:30px;
  2585. display:flex;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:14px;
  2590. text-align:right;
  2591. line-height:30px;
  2592. }
  2593. #u54410 .text {
  2594. position:absolute;
  2595. align-self:flex-start;
  2596. padding:0px 0px 0px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u54410_text {
  2601. border-width:0px;
  2602. white-space:nowrap;
  2603. text-transform:none;
  2604. }
  2605. #u54411_div {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:335px;
  2611. height:40px;
  2612. background:inherit;
  2613. background-color:rgba(255, 255, 255, 1);
  2614. box-sizing:border-box;
  2615. border-width:1px;
  2616. border-style:solid;
  2617. border-color:rgba(215, 215, 215, 1);
  2618. border-radius:19px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:14px;
  2626. color:#7F7F7F;
  2627. text-align:center;
  2628. line-height:30px;
  2629. }
  2630. #u54411 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:955px;
  2634. top:782px;
  2635. width:335px;
  2636. height:40px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:14px;
  2642. color:#7F7F7F;
  2643. text-align:center;
  2644. line-height:30px;
  2645. }
  2646. #u54411 .text {
  2647. position:absolute;
  2648. align-self:center;
  2649. padding:0px 0px 0px 0px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u54411_text {
  2654. border-width:0px;
  2655. word-wrap:break-word;
  2656. text-transform:none;
  2657. }
  2658. #u54412 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:0px;
  2664. height:0px;
  2665. }
  2666. #u54413_div {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:341px;
  2672. height:17px;
  2673. background:inherit;
  2674. background-color:rgba(255, 255, 255, 0);
  2675. border:none;
  2676. border-left:0px;
  2677. border-top:0px;
  2678. border-right:0px;
  2679. border-radius:0px;
  2680. border-bottom-right-radius:0px;
  2681. border-bottom-left-radius:0px;
  2682. -moz-box-shadow:none;
  2683. -webkit-box-shadow:none;
  2684. box-shadow:none;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:12px;
  2689. color:#F59A23;
  2690. }
  2691. #u54413 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:963px;
  2695. top:271px;
  2696. width:341px;
  2697. height:17px;
  2698. display:flex;
  2699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. font-size:12px;
  2703. color:#F59A23;
  2704. }
  2705. #u54413 .text {
  2706. position:absolute;
  2707. align-self:flex-start;
  2708. padding:0px 0px 0px 0px;
  2709. box-sizing:border-box;
  2710. width:100%;
  2711. }
  2712. #u54413_text {
  2713. border-width:0px;
  2714. word-wrap:break-word;
  2715. text-transform:none;
  2716. }
  2717. #u54414_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:11px;
  2723. height:11px;
  2724. }
  2725. #u54414 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:948px;
  2729. top:274px;
  2730. width:11px;
  2731. height:11px;
  2732. display:flex;
  2733. }
  2734. #u54414 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 2px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u54414_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u54415_div {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:335px;
  2753. height:225px;
  2754. background:inherit;
  2755. background-color:rgba(255, 255, 255, 0);
  2756. border:none;
  2757. border-left:0px;
  2758. border-top:0px;
  2759. border-right:0px;
  2760. border-radius:0px;
  2761. border-bottom-right-radius:0px;
  2762. border-bottom-left-radius:0px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:12px;
  2770. color:#D9001B;
  2771. line-height:25px;
  2772. }
  2773. #u54415 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:959px;
  2777. top:323px;
  2778. width:335px;
  2779. height:225px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. color:#D9001B;
  2786. line-height:25px;
  2787. }
  2788. #u54415 .text {
  2789. position:absolute;
  2790. align-self:flex-start;
  2791. padding:0px 0px 0px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u54415_text {
  2796. border-width:0px;
  2797. word-wrap:break-word;
  2798. text-transform:none;
  2799. }
  2800. #u54416_div {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:375px;
  2806. height:733px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 1);
  2809. border:none;
  2810. border-left:0px;
  2811. border-right:0px;
  2812. border-radius:0px;
  2813. border-top-left-radius:0px;
  2814. border-top-right-radius:0px;
  2815. border-bottom-right-radius:0px;
  2816. border-bottom-left-radius:0px;
  2817. -moz-box-shadow:none;
  2818. -webkit-box-shadow:none;
  2819. box-shadow:none;
  2820. }
  2821. #u54416 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:29px;
  2825. top:273px;
  2826. width:375px;
  2827. height:733px;
  2828. display:flex;
  2829. }
  2830. #u54416 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 2px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u54416_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u54417_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:73px;
  2849. height:30px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 0);
  2852. border:none;
  2853. border-left:0px;
  2854. border-top:0px;
  2855. border-right:0px;
  2856. border-radius:0px;
  2857. border-bottom-right-radius:0px;
  2858. border-bottom-left-radius:0px;
  2859. -moz-box-shadow:none;
  2860. -webkit-box-shadow:none;
  2861. box-shadow:none;
  2862. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2863. font-weight:500;
  2864. font-style:normal;
  2865. font-size:18px;
  2866. line-height:30px;
  2867. }
  2868. #u54417 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:51px;
  2872. top:288px;
  2873. width:73px;
  2874. height:30px;
  2875. display:flex;
  2876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2877. font-weight:500;
  2878. font-style:normal;
  2879. font-size:18px;
  2880. line-height:30px;
  2881. }
  2882. #u54417 .text {
  2883. position:absolute;
  2884. align-self:flex-start;
  2885. padding:0px 0px 0px 0px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u54417_text {
  2890. border-width:0px;
  2891. white-space:nowrap;
  2892. text-transform:none;
  2893. }
  2894. #u54418 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:0px;
  2900. height:0px;
  2901. }
  2902. #u54419_img {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:342px;
  2908. height:160px;
  2909. }
  2910. #u54419 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:51px;
  2914. top:533px;
  2915. width:342px;
  2916. height:160px;
  2917. display:flex;
  2918. }
  2919. #u54419 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 2px 2px 2px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u54419_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. visibility:hidden;
  2931. }
  2932. #u54420_div {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:64px;
  2938. height:30px;
  2939. background:inherit;
  2940. background-color:rgba(255, 255, 255, 0);
  2941. border:none;
  2942. border-left:0px;
  2943. border-top:0px;
  2944. border-right:0px;
  2945. border-radius:0px;
  2946. border-bottom-right-radius:0px;
  2947. border-bottom-left-radius:0px;
  2948. -moz-box-shadow:none;
  2949. -webkit-box-shadow:none;
  2950. box-shadow:none;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. line-height:30px;
  2956. }
  2957. #u54420 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:51px;
  2961. top:543px;
  2962. width:64px;
  2963. height:30px;
  2964. display:flex;
  2965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. font-size:14px;
  2969. line-height:30px;
  2970. }
  2971. #u54420 .text {
  2972. position:absolute;
  2973. align-self:flex-start;
  2974. padding:0px 0px 0px 0px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u54420_text {
  2979. border-width:0px;
  2980. white-space:nowrap;
  2981. text-transform:none;
  2982. }
  2983. #u54421_img {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:331px;
  2989. height:110px;
  2990. }
  2991. #u54421 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:51px;
  2995. top:573px;
  2996. width:331px;
  2997. height:110px;
  2998. display:flex;
  2999. }
  3000. #u54421 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 2px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u54421_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. visibility:hidden;
  3012. }
  3013. #u54422 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:0px;
  3019. height:0px;
  3020. }
  3021. #u54423_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:342px;
  3027. height:50px;
  3028. }
  3029. #u54423 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:51px;
  3033. top:428px;
  3034. width:342px;
  3035. height:50px;
  3036. display:flex;
  3037. }
  3038. #u54423 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 2px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u54423_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. visibility:hidden;
  3050. }
  3051. #u54424_div {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:78px;
  3057. height:30px;
  3058. background:inherit;
  3059. background-color:rgba(255, 255, 255, 0);
  3060. border:none;
  3061. border-left:0px;
  3062. border-top:0px;
  3063. border-right:0px;
  3064. border-radius:0px;
  3065. border-bottom-right-radius:0px;
  3066. border-bottom-left-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:14px;
  3074. line-height:30px;
  3075. }
  3076. #u54424 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:51px;
  3080. top:438px;
  3081. width:78px;
  3082. height:30px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. line-height:30px;
  3089. }
  3090. #u54424 .text {
  3091. position:absolute;
  3092. align-self:flex-start;
  3093. padding:0px 0px 0px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u54424_text {
  3098. border-width:0px;
  3099. white-space:nowrap;
  3100. text-transform:none;
  3101. }
  3102. #u54425_input {
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:240px;
  3107. height:33px;
  3108. padding:2px 2px 2px 2px;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:14px;
  3113. letter-spacing:normal;
  3114. color:#000000;
  3115. vertical-align:none;
  3116. text-align:right;
  3117. text-transform:none;
  3118. background-color:transparent;
  3119. border-color:transparent;
  3120. }
  3121. #u54425_input.disabled {
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:240px;
  3126. height:33px;
  3127. padding:2px 2px 2px 2px;
  3128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3129. font-weight:400;
  3130. font-style:normal;
  3131. font-size:14px;
  3132. letter-spacing:normal;
  3133. color:#000000;
  3134. vertical-align:none;
  3135. text-align:right;
  3136. text-transform:none;
  3137. background-color:transparent;
  3138. border-color:transparent;
  3139. }
  3140. #u54425_div {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:240px;
  3146. height:33px;
  3147. background:inherit;
  3148. background-color:rgba(255, 255, 255, 1);
  3149. border:none;
  3150. border-radius:0px;
  3151. -moz-box-shadow:none;
  3152. -webkit-box-shadow:none;
  3153. box-shadow:none;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:14px;
  3158. text-align:right;
  3159. }
  3160. #u54425 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:126px;
  3164. top:437px;
  3165. width:240px;
  3166. height:33px;
  3167. display:flex;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:14px;
  3172. text-align:right;
  3173. }
  3174. #u54425 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 2px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u54425_div.disabled {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:240px;
  3187. height:33px;
  3188. background:inherit;
  3189. background-color:rgba(240, 240, 240, 1);
  3190. border:none;
  3191. border-radius:0px;
  3192. -moz-box-shadow:none;
  3193. -webkit-box-shadow:none;
  3194. box-shadow:none;
  3195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:14px;
  3199. text-align:right;
  3200. }
  3201. #u54425.disabled {
  3202. }
  3203. #u54426 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:0px;
  3209. height:0px;
  3210. }
  3211. #u54427_img {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:342px;
  3217. height:50px;
  3218. }
  3219. #u54427 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:51px;
  3223. top:478px;
  3224. width:342px;
  3225. height:50px;
  3226. display:flex;
  3227. }
  3228. #u54427 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 2px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u54427_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u54428_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:78px;
  3247. height:30px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 0);
  3250. border:none;
  3251. border-left:0px;
  3252. border-top:0px;
  3253. border-right:0px;
  3254. border-radius:0px;
  3255. border-bottom-right-radius:0px;
  3256. border-bottom-left-radius:0px;
  3257. -moz-box-shadow:none;
  3258. -webkit-box-shadow:none;
  3259. box-shadow:none;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:14px;
  3264. line-height:30px;
  3265. }
  3266. #u54428 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:51px;
  3270. top:488px;
  3271. width:78px;
  3272. height:30px;
  3273. display:flex;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:14px;
  3278. line-height:30px;
  3279. }
  3280. #u54428 .text {
  3281. position:absolute;
  3282. align-self:flex-start;
  3283. padding:0px 0px 0px 0px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u54428_text {
  3288. border-width:0px;
  3289. white-space:nowrap;
  3290. text-transform:none;
  3291. }
  3292. #u54429_input {
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:240px;
  3297. height:33px;
  3298. padding:2px 2px 2px 2px;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:14px;
  3303. letter-spacing:normal;
  3304. color:#000000;
  3305. vertical-align:none;
  3306. text-align:right;
  3307. text-transform:none;
  3308. background-color:transparent;
  3309. border-color:transparent;
  3310. }
  3311. #u54429_input.disabled {
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:240px;
  3316. height:33px;
  3317. padding:2px 2px 2px 2px;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. letter-spacing:normal;
  3323. color:#000000;
  3324. vertical-align:none;
  3325. text-align:right;
  3326. text-transform:none;
  3327. background-color:transparent;
  3328. border-color:transparent;
  3329. }
  3330. #u54429_div {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:240px;
  3336. height:33px;
  3337. background:inherit;
  3338. background-color:rgba(255, 255, 255, 1);
  3339. border:none;
  3340. border-radius:0px;
  3341. -moz-box-shadow:none;
  3342. -webkit-box-shadow:none;
  3343. box-shadow:none;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:14px;
  3348. text-align:right;
  3349. }
  3350. #u54429 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:126px;
  3354. top:487px;
  3355. width:240px;
  3356. height:33px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:14px;
  3362. text-align:right;
  3363. }
  3364. #u54429 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 2px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u54429_div.disabled {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:240px;
  3377. height:33px;
  3378. background:inherit;
  3379. background-color:rgba(240, 240, 240, 1);
  3380. border:none;
  3381. border-radius:0px;
  3382. -moz-box-shadow:none;
  3383. -webkit-box-shadow:none;
  3384. box-shadow:none;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:14px;
  3389. text-align:right;
  3390. }
  3391. #u54429.disabled {
  3392. }
  3393. #u54430 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:0px;
  3399. height:0px;
  3400. }
  3401. #u54431_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:342px;
  3407. height:50px;
  3408. }
  3409. #u54431 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:51px;
  3413. top:378px;
  3414. width:342px;
  3415. height:50px;
  3416. display:flex;
  3417. }
  3418. #u54431 .text {
  3419. position:absolute;
  3420. align-self:center;
  3421. padding:2px 2px 2px 2px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u54431_text {
  3426. border-width:0px;
  3427. word-wrap:break-word;
  3428. text-transform:none;
  3429. visibility:hidden;
  3430. }
  3431. #u54432_div {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:78px;
  3437. height:30px;
  3438. background:inherit;
  3439. background-color:rgba(255, 255, 255, 0);
  3440. border:none;
  3441. border-left:0px;
  3442. border-top:0px;
  3443. border-right:0px;
  3444. border-radius:0px;
  3445. border-bottom-right-radius:0px;
  3446. border-bottom-left-radius:0px;
  3447. -moz-box-shadow:none;
  3448. -webkit-box-shadow:none;
  3449. box-shadow:none;
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:14px;
  3454. line-height:30px;
  3455. }
  3456. #u54432 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:51px;
  3460. top:388px;
  3461. width:78px;
  3462. height:30px;
  3463. display:flex;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:14px;
  3468. line-height:30px;
  3469. }
  3470. #u54432 .text {
  3471. position:absolute;
  3472. align-self:flex-start;
  3473. padding:0px 0px 0px 0px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u54432_text {
  3478. border-width:0px;
  3479. white-space:nowrap;
  3480. text-transform:none;
  3481. }
  3482. #u54433_input {
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:240px;
  3487. height:33px;
  3488. padding:2px 2px 2px 2px;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:14px;
  3493. letter-spacing:normal;
  3494. color:#000000;
  3495. vertical-align:none;
  3496. text-align:right;
  3497. text-transform:none;
  3498. background-color:transparent;
  3499. border-color:transparent;
  3500. }
  3501. #u54433_input.disabled {
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:240px;
  3506. height:33px;
  3507. padding:2px 2px 2px 2px;
  3508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:14px;
  3512. letter-spacing:normal;
  3513. color:#000000;
  3514. vertical-align:none;
  3515. text-align:right;
  3516. text-transform:none;
  3517. background-color:transparent;
  3518. border-color:transparent;
  3519. }
  3520. #u54433_div {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:240px;
  3526. height:33px;
  3527. background:inherit;
  3528. background-color:rgba(255, 255, 255, 1);
  3529. border:none;
  3530. border-radius:0px;
  3531. -moz-box-shadow:none;
  3532. -webkit-box-shadow:none;
  3533. box-shadow:none;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:14px;
  3538. text-align:right;
  3539. }
  3540. #u54433 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:126px;
  3544. top:387px;
  3545. width:240px;
  3546. height:33px;
  3547. display:flex;
  3548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:14px;
  3552. text-align:right;
  3553. }
  3554. #u54433 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u54433_div.disabled {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:240px;
  3567. height:33px;
  3568. background:inherit;
  3569. background-color:rgba(240, 240, 240, 1);
  3570. border:none;
  3571. border-radius:0px;
  3572. -moz-box-shadow:none;
  3573. -webkit-box-shadow:none;
  3574. box-shadow:none;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:14px;
  3579. text-align:right;
  3580. }
  3581. #u54433.disabled {
  3582. }
  3583. #u54434 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:0px;
  3589. height:0px;
  3590. }
  3591. #u54435_div {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:342px;
  3597. height:200px;
  3598. background:inherit;
  3599. background-color:rgba(255, 255, 255, 1);
  3600. border:none;
  3601. border-left:0px;
  3602. border-top:0px;
  3603. border-right:0px;
  3604. border-radius:0px;
  3605. border-bottom-right-radius:0px;
  3606. border-bottom-left-radius:0px;
  3607. -moz-box-shadow:none;
  3608. -webkit-box-shadow:none;
  3609. box-shadow:none;
  3610. }
  3611. #u54435 {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:51px;
  3615. top:693px;
  3616. width:342px;
  3617. height:200px;
  3618. display:flex;
  3619. }
  3620. #u54435 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 2px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u54435_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u54436_div {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:57px;
  3639. height:30px;
  3640. background:inherit;
  3641. background-color:rgba(255, 255, 255, 0);
  3642. border:none;
  3643. border-left:0px;
  3644. border-top:0px;
  3645. border-right:0px;
  3646. border-radius:0px;
  3647. border-bottom-right-radius:0px;
  3648. border-bottom-left-radius:0px;
  3649. -moz-box-shadow:none;
  3650. -webkit-box-shadow:none;
  3651. box-shadow:none;
  3652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. font-size:14px;
  3656. line-height:30px;
  3657. }
  3658. #u54436 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:51px;
  3662. top:703px;
  3663. width:57px;
  3664. height:30px;
  3665. display:flex;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:14px;
  3670. line-height:30px;
  3671. }
  3672. #u54436 .text {
  3673. position:absolute;
  3674. align-self:flex-start;
  3675. padding:0px 0px 0px 0px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u54436_text {
  3680. border-width:0px;
  3681. white-space:nowrap;
  3682. text-transform:none;
  3683. }
  3684. #u54437_div {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:342px;
  3690. height:31px;
  3691. background:inherit;
  3692. background-color:rgba(255, 255, 255, 0);
  3693. border:none;
  3694. border-radius:0px;
  3695. -moz-box-shadow:none;
  3696. -webkit-box-shadow:none;
  3697. box-shadow:none;
  3698. font-size:12px;
  3699. color:#AAAAAA;
  3700. }
  3701. #u54437 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:51px;
  3705. top:729px;
  3706. width:342px;
  3707. height:31px;
  3708. display:flex;
  3709. font-size:12px;
  3710. color:#AAAAAA;
  3711. }
  3712. #u54437 .text {
  3713. position:absolute;
  3714. align-self:flex-start;
  3715. padding:0px 0px 0px 0px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u54437_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. }
  3724. #u54438_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:95px;
  3730. height:94px;
  3731. }
  3732. #u54438 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:51px;
  3736. top:760px;
  3737. width:95px;
  3738. height:94px;
  3739. display:flex;
  3740. font-size:28px;
  3741. }
  3742. #u54438 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 2px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u54438_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. }
  3754. #u54439 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:0px;
  3760. height:0px;
  3761. }
  3762. #u54440_div {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:376px;
  3768. height:60px;
  3769. background:inherit;
  3770. background-color:rgba(255, 255, 255, 1);
  3771. border:none;
  3772. border-top:0px;
  3773. border-radius:22px;
  3774. border-top-left-radius:0px;
  3775. border-top-right-radius:0px;
  3776. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3777. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3778. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3779. }
  3780. #u54440 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:29px;
  3784. top:1016px;
  3785. width:376px;
  3786. height:60px;
  3787. display:flex;
  3788. }
  3789. #u54440 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 2px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u54440_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u54441_div {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:334px;
  3808. height:40px;
  3809. background:inherit;
  3810. background-color:rgba(215, 215, 215, 1);
  3811. border:none;
  3812. border-radius:45px;
  3813. -moz-box-shadow:none;
  3814. -webkit-box-shadow:none;
  3815. box-shadow:none;
  3816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:14px;
  3820. color:#FFFFFF;
  3821. }
  3822. #u54441 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:50px;
  3826. top:1026px;
  3827. width:334px;
  3828. height:40px;
  3829. display:flex;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:14px;
  3834. color:#FFFFFF;
  3835. }
  3836. #u54441 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 2px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u54441_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. }
  3848. #u54442 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:0px;
  3854. height:0px;
  3855. }
  3856. #u54443_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:342px;
  3862. height:50px;
  3863. }
  3864. #u54443 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:51px;
  3868. top:328px;
  3869. width:342px;
  3870. height:50px;
  3871. display:flex;
  3872. }
  3873. #u54443 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 2px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u54443_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u54444_div {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:78px;
  3892. height:30px;
  3893. background:inherit;
  3894. background-color:rgba(255, 255, 255, 0);
  3895. border:none;
  3896. border-left:0px;
  3897. border-top:0px;
  3898. border-right:0px;
  3899. border-radius:0px;
  3900. border-bottom-right-radius:0px;
  3901. border-bottom-left-radius:0px;
  3902. -moz-box-shadow:none;
  3903. -webkit-box-shadow:none;
  3904. box-shadow:none;
  3905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3906. font-weight:400;
  3907. font-style:normal;
  3908. font-size:14px;
  3909. line-height:30px;
  3910. }
  3911. #u54444 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:51px;
  3915. top:338px;
  3916. width:78px;
  3917. height:30px;
  3918. display:flex;
  3919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:14px;
  3923. line-height:30px;
  3924. }
  3925. #u54444 .text {
  3926. position:absolute;
  3927. align-self:flex-start;
  3928. padding:0px 0px 0px 0px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u54444_text {
  3933. border-width:0px;
  3934. white-space:nowrap;
  3935. text-transform:none;
  3936. }
  3937. #u54445_input {
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:240px;
  3942. height:33px;
  3943. padding:2px 2px 2px 2px;
  3944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. font-size:14px;
  3948. letter-spacing:normal;
  3949. color:#000000;
  3950. vertical-align:none;
  3951. text-align:right;
  3952. text-transform:none;
  3953. background-color:transparent;
  3954. border-color:transparent;
  3955. }
  3956. #u54445_input.disabled {
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:240px;
  3961. height:33px;
  3962. padding:2px 2px 2px 2px;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:14px;
  3967. letter-spacing:normal;
  3968. color:#000000;
  3969. vertical-align:none;
  3970. text-align:right;
  3971. text-transform:none;
  3972. background-color:transparent;
  3973. border-color:transparent;
  3974. }
  3975. #u54445_div {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:240px;
  3981. height:33px;
  3982. background:inherit;
  3983. background-color:rgba(255, 255, 255, 1);
  3984. border:none;
  3985. border-radius:0px;
  3986. -moz-box-shadow:none;
  3987. -webkit-box-shadow:none;
  3988. box-shadow:none;
  3989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:14px;
  3993. text-align:right;
  3994. }
  3995. #u54445 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:126px;
  3999. top:337px;
  4000. width:240px;
  4001. height:33px;
  4002. display:flex;
  4003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:14px;
  4007. text-align:right;
  4008. }
  4009. #u54445 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 2px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u54445_div.disabled {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:240px;
  4022. height:33px;
  4023. background:inherit;
  4024. background-color:rgba(240, 240, 240, 1);
  4025. border:none;
  4026. border-radius:0px;
  4027. -moz-box-shadow:none;
  4028. -webkit-box-shadow:none;
  4029. box-shadow:none;
  4030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4031. font-weight:400;
  4032. font-style:normal;
  4033. font-size:14px;
  4034. text-align:right;
  4035. }
  4036. #u54445.disabled {
  4037. }
  4038. #u54447_img {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:433px;
  4044. height:865px;
  4045. }
  4046. #u54447 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:453px;
  4050. top:0px;
  4051. width:433px;
  4052. height:865px;
  4053. display:flex;
  4054. }
  4055. #u54447 .text {
  4056. position:absolute;
  4057. align-self:center;
  4058. padding:2px 2px 2px 2px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u54447_text {
  4063. border-width:0px;
  4064. word-wrap:break-word;
  4065. text-transform:none;
  4066. visibility:hidden;
  4067. }
  4068. #u54448_div {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:375px;
  4074. height:40px;
  4075. background:inherit;
  4076. background-color:rgba(255, 255, 255, 1);
  4077. box-sizing:border-box;
  4078. border-width:1px;
  4079. border-style:solid;
  4080. border-color:rgba(215, 215, 215, 1);
  4081. border-left:0px;
  4082. border-top:0px;
  4083. border-right:0px;
  4084. border-radius:0px;
  4085. border-bottom-right-radius:0px;
  4086. border-bottom-left-radius:0px;
  4087. -moz-box-shadow:none;
  4088. -webkit-box-shadow:none;
  4089. box-shadow:none;
  4090. }
  4091. #u54448 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:482px;
  4095. top:67px;
  4096. width:375px;
  4097. height:40px;
  4098. display:flex;
  4099. }
  4100. #u54448 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 2px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u54448_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u54449 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:0px;
  4119. height:0px;
  4120. }
  4121. #u54450_div {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:88px;
  4127. height:32px;
  4128. background:inherit;
  4129. background-color:rgba(255, 255, 255, 1);
  4130. box-sizing:border-box;
  4131. border-width:1px;
  4132. border-style:solid;
  4133. border-color:rgba(242, 242, 242, 1);
  4134. border-radius:33px;
  4135. -moz-box-shadow:none;
  4136. -webkit-box-shadow:none;
  4137. box-shadow:none;
  4138. }
  4139. #u54450 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:762px;
  4143. top:71px;
  4144. width:88px;
  4145. height:32px;
  4146. display:flex;
  4147. }
  4148. #u54450 .text {
  4149. position:absolute;
  4150. align-self:center;
  4151. padding:2px 2px 2px 2px;
  4152. box-sizing:border-box;
  4153. width:100%;
  4154. }
  4155. #u54450_text {
  4156. border-width:0px;
  4157. word-wrap:break-word;
  4158. text-transform:none;
  4159. visibility:hidden;
  4160. }
  4161. #u54451 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:0px;
  4167. height:0px;
  4168. }
  4169. #u54452_img {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:18px;
  4175. height:18px;
  4176. }
  4177. #u54452 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:825px;
  4181. top:78px;
  4182. width:18px;
  4183. height:18px;
  4184. display:flex;
  4185. }
  4186. #u54452 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 2px 2px 2px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u54452_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. visibility:hidden;
  4198. }
  4199. #u54453_img {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:6px;
  4205. height:6px;
  4206. }
  4207. #u54453 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:831px;
  4211. top:84px;
  4212. width:6px;
  4213. height:6px;
  4214. display:flex;
  4215. }
  4216. #u54453 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 2px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u54453_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u54454 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:0px;
  4235. height:0px;
  4236. }
  4237. #u54455_img {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:5px;
  4243. height:5px;
  4244. }
  4245. #u54455 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:776px;
  4249. top:85px;
  4250. width:5px;
  4251. height:5px;
  4252. display:flex;
  4253. }
  4254. #u54455 .text {
  4255. position:absolute;
  4256. align-self:center;
  4257. padding:2px 2px 2px 2px;
  4258. box-sizing:border-box;
  4259. width:100%;
  4260. }
  4261. #u54455_text {
  4262. border-width:0px;
  4263. word-wrap:break-word;
  4264. text-transform:none;
  4265. visibility:hidden;
  4266. }
  4267. #u54456_img {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:5px;
  4273. height:5px;
  4274. }
  4275. #u54456 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:792px;
  4279. top:85px;
  4280. width:5px;
  4281. height:5px;
  4282. display:flex;
  4283. }
  4284. #u54456 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 2px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u54456_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u54457_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:7px;
  4303. height:7px;
  4304. }
  4305. #u54457 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:783px;
  4309. top:84px;
  4310. width:7px;
  4311. height:7px;
  4312. display:flex;
  4313. }
  4314. #u54457 .text {
  4315. position:absolute;
  4316. align-self:center;
  4317. padding:2px 2px 2px 2px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u54457_text {
  4322. border-width:0px;
  4323. word-wrap:break-word;
  4324. text-transform:none;
  4325. visibility:hidden;
  4326. }
  4327. #u54458_img {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:19px;
  4333. height:2px;
  4334. }
  4335. #u54458 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:800px;
  4339. top:87px;
  4340. width:18px;
  4341. height:1px;
  4342. display:flex;
  4343. -webkit-transform:rotate(90deg);
  4344. -moz-transform:rotate(90deg);
  4345. -ms-transform:rotate(90deg);
  4346. transform:rotate(90deg);
  4347. }
  4348. #u54458 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:2px 2px 2px 2px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u54458_text {
  4356. border-width:0px;
  4357. word-wrap:break-word;
  4358. text-transform:none;
  4359. visibility:hidden;
  4360. }
  4361. #u54459_img {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:375px;
  4367. height:44px;
  4368. }
  4369. #u54459 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:482px;
  4373. top:24px;
  4374. width:375px;
  4375. height:44px;
  4376. display:flex;
  4377. }
  4378. #u54459 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u54459_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u54460_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:375px;
  4397. height:50px;
  4398. background:inherit;
  4399. background-color:rgba(255, 255, 255, 1);
  4400. box-sizing:border-box;
  4401. border-width:1px;
  4402. border-style:solid;
  4403. border-color:rgba(242, 242, 242, 1);
  4404. border-radius:26px;
  4405. border-top-left-radius:0px;
  4406. border-top-right-radius:0px;
  4407. -moz-box-shadow:none;
  4408. -webkit-box-shadow:none;
  4409. box-shadow:none;
  4410. }
  4411. #u54460 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:482px;
  4415. top:788px;
  4416. width:375px;
  4417. height:50px;
  4418. display:flex;
  4419. }
  4420. #u54460 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 2px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u54460_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. visibility:hidden;
  4432. }
  4433. #u54461 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:0px;
  4439. height:0px;
  4440. }
  4441. #u54462_img {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:24px;
  4447. height:24px;
  4448. }
  4449. #u54462 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:522px;
  4453. top:792px;
  4454. width:24px;
  4455. height:24px;
  4456. display:flex;
  4457. font-size:8px;
  4458. }
  4459. #u54462 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 2px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u54462_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. }
  4471. #u54463_div {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:25px;
  4477. height:17px;
  4478. background:inherit;
  4479. background-color:rgba(255, 255, 255, 0);
  4480. border:none;
  4481. border-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:12px;
  4489. }
  4490. #u54463 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:522px;
  4494. top:817px;
  4495. width:25px;
  4496. height:17px;
  4497. display:flex;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. }
  4503. #u54463 .text {
  4504. position:absolute;
  4505. align-self:flex-start;
  4506. padding:0px 0px 0px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u54463_text {
  4511. border-width:0px;
  4512. white-space:nowrap;
  4513. text-transform:none;
  4514. }
  4515. #u54464 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:0px;
  4521. height:0px;
  4522. }
  4523. #u54465_img {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:24px;
  4529. height:24px;
  4530. }
  4531. #u54465 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:792px;
  4535. top:794px;
  4536. width:24px;
  4537. height:24px;
  4538. display:flex;
  4539. font-size:8px;
  4540. }
  4541. #u54465 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:2px 2px 2px 2px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u54465_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. }
  4553. #u54466_div {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:25px;
  4559. height:17px;
  4560. background:inherit;
  4561. background-color:rgba(255, 255, 255, 0);
  4562. border:none;
  4563. border-radius:0px;
  4564. -moz-box-shadow:none;
  4565. -webkit-box-shadow:none;
  4566. box-shadow:none;
  4567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:12px;
  4571. }
  4572. #u54466 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:792px;
  4576. top:819px;
  4577. width:25px;
  4578. height:17px;
  4579. display:flex;
  4580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:12px;
  4584. }
  4585. #u54466 .text {
  4586. position:absolute;
  4587. align-self:flex-start;
  4588. padding:0px 0px 0px 0px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u54466_text {
  4593. border-width:0px;
  4594. white-space:nowrap;
  4595. text-transform:none;
  4596. }
  4597. #u54467_div {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:375px;
  4603. height:681px;
  4604. background:inherit;
  4605. background-color:rgba(242, 242, 242, 0.462745098039216);
  4606. border:none;
  4607. border-radius:0px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. }
  4612. #u54467 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:482px;
  4616. top:107px;
  4617. width:375px;
  4618. height:681px;
  4619. display:flex;
  4620. }
  4621. #u54467 .text {
  4622. position:absolute;
  4623. align-self:center;
  4624. padding:2px 2px 2px 2px;
  4625. box-sizing:border-box;
  4626. width:100%;
  4627. }
  4628. #u54467_text {
  4629. border-width:0px;
  4630. word-wrap:break-word;
  4631. text-transform:none;
  4632. visibility:hidden;
  4633. }
  4634. #u54468 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:0px;
  4640. height:0px;
  4641. }
  4642. #u54469_img {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:24px;
  4648. height:24px;
  4649. }
  4650. #u54469 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:704px;
  4654. top:792px;
  4655. width:24px;
  4656. height:24px;
  4657. display:flex;
  4658. font-size:8px;
  4659. }
  4660. #u54469 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 2px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u54469_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. }
  4672. #u54470_div {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:37px;
  4678. height:17px;
  4679. background:inherit;
  4680. background-color:rgba(255, 255, 255, 0);
  4681. border:none;
  4682. border-radius:0px;
  4683. -moz-box-shadow:none;
  4684. -webkit-box-shadow:none;
  4685. box-shadow:none;
  4686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4687. font-weight:400;
  4688. font-style:normal;
  4689. font-size:12px;
  4690. }
  4691. #u54470 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:698px;
  4695. top:817px;
  4696. width:37px;
  4697. height:17px;
  4698. display:flex;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:12px;
  4703. }
  4704. #u54470 .text {
  4705. position:absolute;
  4706. align-self:flex-start;
  4707. padding:0px 0px 0px 0px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u54470_text {
  4712. border-width:0px;
  4713. white-space:nowrap;
  4714. text-transform:none;
  4715. }
  4716. #u54471 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:0px;
  4722. height:0px;
  4723. }
  4724. #u54472_img {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:24px;
  4730. height:24px;
  4731. }
  4732. #u54472 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:610px;
  4736. top:792px;
  4737. width:24px;
  4738. height:24px;
  4739. display:flex;
  4740. font-size:8px;
  4741. }
  4742. #u54472 .text {
  4743. position:absolute;
  4744. align-self:center;
  4745. padding:2px 2px 2px 2px;
  4746. box-sizing:border-box;
  4747. width:100%;
  4748. }
  4749. #u54472_text {
  4750. border-width:0px;
  4751. word-wrap:break-word;
  4752. text-transform:none;
  4753. }
  4754. #u54473_div {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:37px;
  4760. height:17px;
  4761. background:inherit;
  4762. background-color:rgba(255, 255, 255, 0);
  4763. border:none;
  4764. border-radius:0px;
  4765. -moz-box-shadow:none;
  4766. -webkit-box-shadow:none;
  4767. box-shadow:none;
  4768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:12px;
  4772. }
  4773. #u54473 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:604px;
  4777. top:817px;
  4778. width:37px;
  4779. height:17px;
  4780. display:flex;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:12px;
  4785. }
  4786. #u54473 .text {
  4787. position:absolute;
  4788. align-self:flex-start;
  4789. padding:0px 0px 0px 0px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u54473_text {
  4794. border-width:0px;
  4795. white-space:nowrap;
  4796. text-transform:none;
  4797. }
  4798. #u54474_div {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:375px;
  4804. height:971px;
  4805. background:inherit;
  4806. background-color:rgba(242, 242, 242, 1);
  4807. border:none;
  4808. border-top:0px;
  4809. border-radius:25px;
  4810. border-top-left-radius:0px;
  4811. border-top-right-radius:0px;
  4812. -moz-box-shadow:none;
  4813. -webkit-box-shadow:none;
  4814. box-shadow:none;
  4815. }
  4816. #u54474 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:482px;
  4820. top:105px;
  4821. width:375px;
  4822. height:971px;
  4823. display:flex;
  4824. }
  4825. #u54474 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 2px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u54474_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. visibility:hidden;
  4837. }
  4838. #u54475_div {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:375px;
  4844. height:156px;
  4845. background:inherit;
  4846. background-color:rgba(255, 255, 255, 1);
  4847. border:none;
  4848. border-top:0px;
  4849. border-radius:0px;
  4850. border-top-left-radius:0px;
  4851. border-top-right-radius:0px;
  4852. -moz-box-shadow:none;
  4853. -webkit-box-shadow:none;
  4854. box-shadow:none;
  4855. }
  4856. #u54475 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:482px;
  4860. top:106px;
  4861. width:375px;
  4862. height:156px;
  4863. display:flex;
  4864. }
  4865. #u54475 .text {
  4866. position:absolute;
  4867. align-self:center;
  4868. padding:2px 2px 2px 2px;
  4869. box-sizing:border-box;
  4870. width:100%;
  4871. }
  4872. #u54475_text {
  4873. border-width:0px;
  4874. word-wrap:break-word;
  4875. text-transform:none;
  4876. visibility:hidden;
  4877. }
  4878. #u54476_img {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:11px;
  4884. height:18px;
  4885. }
  4886. #u54476 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:495px;
  4890. top:79px;
  4891. width:11px;
  4892. height:18px;
  4893. display:flex;
  4894. }
  4895. #u54476 .text {
  4896. position:absolute;
  4897. align-self:center;
  4898. padding:2px 2px 2px 2px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u54476_text {
  4903. border-width:0px;
  4904. word-wrap:break-word;
  4905. text-transform:none;
  4906. visibility:hidden;
  4907. }
  4908. #u54477_div {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:0px;
  4913. width:73px;
  4914. height:30px;
  4915. background:inherit;
  4916. background-color:rgba(255, 255, 255, 0);
  4917. border:none;
  4918. border-left:0px;
  4919. border-top:0px;
  4920. border-right:0px;
  4921. border-radius:0px;
  4922. border-bottom-right-radius:0px;
  4923. border-bottom-left-radius:0px;
  4924. -moz-box-shadow:none;
  4925. -webkit-box-shadow:none;
  4926. box-shadow:none;
  4927. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4928. font-weight:500;
  4929. font-style:normal;
  4930. font-size:18px;
  4931. line-height:30px;
  4932. }
  4933. #u54477 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:501px;
  4937. top:120px;
  4938. width:73px;
  4939. height:30px;
  4940. display:flex;
  4941. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4942. font-weight:500;
  4943. font-style:normal;
  4944. font-size:18px;
  4945. line-height:30px;
  4946. }
  4947. #u54477 .text {
  4948. position:absolute;
  4949. align-self:flex-start;
  4950. padding:0px 0px 0px 0px;
  4951. box-sizing:border-box;
  4952. width:100%;
  4953. }
  4954. #u54477_text {
  4955. border-width:0px;
  4956. white-space:nowrap;
  4957. text-transform:none;
  4958. }
  4959. #u54478 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:0px;
  4963. top:0px;
  4964. width:0px;
  4965. height:0px;
  4966. }
  4967. #u54479_img {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:375px;
  4973. height:50px;
  4974. }
  4975. #u54479 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:482px;
  4979. top:162px;
  4980. width:375px;
  4981. height:50px;
  4982. display:flex;
  4983. }
  4984. #u54479 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 2px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u54479_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u54480_div {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:64px;
  5003. height:30px;
  5004. background:inherit;
  5005. background-color:rgba(255, 255, 255, 0);
  5006. border:none;
  5007. border-left:0px;
  5008. border-top:0px;
  5009. border-right:0px;
  5010. border-radius:0px;
  5011. border-bottom-right-radius:0px;
  5012. border-bottom-left-radius:0px;
  5013. -moz-box-shadow:none;
  5014. -webkit-box-shadow:none;
  5015. box-shadow:none;
  5016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. line-height:30px;
  5021. }
  5022. #u54480 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:506px;
  5026. top:172px;
  5027. width:64px;
  5028. height:30px;
  5029. display:flex;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:14px;
  5034. line-height:30px;
  5035. }
  5036. #u54480 .text {
  5037. position:absolute;
  5038. align-self:flex-start;
  5039. padding:0px 0px 0px 0px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u54480_text {
  5044. border-width:0px;
  5045. white-space:nowrap;
  5046. text-transform:none;
  5047. }
  5048. #u54481_img {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:8px;
  5054. height:13px;
  5055. }
  5056. #u54481 {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:833px;
  5060. top:179px;
  5061. width:8px;
  5062. height:13px;
  5063. display:flex;
  5064. -webkit-transform:rotate(180deg);
  5065. -moz-transform:rotate(180deg);
  5066. -ms-transform:rotate(180deg);
  5067. transform:rotate(180deg);
  5068. }
  5069. #u54481 .text {
  5070. position:absolute;
  5071. align-self:center;
  5072. padding:2px 2px 2px 2px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u54481_text {
  5077. border-width:0px;
  5078. word-wrap:break-word;
  5079. text-transform:none;
  5080. visibility:hidden;
  5081. }
  5082. #u54482_div {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:161px;
  5088. height:30px;
  5089. background:inherit;
  5090. background-color:rgba(255, 255, 255, 0);
  5091. border:none;
  5092. border-left:0px;
  5093. border-top:0px;
  5094. border-right:0px;
  5095. border-radius:0px;
  5096. border-bottom-right-radius:0px;
  5097. border-bottom-left-radius:0px;
  5098. -moz-box-shadow:none;
  5099. -webkit-box-shadow:none;
  5100. box-shadow:none;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:14px;
  5105. text-align:right;
  5106. line-height:30px;
  5107. }
  5108. #u54482 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:664px;
  5112. top:172px;
  5113. width:161px;
  5114. height:30px;
  5115. display:flex;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:14px;
  5120. text-align:right;
  5121. line-height:30px;
  5122. }
  5123. #u54482 .text {
  5124. position:absolute;
  5125. align-self:flex-start;
  5126. padding:0px 0px 0px 0px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u54482_text {
  5131. border-width:0px;
  5132. white-space:nowrap;
  5133. text-transform:none;
  5134. }
  5135. #u54483 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:0px;
  5141. height:0px;
  5142. }
  5143. #u54484_div {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:375px;
  5149. height:50px;
  5150. background:inherit;
  5151. background-color:rgba(255, 255, 255, 1);
  5152. border:none;
  5153. border-left:0px;
  5154. border-right:0px;
  5155. border-radius:0px;
  5156. border-top-left-radius:0px;
  5157. border-top-right-radius:0px;
  5158. border-bottom-right-radius:0px;
  5159. border-bottom-left-radius:0px;
  5160. -moz-box-shadow:none;
  5161. -webkit-box-shadow:none;
  5162. box-shadow:none;
  5163. }
  5164. #u54484 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:482px;
  5168. top:212px;
  5169. width:375px;
  5170. height:50px;
  5171. display:flex;
  5172. }
  5173. #u54484 .text {
  5174. position:absolute;
  5175. align-self:center;
  5176. padding:2px 2px 2px 2px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u54484_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. visibility:hidden;
  5185. }
  5186. #u54485_div {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:64px;
  5192. height:30px;
  5193. background:inherit;
  5194. background-color:rgba(255, 255, 255, 0);
  5195. border:none;
  5196. border-left:0px;
  5197. border-top:0px;
  5198. border-right:0px;
  5199. border-radius:0px;
  5200. border-bottom-right-radius:0px;
  5201. border-bottom-left-radius:0px;
  5202. -moz-box-shadow:none;
  5203. -webkit-box-shadow:none;
  5204. box-shadow:none;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:14px;
  5209. line-height:30px;
  5210. }
  5211. #u54485 {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:506px;
  5215. top:222px;
  5216. width:64px;
  5217. height:30px;
  5218. display:flex;
  5219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. font-size:14px;
  5223. line-height:30px;
  5224. }
  5225. #u54485 .text {
  5226. position:absolute;
  5227. align-self:flex-start;
  5228. padding:0px 0px 0px 0px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u54485_text {
  5233. border-width:0px;
  5234. white-space:nowrap;
  5235. text-transform:none;
  5236. }
  5237. #u54486_img {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:8px;
  5243. height:13px;
  5244. }
  5245. #u54486 {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:833px;
  5249. top:231px;
  5250. width:8px;
  5251. height:13px;
  5252. display:flex;
  5253. -webkit-transform:rotate(180deg);
  5254. -moz-transform:rotate(180deg);
  5255. -ms-transform:rotate(180deg);
  5256. transform:rotate(180deg);
  5257. }
  5258. #u54486 .text {
  5259. position:absolute;
  5260. align-self:center;
  5261. padding:2px 2px 2px 2px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u54486_text {
  5266. border-width:0px;
  5267. word-wrap:break-word;
  5268. text-transform:none;
  5269. visibility:hidden;
  5270. }
  5271. #u54487_div {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:29px;
  5277. height:30px;
  5278. background:inherit;
  5279. background-color:rgba(255, 255, 255, 0);
  5280. border:none;
  5281. border-left:0px;
  5282. border-top:0px;
  5283. border-right:0px;
  5284. border-radius:0px;
  5285. border-bottom-right-radius:0px;
  5286. border-bottom-left-radius:0px;
  5287. -moz-box-shadow:none;
  5288. -webkit-box-shadow:none;
  5289. box-shadow:none;
  5290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:14px;
  5294. text-align:right;
  5295. line-height:30px;
  5296. }
  5297. #u54487 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:796px;
  5301. top:222px;
  5302. width:29px;
  5303. height:30px;
  5304. display:flex;
  5305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:14px;
  5309. text-align:right;
  5310. line-height:30px;
  5311. }
  5312. #u54487 .text {
  5313. position:absolute;
  5314. align-self:flex-start;
  5315. padding:0px 0px 0px 0px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u54487_text {
  5320. border-width:0px;
  5321. white-space:nowrap;
  5322. text-transform:none;
  5323. }
  5324. #u54488_div {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:375px;
  5330. height:733px;
  5331. background:inherit;
  5332. background-color:rgba(255, 255, 255, 1);
  5333. border:none;
  5334. border-left:0px;
  5335. border-right:0px;
  5336. border-radius:0px;
  5337. border-top-left-radius:0px;
  5338. border-top-right-radius:0px;
  5339. border-bottom-right-radius:0px;
  5340. border-bottom-left-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. }
  5345. #u54488 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:482px;
  5349. top:273px;
  5350. width:375px;
  5351. height:733px;
  5352. display:flex;
  5353. }
  5354. #u54488 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:2px 2px 2px 2px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u54488_text {
  5362. border-width:0px;
  5363. word-wrap:break-word;
  5364. text-transform:none;
  5365. visibility:hidden;
  5366. }
  5367. #u54489_div {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:73px;
  5373. height:30px;
  5374. background:inherit;
  5375. background-color:rgba(255, 255, 255, 0);
  5376. border:none;
  5377. border-left:0px;
  5378. border-top:0px;
  5379. border-right:0px;
  5380. border-radius:0px;
  5381. border-bottom-right-radius:0px;
  5382. border-bottom-left-radius:0px;
  5383. -moz-box-shadow:none;
  5384. -webkit-box-shadow:none;
  5385. box-shadow:none;
  5386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5387. font-weight:500;
  5388. font-style:normal;
  5389. font-size:18px;
  5390. line-height:30px;
  5391. }
  5392. #u54489 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:504px;
  5396. top:288px;
  5397. width:73px;
  5398. height:30px;
  5399. display:flex;
  5400. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5401. font-weight:500;
  5402. font-style:normal;
  5403. font-size:18px;
  5404. line-height:30px;
  5405. }
  5406. #u54489 .text {
  5407. position:absolute;
  5408. align-self:flex-start;
  5409. padding:0px 0px 0px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u54489_text {
  5414. border-width:0px;
  5415. white-space:nowrap;
  5416. text-transform:none;
  5417. }
  5418. #u54490 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:0px;
  5424. height:0px;
  5425. }
  5426. #u54491_img {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:342px;
  5432. height:160px;
  5433. }
  5434. #u54491 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:504px;
  5438. top:323px;
  5439. width:342px;
  5440. height:160px;
  5441. display:flex;
  5442. }
  5443. #u54491 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:2px 2px 2px 2px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u54491_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. visibility:hidden;
  5455. }
  5456. #u54492_div {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:64px;
  5462. height:30px;
  5463. background:inherit;
  5464. background-color:rgba(255, 255, 255, 0);
  5465. border:none;
  5466. border-left:0px;
  5467. border-top:0px;
  5468. border-right:0px;
  5469. border-radius:0px;
  5470. border-bottom-right-radius:0px;
  5471. border-bottom-left-radius:0px;
  5472. -moz-box-shadow:none;
  5473. -webkit-box-shadow:none;
  5474. box-shadow:none;
  5475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:14px;
  5479. line-height:30px;
  5480. }
  5481. #u54492 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:504px;
  5485. top:333px;
  5486. width:64px;
  5487. height:30px;
  5488. display:flex;
  5489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:14px;
  5493. line-height:30px;
  5494. }
  5495. #u54492 .text {
  5496. position:absolute;
  5497. align-self:flex-start;
  5498. padding:0px 0px 0px 0px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u54492_text {
  5503. border-width:0px;
  5504. white-space:nowrap;
  5505. text-transform:none;
  5506. }
  5507. #u54493_img {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:331px;
  5513. height:110px;
  5514. }
  5515. #u54493 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:504px;
  5519. top:363px;
  5520. width:331px;
  5521. height:110px;
  5522. display:flex;
  5523. }
  5524. #u54493 .text {
  5525. position:absolute;
  5526. align-self:center;
  5527. padding:2px 2px 2px 2px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u54493_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. visibility:hidden;
  5536. }
  5537. #u54494 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:0px;
  5543. height:0px;
  5544. }
  5545. #u54495_img {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:342px;
  5551. height:50px;
  5552. }
  5553. #u54495 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:504px;
  5557. top:533px;
  5558. width:342px;
  5559. height:50px;
  5560. display:flex;
  5561. }
  5562. #u54495 .text {
  5563. position:absolute;
  5564. align-self:center;
  5565. padding:2px 2px 2px 2px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u54495_text {
  5570. border-width:0px;
  5571. word-wrap:break-word;
  5572. text-transform:none;
  5573. visibility:hidden;
  5574. }
  5575. #u54496_div {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:78px;
  5581. height:30px;
  5582. background:inherit;
  5583. background-color:rgba(255, 255, 255, 0);
  5584. border:none;
  5585. border-left:0px;
  5586. border-top:0px;
  5587. border-right:0px;
  5588. border-radius:0px;
  5589. border-bottom-right-radius:0px;
  5590. border-bottom-left-radius:0px;
  5591. -moz-box-shadow:none;
  5592. -webkit-box-shadow:none;
  5593. box-shadow:none;
  5594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:14px;
  5598. line-height:30px;
  5599. }
  5600. #u54496 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:504px;
  5604. top:543px;
  5605. width:78px;
  5606. height:30px;
  5607. display:flex;
  5608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:14px;
  5612. line-height:30px;
  5613. }
  5614. #u54496 .text {
  5615. position:absolute;
  5616. align-self:flex-start;
  5617. padding:0px 0px 0px 0px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u54496_text {
  5622. border-width:0px;
  5623. white-space:nowrap;
  5624. text-transform:none;
  5625. }
  5626. #u54497_input {
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:240px;
  5631. height:33px;
  5632. padding:2px 2px 2px 2px;
  5633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:14px;
  5637. letter-spacing:normal;
  5638. color:#000000;
  5639. vertical-align:none;
  5640. text-align:right;
  5641. text-transform:none;
  5642. background-color:transparent;
  5643. border-color:transparent;
  5644. }
  5645. #u54497_input.disabled {
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:240px;
  5650. height:33px;
  5651. padding:2px 2px 2px 2px;
  5652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:14px;
  5656. letter-spacing:normal;
  5657. color:#000000;
  5658. vertical-align:none;
  5659. text-align:right;
  5660. text-transform:none;
  5661. background-color:transparent;
  5662. border-color:transparent;
  5663. }
  5664. #u54497_div {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:240px;
  5670. height:33px;
  5671. background:inherit;
  5672. background-color:rgba(255, 255, 255, 1);
  5673. border:none;
  5674. border-radius:0px;
  5675. -moz-box-shadow:none;
  5676. -webkit-box-shadow:none;
  5677. box-shadow:none;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:14px;
  5682. text-align:right;
  5683. }
  5684. #u54497 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:579px;
  5688. top:542px;
  5689. width:240px;
  5690. height:33px;
  5691. display:flex;
  5692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:14px;
  5696. text-align:right;
  5697. }
  5698. #u54497 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 2px 2px 2px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u54497_div.disabled {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:240px;
  5711. height:33px;
  5712. background:inherit;
  5713. background-color:rgba(240, 240, 240, 1);
  5714. border:none;
  5715. border-radius:0px;
  5716. -moz-box-shadow:none;
  5717. -webkit-box-shadow:none;
  5718. box-shadow:none;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:14px;
  5723. text-align:right;
  5724. }
  5725. #u54497.disabled {
  5726. }
  5727. #u54498 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:0px;
  5732. width:0px;
  5733. height:0px;
  5734. }
  5735. #u54499_img {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:0px;
  5739. top:0px;
  5740. width:342px;
  5741. height:50px;
  5742. }
  5743. #u54499 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:504px;
  5747. top:583px;
  5748. width:342px;
  5749. height:50px;
  5750. display:flex;
  5751. }
  5752. #u54499 .text {
  5753. position:absolute;
  5754. align-self:center;
  5755. padding:2px 2px 2px 2px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u54499_text {
  5760. border-width:0px;
  5761. word-wrap:break-word;
  5762. text-transform:none;
  5763. visibility:hidden;
  5764. }
  5765. #u54500_div {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:0px;
  5769. top:0px;
  5770. width:78px;
  5771. height:30px;
  5772. background:inherit;
  5773. background-color:rgba(255, 255, 255, 0);
  5774. border:none;
  5775. border-left:0px;
  5776. border-top:0px;
  5777. border-right:0px;
  5778. border-radius:0px;
  5779. border-bottom-right-radius:0px;
  5780. border-bottom-left-radius:0px;
  5781. -moz-box-shadow:none;
  5782. -webkit-box-shadow:none;
  5783. box-shadow:none;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:14px;
  5788. line-height:30px;
  5789. }
  5790. #u54500 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:504px;
  5794. top:593px;
  5795. width:78px;
  5796. height:30px;
  5797. display:flex;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:14px;
  5802. line-height:30px;
  5803. }
  5804. #u54500 .text {
  5805. position:absolute;
  5806. align-self:flex-start;
  5807. padding:0px 0px 0px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u54500_text {
  5812. border-width:0px;
  5813. white-space:nowrap;
  5814. text-transform:none;
  5815. }
  5816. #u54501_input {
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:240px;
  5821. height:33px;
  5822. padding:2px 2px 2px 2px;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:14px;
  5827. letter-spacing:normal;
  5828. color:#000000;
  5829. vertical-align:none;
  5830. text-align:right;
  5831. text-transform:none;
  5832. background-color:transparent;
  5833. border-color:transparent;
  5834. }
  5835. #u54501_input.disabled {
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:240px;
  5840. height:33px;
  5841. padding:2px 2px 2px 2px;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. letter-spacing:normal;
  5847. color:#000000;
  5848. vertical-align:none;
  5849. text-align:right;
  5850. text-transform:none;
  5851. background-color:transparent;
  5852. border-color:transparent;
  5853. }
  5854. #u54501_div {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:240px;
  5860. height:33px;
  5861. background:inherit;
  5862. background-color:rgba(255, 255, 255, 1);
  5863. border:none;
  5864. border-radius:0px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:14px;
  5872. text-align:right;
  5873. }
  5874. #u54501 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:579px;
  5878. top:592px;
  5879. width:240px;
  5880. height:33px;
  5881. display:flex;
  5882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5883. font-weight:400;
  5884. font-style:normal;
  5885. font-size:14px;
  5886. text-align:right;
  5887. }
  5888. #u54501 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:2px 2px 2px 2px;
  5892. box-sizing:border-box;
  5893. width:100%;
  5894. }
  5895. #u54501_div.disabled {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:0px;
  5899. top:0px;
  5900. width:240px;
  5901. height:33px;
  5902. background:inherit;
  5903. background-color:rgba(240, 240, 240, 1);
  5904. border:none;
  5905. border-radius:0px;
  5906. -moz-box-shadow:none;
  5907. -webkit-box-shadow:none;
  5908. box-shadow:none;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:14px;
  5913. text-align:right;
  5914. }
  5915. #u54501.disabled {
  5916. }
  5917. #u54502 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:0px;
  5923. height:0px;
  5924. }
  5925. #u54503_img {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:342px;
  5931. height:50px;
  5932. }
  5933. #u54503 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:504px;
  5937. top:633px;
  5938. width:342px;
  5939. height:50px;
  5940. display:flex;
  5941. }
  5942. #u54503 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 2px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u54503_text {
  5950. border-width:0px;
  5951. word-wrap:break-word;
  5952. text-transform:none;
  5953. visibility:hidden;
  5954. }
  5955. #u54504_div {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:78px;
  5961. height:30px;
  5962. background:inherit;
  5963. background-color:rgba(255, 255, 255, 0);
  5964. border:none;
  5965. border-left:0px;
  5966. border-top:0px;
  5967. border-right:0px;
  5968. border-radius:0px;
  5969. border-bottom-right-radius:0px;
  5970. border-bottom-left-radius:0px;
  5971. -moz-box-shadow:none;
  5972. -webkit-box-shadow:none;
  5973. box-shadow:none;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:14px;
  5978. line-height:30px;
  5979. }
  5980. #u54504 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:504px;
  5984. top:643px;
  5985. width:78px;
  5986. height:30px;
  5987. display:flex;
  5988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:14px;
  5992. line-height:30px;
  5993. }
  5994. #u54504 .text {
  5995. position:absolute;
  5996. align-self:flex-start;
  5997. padding:0px 0px 0px 0px;
  5998. box-sizing:border-box;
  5999. width:100%;
  6000. }
  6001. #u54504_text {
  6002. border-width:0px;
  6003. white-space:nowrap;
  6004. text-transform:none;
  6005. }
  6006. #u54505_input {
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:240px;
  6011. height:33px;
  6012. padding:2px 2px 2px 2px;
  6013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:14px;
  6017. letter-spacing:normal;
  6018. color:#000000;
  6019. vertical-align:none;
  6020. text-align:right;
  6021. text-transform:none;
  6022. background-color:transparent;
  6023. border-color:transparent;
  6024. }
  6025. #u54505_input.disabled {
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:240px;
  6030. height:33px;
  6031. padding:2px 2px 2px 2px;
  6032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:14px;
  6036. letter-spacing:normal;
  6037. color:#000000;
  6038. vertical-align:none;
  6039. text-align:right;
  6040. text-transform:none;
  6041. background-color:transparent;
  6042. border-color:transparent;
  6043. }
  6044. #u54505_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:240px;
  6050. height:33px;
  6051. background:inherit;
  6052. background-color:rgba(255, 255, 255, 1);
  6053. border:none;
  6054. border-radius:0px;
  6055. -moz-box-shadow:none;
  6056. -webkit-box-shadow:none;
  6057. box-shadow:none;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:14px;
  6062. text-align:right;
  6063. }
  6064. #u54505 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:579px;
  6068. top:642px;
  6069. width:240px;
  6070. height:33px;
  6071. display:flex;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. text-align:right;
  6077. }
  6078. #u54505 .text {
  6079. position:absolute;
  6080. align-self:center;
  6081. padding:2px 2px 2px 2px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u54505_div.disabled {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:240px;
  6091. height:33px;
  6092. background:inherit;
  6093. background-color:rgba(240, 240, 240, 1);
  6094. border:none;
  6095. border-radius:0px;
  6096. -moz-box-shadow:none;
  6097. -webkit-box-shadow:none;
  6098. box-shadow:none;
  6099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:14px;
  6103. text-align:right;
  6104. }
  6105. #u54505.disabled {
  6106. }
  6107. #u54506 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:0px;
  6113. height:0px;
  6114. }
  6115. #u54507_div {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:342px;
  6121. height:200px;
  6122. background:inherit;
  6123. background-color:rgba(255, 255, 255, 1);
  6124. border:none;
  6125. border-left:0px;
  6126. border-top:0px;
  6127. border-right:0px;
  6128. border-radius:0px;
  6129. border-bottom-right-radius:0px;
  6130. border-bottom-left-radius:0px;
  6131. -moz-box-shadow:none;
  6132. -webkit-box-shadow:none;
  6133. box-shadow:none;
  6134. }
  6135. #u54507 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:504px;
  6139. top:683px;
  6140. width:342px;
  6141. height:200px;
  6142. display:flex;
  6143. }
  6144. #u54507 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 2px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u54507_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u54508_div {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:57px;
  6163. height:30px;
  6164. background:inherit;
  6165. background-color:rgba(255, 255, 255, 0);
  6166. border:none;
  6167. border-left:0px;
  6168. border-top:0px;
  6169. border-right:0px;
  6170. border-radius:0px;
  6171. border-bottom-right-radius:0px;
  6172. border-bottom-left-radius:0px;
  6173. -moz-box-shadow:none;
  6174. -webkit-box-shadow:none;
  6175. box-shadow:none;
  6176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6177. font-weight:400;
  6178. font-style:normal;
  6179. font-size:14px;
  6180. line-height:30px;
  6181. }
  6182. #u54508 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:504px;
  6186. top:693px;
  6187. width:57px;
  6188. height:30px;
  6189. display:flex;
  6190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:14px;
  6194. line-height:30px;
  6195. }
  6196. #u54508 .text {
  6197. position:absolute;
  6198. align-self:flex-start;
  6199. padding:0px 0px 0px 0px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u54508_text {
  6204. border-width:0px;
  6205. white-space:nowrap;
  6206. text-transform:none;
  6207. }
  6208. #u54509_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:342px;
  6214. height:31px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 0);
  6217. border:none;
  6218. border-radius:0px;
  6219. -moz-box-shadow:none;
  6220. -webkit-box-shadow:none;
  6221. box-shadow:none;
  6222. font-size:12px;
  6223. color:#AAAAAA;
  6224. }
  6225. #u54509 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:504px;
  6229. top:719px;
  6230. width:342px;
  6231. height:31px;
  6232. display:flex;
  6233. font-size:12px;
  6234. color:#AAAAAA;
  6235. }
  6236. #u54509 .text {
  6237. position:absolute;
  6238. align-self:flex-start;
  6239. padding:0px 0px 0px 0px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u54509_text {
  6244. border-width:0px;
  6245. word-wrap:break-word;
  6246. text-transform:none;
  6247. }
  6248. #u54510_img {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:95px;
  6254. height:94px;
  6255. }
  6256. #u54510 {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:504px;
  6260. top:750px;
  6261. width:95px;
  6262. height:94px;
  6263. display:flex;
  6264. font-size:28px;
  6265. }
  6266. #u54510 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:2px 2px 2px 2px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u54510_text {
  6274. border-width:0px;
  6275. word-wrap:break-word;
  6276. text-transform:none;
  6277. }
  6278. #u54511 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:0px;
  6284. height:0px;
  6285. }
  6286. #u54512_div {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:376px;
  6292. height:60px;
  6293. background:inherit;
  6294. background-color:rgba(255, 255, 255, 1);
  6295. border:none;
  6296. border-top:0px;
  6297. border-radius:22px;
  6298. border-top-left-radius:0px;
  6299. border-top-right-radius:0px;
  6300. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  6301. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  6302. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  6303. }
  6304. #u54512 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:482px;
  6308. top:1016px;
  6309. width:376px;
  6310. height:60px;
  6311. display:flex;
  6312. }
  6313. #u54512 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 2px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u54512_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. visibility:hidden;
  6325. }
  6326. #u54513_div {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:334px;
  6332. height:40px;
  6333. background:inherit;
  6334. background-color:rgba(215, 215, 215, 1);
  6335. border:none;
  6336. border-radius:45px;
  6337. -moz-box-shadow:none;
  6338. -webkit-box-shadow:none;
  6339. box-shadow:none;
  6340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:14px;
  6344. color:#FFFFFF;
  6345. }
  6346. #u54513 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:503px;
  6350. top:1026px;
  6351. width:334px;
  6352. height:40px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:14px;
  6358. color:#FFFFFF;
  6359. }
  6360. #u54513 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 2px 2px 2px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u54513_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. }
  6372. #u54514 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:0px;
  6378. height:0px;
  6379. }
  6380. #u54515_img {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:0px;
  6384. top:0px;
  6385. width:342px;
  6386. height:50px;
  6387. }
  6388. #u54515 {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:504px;
  6392. top:483px;
  6393. width:342px;
  6394. height:50px;
  6395. display:flex;
  6396. }
  6397. #u54515 .text {
  6398. position:absolute;
  6399. align-self:center;
  6400. padding:2px 2px 2px 2px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u54515_text {
  6405. border-width:0px;
  6406. word-wrap:break-word;
  6407. text-transform:none;
  6408. visibility:hidden;
  6409. }
  6410. #u54516_div {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:78px;
  6416. height:30px;
  6417. background:inherit;
  6418. background-color:rgba(255, 255, 255, 0);
  6419. border:none;
  6420. border-left:0px;
  6421. border-top:0px;
  6422. border-right:0px;
  6423. border-radius:0px;
  6424. border-bottom-right-radius:0px;
  6425. border-bottom-left-radius:0px;
  6426. -moz-box-shadow:none;
  6427. -webkit-box-shadow:none;
  6428. box-shadow:none;
  6429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6430. font-weight:400;
  6431. font-style:normal;
  6432. font-size:14px;
  6433. line-height:30px;
  6434. }
  6435. #u54516 {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:504px;
  6439. top:493px;
  6440. width:78px;
  6441. height:30px;
  6442. display:flex;
  6443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6444. font-weight:400;
  6445. font-style:normal;
  6446. font-size:14px;
  6447. line-height:30px;
  6448. }
  6449. #u54516 .text {
  6450. position:absolute;
  6451. align-self:flex-start;
  6452. padding:0px 0px 0px 0px;
  6453. box-sizing:border-box;
  6454. width:100%;
  6455. }
  6456. #u54516_text {
  6457. border-width:0px;
  6458. white-space:nowrap;
  6459. text-transform:none;
  6460. }
  6461. #u54517_input {
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:240px;
  6466. height:33px;
  6467. padding:2px 2px 2px 2px;
  6468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6469. font-weight:400;
  6470. font-style:normal;
  6471. font-size:14px;
  6472. letter-spacing:normal;
  6473. color:#000000;
  6474. vertical-align:none;
  6475. text-align:right;
  6476. text-transform:none;
  6477. background-color:transparent;
  6478. border-color:transparent;
  6479. }
  6480. #u54517_input.disabled {
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:240px;
  6485. height:33px;
  6486. padding:2px 2px 2px 2px;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:14px;
  6491. letter-spacing:normal;
  6492. color:#000000;
  6493. vertical-align:none;
  6494. text-align:right;
  6495. text-transform:none;
  6496. background-color:transparent;
  6497. border-color:transparent;
  6498. }
  6499. #u54517_div {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:0px;
  6503. top:0px;
  6504. width:240px;
  6505. height:33px;
  6506. background:inherit;
  6507. background-color:rgba(255, 255, 255, 1);
  6508. border:none;
  6509. border-radius:0px;
  6510. -moz-box-shadow:none;
  6511. -webkit-box-shadow:none;
  6512. box-shadow:none;
  6513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6514. font-weight:400;
  6515. font-style:normal;
  6516. font-size:14px;
  6517. text-align:right;
  6518. }
  6519. #u54517 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:579px;
  6523. top:492px;
  6524. width:240px;
  6525. height:33px;
  6526. display:flex;
  6527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:14px;
  6531. text-align:right;
  6532. }
  6533. #u54517 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 2px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u54517_div.disabled {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:240px;
  6546. height:33px;
  6547. background:inherit;
  6548. background-color:rgba(240, 240, 240, 1);
  6549. border:none;
  6550. border-radius:0px;
  6551. -moz-box-shadow:none;
  6552. -webkit-box-shadow:none;
  6553. box-shadow:none;
  6554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6555. font-weight:400;
  6556. font-style:normal;
  6557. font-size:14px;
  6558. text-align:right;
  6559. }
  6560. #u54517.disabled {
  6561. }
  6562. #u54518 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:0px;
  6568. height:0px;
  6569. }
  6570. #u54520_img {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:433px;
  6576. height:865px;
  6577. }
  6578. #u54520 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:1357px;
  6582. top:1px;
  6583. width:433px;
  6584. height:865px;
  6585. display:flex;
  6586. }
  6587. #u54520 .text {
  6588. position:absolute;
  6589. align-self:center;
  6590. padding:2px 2px 2px 2px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u54520_text {
  6595. border-width:0px;
  6596. word-wrap:break-word;
  6597. text-transform:none;
  6598. visibility:hidden;
  6599. }
  6600. #u54521_div {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:375px;
  6606. height:40px;
  6607. background:inherit;
  6608. background-color:rgba(255, 255, 255, 1);
  6609. box-sizing:border-box;
  6610. border-width:1px;
  6611. border-style:solid;
  6612. border-color:rgba(215, 215, 215, 1);
  6613. border-left:0px;
  6614. border-top:0px;
  6615. border-right:0px;
  6616. border-radius:0px;
  6617. border-bottom-right-radius:0px;
  6618. border-bottom-left-radius:0px;
  6619. -moz-box-shadow:none;
  6620. -webkit-box-shadow:none;
  6621. box-shadow:none;
  6622. }
  6623. #u54521 {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:1386px;
  6627. top:68px;
  6628. width:375px;
  6629. height:40px;
  6630. display:flex;
  6631. }
  6632. #u54521 .text {
  6633. position:absolute;
  6634. align-self:center;
  6635. padding:2px 2px 2px 2px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u54521_text {
  6640. border-width:0px;
  6641. word-wrap:break-word;
  6642. text-transform:none;
  6643. visibility:hidden;
  6644. }
  6645. #u54522 {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:0px;
  6651. height:0px;
  6652. }
  6653. #u54523_div {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:88px;
  6659. height:32px;
  6660. background:inherit;
  6661. background-color:rgba(255, 255, 255, 1);
  6662. box-sizing:border-box;
  6663. border-width:1px;
  6664. border-style:solid;
  6665. border-color:rgba(242, 242, 242, 1);
  6666. border-radius:33px;
  6667. -moz-box-shadow:none;
  6668. -webkit-box-shadow:none;
  6669. box-shadow:none;
  6670. }
  6671. #u54523 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:1666px;
  6675. top:72px;
  6676. width:88px;
  6677. height:32px;
  6678. display:flex;
  6679. }
  6680. #u54523 .text {
  6681. position:absolute;
  6682. align-self:center;
  6683. padding:2px 2px 2px 2px;
  6684. box-sizing:border-box;
  6685. width:100%;
  6686. }
  6687. #u54523_text {
  6688. border-width:0px;
  6689. word-wrap:break-word;
  6690. text-transform:none;
  6691. visibility:hidden;
  6692. }
  6693. #u54524 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:0px;
  6699. height:0px;
  6700. }
  6701. #u54525_img {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:18px;
  6707. height:18px;
  6708. }
  6709. #u54525 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:1729px;
  6713. top:79px;
  6714. width:18px;
  6715. height:18px;
  6716. display:flex;
  6717. }
  6718. #u54525 .text {
  6719. position:absolute;
  6720. align-self:center;
  6721. padding:2px 2px 2px 2px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u54525_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. visibility:hidden;
  6730. }
  6731. #u54526_img {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:6px;
  6737. height:6px;
  6738. }
  6739. #u54526 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:1735px;
  6743. top:85px;
  6744. width:6px;
  6745. height:6px;
  6746. display:flex;
  6747. }
  6748. #u54526 .text {
  6749. position:absolute;
  6750. align-self:center;
  6751. padding:2px 2px 2px 2px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u54526_text {
  6756. border-width:0px;
  6757. word-wrap:break-word;
  6758. text-transform:none;
  6759. visibility:hidden;
  6760. }
  6761. #u54527 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:0px;
  6767. height:0px;
  6768. }
  6769. #u54528_img {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:0px;
  6774. width:5px;
  6775. height:5px;
  6776. }
  6777. #u54528 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:1680px;
  6781. top:86px;
  6782. width:5px;
  6783. height:5px;
  6784. display:flex;
  6785. }
  6786. #u54528 .text {
  6787. position:absolute;
  6788. align-self:center;
  6789. padding:2px 2px 2px 2px;
  6790. box-sizing:border-box;
  6791. width:100%;
  6792. }
  6793. #u54528_text {
  6794. border-width:0px;
  6795. word-wrap:break-word;
  6796. text-transform:none;
  6797. visibility:hidden;
  6798. }
  6799. #u54529_img {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:5px;
  6805. height:5px;
  6806. }
  6807. #u54529 {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:1696px;
  6811. top:86px;
  6812. width:5px;
  6813. height:5px;
  6814. display:flex;
  6815. }
  6816. #u54529 .text {
  6817. position:absolute;
  6818. align-self:center;
  6819. padding:2px 2px 2px 2px;
  6820. box-sizing:border-box;
  6821. width:100%;
  6822. }
  6823. #u54529_text {
  6824. border-width:0px;
  6825. word-wrap:break-word;
  6826. text-transform:none;
  6827. visibility:hidden;
  6828. }
  6829. #u54530_img {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:7px;
  6835. height:7px;
  6836. }
  6837. #u54530 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:1687px;
  6841. top:85px;
  6842. width:7px;
  6843. height:7px;
  6844. display:flex;
  6845. }
  6846. #u54530 .text {
  6847. position:absolute;
  6848. align-self:center;
  6849. padding:2px 2px 2px 2px;
  6850. box-sizing:border-box;
  6851. width:100%;
  6852. }
  6853. #u54530_text {
  6854. border-width:0px;
  6855. word-wrap:break-word;
  6856. text-transform:none;
  6857. visibility:hidden;
  6858. }
  6859. #u54531_img {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:19px;
  6865. height:2px;
  6866. }
  6867. #u54531 {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:1704px;
  6871. top:88px;
  6872. width:18px;
  6873. height:1px;
  6874. display:flex;
  6875. -webkit-transform:rotate(90deg);
  6876. -moz-transform:rotate(90deg);
  6877. -ms-transform:rotate(90deg);
  6878. transform:rotate(90deg);
  6879. }
  6880. #u54531 .text {
  6881. position:absolute;
  6882. align-self:center;
  6883. padding:2px 2px 2px 2px;
  6884. box-sizing:border-box;
  6885. width:100%;
  6886. }
  6887. #u54531_text {
  6888. border-width:0px;
  6889. word-wrap:break-word;
  6890. text-transform:none;
  6891. visibility:hidden;
  6892. }
  6893. #u54532_img {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:375px;
  6899. height:44px;
  6900. }
  6901. #u54532 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:1386px;
  6905. top:25px;
  6906. width:375px;
  6907. height:44px;
  6908. display:flex;
  6909. }
  6910. #u54532 .text {
  6911. position:absolute;
  6912. align-self:center;
  6913. padding:2px 2px 2px 2px;
  6914. box-sizing:border-box;
  6915. width:100%;
  6916. }
  6917. #u54532_text {
  6918. border-width:0px;
  6919. word-wrap:break-word;
  6920. text-transform:none;
  6921. visibility:hidden;
  6922. }
  6923. #u54533_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:375px;
  6929. height:50px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 1);
  6932. box-sizing:border-box;
  6933. border-width:1px;
  6934. border-style:solid;
  6935. border-color:rgba(242, 242, 242, 1);
  6936. border-radius:26px;
  6937. border-top-left-radius:0px;
  6938. border-top-right-radius:0px;
  6939. -moz-box-shadow:none;
  6940. -webkit-box-shadow:none;
  6941. box-shadow:none;
  6942. }
  6943. #u54533 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:1386px;
  6947. top:789px;
  6948. width:375px;
  6949. height:50px;
  6950. display:flex;
  6951. }
  6952. #u54533 .text {
  6953. position:absolute;
  6954. align-self:center;
  6955. padding:2px 2px 2px 2px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u54533_text {
  6960. border-width:0px;
  6961. word-wrap:break-word;
  6962. text-transform:none;
  6963. visibility:hidden;
  6964. }
  6965. #u54534 {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:0px;
  6971. height:0px;
  6972. }
  6973. #u54535_img {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:24px;
  6979. height:24px;
  6980. }
  6981. #u54535 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:1426px;
  6985. top:793px;
  6986. width:24px;
  6987. height:24px;
  6988. display:flex;
  6989. font-size:8px;
  6990. }
  6991. #u54535 .text {
  6992. position:absolute;
  6993. align-self:center;
  6994. padding:2px 2px 2px 2px;
  6995. box-sizing:border-box;
  6996. width:100%;
  6997. }
  6998. #u54535_text {
  6999. border-width:0px;
  7000. word-wrap:break-word;
  7001. text-transform:none;
  7002. }
  7003. #u54536_div {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:25px;
  7009. height:17px;
  7010. background:inherit;
  7011. background-color:rgba(255, 255, 255, 0);
  7012. border:none;
  7013. border-radius:0px;
  7014. -moz-box-shadow:none;
  7015. -webkit-box-shadow:none;
  7016. box-shadow:none;
  7017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7018. font-weight:400;
  7019. font-style:normal;
  7020. font-size:12px;
  7021. }
  7022. #u54536 {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:1426px;
  7026. top:818px;
  7027. width:25px;
  7028. height:17px;
  7029. display:flex;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:12px;
  7034. }
  7035. #u54536 .text {
  7036. position:absolute;
  7037. align-self:flex-start;
  7038. padding:0px 0px 0px 0px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u54536_text {
  7043. border-width:0px;
  7044. white-space:nowrap;
  7045. text-transform:none;
  7046. }
  7047. #u54537 {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:0px;
  7053. height:0px;
  7054. }
  7055. #u54538_img {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:24px;
  7061. height:24px;
  7062. }
  7063. #u54538 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:1696px;
  7067. top:795px;
  7068. width:24px;
  7069. height:24px;
  7070. display:flex;
  7071. font-size:8px;
  7072. }
  7073. #u54538 .text {
  7074. position:absolute;
  7075. align-self:center;
  7076. padding:2px 2px 2px 2px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u54538_text {
  7081. border-width:0px;
  7082. word-wrap:break-word;
  7083. text-transform:none;
  7084. }
  7085. #u54539_div {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:25px;
  7091. height:17px;
  7092. background:inherit;
  7093. background-color:rgba(255, 255, 255, 0);
  7094. border:none;
  7095. border-radius:0px;
  7096. -moz-box-shadow:none;
  7097. -webkit-box-shadow:none;
  7098. box-shadow:none;
  7099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7100. font-weight:400;
  7101. font-style:normal;
  7102. font-size:12px;
  7103. }
  7104. #u54539 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:1696px;
  7108. top:820px;
  7109. width:25px;
  7110. height:17px;
  7111. display:flex;
  7112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7113. font-weight:400;
  7114. font-style:normal;
  7115. font-size:12px;
  7116. }
  7117. #u54539 .text {
  7118. position:absolute;
  7119. align-self:flex-start;
  7120. padding:0px 0px 0px 0px;
  7121. box-sizing:border-box;
  7122. width:100%;
  7123. }
  7124. #u54539_text {
  7125. border-width:0px;
  7126. white-space:nowrap;
  7127. text-transform:none;
  7128. }
  7129. #u54540_div {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:0px;
  7133. top:0px;
  7134. width:375px;
  7135. height:681px;
  7136. background:inherit;
  7137. background-color:rgba(242, 242, 242, 0.462745098039216);
  7138. border:none;
  7139. border-radius:0px;
  7140. -moz-box-shadow:none;
  7141. -webkit-box-shadow:none;
  7142. box-shadow:none;
  7143. }
  7144. #u54540 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:1386px;
  7148. top:108px;
  7149. width:375px;
  7150. height:681px;
  7151. display:flex;
  7152. }
  7153. #u54540 .text {
  7154. position:absolute;
  7155. align-self:center;
  7156. padding:2px 2px 2px 2px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u54540_text {
  7161. border-width:0px;
  7162. word-wrap:break-word;
  7163. text-transform:none;
  7164. visibility:hidden;
  7165. }
  7166. #u54541 {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:0px;
  7172. height:0px;
  7173. }
  7174. #u54542_img {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:24px;
  7180. height:24px;
  7181. }
  7182. #u54542 {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:1608px;
  7186. top:793px;
  7187. width:24px;
  7188. height:24px;
  7189. display:flex;
  7190. font-size:8px;
  7191. }
  7192. #u54542 .text {
  7193. position:absolute;
  7194. align-self:center;
  7195. padding:2px 2px 2px 2px;
  7196. box-sizing:border-box;
  7197. width:100%;
  7198. }
  7199. #u54542_text {
  7200. border-width:0px;
  7201. word-wrap:break-word;
  7202. text-transform:none;
  7203. }
  7204. #u54543_div {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:37px;
  7210. height:17px;
  7211. background:inherit;
  7212. background-color:rgba(255, 255, 255, 0);
  7213. border:none;
  7214. border-radius:0px;
  7215. -moz-box-shadow:none;
  7216. -webkit-box-shadow:none;
  7217. box-shadow:none;
  7218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7219. font-weight:400;
  7220. font-style:normal;
  7221. font-size:12px;
  7222. }
  7223. #u54543 {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:1602px;
  7227. top:818px;
  7228. width:37px;
  7229. height:17px;
  7230. display:flex;
  7231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:12px;
  7235. }
  7236. #u54543 .text {
  7237. position:absolute;
  7238. align-self:flex-start;
  7239. padding:0px 0px 0px 0px;
  7240. box-sizing:border-box;
  7241. width:100%;
  7242. }
  7243. #u54543_text {
  7244. border-width:0px;
  7245. white-space:nowrap;
  7246. text-transform:none;
  7247. }
  7248. #u54544 {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:0px;
  7252. top:0px;
  7253. width:0px;
  7254. height:0px;
  7255. }
  7256. #u54545_img {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:0px;
  7260. top:0px;
  7261. width:24px;
  7262. height:24px;
  7263. }
  7264. #u54545 {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:1514px;
  7268. top:793px;
  7269. width:24px;
  7270. height:24px;
  7271. display:flex;
  7272. font-size:8px;
  7273. }
  7274. #u54545 .text {
  7275. position:absolute;
  7276. align-self:center;
  7277. padding:2px 2px 2px 2px;
  7278. box-sizing:border-box;
  7279. width:100%;
  7280. }
  7281. #u54545_text {
  7282. border-width:0px;
  7283. word-wrap:break-word;
  7284. text-transform:none;
  7285. }
  7286. #u54546_div {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:37px;
  7292. height:17px;
  7293. background:inherit;
  7294. background-color:rgba(255, 255, 255, 0);
  7295. border:none;
  7296. border-radius:0px;
  7297. -moz-box-shadow:none;
  7298. -webkit-box-shadow:none;
  7299. box-shadow:none;
  7300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7301. font-weight:400;
  7302. font-style:normal;
  7303. font-size:12px;
  7304. }
  7305. #u54546 {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:1508px;
  7309. top:818px;
  7310. width:37px;
  7311. height:17px;
  7312. display:flex;
  7313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7314. font-weight:400;
  7315. font-style:normal;
  7316. font-size:12px;
  7317. }
  7318. #u54546 .text {
  7319. position:absolute;
  7320. align-self:flex-start;
  7321. padding:0px 0px 0px 0px;
  7322. box-sizing:border-box;
  7323. width:100%;
  7324. }
  7325. #u54546_text {
  7326. border-width:0px;
  7327. white-space:nowrap;
  7328. text-transform:none;
  7329. }
  7330. #u54547_div {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:0px;
  7334. top:0px;
  7335. width:375px;
  7336. height:775px;
  7337. background:inherit;
  7338. background-color:rgba(255, 255, 255, 1);
  7339. border:none;
  7340. border-top:0px;
  7341. border-radius:28px;
  7342. border-top-left-radius:0px;
  7343. border-top-right-radius:0px;
  7344. -moz-box-shadow:none;
  7345. -webkit-box-shadow:none;
  7346. box-shadow:none;
  7347. }
  7348. #u54547 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:1386px;
  7352. top:66px;
  7353. width:375px;
  7354. height:775px;
  7355. display:flex;
  7356. }
  7357. #u54547 .text {
  7358. position:absolute;
  7359. align-self:center;
  7360. padding:2px 2px 2px 2px;
  7361. box-sizing:border-box;
  7362. width:100%;
  7363. }
  7364. #u54547_text {
  7365. border-width:0px;
  7366. word-wrap:break-word;
  7367. text-transform:none;
  7368. visibility:hidden;
  7369. }
  7370. #u54548_div {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:97px;
  7376. height:30px;
  7377. background:inherit;
  7378. background-color:rgba(255, 255, 255, 0);
  7379. border:none;
  7380. border-left:0px;
  7381. border-top:0px;
  7382. border-right:0px;
  7383. border-radius:0px;
  7384. border-bottom-right-radius:0px;
  7385. border-bottom-left-radius:0px;
  7386. -moz-box-shadow:none;
  7387. -webkit-box-shadow:none;
  7388. box-shadow:none;
  7389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7390. font-weight:400;
  7391. font-style:normal;
  7392. line-height:30px;
  7393. }
  7394. #u54548 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:1525px;
  7398. top:227px;
  7399. width:97px;
  7400. height:30px;
  7401. display:flex;
  7402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. line-height:30px;
  7406. }
  7407. #u54548 .text {
  7408. position:absolute;
  7409. align-self:center;
  7410. padding:0px 0px 0px 0px;
  7411. box-sizing:border-box;
  7412. width:100%;
  7413. }
  7414. #u54548_text {
  7415. border-width:0px;
  7416. white-space:nowrap;
  7417. text-transform:none;
  7418. }
  7419. #u54549_div {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:126px;
  7425. height:40px;
  7426. background:inherit;
  7427. background-color:rgba(255, 255, 255, 1);
  7428. box-sizing:border-box;
  7429. border-width:1px;
  7430. border-style:solid;
  7431. border-color:rgba(121, 121, 121, 1);
  7432. border-radius:63px;
  7433. -moz-box-shadow:none;
  7434. -webkit-box-shadow:none;
  7435. box-shadow:none;
  7436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7437. font-weight:400;
  7438. font-style:normal;
  7439. font-size:14px;
  7440. }
  7441. #u54549 {
  7442. border-width:0px;
  7443. position:absolute;
  7444. left:1584px;
  7445. top:355px;
  7446. width:126px;
  7447. height:40px;
  7448. display:flex;
  7449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7450. font-weight:400;
  7451. font-style:normal;
  7452. font-size:14px;
  7453. }
  7454. #u54549 .text {
  7455. position:absolute;
  7456. align-self:center;
  7457. padding:2px 2px 2px 2px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u54549_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. }
  7466. #u54550_img {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:83px;
  7472. height:83px;
  7473. }
  7474. #u54550 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:1532px;
  7478. top:128px;
  7479. width:83px;
  7480. height:83px;
  7481. display:flex;
  7482. }
  7483. #u54550 .text {
  7484. position:absolute;
  7485. align-self:center;
  7486. padding:2px 2px 2px 2px;
  7487. box-sizing:border-box;
  7488. width:100%;
  7489. }
  7490. #u54550_text {
  7491. border-width:0px;
  7492. word-wrap:break-word;
  7493. text-transform:none;
  7494. visibility:hidden;
  7495. }
  7496. #u54551_div {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:126px;
  7502. height:40px;
  7503. background:inherit;
  7504. background-color:rgba(255, 255, 255, 1);
  7505. box-sizing:border-box;
  7506. border-width:1px;
  7507. border-style:solid;
  7508. border-color:rgba(121, 121, 121, 1);
  7509. border-radius:63px;
  7510. -moz-box-shadow:none;
  7511. -webkit-box-shadow:none;
  7512. box-shadow:none;
  7513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7514. font-weight:400;
  7515. font-style:normal;
  7516. font-size:14px;
  7517. }
  7518. #u54551 {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:1438px;
  7522. top:355px;
  7523. width:126px;
  7524. height:40px;
  7525. display:flex;
  7526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7527. font-weight:400;
  7528. font-style:normal;
  7529. font-size:14px;
  7530. }
  7531. #u54551 .text {
  7532. position:absolute;
  7533. align-self:center;
  7534. padding:2px 2px 2px 2px;
  7535. box-sizing:border-box;
  7536. width:100%;
  7537. }
  7538. #u54551_text {
  7539. border-width:0px;
  7540. word-wrap:break-word;
  7541. text-transform:none;
  7542. }
  7543. #u54552_div {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:0px;
  7547. top:0px;
  7548. width:30px;
  7549. height:30px;
  7550. background:inherit;
  7551. background-color:rgba(255, 255, 255, 0);
  7552. border:none;
  7553. border-left:0px;
  7554. border-top:0px;
  7555. border-right:0px;
  7556. border-radius:0px;
  7557. border-bottom-right-radius:0px;
  7558. border-bottom-left-radius:0px;
  7559. -moz-box-shadow:none;
  7560. -webkit-box-shadow:none;
  7561. box-shadow:none;
  7562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7563. font-weight:400;
  7564. font-style:normal;
  7565. font-size:18px;
  7566. text-align:center;
  7567. line-height:30px;
  7568. }
  7569. #u54552 {
  7570. border-width:0px;
  7571. position:absolute;
  7572. left:1396px;
  7573. top:76px;
  7574. width:30px;
  7575. height:30px;
  7576. display:flex;
  7577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7578. font-weight:400;
  7579. font-style:normal;
  7580. font-size:18px;
  7581. text-align:center;
  7582. line-height:30px;
  7583. }
  7584. #u54552 .text {
  7585. position:absolute;
  7586. align-self:center;
  7587. padding:0px 0px 0px 0px;
  7588. box-sizing:border-box;
  7589. width:100%;
  7590. }
  7591. #u54552_text {
  7592. border-width:0px;
  7593. word-wrap:break-word;
  7594. text-transform:none;
  7595. }
  7596. #u54553 {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:0px;
  7602. height:0px;
  7603. }
  7604. #u54554_img {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:0px;
  7608. top:0px;
  7609. width:350px;
  7610. height:40px;
  7611. }
  7612. #u54554 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:1398px;
  7616. top:403px;
  7617. width:350px;
  7618. height:40px;
  7619. display:flex;
  7620. }
  7621. #u54554 .text {
  7622. position:absolute;
  7623. align-self:center;
  7624. padding:2px 2px 2px 2px;
  7625. box-sizing:border-box;
  7626. width:100%;
  7627. }
  7628. #u54554_text {
  7629. border-width:0px;
  7630. word-wrap:break-word;
  7631. text-transform:none;
  7632. visibility:hidden;
  7633. }
  7634. #u54555 {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:0px;
  7638. top:0px;
  7639. width:0px;
  7640. height:0px;
  7641. }
  7642. #u54556_div {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:0px;
  7646. top:0px;
  7647. width:221px;
  7648. height:30px;
  7649. background:inherit;
  7650. background-color:rgba(255, 255, 255, 0);
  7651. border:none;
  7652. border-left:0px;
  7653. border-top:0px;
  7654. border-right:0px;
  7655. border-radius:0px;
  7656. border-bottom-right-radius:0px;
  7657. border-bottom-left-radius:0px;
  7658. -moz-box-shadow:none;
  7659. -webkit-box-shadow:none;
  7660. box-shadow:none;
  7661. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7662. font-style:normal;
  7663. color:#FFFFFF;
  7664. text-align:center;
  7665. line-height:30px;
  7666. }
  7667. #u54556 {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:1478px;
  7671. top:408px;
  7672. width:221px;
  7673. height:30px;
  7674. display:flex;
  7675. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7676. font-style:normal;
  7677. color:#FFFFFF;
  7678. text-align:center;
  7679. line-height:30px;
  7680. }
  7681. #u54556 .text {
  7682. position:absolute;
  7683. align-self:center;
  7684. padding:0px 0px 0px 0px;
  7685. box-sizing:border-box;
  7686. width:100%;
  7687. }
  7688. #u54556_text {
  7689. border-width:0px;
  7690. white-space:nowrap;
  7691. text-transform:none;
  7692. }
  7693. #u54557_img {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:0px;
  7697. top:0px;
  7698. width:26px;
  7699. height:26px;
  7700. }
  7701. #u54557 {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:1448px;
  7705. top:410px;
  7706. width:26px;
  7707. height:26px;
  7708. display:flex;
  7709. }
  7710. #u54557 .text {
  7711. position:absolute;
  7712. align-self:center;
  7713. padding:2px 2px 2px 2px;
  7714. box-sizing:border-box;
  7715. width:100%;
  7716. }
  7717. #u54557_text {
  7718. border-width:0px;
  7719. word-wrap:break-word;
  7720. text-transform:none;
  7721. }
  7722. #u54558_div {
  7723. border-width:0px;
  7724. position:absolute;
  7725. left:0px;
  7726. top:0px;
  7727. width:295px;
  7728. height:30px;
  7729. background:inherit;
  7730. background-color:rgba(255, 255, 255, 0);
  7731. border:none;
  7732. border-left:0px;
  7733. border-top:0px;
  7734. border-right:0px;
  7735. border-radius:0px;
  7736. border-bottom-right-radius:0px;
  7737. border-bottom-left-radius:0px;
  7738. -moz-box-shadow:none;
  7739. -webkit-box-shadow:none;
  7740. box-shadow:none;
  7741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:14px;
  7745. text-align:center;
  7746. line-height:30px;
  7747. }
  7748. #u54558 {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:1425px;
  7752. top:285px;
  7753. width:295px;
  7754. height:30px;
  7755. display:flex;
  7756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:14px;
  7760. text-align:center;
  7761. line-height:30px;
  7762. }
  7763. #u54558 .text {
  7764. position:absolute;
  7765. align-self:center;
  7766. padding:0px 0px 0px 0px;
  7767. box-sizing:border-box;
  7768. width:100%;
  7769. }
  7770. #u54558_text {
  7771. border-width:0px;
  7772. white-space:nowrap;
  7773. text-transform:none;
  7774. }
  7775. #u54559_div {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:363px;
  7781. height:30px;
  7782. background:inherit;
  7783. background-color:rgba(255, 255, 255, 0);
  7784. border:none;
  7785. border-left:0px;
  7786. border-top:0px;
  7787. border-right:0px;
  7788. border-radius:0px;
  7789. border-bottom-right-radius:0px;
  7790. border-bottom-left-radius:0px;
  7791. -moz-box-shadow:none;
  7792. -webkit-box-shadow:none;
  7793. box-shadow:none;
  7794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7795. font-weight:400;
  7796. font-style:normal;
  7797. font-size:14px;
  7798. color:#D9001B;
  7799. line-height:30px;
  7800. }
  7801. #u54559 {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:1398px;
  7805. top:472px;
  7806. width:363px;
  7807. height:30px;
  7808. display:flex;
  7809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7810. font-weight:400;
  7811. font-style:normal;
  7812. font-size:14px;
  7813. color:#D9001B;
  7814. line-height:30px;
  7815. }
  7816. #u54559 .text {
  7817. position:absolute;
  7818. align-self:flex-start;
  7819. padding:0px 0px 0px 0px;
  7820. box-sizing:border-box;
  7821. width:100%;
  7822. }
  7823. #u54559_text {
  7824. border-width:0px;
  7825. word-wrap:break-word;
  7826. text-transform:none;
  7827. }
  7828. #u54560 {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:0px;
  7832. top:0px;
  7833. width:0px;
  7834. height:0px;
  7835. }
  7836. #u54562_img {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:0px;
  7840. top:0px;
  7841. width:433px;
  7842. height:865px;
  7843. }
  7844. #u54562 {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:1810px;
  7848. top:1px;
  7849. width:433px;
  7850. height:865px;
  7851. display:flex;
  7852. }
  7853. #u54562 .text {
  7854. position:absolute;
  7855. align-self:center;
  7856. padding:2px 2px 2px 2px;
  7857. box-sizing:border-box;
  7858. width:100%;
  7859. }
  7860. #u54562_text {
  7861. border-width:0px;
  7862. word-wrap:break-word;
  7863. text-transform:none;
  7864. visibility:hidden;
  7865. }
  7866. #u54563_div {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:0px;
  7870. top:0px;
  7871. width:375px;
  7872. height:40px;
  7873. background:inherit;
  7874. background-color:rgba(255, 255, 255, 1);
  7875. box-sizing:border-box;
  7876. border-width:1px;
  7877. border-style:solid;
  7878. border-color:rgba(215, 215, 215, 1);
  7879. border-left:0px;
  7880. border-top:0px;
  7881. border-right:0px;
  7882. border-radius:0px;
  7883. border-bottom-right-radius:0px;
  7884. border-bottom-left-radius:0px;
  7885. -moz-box-shadow:none;
  7886. -webkit-box-shadow:none;
  7887. box-shadow:none;
  7888. }
  7889. #u54563 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:1839px;
  7893. top:68px;
  7894. width:375px;
  7895. height:40px;
  7896. display:flex;
  7897. }
  7898. #u54563 .text {
  7899. position:absolute;
  7900. align-self:center;
  7901. padding:2px 2px 2px 2px;
  7902. box-sizing:border-box;
  7903. width:100%;
  7904. }
  7905. #u54563_text {
  7906. border-width:0px;
  7907. word-wrap:break-word;
  7908. text-transform:none;
  7909. visibility:hidden;
  7910. }
  7911. #u54564 {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:0px;
  7915. top:0px;
  7916. width:0px;
  7917. height:0px;
  7918. }
  7919. #u54565_div {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:0px;
  7923. top:0px;
  7924. width:88px;
  7925. height:32px;
  7926. background:inherit;
  7927. background-color:rgba(255, 255, 255, 1);
  7928. box-sizing:border-box;
  7929. border-width:1px;
  7930. border-style:solid;
  7931. border-color:rgba(242, 242, 242, 1);
  7932. border-radius:33px;
  7933. -moz-box-shadow:none;
  7934. -webkit-box-shadow:none;
  7935. box-shadow:none;
  7936. }
  7937. #u54565 {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:2119px;
  7941. top:72px;
  7942. width:88px;
  7943. height:32px;
  7944. display:flex;
  7945. }
  7946. #u54565 .text {
  7947. position:absolute;
  7948. align-self:center;
  7949. padding:2px 2px 2px 2px;
  7950. box-sizing:border-box;
  7951. width:100%;
  7952. }
  7953. #u54565_text {
  7954. border-width:0px;
  7955. word-wrap:break-word;
  7956. text-transform:none;
  7957. visibility:hidden;
  7958. }
  7959. #u54566 {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:0px;
  7963. top:0px;
  7964. width:0px;
  7965. height:0px;
  7966. }
  7967. #u54567_img {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:18px;
  7973. height:18px;
  7974. }
  7975. #u54567 {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:2182px;
  7979. top:79px;
  7980. width:18px;
  7981. height:18px;
  7982. display:flex;
  7983. }
  7984. #u54567 .text {
  7985. position:absolute;
  7986. align-self:center;
  7987. padding:2px 2px 2px 2px;
  7988. box-sizing:border-box;
  7989. width:100%;
  7990. }
  7991. #u54567_text {
  7992. border-width:0px;
  7993. word-wrap:break-word;
  7994. text-transform:none;
  7995. visibility:hidden;
  7996. }
  7997. #u54568_img {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:0px;
  8001. top:0px;
  8002. width:6px;
  8003. height:6px;
  8004. }
  8005. #u54568 {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:2188px;
  8009. top:85px;
  8010. width:6px;
  8011. height:6px;
  8012. display:flex;
  8013. }
  8014. #u54568 .text {
  8015. position:absolute;
  8016. align-self:center;
  8017. padding:2px 2px 2px 2px;
  8018. box-sizing:border-box;
  8019. width:100%;
  8020. }
  8021. #u54568_text {
  8022. border-width:0px;
  8023. word-wrap:break-word;
  8024. text-transform:none;
  8025. visibility:hidden;
  8026. }
  8027. #u54569 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:0px;
  8033. height:0px;
  8034. }
  8035. #u54570_img {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:5px;
  8041. height:5px;
  8042. }
  8043. #u54570 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:2133px;
  8047. top:86px;
  8048. width:5px;
  8049. height:5px;
  8050. display:flex;
  8051. }
  8052. #u54570 .text {
  8053. position:absolute;
  8054. align-self:center;
  8055. padding:2px 2px 2px 2px;
  8056. box-sizing:border-box;
  8057. width:100%;
  8058. }
  8059. #u54570_text {
  8060. border-width:0px;
  8061. word-wrap:break-word;
  8062. text-transform:none;
  8063. visibility:hidden;
  8064. }
  8065. #u54571_img {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:0px;
  8069. top:0px;
  8070. width:5px;
  8071. height:5px;
  8072. }
  8073. #u54571 {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:2149px;
  8077. top:86px;
  8078. width:5px;
  8079. height:5px;
  8080. display:flex;
  8081. }
  8082. #u54571 .text {
  8083. position:absolute;
  8084. align-self:center;
  8085. padding:2px 2px 2px 2px;
  8086. box-sizing:border-box;
  8087. width:100%;
  8088. }
  8089. #u54571_text {
  8090. border-width:0px;
  8091. word-wrap:break-word;
  8092. text-transform:none;
  8093. visibility:hidden;
  8094. }
  8095. #u54572_img {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:0px;
  8099. top:0px;
  8100. width:7px;
  8101. height:7px;
  8102. }
  8103. #u54572 {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:2140px;
  8107. top:85px;
  8108. width:7px;
  8109. height:7px;
  8110. display:flex;
  8111. }
  8112. #u54572 .text {
  8113. position:absolute;
  8114. align-self:center;
  8115. padding:2px 2px 2px 2px;
  8116. box-sizing:border-box;
  8117. width:100%;
  8118. }
  8119. #u54572_text {
  8120. border-width:0px;
  8121. word-wrap:break-word;
  8122. text-transform:none;
  8123. visibility:hidden;
  8124. }
  8125. #u54573_img {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:0px;
  8129. top:0px;
  8130. width:19px;
  8131. height:2px;
  8132. }
  8133. #u54573 {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:2157px;
  8137. top:88px;
  8138. width:18px;
  8139. height:1px;
  8140. display:flex;
  8141. -webkit-transform:rotate(90deg);
  8142. -moz-transform:rotate(90deg);
  8143. -ms-transform:rotate(90deg);
  8144. transform:rotate(90deg);
  8145. }
  8146. #u54573 .text {
  8147. position:absolute;
  8148. align-self:center;
  8149. padding:2px 2px 2px 2px;
  8150. box-sizing:border-box;
  8151. width:100%;
  8152. }
  8153. #u54573_text {
  8154. border-width:0px;
  8155. word-wrap:break-word;
  8156. text-transform:none;
  8157. visibility:hidden;
  8158. }
  8159. #u54574_img {
  8160. border-width:0px;
  8161. position:absolute;
  8162. left:0px;
  8163. top:0px;
  8164. width:375px;
  8165. height:44px;
  8166. }
  8167. #u54574 {
  8168. border-width:0px;
  8169. position:absolute;
  8170. left:1839px;
  8171. top:25px;
  8172. width:375px;
  8173. height:44px;
  8174. display:flex;
  8175. }
  8176. #u54574 .text {
  8177. position:absolute;
  8178. align-self:center;
  8179. padding:2px 2px 2px 2px;
  8180. box-sizing:border-box;
  8181. width:100%;
  8182. }
  8183. #u54574_text {
  8184. border-width:0px;
  8185. word-wrap:break-word;
  8186. text-transform:none;
  8187. visibility:hidden;
  8188. }
  8189. #u54575_div {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:0px;
  8193. top:0px;
  8194. width:375px;
  8195. height:50px;
  8196. background:inherit;
  8197. background-color:rgba(255, 255, 255, 1);
  8198. box-sizing:border-box;
  8199. border-width:1px;
  8200. border-style:solid;
  8201. border-color:rgba(242, 242, 242, 1);
  8202. border-radius:26px;
  8203. border-top-left-radius:0px;
  8204. border-top-right-radius:0px;
  8205. -moz-box-shadow:none;
  8206. -webkit-box-shadow:none;
  8207. box-shadow:none;
  8208. }
  8209. #u54575 {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:1839px;
  8213. top:789px;
  8214. width:375px;
  8215. height:50px;
  8216. display:flex;
  8217. }
  8218. #u54575 .text {
  8219. position:absolute;
  8220. align-self:center;
  8221. padding:2px 2px 2px 2px;
  8222. box-sizing:border-box;
  8223. width:100%;
  8224. }
  8225. #u54575_text {
  8226. border-width:0px;
  8227. word-wrap:break-word;
  8228. text-transform:none;
  8229. visibility:hidden;
  8230. }
  8231. #u54576 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:0px;
  8235. top:0px;
  8236. width:0px;
  8237. height:0px;
  8238. }
  8239. #u54577_img {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:0px;
  8243. top:0px;
  8244. width:24px;
  8245. height:24px;
  8246. }
  8247. #u54577 {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:1879px;
  8251. top:793px;
  8252. width:24px;
  8253. height:24px;
  8254. display:flex;
  8255. font-size:8px;
  8256. }
  8257. #u54577 .text {
  8258. position:absolute;
  8259. align-self:center;
  8260. padding:2px 2px 2px 2px;
  8261. box-sizing:border-box;
  8262. width:100%;
  8263. }
  8264. #u54577_text {
  8265. border-width:0px;
  8266. word-wrap:break-word;
  8267. text-transform:none;
  8268. }
  8269. #u54578_div {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:25px;
  8275. height:17px;
  8276. background:inherit;
  8277. background-color:rgba(255, 255, 255, 0);
  8278. border:none;
  8279. border-radius:0px;
  8280. -moz-box-shadow:none;
  8281. -webkit-box-shadow:none;
  8282. box-shadow:none;
  8283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:12px;
  8287. }
  8288. #u54578 {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:1879px;
  8292. top:818px;
  8293. width:25px;
  8294. height:17px;
  8295. display:flex;
  8296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:12px;
  8300. }
  8301. #u54578 .text {
  8302. position:absolute;
  8303. align-self:flex-start;
  8304. padding:0px 0px 0px 0px;
  8305. box-sizing:border-box;
  8306. width:100%;
  8307. }
  8308. #u54578_text {
  8309. border-width:0px;
  8310. white-space:nowrap;
  8311. text-transform:none;
  8312. }
  8313. #u54579 {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:0px;
  8317. top:0px;
  8318. width:0px;
  8319. height:0px;
  8320. }
  8321. #u54580_img {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:0px;
  8325. top:0px;
  8326. width:24px;
  8327. height:24px;
  8328. }
  8329. #u54580 {
  8330. border-width:0px;
  8331. position:absolute;
  8332. left:2149px;
  8333. top:795px;
  8334. width:24px;
  8335. height:24px;
  8336. display:flex;
  8337. font-size:8px;
  8338. }
  8339. #u54580 .text {
  8340. position:absolute;
  8341. align-self:center;
  8342. padding:2px 2px 2px 2px;
  8343. box-sizing:border-box;
  8344. width:100%;
  8345. }
  8346. #u54580_text {
  8347. border-width:0px;
  8348. word-wrap:break-word;
  8349. text-transform:none;
  8350. }
  8351. #u54581_div {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:0px;
  8355. top:0px;
  8356. width:25px;
  8357. height:17px;
  8358. background:inherit;
  8359. background-color:rgba(255, 255, 255, 0);
  8360. border:none;
  8361. border-radius:0px;
  8362. -moz-box-shadow:none;
  8363. -webkit-box-shadow:none;
  8364. box-shadow:none;
  8365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8366. font-weight:400;
  8367. font-style:normal;
  8368. font-size:12px;
  8369. }
  8370. #u54581 {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:2149px;
  8374. top:820px;
  8375. width:25px;
  8376. height:17px;
  8377. display:flex;
  8378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8379. font-weight:400;
  8380. font-style:normal;
  8381. font-size:12px;
  8382. }
  8383. #u54581 .text {
  8384. position:absolute;
  8385. align-self:flex-start;
  8386. padding:0px 0px 0px 0px;
  8387. box-sizing:border-box;
  8388. width:100%;
  8389. }
  8390. #u54581_text {
  8391. border-width:0px;
  8392. white-space:nowrap;
  8393. text-transform:none;
  8394. }
  8395. #u54582_div {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:0px;
  8399. top:0px;
  8400. width:375px;
  8401. height:681px;
  8402. background:inherit;
  8403. background-color:rgba(242, 242, 242, 0.462745098039216);
  8404. border:none;
  8405. border-radius:0px;
  8406. -moz-box-shadow:none;
  8407. -webkit-box-shadow:none;
  8408. box-shadow:none;
  8409. }
  8410. #u54582 {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:1839px;
  8414. top:108px;
  8415. width:375px;
  8416. height:681px;
  8417. display:flex;
  8418. }
  8419. #u54582 .text {
  8420. position:absolute;
  8421. align-self:center;
  8422. padding:2px 2px 2px 2px;
  8423. box-sizing:border-box;
  8424. width:100%;
  8425. }
  8426. #u54582_text {
  8427. border-width:0px;
  8428. word-wrap:break-word;
  8429. text-transform:none;
  8430. visibility:hidden;
  8431. }
  8432. #u54583 {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:0px;
  8436. top:0px;
  8437. width:0px;
  8438. height:0px;
  8439. }
  8440. #u54584_img {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:24px;
  8446. height:24px;
  8447. }
  8448. #u54584 {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:2061px;
  8452. top:793px;
  8453. width:24px;
  8454. height:24px;
  8455. display:flex;
  8456. font-size:8px;
  8457. }
  8458. #u54584 .text {
  8459. position:absolute;
  8460. align-self:center;
  8461. padding:2px 2px 2px 2px;
  8462. box-sizing:border-box;
  8463. width:100%;
  8464. }
  8465. #u54584_text {
  8466. border-width:0px;
  8467. word-wrap:break-word;
  8468. text-transform:none;
  8469. }
  8470. #u54585_div {
  8471. border-width:0px;
  8472. position:absolute;
  8473. left:0px;
  8474. top:0px;
  8475. width:37px;
  8476. height:17px;
  8477. background:inherit;
  8478. background-color:rgba(255, 255, 255, 0);
  8479. border:none;
  8480. border-radius:0px;
  8481. -moz-box-shadow:none;
  8482. -webkit-box-shadow:none;
  8483. box-shadow:none;
  8484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8485. font-weight:400;
  8486. font-style:normal;
  8487. font-size:12px;
  8488. }
  8489. #u54585 {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:2055px;
  8493. top:818px;
  8494. width:37px;
  8495. height:17px;
  8496. display:flex;
  8497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8498. font-weight:400;
  8499. font-style:normal;
  8500. font-size:12px;
  8501. }
  8502. #u54585 .text {
  8503. position:absolute;
  8504. align-self:flex-start;
  8505. padding:0px 0px 0px 0px;
  8506. box-sizing:border-box;
  8507. width:100%;
  8508. }
  8509. #u54585_text {
  8510. border-width:0px;
  8511. white-space:nowrap;
  8512. text-transform:none;
  8513. }
  8514. #u54586 {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:0px;
  8520. height:0px;
  8521. }
  8522. #u54587_img {
  8523. border-width:0px;
  8524. position:absolute;
  8525. left:0px;
  8526. top:0px;
  8527. width:24px;
  8528. height:24px;
  8529. }
  8530. #u54587 {
  8531. border-width:0px;
  8532. position:absolute;
  8533. left:1967px;
  8534. top:793px;
  8535. width:24px;
  8536. height:24px;
  8537. display:flex;
  8538. font-size:8px;
  8539. }
  8540. #u54587 .text {
  8541. position:absolute;
  8542. align-self:center;
  8543. padding:2px 2px 2px 2px;
  8544. box-sizing:border-box;
  8545. width:100%;
  8546. }
  8547. #u54587_text {
  8548. border-width:0px;
  8549. word-wrap:break-word;
  8550. text-transform:none;
  8551. }
  8552. #u54588_div {
  8553. border-width:0px;
  8554. position:absolute;
  8555. left:0px;
  8556. top:0px;
  8557. width:37px;
  8558. height:17px;
  8559. background:inherit;
  8560. background-color:rgba(255, 255, 255, 0);
  8561. border:none;
  8562. border-radius:0px;
  8563. -moz-box-shadow:none;
  8564. -webkit-box-shadow:none;
  8565. box-shadow:none;
  8566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8567. font-weight:400;
  8568. font-style:normal;
  8569. font-size:12px;
  8570. }
  8571. #u54588 {
  8572. border-width:0px;
  8573. position:absolute;
  8574. left:1961px;
  8575. top:818px;
  8576. width:37px;
  8577. height:17px;
  8578. display:flex;
  8579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8580. font-weight:400;
  8581. font-style:normal;
  8582. font-size:12px;
  8583. }
  8584. #u54588 .text {
  8585. position:absolute;
  8586. align-self:flex-start;
  8587. padding:0px 0px 0px 0px;
  8588. box-sizing:border-box;
  8589. width:100%;
  8590. }
  8591. #u54588_text {
  8592. border-width:0px;
  8593. white-space:nowrap;
  8594. text-transform:none;
  8595. }
  8596. #u54589_div {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:0px;
  8600. top:0px;
  8601. width:375px;
  8602. height:775px;
  8603. background:inherit;
  8604. background-color:rgba(255, 255, 255, 1);
  8605. border:none;
  8606. border-top:0px;
  8607. border-radius:28px;
  8608. border-top-left-radius:0px;
  8609. border-top-right-radius:0px;
  8610. -moz-box-shadow:none;
  8611. -webkit-box-shadow:none;
  8612. box-shadow:none;
  8613. }
  8614. #u54589 {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:1839px;
  8618. top:66px;
  8619. width:375px;
  8620. height:775px;
  8621. display:flex;
  8622. }
  8623. #u54589 .text {
  8624. position:absolute;
  8625. align-self:center;
  8626. padding:2px 2px 2px 2px;
  8627. box-sizing:border-box;
  8628. width:100%;
  8629. }
  8630. #u54589_text {
  8631. border-width:0px;
  8632. word-wrap:break-word;
  8633. text-transform:none;
  8634. visibility:hidden;
  8635. }
  8636. #u54590_div {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:0px;
  8640. top:0px;
  8641. width:97px;
  8642. height:30px;
  8643. background:inherit;
  8644. background-color:rgba(255, 255, 255, 0);
  8645. border:none;
  8646. border-left:0px;
  8647. border-top:0px;
  8648. border-right:0px;
  8649. border-radius:0px;
  8650. border-bottom-right-radius:0px;
  8651. border-bottom-left-radius:0px;
  8652. -moz-box-shadow:none;
  8653. -webkit-box-shadow:none;
  8654. box-shadow:none;
  8655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8656. font-weight:400;
  8657. font-style:normal;
  8658. line-height:30px;
  8659. }
  8660. #u54590 {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:1978px;
  8664. top:227px;
  8665. width:97px;
  8666. height:30px;
  8667. display:flex;
  8668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8669. font-weight:400;
  8670. font-style:normal;
  8671. line-height:30px;
  8672. }
  8673. #u54590 .text {
  8674. position:absolute;
  8675. align-self:center;
  8676. padding:0px 0px 0px 0px;
  8677. box-sizing:border-box;
  8678. width:100%;
  8679. }
  8680. #u54590_text {
  8681. border-width:0px;
  8682. white-space:nowrap;
  8683. text-transform:none;
  8684. }
  8685. #u54591_div {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:0px;
  8689. top:0px;
  8690. width:126px;
  8691. height:40px;
  8692. background:inherit;
  8693. background-color:rgba(255, 255, 255, 1);
  8694. box-sizing:border-box;
  8695. border-width:1px;
  8696. border-style:solid;
  8697. border-color:rgba(121, 121, 121, 1);
  8698. border-radius:63px;
  8699. -moz-box-shadow:none;
  8700. -webkit-box-shadow:none;
  8701. box-shadow:none;
  8702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8703. font-weight:400;
  8704. font-style:normal;
  8705. font-size:14px;
  8706. }
  8707. #u54591 {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:2037px;
  8711. top:355px;
  8712. width:126px;
  8713. height:40px;
  8714. display:flex;
  8715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:14px;
  8719. }
  8720. #u54591 .text {
  8721. position:absolute;
  8722. align-self:center;
  8723. padding:2px 2px 2px 2px;
  8724. box-sizing:border-box;
  8725. width:100%;
  8726. }
  8727. #u54591_text {
  8728. border-width:0px;
  8729. word-wrap:break-word;
  8730. text-transform:none;
  8731. }
  8732. #u54592_img {
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:0px;
  8736. top:0px;
  8737. width:83px;
  8738. height:83px;
  8739. }
  8740. #u54592 {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:1985px;
  8744. top:128px;
  8745. width:83px;
  8746. height:83px;
  8747. display:flex;
  8748. }
  8749. #u54592 .text {
  8750. position:absolute;
  8751. align-self:center;
  8752. padding:2px 2px 2px 2px;
  8753. box-sizing:border-box;
  8754. width:100%;
  8755. }
  8756. #u54592_text {
  8757. border-width:0px;
  8758. word-wrap:break-word;
  8759. text-transform:none;
  8760. visibility:hidden;
  8761. }
  8762. #u54593_div {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:126px;
  8768. height:40px;
  8769. background:inherit;
  8770. background-color:rgba(255, 255, 255, 1);
  8771. box-sizing:border-box;
  8772. border-width:1px;
  8773. border-style:solid;
  8774. border-color:rgba(121, 121, 121, 1);
  8775. border-radius:63px;
  8776. -moz-box-shadow:none;
  8777. -webkit-box-shadow:none;
  8778. box-shadow:none;
  8779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8780. font-weight:400;
  8781. font-style:normal;
  8782. font-size:14px;
  8783. }
  8784. #u54593 {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:1891px;
  8788. top:355px;
  8789. width:126px;
  8790. height:40px;
  8791. display:flex;
  8792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8793. font-weight:400;
  8794. font-style:normal;
  8795. font-size:14px;
  8796. }
  8797. #u54593 .text {
  8798. position:absolute;
  8799. align-self:center;
  8800. padding:2px 2px 2px 2px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u54593_text {
  8805. border-width:0px;
  8806. word-wrap:break-word;
  8807. text-transform:none;
  8808. }
  8809. #u54594_div {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:30px;
  8815. height:30px;
  8816. background:inherit;
  8817. background-color:rgba(255, 255, 255, 0);
  8818. border:none;
  8819. border-left:0px;
  8820. border-top:0px;
  8821. border-right:0px;
  8822. border-radius:0px;
  8823. border-bottom-right-radius:0px;
  8824. border-bottom-left-radius:0px;
  8825. -moz-box-shadow:none;
  8826. -webkit-box-shadow:none;
  8827. box-shadow:none;
  8828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8829. font-weight:400;
  8830. font-style:normal;
  8831. font-size:18px;
  8832. text-align:center;
  8833. line-height:30px;
  8834. }
  8835. #u54594 {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:1849px;
  8839. top:76px;
  8840. width:30px;
  8841. height:30px;
  8842. display:flex;
  8843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8844. font-weight:400;
  8845. font-style:normal;
  8846. font-size:18px;
  8847. text-align:center;
  8848. line-height:30px;
  8849. }
  8850. #u54594 .text {
  8851. position:absolute;
  8852. align-self:center;
  8853. padding:0px 0px 0px 0px;
  8854. box-sizing:border-box;
  8855. width:100%;
  8856. }
  8857. #u54594_text {
  8858. border-width:0px;
  8859. word-wrap:break-word;
  8860. text-transform:none;
  8861. }
  8862. #u54595 {
  8863. border-width:0px;
  8864. position:absolute;
  8865. left:0px;
  8866. top:0px;
  8867. width:0px;
  8868. height:0px;
  8869. }
  8870. #u54596_img {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:0px;
  8874. top:0px;
  8875. width:350px;
  8876. height:40px;
  8877. }
  8878. #u54596 {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:1851px;
  8882. top:403px;
  8883. width:350px;
  8884. height:40px;
  8885. display:flex;
  8886. }
  8887. #u54596 .text {
  8888. position:absolute;
  8889. align-self:center;
  8890. padding:2px 2px 2px 2px;
  8891. box-sizing:border-box;
  8892. width:100%;
  8893. }
  8894. #u54596_text {
  8895. border-width:0px;
  8896. word-wrap:break-word;
  8897. text-transform:none;
  8898. visibility:hidden;
  8899. }
  8900. #u54597 {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:0px;
  8904. top:0px;
  8905. width:0px;
  8906. height:0px;
  8907. }
  8908. #u54598_div {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:0px;
  8912. top:0px;
  8913. width:221px;
  8914. height:30px;
  8915. background:inherit;
  8916. background-color:rgba(255, 255, 255, 0);
  8917. border:none;
  8918. border-left:0px;
  8919. border-top:0px;
  8920. border-right:0px;
  8921. border-radius:0px;
  8922. border-bottom-right-radius:0px;
  8923. border-bottom-left-radius:0px;
  8924. -moz-box-shadow:none;
  8925. -webkit-box-shadow:none;
  8926. box-shadow:none;
  8927. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8928. font-style:normal;
  8929. color:#FFFFFF;
  8930. text-align:center;
  8931. line-height:30px;
  8932. }
  8933. #u54598 {
  8934. border-width:0px;
  8935. position:absolute;
  8936. left:1931px;
  8937. top:408px;
  8938. width:221px;
  8939. height:30px;
  8940. display:flex;
  8941. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8942. font-style:normal;
  8943. color:#FFFFFF;
  8944. text-align:center;
  8945. line-height:30px;
  8946. }
  8947. #u54598 .text {
  8948. position:absolute;
  8949. align-self:center;
  8950. padding:0px 0px 0px 0px;
  8951. box-sizing:border-box;
  8952. width:100%;
  8953. }
  8954. #u54598_text {
  8955. border-width:0px;
  8956. white-space:nowrap;
  8957. text-transform:none;
  8958. }
  8959. #u54599_img {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:0px;
  8963. top:0px;
  8964. width:26px;
  8965. height:26px;
  8966. }
  8967. #u54599 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:1901px;
  8971. top:410px;
  8972. width:26px;
  8973. height:26px;
  8974. display:flex;
  8975. }
  8976. #u54599 .text {
  8977. position:absolute;
  8978. align-self:center;
  8979. padding:2px 2px 2px 2px;
  8980. box-sizing:border-box;
  8981. width:100%;
  8982. }
  8983. #u54599_text {
  8984. border-width:0px;
  8985. word-wrap:break-word;
  8986. text-transform:none;
  8987. }
  8988. #u54600_div {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:0px;
  8993. width:267px;
  8994. height:30px;
  8995. background:inherit;
  8996. background-color:rgba(255, 255, 255, 0);
  8997. border:none;
  8998. border-left:0px;
  8999. border-top:0px;
  9000. border-right:0px;
  9001. border-radius:0px;
  9002. border-bottom-right-radius:0px;
  9003. border-bottom-left-radius:0px;
  9004. -moz-box-shadow:none;
  9005. -webkit-box-shadow:none;
  9006. box-shadow:none;
  9007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9008. font-weight:400;
  9009. font-style:normal;
  9010. font-size:14px;
  9011. text-align:center;
  9012. line-height:30px;
  9013. }
  9014. #u54600 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:1892px;
  9018. top:285px;
  9019. width:267px;
  9020. height:30px;
  9021. display:flex;
  9022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:14px;
  9026. text-align:center;
  9027. line-height:30px;
  9028. }
  9029. #u54600 .text {
  9030. position:absolute;
  9031. align-self:center;
  9032. padding:0px 0px 0px 0px;
  9033. box-sizing:border-box;
  9034. width:100%;
  9035. }
  9036. #u54600_text {
  9037. border-width:0px;
  9038. white-space:nowrap;
  9039. text-transform:none;
  9040. }
  9041. #u54601_div {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:363px;
  9047. height:30px;
  9048. background:inherit;
  9049. background-color:rgba(255, 255, 255, 0);
  9050. border:none;
  9051. border-left:0px;
  9052. border-top:0px;
  9053. border-right:0px;
  9054. border-radius:0px;
  9055. border-bottom-right-radius:0px;
  9056. border-bottom-left-radius:0px;
  9057. -moz-box-shadow:none;
  9058. -webkit-box-shadow:none;
  9059. box-shadow:none;
  9060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9061. font-weight:400;
  9062. font-style:normal;
  9063. font-size:14px;
  9064. color:#D9001B;
  9065. line-height:30px;
  9066. }
  9067. #u54601 {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:1851px;
  9071. top:472px;
  9072. width:363px;
  9073. height:30px;
  9074. display:flex;
  9075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9076. font-weight:400;
  9077. font-style:normal;
  9078. font-size:14px;
  9079. color:#D9001B;
  9080. line-height:30px;
  9081. }
  9082. #u54601 .text {
  9083. position:absolute;
  9084. align-self:flex-start;
  9085. padding:0px 0px 0px 0px;
  9086. box-sizing:border-box;
  9087. width:100%;
  9088. }
  9089. #u54601_text {
  9090. border-width:0px;
  9091. word-wrap:break-word;
  9092. text-transform:none;
  9093. }
  9094. #u54602_div {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:0px;
  9098. top:0px;
  9099. width:463px;
  9100. height:25px;
  9101. background:inherit;
  9102. background-color:rgba(255, 255, 255, 0);
  9103. border:none;
  9104. border-left:0px;
  9105. border-top:0px;
  9106. border-right:0px;
  9107. border-radius:0px;
  9108. border-bottom-right-radius:0px;
  9109. border-bottom-left-radius:0px;
  9110. -moz-box-shadow:none;
  9111. -webkit-box-shadow:none;
  9112. box-shadow:none;
  9113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:12px;
  9117. color:#D9001B;
  9118. line-height:25px;
  9119. }
  9120. #u54602 {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:29px;
  9124. top:1106px;
  9125. width:463px;
  9126. height:25px;
  9127. display:flex;
  9128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9129. font-weight:400;
  9130. font-style:normal;
  9131. font-size:12px;
  9132. color:#D9001B;
  9133. line-height:25px;
  9134. }
  9135. #u54602 .text {
  9136. position:absolute;
  9137. align-self:flex-start;
  9138. padding:0px 0px 0px 0px;
  9139. box-sizing:border-box;
  9140. width:100%;
  9141. }
  9142. #u54602_text {
  9143. border-width:0px;
  9144. white-space:nowrap;
  9145. text-transform:none;
  9146. }
  9147. #u54603_div {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:0px;
  9151. top:0px;
  9152. width:369px;
  9153. height:50px;
  9154. background:inherit;
  9155. background-color:rgba(255, 255, 255, 0);
  9156. border:none;
  9157. border-left:0px;
  9158. border-top:0px;
  9159. border-right:0px;
  9160. border-radius:0px;
  9161. border-bottom-right-radius:0px;
  9162. border-bottom-left-radius:0px;
  9163. -moz-box-shadow:none;
  9164. -webkit-box-shadow:none;
  9165. box-shadow:none;
  9166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9167. font-weight:400;
  9168. font-style:normal;
  9169. font-size:12px;
  9170. color:#D9001B;
  9171. line-height:25px;
  9172. }
  9173. #u54603 {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:29px;
  9177. top:1373px;
  9178. width:369px;
  9179. height:50px;
  9180. display:flex;
  9181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9182. font-weight:400;
  9183. font-style:normal;
  9184. font-size:12px;
  9185. color:#D9001B;
  9186. line-height:25px;
  9187. }
  9188. #u54603 .text {
  9189. position:absolute;
  9190. align-self:flex-start;
  9191. padding:0px 0px 0px 0px;
  9192. box-sizing:border-box;
  9193. width:100%;
  9194. }
  9195. #u54603_text {
  9196. border-width:0px;
  9197. word-wrap:break-word;
  9198. text-transform:none;
  9199. }
  9200. #u54604 {
  9201. border-width:0px;
  9202. position:absolute;
  9203. left:0px;
  9204. top:0px;
  9205. width:0px;
  9206. height:0px;
  9207. }
  9208. #u54605_div {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:346px;
  9214. height:219px;
  9215. background:inherit;
  9216. background-color:rgba(255, 255, 255, 1);
  9217. border:none;
  9218. border-radius:9px;
  9219. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9220. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9221. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9222. }
  9223. #u54605 {
  9224. border-width:0px;
  9225. position:absolute;
  9226. left:409px;
  9227. top:1139px;
  9228. width:346px;
  9229. height:219px;
  9230. display:flex;
  9231. }
  9232. #u54605 .text {
  9233. position:absolute;
  9234. align-self:center;
  9235. padding:2px 2px 2px 2px;
  9236. box-sizing:border-box;
  9237. width:100%;
  9238. }
  9239. #u54605_text {
  9240. border-width:0px;
  9241. word-wrap:break-word;
  9242. text-transform:none;
  9243. visibility:hidden;
  9244. }
  9245. #u54606_div {
  9246. border-width:0px;
  9247. position:absolute;
  9248. left:0px;
  9249. top:0px;
  9250. width:49px;
  9251. height:33px;
  9252. background:inherit;
  9253. background-color:rgba(255, 255, 255, 0);
  9254. border:none;
  9255. border-radius:0px;
  9256. -moz-box-shadow:none;
  9257. -webkit-box-shadow:none;
  9258. box-shadow:none;
  9259. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9260. font-weight:650;
  9261. font-style:normal;
  9262. font-size:24px;
  9263. text-align:center;
  9264. }
  9265. #u54606 {
  9266. border-width:0px;
  9267. position:absolute;
  9268. left:558px;
  9269. top:1177px;
  9270. width:49px;
  9271. height:33px;
  9272. display:flex;
  9273. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9274. font-weight:650;
  9275. font-style:normal;
  9276. font-size:24px;
  9277. text-align:center;
  9278. }
  9279. #u54606 .text {
  9280. position:absolute;
  9281. align-self:center;
  9282. padding:0px 0px 0px 0px;
  9283. box-sizing:border-box;
  9284. width:100%;
  9285. }
  9286. #u54606_text {
  9287. border-width:0px;
  9288. white-space:nowrap;
  9289. text-transform:none;
  9290. }
  9291. #u54607_div {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:0px;
  9295. top:0px;
  9296. width:173px;
  9297. height:60px;
  9298. background:inherit;
  9299. background-color:rgba(255, 255, 255, 0);
  9300. box-sizing:border-box;
  9301. border-width:1px;
  9302. border-style:solid;
  9303. border-color:rgba(215, 215, 215, 1);
  9304. border-left:0px;
  9305. border-bottom:0px;
  9306. border-radius:0px;
  9307. border-top-left-radius:0px;
  9308. border-bottom-right-radius:0px;
  9309. -moz-box-shadow:none;
  9310. -webkit-box-shadow:none;
  9311. box-shadow:none;
  9312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9313. font-weight:400;
  9314. font-style:normal;
  9315. font-size:22px;
  9316. color:#0099FF;
  9317. text-align:center;
  9318. }
  9319. #u54607 {
  9320. border-width:0px;
  9321. position:absolute;
  9322. left:408px;
  9323. top:1298px;
  9324. width:173px;
  9325. height:60px;
  9326. display:flex;
  9327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9328. font-weight:400;
  9329. font-style:normal;
  9330. font-size:22px;
  9331. color:#0099FF;
  9332. text-align:center;
  9333. }
  9334. #u54607 .text {
  9335. position:absolute;
  9336. align-self:center;
  9337. padding:0px 0px 0px 0px;
  9338. box-sizing:border-box;
  9339. width:100%;
  9340. }
  9341. #u54607_text {
  9342. border-width:0px;
  9343. word-wrap:break-word;
  9344. text-transform:none;
  9345. }
  9346. #u54608_div {
  9347. border-width:0px;
  9348. position:absolute;
  9349. left:0px;
  9350. top:0px;
  9351. width:173px;
  9352. height:60px;
  9353. background:inherit;
  9354. background-color:rgba(255, 255, 255, 0);
  9355. box-sizing:border-box;
  9356. border-width:1px;
  9357. border-style:solid;
  9358. border-color:rgba(215, 215, 215, 1);
  9359. border-left:0px;
  9360. border-right:0px;
  9361. border-bottom:0px;
  9362. border-radius:0px;
  9363. border-top-left-radius:0px;
  9364. border-top-right-radius:0px;
  9365. -moz-box-shadow:none;
  9366. -webkit-box-shadow:none;
  9367. box-shadow:none;
  9368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9369. font-weight:400;
  9370. font-style:normal;
  9371. font-size:22px;
  9372. color:#0099FF;
  9373. text-align:center;
  9374. }
  9375. #u54608 {
  9376. border-width:0px;
  9377. position:absolute;
  9378. left:581px;
  9379. top:1298px;
  9380. width:173px;
  9381. height:60px;
  9382. display:flex;
  9383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9384. font-weight:400;
  9385. font-style:normal;
  9386. font-size:22px;
  9387. color:#0099FF;
  9388. text-align:center;
  9389. }
  9390. #u54608 .text {
  9391. position:absolute;
  9392. align-self:center;
  9393. padding:0px 0px 0px 0px;
  9394. box-sizing:border-box;
  9395. width:100%;
  9396. }
  9397. #u54608_text {
  9398. border-width:0px;
  9399. word-wrap:break-word;
  9400. text-transform:none;
  9401. }
  9402. #u54609_div {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:0px;
  9406. top:0px;
  9407. width:287px;
  9408. height:40px;
  9409. background:inherit;
  9410. background-color:rgba(255, 255, 255, 0);
  9411. border:none;
  9412. border-radius:0px;
  9413. -moz-box-shadow:none;
  9414. -webkit-box-shadow:none;
  9415. box-shadow:none;
  9416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9417. font-weight:400;
  9418. font-style:normal;
  9419. font-size:14px;
  9420. text-align:center;
  9421. }
  9422. #u54609 {
  9423. border-width:0px;
  9424. position:absolute;
  9425. left:441px;
  9426. top:1232px;
  9427. width:287px;
  9428. height:40px;
  9429. display:flex;
  9430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9431. font-weight:400;
  9432. font-style:normal;
  9433. font-size:14px;
  9434. text-align:center;
  9435. }
  9436. #u54609 .text {
  9437. position:absolute;
  9438. align-self:center;
  9439. padding:0px 0px 0px 0px;
  9440. box-sizing:border-box;
  9441. width:100%;
  9442. }
  9443. #u54609_text {
  9444. border-width:0px;
  9445. word-wrap:break-word;
  9446. text-transform:none;
  9447. }
  9448. #u54610 {
  9449. border-width:0px;
  9450. position:absolute;
  9451. left:0px;
  9452. top:0px;
  9453. width:0px;
  9454. height:0px;
  9455. }
  9456. #u54611_div {
  9457. border-width:0px;
  9458. position:absolute;
  9459. left:0px;
  9460. top:0px;
  9461. width:346px;
  9462. height:219px;
  9463. background:inherit;
  9464. background-color:rgba(255, 255, 255, 1);
  9465. border:none;
  9466. border-radius:9px;
  9467. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9468. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9469. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9470. }
  9471. #u54611 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:30px;
  9475. top:1139px;
  9476. width:346px;
  9477. height:219px;
  9478. display:flex;
  9479. }
  9480. #u54611 .text {
  9481. position:absolute;
  9482. align-self:center;
  9483. padding:2px 2px 2px 2px;
  9484. box-sizing:border-box;
  9485. width:100%;
  9486. }
  9487. #u54611_text {
  9488. border-width:0px;
  9489. word-wrap:break-word;
  9490. text-transform:none;
  9491. visibility:hidden;
  9492. }
  9493. #u54612_div {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:0px;
  9497. top:0px;
  9498. width:49px;
  9499. height:33px;
  9500. background:inherit;
  9501. background-color:rgba(255, 255, 255, 0);
  9502. border:none;
  9503. border-radius:0px;
  9504. -moz-box-shadow:none;
  9505. -webkit-box-shadow:none;
  9506. box-shadow:none;
  9507. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9508. font-weight:650;
  9509. font-style:normal;
  9510. font-size:24px;
  9511. text-align:center;
  9512. }
  9513. #u54612 {
  9514. border-width:0px;
  9515. position:absolute;
  9516. left:179px;
  9517. top:1177px;
  9518. width:49px;
  9519. height:33px;
  9520. display:flex;
  9521. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9522. font-weight:650;
  9523. font-style:normal;
  9524. font-size:24px;
  9525. text-align:center;
  9526. }
  9527. #u54612 .text {
  9528. position:absolute;
  9529. align-self:center;
  9530. padding:0px 0px 0px 0px;
  9531. box-sizing:border-box;
  9532. width:100%;
  9533. }
  9534. #u54612_text {
  9535. border-width:0px;
  9536. white-space:nowrap;
  9537. text-transform:none;
  9538. }
  9539. #u54613_div {
  9540. border-width:0px;
  9541. position:absolute;
  9542. left:0px;
  9543. top:0px;
  9544. width:173px;
  9545. height:60px;
  9546. background:inherit;
  9547. background-color:rgba(255, 255, 255, 0);
  9548. box-sizing:border-box;
  9549. border-width:1px;
  9550. border-style:solid;
  9551. border-color:rgba(215, 215, 215, 1);
  9552. border-left:0px;
  9553. border-bottom:0px;
  9554. border-radius:0px;
  9555. border-top-left-radius:0px;
  9556. border-bottom-right-radius:0px;
  9557. -moz-box-shadow:none;
  9558. -webkit-box-shadow:none;
  9559. box-shadow:none;
  9560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9561. font-weight:400;
  9562. font-style:normal;
  9563. font-size:22px;
  9564. color:#0099FF;
  9565. text-align:center;
  9566. }
  9567. #u54613 {
  9568. border-width:0px;
  9569. position:absolute;
  9570. left:29px;
  9571. top:1298px;
  9572. width:173px;
  9573. height:60px;
  9574. display:flex;
  9575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9576. font-weight:400;
  9577. font-style:normal;
  9578. font-size:22px;
  9579. color:#0099FF;
  9580. text-align:center;
  9581. }
  9582. #u54613 .text {
  9583. position:absolute;
  9584. align-self:center;
  9585. padding:0px 0px 0px 0px;
  9586. box-sizing:border-box;
  9587. width:100%;
  9588. }
  9589. #u54613_text {
  9590. border-width:0px;
  9591. word-wrap:break-word;
  9592. text-transform:none;
  9593. }
  9594. #u54614_div {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:0px;
  9598. top:0px;
  9599. width:173px;
  9600. height:60px;
  9601. background:inherit;
  9602. background-color:rgba(255, 255, 255, 0);
  9603. box-sizing:border-box;
  9604. border-width:1px;
  9605. border-style:solid;
  9606. border-color:rgba(215, 215, 215, 1);
  9607. border-left:0px;
  9608. border-right:0px;
  9609. border-bottom:0px;
  9610. border-radius:0px;
  9611. border-top-left-radius:0px;
  9612. border-top-right-radius:0px;
  9613. -moz-box-shadow:none;
  9614. -webkit-box-shadow:none;
  9615. box-shadow:none;
  9616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9617. font-weight:400;
  9618. font-style:normal;
  9619. font-size:22px;
  9620. color:#0099FF;
  9621. text-align:center;
  9622. }
  9623. #u54614 {
  9624. border-width:0px;
  9625. position:absolute;
  9626. left:202px;
  9627. top:1298px;
  9628. width:173px;
  9629. height:60px;
  9630. display:flex;
  9631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9632. font-weight:400;
  9633. font-style:normal;
  9634. font-size:22px;
  9635. color:#0099FF;
  9636. text-align:center;
  9637. }
  9638. #u54614 .text {
  9639. position:absolute;
  9640. align-self:center;
  9641. padding:0px 0px 0px 0px;
  9642. box-sizing:border-box;
  9643. width:100%;
  9644. }
  9645. #u54614_text {
  9646. border-width:0px;
  9647. word-wrap:break-word;
  9648. text-transform:none;
  9649. }
  9650. #u54615_div {
  9651. border-width:0px;
  9652. position:absolute;
  9653. left:0px;
  9654. top:0px;
  9655. width:287px;
  9656. height:40px;
  9657. background:inherit;
  9658. background-color:rgba(255, 255, 255, 0);
  9659. border:none;
  9660. border-radius:0px;
  9661. -moz-box-shadow:none;
  9662. -webkit-box-shadow:none;
  9663. box-shadow:none;
  9664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9665. font-weight:400;
  9666. font-style:normal;
  9667. font-size:14px;
  9668. text-align:center;
  9669. }
  9670. #u54615 {
  9671. border-width:0px;
  9672. position:absolute;
  9673. left:62px;
  9674. top:1232px;
  9675. width:287px;
  9676. height:40px;
  9677. display:flex;
  9678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9679. font-weight:400;
  9680. font-style:normal;
  9681. font-size:14px;
  9682. text-align:center;
  9683. }
  9684. #u54615 .text {
  9685. position:absolute;
  9686. align-self:center;
  9687. padding:0px 0px 0px 0px;
  9688. box-sizing:border-box;
  9689. width:100%;
  9690. }
  9691. #u54615_text {
  9692. border-width:0px;
  9693. word-wrap:break-word;
  9694. text-transform:none;
  9695. }
  9696. #u54616_div {
  9697. border-width:0px;
  9698. position:absolute;
  9699. left:0px;
  9700. top:0px;
  9701. width:329px;
  9702. height:25px;
  9703. background:inherit;
  9704. background-color:rgba(255, 255, 255, 0);
  9705. border:none;
  9706. border-left:0px;
  9707. border-top:0px;
  9708. border-right:0px;
  9709. border-radius:0px;
  9710. border-bottom-right-radius:0px;
  9711. border-bottom-left-radius:0px;
  9712. -moz-box-shadow:none;
  9713. -webkit-box-shadow:none;
  9714. box-shadow:none;
  9715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9716. font-weight:400;
  9717. font-style:normal;
  9718. font-size:12px;
  9719. color:#D9001B;
  9720. line-height:25px;
  9721. }
  9722. #u54616 {
  9723. border-width:0px;
  9724. position:absolute;
  9725. left:426px;
  9726. top:1379px;
  9727. width:329px;
  9728. height:25px;
  9729. display:flex;
  9730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9731. font-weight:400;
  9732. font-style:normal;
  9733. font-size:12px;
  9734. color:#D9001B;
  9735. line-height:25px;
  9736. }
  9737. #u54616 .text {
  9738. position:absolute;
  9739. align-self:flex-start;
  9740. padding:0px 0px 0px 0px;
  9741. box-sizing:border-box;
  9742. width:100%;
  9743. }
  9744. #u54616_text {
  9745. border-width:0px;
  9746. word-wrap:break-word;
  9747. text-transform:none;
  9748. }
  9749. #u54617 {
  9750. border-width:0px;
  9751. position:absolute;
  9752. left:0px;
  9753. top:0px;
  9754. width:0px;
  9755. height:0px;
  9756. }
  9757. #u54618_div {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:0px;
  9761. top:0px;
  9762. width:57px;
  9763. height:40px;
  9764. background:inherit;
  9765. background-color:rgba(255, 255, 255, 0);
  9766. border:none;
  9767. border-left:0px;
  9768. border-top:0px;
  9769. border-right:0px;
  9770. border-radius:0px;
  9771. border-bottom-right-radius:0px;
  9772. border-bottom-left-radius:0px;
  9773. -moz-box-shadow:none;
  9774. -webkit-box-shadow:none;
  9775. box-shadow:none;
  9776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9777. font-weight:400;
  9778. font-style:normal;
  9779. font-size:14px;
  9780. line-height:40px;
  9781. }
  9782. #u54618 {
  9783. border-width:0px;
  9784. position:absolute;
  9785. left:51px;
  9786. top:854px;
  9787. width:57px;
  9788. height:40px;
  9789. display:flex;
  9790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9791. font-weight:400;
  9792. font-style:normal;
  9793. font-size:14px;
  9794. line-height:40px;
  9795. }
  9796. #u54618 .text {
  9797. position:absolute;
  9798. align-self:flex-start;
  9799. padding:0px 0px 0px 0px;
  9800. box-sizing:border-box;
  9801. width:100%;
  9802. }
  9803. #u54618_text {
  9804. border-width:0px;
  9805. white-space:nowrap;
  9806. text-transform:none;
  9807. }
  9808. #u54619_div {
  9809. border-width:0px;
  9810. position:absolute;
  9811. left:0px;
  9812. top:0px;
  9813. width:229px;
  9814. height:34px;
  9815. background:inherit;
  9816. background-color:rgba(255, 255, 255, 0);
  9817. border:none;
  9818. border-left:0px;
  9819. border-top:0px;
  9820. border-right:0px;
  9821. border-radius:0px;
  9822. border-bottom-right-radius:0px;
  9823. border-bottom-left-radius:0px;
  9824. -moz-box-shadow:none;
  9825. -webkit-box-shadow:none;
  9826. box-shadow:none;
  9827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9828. font-weight:400;
  9829. font-style:normal;
  9830. font-size:12px;
  9831. color:#AAAAAA;
  9832. }
  9833. #u54619 {
  9834. border-width:0px;
  9835. position:absolute;
  9836. left:153px;
  9837. top:894px;
  9838. width:229px;
  9839. height:34px;
  9840. display:flex;
  9841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9842. font-weight:400;
  9843. font-style:normal;
  9844. font-size:12px;
  9845. color:#AAAAAA;
  9846. }
  9847. #u54619 .text {
  9848. position:absolute;
  9849. align-self:flex-start;
  9850. padding:0px 0px 0px 0px;
  9851. box-sizing:border-box;
  9852. width:100%;
  9853. }
  9854. #u54619_text {
  9855. border-width:0px;
  9856. white-space:nowrap;
  9857. text-transform:none;
  9858. }
  9859. #u54620_img {
  9860. border-width:0px;
  9861. position:absolute;
  9862. left:0px;
  9863. top:0px;
  9864. width:90px;
  9865. height:90px;
  9866. }
  9867. #u54620 {
  9868. border-width:0px;
  9869. position:absolute;
  9870. left:51px;
  9871. top:894px;
  9872. width:90px;
  9873. height:90px;
  9874. display:flex;
  9875. font-size:28px;
  9876. }
  9877. #u54620 .text {
  9878. position:absolute;
  9879. align-self:center;
  9880. padding:2px 2px 2px 2px;
  9881. box-sizing:border-box;
  9882. width:100%;
  9883. }
  9884. #u54620_text {
  9885. border-width:0px;
  9886. word-wrap:break-word;
  9887. text-transform:none;
  9888. }
  9889. #u54621 {
  9890. border-width:0px;
  9891. position:absolute;
  9892. left:0px;
  9893. top:0px;
  9894. width:0px;
  9895. height:0px;
  9896. }
  9897. #u54622_div {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:0px;
  9901. top:0px;
  9902. width:57px;
  9903. height:40px;
  9904. background:inherit;
  9905. background-color:rgba(255, 255, 255, 0);
  9906. border:none;
  9907. border-left:0px;
  9908. border-top:0px;
  9909. border-right:0px;
  9910. border-radius:0px;
  9911. border-bottom-right-radius:0px;
  9912. border-bottom-left-radius:0px;
  9913. -moz-box-shadow:none;
  9914. -webkit-box-shadow:none;
  9915. box-shadow:none;
  9916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9917. font-weight:400;
  9918. font-style:normal;
  9919. font-size:14px;
  9920. line-height:40px;
  9921. }
  9922. #u54622 {
  9923. border-width:0px;
  9924. position:absolute;
  9925. left:504px;
  9926. top:854px;
  9927. width:57px;
  9928. height:40px;
  9929. display:flex;
  9930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9931. font-weight:400;
  9932. font-style:normal;
  9933. font-size:14px;
  9934. line-height:40px;
  9935. }
  9936. #u54622 .text {
  9937. position:absolute;
  9938. align-self:flex-start;
  9939. padding:0px 0px 0px 0px;
  9940. box-sizing:border-box;
  9941. width:100%;
  9942. }
  9943. #u54622_text {
  9944. border-width:0px;
  9945. white-space:nowrap;
  9946. text-transform:none;
  9947. }
  9948. #u54623_div {
  9949. border-width:0px;
  9950. position:absolute;
  9951. left:0px;
  9952. top:0px;
  9953. width:229px;
  9954. height:34px;
  9955. background:inherit;
  9956. background-color:rgba(255, 255, 255, 0);
  9957. border:none;
  9958. border-left:0px;
  9959. border-top:0px;
  9960. border-right:0px;
  9961. border-radius:0px;
  9962. border-bottom-right-radius:0px;
  9963. border-bottom-left-radius:0px;
  9964. -moz-box-shadow:none;
  9965. -webkit-box-shadow:none;
  9966. box-shadow:none;
  9967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9968. font-weight:400;
  9969. font-style:normal;
  9970. font-size:12px;
  9971. color:#AAAAAA;
  9972. }
  9973. #u54623 {
  9974. border-width:0px;
  9975. position:absolute;
  9976. left:606px;
  9977. top:894px;
  9978. width:229px;
  9979. height:34px;
  9980. display:flex;
  9981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9982. font-weight:400;
  9983. font-style:normal;
  9984. font-size:12px;
  9985. color:#AAAAAA;
  9986. }
  9987. #u54623 .text {
  9988. position:absolute;
  9989. align-self:flex-start;
  9990. padding:0px 0px 0px 0px;
  9991. box-sizing:border-box;
  9992. width:100%;
  9993. }
  9994. #u54623_text {
  9995. border-width:0px;
  9996. white-space:nowrap;
  9997. text-transform:none;
  9998. }
  9999. #u54624_img {
  10000. border-width:0px;
  10001. position:absolute;
  10002. left:0px;
  10003. top:0px;
  10004. width:90px;
  10005. height:90px;
  10006. }
  10007. #u54624 {
  10008. border-width:0px;
  10009. position:absolute;
  10010. left:504px;
  10011. top:894px;
  10012. width:90px;
  10013. height:90px;
  10014. display:flex;
  10015. font-size:28px;
  10016. }
  10017. #u54624 .text {
  10018. position:absolute;
  10019. align-self:center;
  10020. padding:2px 2px 2px 2px;
  10021. box-sizing:border-box;
  10022. width:100%;
  10023. }
  10024. #u54624_text {
  10025. border-width:0px;
  10026. word-wrap:break-word;
  10027. text-transform:none;
  10028. }