styles.css 119 KB

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