styles.css 116 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451
  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. #u42119 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u42120 {
  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. #u42120 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u42120_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u42120_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u42121_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. #u42121 {
  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. #u42121 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u42121_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u42122 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u42123_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. #u42123 {
  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. #u42123 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u42123_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u42124 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u42125 {
  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. #u42125 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u42125_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u42125_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u42126 {
  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. #u42126 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u42126_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u42126_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u42127 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u42128 {
  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. #u42128 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u42128_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u42128_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u42129 {
  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. #u42129 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u42129_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u42129_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u42130 {
  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. #u42130 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u42130_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u42130_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u42131 {
  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. #u42131 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u42131_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u42131_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u42132 {
  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. #u42132 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u42132_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u42132_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u42133_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. #u42133 {
  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. #u42133 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u42133_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u42134 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u42135 {
  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. #u42135 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u42135_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u42135_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u42136_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. #u42136 {
  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. #u42136 .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. #u42136_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u42137 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u42138 {
  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. #u42138 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u42138_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u42138_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u42139_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. #u42139 {
  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. #u42139 .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. #u42139_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u42140_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. #u42140 {
  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. #u42140 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u42140_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u42141 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u42142 {
  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. #u42142 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u42142_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u42142_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u42143_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. #u42143 {
  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. #u42143 .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. #u42143_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u42144 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u42145 {
  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. #u42145 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u42145_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u42145_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u42146_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. #u42146 {
  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. #u42146 .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. #u42146_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u42147 {
  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. #u42147 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u42147_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:739px;
  826. }
  827. #u42147_text {
  828. border-width:0px;
  829. word-wrap:break-word;
  830. text-transform:none;
  831. visibility:hidden;
  832. }
  833. #u42148 {
  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. #u42148 .text {
  844. position:absolute;
  845. align-self:center;
  846. padding:2px 2px 2px 2px;
  847. box-sizing:border-box;
  848. width:100%;
  849. }
  850. #u42148_img {
  851. border-width:0px;
  852. position:absolute;
  853. left:0px;
  854. top:0px;
  855. width:11px;
  856. height:18px;
  857. }
  858. #u42148_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u42149_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. #u42149 {
  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. #u42149 .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. #u42149_text {
  904. border-width:0px;
  905. white-space:nowrap;
  906. text-transform:none;
  907. }
  908. #u42150_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. #u42150 {
  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. #u42150 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u42150_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u42151_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. #u42151 {
  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. #u42151 .text {
  990. position:absolute;
  991. align-self:center;
  992. padding:0px 0px 0px 0px;
  993. box-sizing:border-box;
  994. width:100%;
  995. }
  996. #u42151_text {
  997. border-width:0px;
  998. white-space:nowrap;
  999. text-transform:none;
  1000. }
  1001. #u42152 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:0px;
  1007. height:0px;
  1008. }
  1009. #u42153_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. #u42153 {
  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. #u42153 .text {
  1039. position:absolute;
  1040. align-self:center;
  1041. padding:2px 2px 2px 2px;
  1042. box-sizing:border-box;
  1043. width:100%;
  1044. }
  1045. #u42153_text {
  1046. border-width:0px;
  1047. word-wrap:break-word;
  1048. text-transform:none;
  1049. visibility:hidden;
  1050. }
  1051. #u42154_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. #u42154 {
  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. #u42154 .text {
  1091. position:absolute;
  1092. align-self:center;
  1093. padding:0px 0px 0px 0px;
  1094. box-sizing:border-box;
  1095. width:100%;
  1096. }
  1097. #u42154_text {
  1098. border-width:0px;
  1099. white-space:nowrap;
  1100. text-transform:none;
  1101. }
  1102. #u42155_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. #u42155 {
  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. #u42155 .text {
  1132. position:absolute;
  1133. align-self:center;
  1134. padding:2px 2px 2px 2px;
  1135. box-sizing:border-box;
  1136. width:100%;
  1137. }
  1138. #u42155_text {
  1139. border-width:0px;
  1140. word-wrap:break-word;
  1141. text-transform:none;
  1142. visibility:hidden;
  1143. }
  1144. #u42156_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. #u42156 {
  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. #u42156 .text {
  1184. position:absolute;
  1185. align-self:center;
  1186. padding:0px 0px 0px 0px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u42156_text {
  1191. border-width:0px;
  1192. white-space:nowrap;
  1193. text-transform:none;
  1194. }
  1195. #u42157_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. #u42157 {
  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. #u42157 .text {
  1239. position:absolute;
  1240. align-self:center;
  1241. padding:0px 0px 0px 0px;
  1242. box-sizing:border-box;
  1243. width:100%;
  1244. }
  1245. #u42157_text {
  1246. border-width:0px;
  1247. white-space:nowrap;
  1248. text-transform:none;
  1249. }
  1250. #u42158_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. #u42158 {
  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. #u42158 .text {
  1294. position:absolute;
  1295. align-self:center;
  1296. padding:0px 0px 0px 0px;
  1297. box-sizing:border-box;
  1298. width:100%;
  1299. }
  1300. #u42158_text {
  1301. border-width:0px;
  1302. white-space:nowrap;
  1303. text-transform:none;
  1304. }
  1305. #u42159_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. #u42159 {
  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. #u42159 .text {
  1335. position:absolute;
  1336. align-self:center;
  1337. padding:2px 2px 2px 2px;
  1338. box-sizing:border-box;
  1339. width:100%;
  1340. }
  1341. #u42159_text {
  1342. border-width:0px;
  1343. word-wrap:break-word;
  1344. text-transform:none;
  1345. visibility:hidden;
  1346. }
  1347. #u42160_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. #u42160 {
  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. #u42160 .text {
  1387. position:absolute;
  1388. align-self:center;
  1389. padding:0px 0px 0px 0px;
  1390. box-sizing:border-box;
  1391. width:100%;
  1392. }
  1393. #u42160_text {
  1394. border-width:0px;
  1395. white-space:nowrap;
  1396. text-transform:none;
  1397. }
  1398. #u42161 {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:0px;
  1402. top:0px;
  1403. width:0px;
  1404. height:0px;
  1405. }
  1406. #u42162_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. #u42162 {
  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. #u42162 .text {
  1443. position:absolute;
  1444. align-self:center;
  1445. padding:2px 2px 2px 2px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u42162_text {
  1450. border-width:0px;
  1451. word-wrap:break-word;
  1452. text-transform:none;
  1453. visibility:hidden;
  1454. }
  1455. #u42163_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. #u42163 {
  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. #u42163 .text {
  1499. position:absolute;
  1500. align-self:center;
  1501. padding:0px 0px 0px 0px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u42163_text {
  1506. border-width:0px;
  1507. white-space:nowrap;
  1508. text-transform:none;
  1509. }
  1510. #u42164_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. #u42164 {
  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. #u42164 .text {
  1545. position:absolute;
  1546. align-self:center;
  1547. padding:2px 2px 2px 2px;
  1548. box-sizing:border-box;
  1549. width:100%;
  1550. }
  1551. #u42164_text {
  1552. border-width:0px;
  1553. word-wrap:break-word;
  1554. text-transform:none;
  1555. }
  1556. #u42165_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. #u42165 {
  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. #u42165 .text {
  1586. position:absolute;
  1587. align-self:center;
  1588. padding:2px 2px 2px 2px;
  1589. box-sizing:border-box;
  1590. width:100%;
  1591. }
  1592. #u42165_text {
  1593. border-width:0px;
  1594. word-wrap:break-word;
  1595. text-transform:none;
  1596. visibility:hidden;
  1597. }
  1598. #u42166_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. #u42166 {
  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. #u42166 .text {
  1638. position:absolute;
  1639. align-self:center;
  1640. padding:0px 0px 0px 0px;
  1641. box-sizing:border-box;
  1642. width:100%;
  1643. }
  1644. #u42166_text {
  1645. border-width:0px;
  1646. white-space:nowrap;
  1647. text-transform:none;
  1648. }
  1649. #u42167_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. #u42167 {
  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. #u42167 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 2px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u42167_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. }
  1695. #u42168_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. #u42168 {
  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. #u42168 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 2px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u42168_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. }
  1743. #u42169 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:0px;
  1749. height:0px;
  1750. }
  1751. #u42170_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. #u42170 {
  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. #u42170 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 2px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u42170_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. visibility:hidden;
  1799. }
  1800. #u42171_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. #u42171 {
  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. #u42171 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:0px 0px 0px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u42171_text {
  1851. border-width:0px;
  1852. white-space:nowrap;
  1853. text-transform:none;
  1854. }
  1855. #u42172 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:0px;
  1861. height:0px;
  1862. }
  1863. #u42173_div {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:375px;
  1869. height:180px;
  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. #u42173 {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:29px;
  1885. top:498px;
  1886. width:375px;
  1887. height:180px;
  1888. display:flex;
  1889. transition:none;
  1890. transform-origin:50% 50%;
  1891. }
  1892. #u42173 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 2px 2px 2px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u42173_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. visibility:hidden;
  1904. }
  1905. #u42174_div {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:64px;
  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. #u42174 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:49px;
  1932. top:508px;
  1933. width:64px;
  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. #u42174 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:0px 0px 0px 0px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u42174_text {
  1952. border-width:0px;
  1953. white-space:nowrap;
  1954. text-transform:none;
  1955. }
  1956. #u42175_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. #u42175 {
  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. #u42175 .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. #u42175_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. }
  2009. #u42176_div {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:60px;
  2015. height:60px;
  2016. background:inherit;
  2017. background-color:rgba(255, 255, 255, 1);
  2018. box-sizing:border-box;
  2019. border-width:1px;
  2020. border-style:solid;
  2021. border-color:rgba(170, 170, 170, 1);
  2022. border-radius:4px;
  2023. filter:drop-shadow(none);
  2024. transition:none;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:18px;
  2029. }
  2030. #u42176 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:49px;
  2034. top:598px;
  2035. width:60px;
  2036. height:60px;
  2037. display:flex;
  2038. transition:none;
  2039. transform-origin:50% 50%;
  2040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:18px;
  2044. }
  2045. #u42176 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 2px 2px 2px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u42176_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. }
  2057. #u42177_div {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:375px;
  2063. height:50px;
  2064. background:inherit;
  2065. background-color:rgba(255, 255, 255, 1);
  2066. border-left:0px;
  2067. border-top:0px;
  2068. border-right:0px;
  2069. border-radius:0px;
  2070. border-bottom-right-radius:0px;
  2071. border-bottom-left-radius:0px;
  2072. filter:drop-shadow(none);
  2073. transition:none;
  2074. }
  2075. #u42177 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:29px;
  2079. top:165px;
  2080. width:375px;
  2081. height:50px;
  2082. display:flex;
  2083. transition:none;
  2084. transform-origin:50% 50%;
  2085. }
  2086. #u42177 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 2px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u42177_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u42178_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:64px;
  2105. height:30px;
  2106. background:inherit;
  2107. background-color:rgba(255, 255, 255, 0);
  2108. border-left:0px;
  2109. border-top:0px;
  2110. border-right:0px;
  2111. border-radius:0px;
  2112. border-bottom-right-radius:0px;
  2113. border-bottom-left-radius:0px;
  2114. filter:drop-shadow(none);
  2115. transition:none;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:14px;
  2120. line-height:30px;
  2121. }
  2122. #u42178 {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:49px;
  2126. top:175px;
  2127. width:64px;
  2128. height:30px;
  2129. display:flex;
  2130. transition:none;
  2131. transform-origin:50% 50%;
  2132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2133. font-weight:400;
  2134. font-style:normal;
  2135. font-size:14px;
  2136. line-height:30px;
  2137. }
  2138. #u42178 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:0px 0px 0px 0px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u42178_text {
  2146. border-width:0px;
  2147. white-space:nowrap;
  2148. text-transform:none;
  2149. }
  2150. #u42179 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:0px;
  2156. height:0px;
  2157. }
  2158. #u42180_div {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:8px;
  2164. height:8px;
  2165. background:inherit;
  2166. background-color:rgba(255, 255, 255, 0);
  2167. box-sizing:border-box;
  2168. border-width:1px;
  2169. border-style:solid;
  2170. border-color:rgba(127, 127, 127, 1);
  2171. border-right:0px;
  2172. border-bottom:0px;
  2173. border-radius:0px;
  2174. border-top-right-radius:0px;
  2175. border-bottom-left-radius:0px;
  2176. filter:drop-shadow(none);
  2177. transition:none;
  2178. }
  2179. #u42180 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:379px;
  2183. top:186px;
  2184. width:8px;
  2185. height:8px;
  2186. display:flex;
  2187. -webkit-transform:rotate(135deg);
  2188. -moz-transform:rotate(135deg);
  2189. -ms-transform:rotate(135deg);
  2190. transform:rotate(135deg);
  2191. transition:none;
  2192. transform-origin:50% 50%;
  2193. }
  2194. #u42180 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 2px 2px 2px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u42180_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. visibility:hidden;
  2206. }
  2207. #u42181_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:43px;
  2213. height:30px;
  2214. background:inherit;
  2215. background-color:rgba(255, 255, 255, 0);
  2216. border-left:0px;
  2217. border-top:0px;
  2218. border-right:0px;
  2219. border-radius:0px;
  2220. border-bottom-right-radius:0px;
  2221. border-bottom-left-radius:0px;
  2222. filter:drop-shadow(none);
  2223. transition:none;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:14px;
  2228. color:#AAAAAA;
  2229. text-align:right;
  2230. line-height:30px;
  2231. }
  2232. #u42181 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:329px;
  2236. top:175px;
  2237. width:43px;
  2238. height:30px;
  2239. display:flex;
  2240. transition:none;
  2241. transform-origin:50% 50%;
  2242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2243. font-weight:400;
  2244. font-style:normal;
  2245. font-size:14px;
  2246. color:#AAAAAA;
  2247. text-align:right;
  2248. line-height:30px;
  2249. }
  2250. #u42181 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:0px 0px 0px 0px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u42181_text {
  2258. border-width:0px;
  2259. white-space:nowrap;
  2260. text-transform:none;
  2261. }
  2262. #u42182 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:452px;
  2266. top:0px;
  2267. width:433px;
  2268. height:865px;
  2269. }
  2270. #u42183 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:433px;
  2276. height:865px;
  2277. display:flex;
  2278. transition:none;
  2279. }
  2280. #u42183 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:2px 2px 2px 2px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u42183_img {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:433px;
  2293. height:865px;
  2294. }
  2295. #u42183_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. visibility:hidden;
  2300. }
  2301. #u42184_div {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:375px;
  2307. height:40px;
  2308. background:inherit;
  2309. background-color:rgba(255, 255, 255, 1);
  2310. box-sizing:border-box;
  2311. border-width:1px;
  2312. border-style:solid;
  2313. border-color:rgba(215, 215, 215, 1);
  2314. border-left:0px;
  2315. border-top:0px;
  2316. border-right:0px;
  2317. border-radius:0px;
  2318. border-bottom-right-radius:0px;
  2319. border-bottom-left-radius:0px;
  2320. filter:drop-shadow(none);
  2321. transition:none;
  2322. }
  2323. #u42184 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:29px;
  2327. top:67px;
  2328. width:375px;
  2329. height:40px;
  2330. display:flex;
  2331. transition:none;
  2332. transform-origin:50% 50%;
  2333. }
  2334. #u42184 .text {
  2335. position:absolute;
  2336. align-self:center;
  2337. padding:2px 2px 2px 2px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u42184_text {
  2342. border-width:0px;
  2343. word-wrap:break-word;
  2344. text-transform:none;
  2345. visibility:hidden;
  2346. }
  2347. #u42185 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:0px;
  2353. height:0px;
  2354. }
  2355. #u42186_div {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:88px;
  2361. height:32px;
  2362. background:inherit;
  2363. background-color:rgba(255, 255, 255, 1);
  2364. box-sizing:border-box;
  2365. border-width:1px;
  2366. border-style:solid;
  2367. border-color:rgba(242, 242, 242, 1);
  2368. border-radius:33px;
  2369. filter:drop-shadow(none);
  2370. transition:none;
  2371. }
  2372. #u42186 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:309px;
  2376. top:71px;
  2377. width:88px;
  2378. height:32px;
  2379. display:flex;
  2380. transition:none;
  2381. transform-origin:50% 50%;
  2382. }
  2383. #u42186 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:2px 2px 2px 2px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u42186_text {
  2391. border-width:0px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. visibility:hidden;
  2395. }
  2396. #u42187 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:0px;
  2402. height:0px;
  2403. }
  2404. #u42188 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:372px;
  2408. top:78px;
  2409. width:18px;
  2410. height:18px;
  2411. display:flex;
  2412. transition:none;
  2413. }
  2414. #u42188 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 2px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u42188_img {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:18px;
  2427. height:18px;
  2428. }
  2429. #u42188_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u42189 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:378px;
  2439. top:84px;
  2440. width:6px;
  2441. height:6px;
  2442. display:flex;
  2443. transition:none;
  2444. }
  2445. #u42189 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 2px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u42189_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:6px;
  2458. height:6px;
  2459. }
  2460. #u42189_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. visibility:hidden;
  2465. }
  2466. #u42190 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:0px;
  2472. height:0px;
  2473. }
  2474. #u42191 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:323px;
  2478. top:85px;
  2479. width:5px;
  2480. height:5px;
  2481. display:flex;
  2482. transition:none;
  2483. }
  2484. #u42191 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 2px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u42191_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:5px;
  2497. height:5px;
  2498. }
  2499. #u42191_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. visibility:hidden;
  2504. }
  2505. #u42192 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:339px;
  2509. top:85px;
  2510. width:5px;
  2511. height:5px;
  2512. display:flex;
  2513. transition:none;
  2514. }
  2515. #u42192 .text {
  2516. position:absolute;
  2517. align-self:center;
  2518. padding:2px 2px 2px 2px;
  2519. box-sizing:border-box;
  2520. width:100%;
  2521. }
  2522. #u42192_img {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:5px;
  2528. height:5px;
  2529. }
  2530. #u42192_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. visibility:hidden;
  2535. }
  2536. #u42193 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:330px;
  2540. top:84px;
  2541. width:7px;
  2542. height:7px;
  2543. display:flex;
  2544. transition:none;
  2545. }
  2546. #u42193 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 2px 2px 2px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u42193_img {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:7px;
  2559. height:7px;
  2560. }
  2561. #u42193_text {
  2562. border-width:0px;
  2563. word-wrap:break-word;
  2564. text-transform:none;
  2565. visibility:hidden;
  2566. }
  2567. #u42194 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:347px;
  2571. top:87px;
  2572. width:18px;
  2573. height:1px;
  2574. display:flex;
  2575. -webkit-transform:rotate(90deg);
  2576. -moz-transform:rotate(90deg);
  2577. -ms-transform:rotate(90deg);
  2578. transform:rotate(90deg);
  2579. transition:none;
  2580. }
  2581. #u42194 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 2px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u42194_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:19px;
  2594. height:2px;
  2595. }
  2596. #u42194_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. visibility:hidden;
  2601. }
  2602. #u42195 {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:29px;
  2606. top:24px;
  2607. width:375px;
  2608. height:44px;
  2609. display:flex;
  2610. transition:none;
  2611. }
  2612. #u42195 .text {
  2613. position:absolute;
  2614. align-self:center;
  2615. padding:2px 2px 2px 2px;
  2616. box-sizing:border-box;
  2617. width:100%;
  2618. }
  2619. #u42195_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:375px;
  2625. height:44px;
  2626. }
  2627. #u42195_text {
  2628. border-width:0px;
  2629. word-wrap:break-word;
  2630. text-transform:none;
  2631. visibility:hidden;
  2632. }
  2633. #u42196_div {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:375px;
  2639. height:50px;
  2640. background:inherit;
  2641. background-color:rgba(255, 255, 255, 1);
  2642. box-sizing:border-box;
  2643. border-width:1px;
  2644. border-style:solid;
  2645. border-color:rgba(242, 242, 242, 1);
  2646. border-radius:26px;
  2647. border-top-left-radius:0px;
  2648. border-top-right-radius:0px;
  2649. filter:drop-shadow(none);
  2650. transition:none;
  2651. }
  2652. #u42196 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:29px;
  2656. top:788px;
  2657. width:375px;
  2658. height:50px;
  2659. display:flex;
  2660. transition:none;
  2661. transform-origin:50% 50%;
  2662. }
  2663. #u42196 .text {
  2664. position:absolute;
  2665. align-self:center;
  2666. padding:2px 2px 2px 2px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u42196_text {
  2671. border-width:0px;
  2672. word-wrap:break-word;
  2673. text-transform:none;
  2674. visibility:hidden;
  2675. }
  2676. #u42197 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:0px;
  2682. height:0px;
  2683. }
  2684. #u42198 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:69px;
  2688. top:792px;
  2689. width:24px;
  2690. height:24px;
  2691. display:flex;
  2692. transition:none;
  2693. font-size:8px;
  2694. }
  2695. #u42198 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 2px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u42198_img {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:24px;
  2708. height:24px;
  2709. }
  2710. #u42198_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. }
  2715. #u42199_div {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:25px;
  2721. height:17px;
  2722. background:inherit;
  2723. background-color:rgba(255, 255, 255, 0);
  2724. border-radius:0px;
  2725. filter:drop-shadow(none);
  2726. transition:none;
  2727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2728. font-weight:400;
  2729. font-style:normal;
  2730. font-size:12px;
  2731. }
  2732. #u42199 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:69px;
  2736. top:817px;
  2737. width:25px;
  2738. height:17px;
  2739. display:flex;
  2740. transition:none;
  2741. transform-origin:50% 50%;
  2742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:12px;
  2746. }
  2747. #u42199 .text {
  2748. position:absolute;
  2749. align-self:flex-start;
  2750. padding:0px 0px 0px 0px;
  2751. box-sizing:border-box;
  2752. width:100%;
  2753. }
  2754. #u42199_text {
  2755. border-width:0px;
  2756. white-space:nowrap;
  2757. text-transform:none;
  2758. }
  2759. #u42200 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:0px;
  2765. height:0px;
  2766. }
  2767. #u42201 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:339px;
  2771. top:794px;
  2772. width:24px;
  2773. height:24px;
  2774. display:flex;
  2775. transition:none;
  2776. font-size:8px;
  2777. }
  2778. #u42201 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 2px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u42201_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:24px;
  2791. height:24px;
  2792. }
  2793. #u42201_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. }
  2798. #u42202_div {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:25px;
  2804. height:17px;
  2805. background:inherit;
  2806. background-color:rgba(255, 255, 255, 0);
  2807. border-radius:0px;
  2808. filter:drop-shadow(none);
  2809. transition:none;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:12px;
  2814. }
  2815. #u42202 {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:339px;
  2819. top:819px;
  2820. width:25px;
  2821. height:17px;
  2822. display:flex;
  2823. transition:none;
  2824. transform-origin:50% 50%;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:12px;
  2829. }
  2830. #u42202 .text {
  2831. position:absolute;
  2832. align-self:flex-start;
  2833. padding:0px 0px 0px 0px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u42202_text {
  2838. border-width:0px;
  2839. white-space:nowrap;
  2840. text-transform:none;
  2841. }
  2842. #u42203_div {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:375px;
  2848. height:681px;
  2849. background:inherit;
  2850. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2851. border-radius:0px;
  2852. filter:drop-shadow(none);
  2853. transition:none;
  2854. }
  2855. #u42203 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:29px;
  2859. top:107px;
  2860. width:375px;
  2861. height:681px;
  2862. display:flex;
  2863. transition:none;
  2864. transform-origin:50% 50%;
  2865. }
  2866. #u42203 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u42203_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u42204 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:0px;
  2885. height:0px;
  2886. }
  2887. #u42205 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:251px;
  2891. top:792px;
  2892. width:24px;
  2893. height:24px;
  2894. display:flex;
  2895. transition:none;
  2896. font-size:8px;
  2897. }
  2898. #u42205 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 2px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u42205_img {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:24px;
  2911. height:24px;
  2912. }
  2913. #u42205_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. }
  2918. #u42206_div {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:37px;
  2924. height:17px;
  2925. background:inherit;
  2926. background-color:rgba(255, 255, 255, 0);
  2927. border-radius:0px;
  2928. filter:drop-shadow(none);
  2929. transition:none;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:12px;
  2934. }
  2935. #u42206 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:245px;
  2939. top:817px;
  2940. width:37px;
  2941. height:17px;
  2942. display:flex;
  2943. transition:none;
  2944. transform-origin:50% 50%;
  2945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:12px;
  2949. }
  2950. #u42206 .text {
  2951. position:absolute;
  2952. align-self:flex-start;
  2953. padding:0px 0px 0px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u42206_text {
  2958. border-width:0px;
  2959. white-space:nowrap;
  2960. text-transform:none;
  2961. }
  2962. #u42207 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:0px;
  2968. height:0px;
  2969. }
  2970. #u42208 {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:157px;
  2974. top:792px;
  2975. width:24px;
  2976. height:24px;
  2977. display:flex;
  2978. transition:none;
  2979. font-size:8px;
  2980. }
  2981. #u42208 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 2px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u42208_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:24px;
  2994. height:24px;
  2995. }
  2996. #u42208_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. }
  3001. #u42209_div {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:37px;
  3007. height:17px;
  3008. background:inherit;
  3009. background-color:rgba(255, 255, 255, 0);
  3010. border-radius:0px;
  3011. filter:drop-shadow(none);
  3012. transition:none;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:12px;
  3017. }
  3018. #u42209 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:151px;
  3022. top:817px;
  3023. width:37px;
  3024. height:17px;
  3025. display:flex;
  3026. transition:none;
  3027. transform-origin:50% 50%;
  3028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:12px;
  3032. }
  3033. #u42209 .text {
  3034. position:absolute;
  3035. align-self:flex-start;
  3036. padding:0px 0px 0px 0px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u42209_text {
  3041. border-width:0px;
  3042. white-space:nowrap;
  3043. text-transform:none;
  3044. }
  3045. #u42210 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:481px;
  3049. top:106px;
  3050. width:375px;
  3051. height:739px;
  3052. display:flex;
  3053. transition:none;
  3054. }
  3055. #u42210 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 2px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u42210_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:375px;
  3068. height:739px;
  3069. }
  3070. #u42210_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. visibility:hidden;
  3075. }
  3076. #u42211 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:492px;
  3080. top:79px;
  3081. width:11px;
  3082. height:18px;
  3083. display:flex;
  3084. transition:none;
  3085. }
  3086. #u42211 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 2px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u42211_img {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:11px;
  3099. height:18px;
  3100. }
  3101. #u42211_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. visibility:hidden;
  3106. }
  3107. #u42212_div {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:73px;
  3113. height:25px;
  3114. background:inherit;
  3115. background-color:rgba(255, 255, 255, 0);
  3116. border-radius:0px;
  3117. filter:drop-shadow(none);
  3118. transition:none;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:18px;
  3123. }
  3124. #u42212 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:632px;
  3128. top:75px;
  3129. width:73px;
  3130. height:25px;
  3131. display:flex;
  3132. transition:none;
  3133. transform-origin:50% 50%;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:18px;
  3138. }
  3139. #u42212 .text {
  3140. position:absolute;
  3141. align-self:flex-start;
  3142. padding:0px 0px 0px 0px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u42212_text {
  3147. border-width:0px;
  3148. white-space:nowrap;
  3149. text-transform:none;
  3150. }
  3151. #u42213_div {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:375px;
  3157. height:50px;
  3158. background:inherit;
  3159. background-color:rgba(255, 255, 255, 1);
  3160. border-left:0px;
  3161. border-top:0px;
  3162. border-right:0px;
  3163. border-radius:0px;
  3164. border-bottom-right-radius:0px;
  3165. border-bottom-left-radius:0px;
  3166. filter:drop-shadow(none);
  3167. transition:none;
  3168. }
  3169. #u42213 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:481px;
  3173. top:276px;
  3174. width:375px;
  3175. height:50px;
  3176. display:flex;
  3177. transition:none;
  3178. transform-origin:50% 50%;
  3179. }
  3180. #u42213 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:2px 2px 2px 2px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u42213_text {
  3188. border-width:0px;
  3189. word-wrap:break-word;
  3190. text-transform:none;
  3191. visibility:hidden;
  3192. }
  3193. #u42214_div {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:64px;
  3199. height:30px;
  3200. background:inherit;
  3201. background-color:rgba(255, 255, 255, 0);
  3202. border-left:0px;
  3203. border-top:0px;
  3204. border-right:0px;
  3205. border-radius:0px;
  3206. border-bottom-right-radius:0px;
  3207. border-bottom-left-radius:0px;
  3208. filter:drop-shadow(none);
  3209. transition:none;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:14px;
  3214. line-height:30px;
  3215. }
  3216. #u42214 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:501px;
  3220. top:286px;
  3221. width:64px;
  3222. height:30px;
  3223. display:flex;
  3224. transition:none;
  3225. transform-origin:50% 50%;
  3226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3227. font-weight:400;
  3228. font-style:normal;
  3229. font-size:14px;
  3230. line-height:30px;
  3231. }
  3232. #u42214 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:0px 0px 0px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u42214_text {
  3240. border-width:0px;
  3241. white-space:nowrap;
  3242. text-transform:none;
  3243. }
  3244. #u42215 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:0px;
  3250. height:0px;
  3251. }
  3252. #u42216_div {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:375px;
  3258. height:50px;
  3259. background:inherit;
  3260. background-color:rgba(255, 255, 255, 1);
  3261. border-left:0px;
  3262. border-top:0px;
  3263. border-right:0px;
  3264. border-radius:0px;
  3265. border-bottom-right-radius:0px;
  3266. border-bottom-left-radius:0px;
  3267. filter:drop-shadow(none);
  3268. transition:none;
  3269. }
  3270. #u42216 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:481px;
  3274. top:336px;
  3275. width:375px;
  3276. height:50px;
  3277. display:flex;
  3278. transition:none;
  3279. transform-origin:50% 50%;
  3280. }
  3281. #u42216 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 2px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u42216_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. visibility:hidden;
  3293. }
  3294. #u42217_div {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:50px;
  3300. height:30px;
  3301. background:inherit;
  3302. background-color:rgba(255, 255, 255, 0);
  3303. border-left:0px;
  3304. border-top:0px;
  3305. border-right:0px;
  3306. border-radius:0px;
  3307. border-bottom-right-radius:0px;
  3308. border-bottom-left-radius:0px;
  3309. filter:drop-shadow(none);
  3310. transition:none;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:14px;
  3315. line-height:30px;
  3316. }
  3317. #u42217 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:501px;
  3321. top:346px;
  3322. width:50px;
  3323. height:30px;
  3324. display:flex;
  3325. transition:none;
  3326. transform-origin:50% 50%;
  3327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3328. font-weight:400;
  3329. font-style:normal;
  3330. font-size:14px;
  3331. line-height:30px;
  3332. }
  3333. #u42217 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:0px 0px 0px 0px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u42217_text {
  3341. border-width:0px;
  3342. white-space:nowrap;
  3343. text-transform:none;
  3344. }
  3345. #u42218_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. #u42218 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:481px;
  3367. top:387px;
  3368. width:375px;
  3369. height:50px;
  3370. display:flex;
  3371. transition:none;
  3372. transform-origin:50% 50%;
  3373. }
  3374. #u42218 .text {
  3375. position:absolute;
  3376. align-self:center;
  3377. padding:2px 2px 2px 2px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u42218_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. visibility:hidden;
  3386. }
  3387. #u42219_div {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:64px;
  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. #u42219 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:501px;
  3414. top:397px;
  3415. width:64px;
  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. #u42219 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:0px 0px 0px 0px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u42219_text {
  3434. border-width:0px;
  3435. white-space:nowrap;
  3436. text-transform:none;
  3437. }
  3438. #u42220_div {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:43px;
  3444. height:30px;
  3445. background:inherit;
  3446. background-color:rgba(255, 255, 255, 0);
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:14px;
  3459. color:#AAAAAA;
  3460. text-align:right;
  3461. line-height:30px;
  3462. }
  3463. #u42220 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:793px;
  3467. top:346px;
  3468. width:43px;
  3469. height:30px;
  3470. display:flex;
  3471. transition:none;
  3472. transform-origin:50% 50%;
  3473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:14px;
  3477. color:#AAAAAA;
  3478. text-align:right;
  3479. line-height:30px;
  3480. }
  3481. #u42220 .text {
  3482. position:absolute;
  3483. align-self:center;
  3484. padding:0px 0px 0px 0px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u42220_text {
  3489. border-width:0px;
  3490. white-space:nowrap;
  3491. text-transform:none;
  3492. }
  3493. #u42221_div {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:91px;
  3499. height:30px;
  3500. background:inherit;
  3501. background-color:rgba(255, 255, 255, 0);
  3502. border-left:0px;
  3503. border-top:0px;
  3504. border-right:0px;
  3505. border-radius:0px;
  3506. border-bottom-right-radius:0px;
  3507. border-bottom-left-radius:0px;
  3508. filter:drop-shadow(none);
  3509. transition:none;
  3510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:14px;
  3514. color:#AAAAAA;
  3515. text-align:right;
  3516. line-height:30px;
  3517. }
  3518. #u42221 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:745px;
  3522. top:397px;
  3523. width:91px;
  3524. height:30px;
  3525. display:flex;
  3526. transition:none;
  3527. transform-origin:50% 50%;
  3528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. font-size:14px;
  3532. color:#AAAAAA;
  3533. text-align:right;
  3534. line-height:30px;
  3535. }
  3536. #u42221 .text {
  3537. position:absolute;
  3538. align-self:center;
  3539. padding:0px 0px 0px 0px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u42221_text {
  3544. border-width:0px;
  3545. white-space:nowrap;
  3546. text-transform:none;
  3547. }
  3548. #u42222_div {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:375px;
  3554. height:50px;
  3555. background:inherit;
  3556. background-color:rgba(255, 255, 255, 1);
  3557. border-left:0px;
  3558. border-top:0px;
  3559. border-right:0px;
  3560. border-radius:0px;
  3561. border-bottom-right-radius:0px;
  3562. border-bottom-left-radius:0px;
  3563. filter:drop-shadow(none);
  3564. transition:none;
  3565. }
  3566. #u42222 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:481px;
  3570. top:438px;
  3571. width:375px;
  3572. height:50px;
  3573. display:flex;
  3574. transition:none;
  3575. transform-origin:50% 50%;
  3576. }
  3577. #u42222 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 2px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u42222_text {
  3585. border-width:0px;
  3586. word-wrap:break-word;
  3587. text-transform:none;
  3588. visibility:hidden;
  3589. }
  3590. #u42223_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:57px;
  3596. height:30px;
  3597. background:inherit;
  3598. background-color:rgba(255, 255, 255, 0);
  3599. border-left:0px;
  3600. border-top:0px;
  3601. border-right:0px;
  3602. border-radius:0px;
  3603. border-bottom-right-radius:0px;
  3604. border-bottom-left-radius:0px;
  3605. filter:drop-shadow(none);
  3606. transition:none;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:14px;
  3611. line-height:30px;
  3612. }
  3613. #u42223 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:501px;
  3617. top:448px;
  3618. width:57px;
  3619. height:30px;
  3620. display:flex;
  3621. transition:none;
  3622. transform-origin:50% 50%;
  3623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:14px;
  3627. line-height:30px;
  3628. }
  3629. #u42223 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:0px 0px 0px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u42223_text {
  3637. border-width:0px;
  3638. white-space:nowrap;
  3639. text-transform:none;
  3640. }
  3641. #u42224 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:0px;
  3647. height:0px;
  3648. }
  3649. #u42225_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:8px;
  3655. height:8px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 0);
  3658. box-sizing:border-box;
  3659. border-width:1px;
  3660. border-style:solid;
  3661. border-color:rgba(127, 127, 127, 1);
  3662. border-right:0px;
  3663. border-bottom:0px;
  3664. border-radius:0px;
  3665. border-top-right-radius:0px;
  3666. border-bottom-left-radius:0px;
  3667. filter:drop-shadow(none);
  3668. transition:none;
  3669. }
  3670. #u42225 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:831px;
  3674. top:459px;
  3675. width:8px;
  3676. height:8px;
  3677. display:flex;
  3678. -webkit-transform:rotate(135deg);
  3679. -moz-transform:rotate(135deg);
  3680. -ms-transform:rotate(135deg);
  3681. transform:rotate(135deg);
  3682. transition:none;
  3683. transform-origin:50% 50%;
  3684. }
  3685. #u42225 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 2px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u42225_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u42226_div {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:43px;
  3704. height:30px;
  3705. background:inherit;
  3706. background-color:rgba(255, 255, 255, 0);
  3707. border-left:0px;
  3708. border-top:0px;
  3709. border-right:0px;
  3710. border-radius:0px;
  3711. border-bottom-right-radius:0px;
  3712. border-bottom-left-radius:0px;
  3713. filter:drop-shadow(none);
  3714. transition:none;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:14px;
  3719. color:#AAAAAA;
  3720. text-align:right;
  3721. line-height:30px;
  3722. }
  3723. #u42226 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:781px;
  3727. top:448px;
  3728. width:43px;
  3729. height:30px;
  3730. display:flex;
  3731. transition:none;
  3732. transform-origin:50% 50%;
  3733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3734. font-weight:400;
  3735. font-style:normal;
  3736. font-size:14px;
  3737. color:#AAAAAA;
  3738. text-align:right;
  3739. line-height:30px;
  3740. }
  3741. #u42226 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:0px 0px 0px 0px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u42226_text {
  3749. border-width:0px;
  3750. white-space:nowrap;
  3751. text-transform:none;
  3752. }
  3753. #u42227_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:344px;
  3759. height:40px;
  3760. background:inherit;
  3761. background-color:rgba(24, 144, 255, 1);
  3762. border-radius:81px;
  3763. filter:drop-shadow(none);
  3764. transition:none;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:14px;
  3769. color:#FFFFFF;
  3770. }
  3771. #u42227 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:501px;
  3775. top:797px;
  3776. width:344px;
  3777. height:40px;
  3778. display:flex;
  3779. transition:none;
  3780. transform-origin:50% 50%;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:14px;
  3785. color:#FFFFFF;
  3786. }
  3787. #u42227 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 2px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u42227_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. }
  3799. #u42228_div {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:375px;
  3805. height:50px;
  3806. background:inherit;
  3807. background-color:rgba(255, 255, 255, 1);
  3808. border-left:0px;
  3809. border-top:0px;
  3810. border-right:0px;
  3811. border-radius:0px;
  3812. border-bottom-right-radius:0px;
  3813. border-bottom-left-radius:0px;
  3814. filter:drop-shadow(none);
  3815. transition:none;
  3816. }
  3817. #u42228 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:481px;
  3821. top:225px;
  3822. width:375px;
  3823. height:50px;
  3824. display:flex;
  3825. transition:none;
  3826. transform-origin:50% 50%;
  3827. }
  3828. #u42228 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:2px 2px 2px 2px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u42228_text {
  3836. border-width:0px;
  3837. word-wrap:break-word;
  3838. text-transform:none;
  3839. visibility:hidden;
  3840. }
  3841. #u42229_div {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:64px;
  3847. height:30px;
  3848. background:inherit;
  3849. background-color:rgba(255, 255, 255, 0);
  3850. border-left:0px;
  3851. border-top:0px;
  3852. border-right:0px;
  3853. border-radius:0px;
  3854. border-bottom-right-radius:0px;
  3855. border-bottom-left-radius:0px;
  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. line-height:30px;
  3863. }
  3864. #u42229 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:501px;
  3868. top:235px;
  3869. width:64px;
  3870. height:30px;
  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. line-height:30px;
  3879. }
  3880. #u42229 .text {
  3881. position:absolute;
  3882. align-self:center;
  3883. padding:0px 0px 0px 0px;
  3884. box-sizing:border-box;
  3885. width:100%;
  3886. }
  3887. #u42229_text {
  3888. border-width:0px;
  3889. white-space:nowrap;
  3890. text-transform:none;
  3891. }
  3892. #u42230_div {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:60px;
  3898. height:30px;
  3899. background:inherit;
  3900. background-color:rgba(24, 144, 255, 1);
  3901. border-radius:4px;
  3902. filter:drop-shadow(none);
  3903. transition:none;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#FFFFFF;
  3909. }
  3910. #u42230 {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:711px;
  3914. top:235px;
  3915. width:60px;
  3916. height:30px;
  3917. display:flex;
  3918. transition:none;
  3919. transform-origin:50% 50%;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. color:#FFFFFF;
  3925. }
  3926. #u42230 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 2px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u42230_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. }
  3938. #u42231_div {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:60px;
  3944. height:30px;
  3945. background:inherit;
  3946. background-color:rgba(255, 255, 255, 1);
  3947. box-sizing:border-box;
  3948. border-width:1px;
  3949. border-style:solid;
  3950. border-color:rgba(170, 170, 170, 1);
  3951. border-radius:4px;
  3952. filter:drop-shadow(none);
  3953. transition:none;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:12px;
  3958. }
  3959. #u42231 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:781px;
  3963. top:235px;
  3964. width:60px;
  3965. height:30px;
  3966. display:flex;
  3967. transition:none;
  3968. transform-origin:50% 50%;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:12px;
  3973. }
  3974. #u42231 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:2px 2px 2px 2px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u42231_text {
  3982. border-width:0px;
  3983. word-wrap:break-word;
  3984. text-transform:none;
  3985. }
  3986. #u42232 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:0px;
  3992. height:0px;
  3993. }
  3994. #u42233_div {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:375px;
  4000. height:180px;
  4001. background:inherit;
  4002. background-color:rgba(255, 255, 255, 1);
  4003. border-left:0px;
  4004. border-top:0px;
  4005. border-right:0px;
  4006. border-radius:0px;
  4007. border-bottom-right-radius:0px;
  4008. border-bottom-left-radius:0px;
  4009. filter:drop-shadow(none);
  4010. transition:none;
  4011. }
  4012. #u42233 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:481px;
  4016. top:498px;
  4017. width:375px;
  4018. height:180px;
  4019. display:flex;
  4020. transition:none;
  4021. transform-origin:50% 50%;
  4022. }
  4023. #u42233 .text {
  4024. position:absolute;
  4025. align-self:center;
  4026. padding:2px 2px 2px 2px;
  4027. box-sizing:border-box;
  4028. width:100%;
  4029. }
  4030. #u42233_text {
  4031. border-width:0px;
  4032. word-wrap:break-word;
  4033. text-transform:none;
  4034. visibility:hidden;
  4035. }
  4036. #u42234_div {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:0px;
  4041. width:64px;
  4042. height:30px;
  4043. background:inherit;
  4044. background-color:rgba(255, 255, 255, 0);
  4045. border-left:0px;
  4046. border-top:0px;
  4047. border-right:0px;
  4048. border-radius:0px;
  4049. border-bottom-right-radius:0px;
  4050. border-bottom-left-radius:0px;
  4051. filter:drop-shadow(none);
  4052. transition:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:14px;
  4057. line-height:30px;
  4058. }
  4059. #u42234 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:501px;
  4063. top:508px;
  4064. width:64px;
  4065. height:30px;
  4066. display:flex;
  4067. transition:none;
  4068. transform-origin:50% 50%;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:14px;
  4073. line-height:30px;
  4074. }
  4075. #u42234 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:0px 0px 0px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u42234_text {
  4083. border-width:0px;
  4084. white-space:nowrap;
  4085. text-transform:none;
  4086. }
  4087. #u42235_div {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:345px;
  4093. height:30px;
  4094. background:inherit;
  4095. background-color:rgba(255, 255, 255, 0);
  4096. border-left:0px;
  4097. border-top:0px;
  4098. border-right:0px;
  4099. border-radius:0px;
  4100. border-bottom-right-radius:0px;
  4101. border-bottom-left-radius:0px;
  4102. filter:drop-shadow(none);
  4103. transition:none;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:14px;
  4108. color:#AAAAAA;
  4109. line-height:30px;
  4110. }
  4111. #u42235 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:506px;
  4115. top:538px;
  4116. width:345px;
  4117. height:30px;
  4118. display:flex;
  4119. transition:none;
  4120. transform-origin:50% 50%;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:14px;
  4125. color:#AAAAAA;
  4126. line-height:30px;
  4127. }
  4128. #u42235 .text {
  4129. position:absolute;
  4130. align-self:flex-start;
  4131. padding:0px 0px 0px 0px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u42235_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. }
  4140. #u42236_div {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:60px;
  4146. height:60px;
  4147. background:inherit;
  4148. background-color:rgba(255, 255, 255, 1);
  4149. box-sizing:border-box;
  4150. border-width:1px;
  4151. border-style:solid;
  4152. border-color:rgba(170, 170, 170, 1);
  4153. border-radius:4px;
  4154. filter:drop-shadow(none);
  4155. transition:none;
  4156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4157. font-weight:400;
  4158. font-style:normal;
  4159. font-size:18px;
  4160. }
  4161. #u42236 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:501px;
  4165. top:598px;
  4166. width:60px;
  4167. height:60px;
  4168. display:flex;
  4169. transition:none;
  4170. transform-origin:50% 50%;
  4171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4172. font-weight:400;
  4173. font-style:normal;
  4174. font-size:18px;
  4175. }
  4176. #u42236 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 2px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u42236_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. }
  4188. #u42237_div {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:375px;
  4194. height:50px;
  4195. background:inherit;
  4196. background-color:rgba(255, 255, 255, 1);
  4197. border-left:0px;
  4198. border-top:0px;
  4199. border-right:0px;
  4200. border-radius:0px;
  4201. border-bottom-right-radius:0px;
  4202. border-bottom-left-radius:0px;
  4203. filter:drop-shadow(none);
  4204. transition:none;
  4205. }
  4206. #u42237 {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:481px;
  4210. top:165px;
  4211. width:375px;
  4212. height:50px;
  4213. display:flex;
  4214. transition:none;
  4215. transform-origin:50% 50%;
  4216. }
  4217. #u42237 .text {
  4218. position:absolute;
  4219. align-self:center;
  4220. padding:2px 2px 2px 2px;
  4221. box-sizing:border-box;
  4222. width:100%;
  4223. }
  4224. #u42237_text {
  4225. border-width:0px;
  4226. word-wrap:break-word;
  4227. text-transform:none;
  4228. visibility:hidden;
  4229. }
  4230. #u42238_div {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:64px;
  4236. height:30px;
  4237. background:inherit;
  4238. background-color:rgba(255, 255, 255, 0);
  4239. border-left:0px;
  4240. border-top:0px;
  4241. border-right:0px;
  4242. border-radius:0px;
  4243. border-bottom-right-radius:0px;
  4244. border-bottom-left-radius:0px;
  4245. filter:drop-shadow(none);
  4246. transition:none;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:14px;
  4251. line-height:30px;
  4252. }
  4253. #u42238 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:501px;
  4257. top:175px;
  4258. width:64px;
  4259. height:30px;
  4260. display:flex;
  4261. transition:none;
  4262. transform-origin:50% 50%;
  4263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4264. font-weight:400;
  4265. font-style:normal;
  4266. font-size:14px;
  4267. line-height:30px;
  4268. }
  4269. #u42238 .text {
  4270. position:absolute;
  4271. align-self:center;
  4272. padding:0px 0px 0px 0px;
  4273. box-sizing:border-box;
  4274. width:100%;
  4275. }
  4276. #u42238_text {
  4277. border-width:0px;
  4278. white-space:nowrap;
  4279. text-transform:none;
  4280. }
  4281. #u42239 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:0px;
  4287. height:0px;
  4288. }
  4289. #u42240_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:8px;
  4295. height:8px;
  4296. background:inherit;
  4297. background-color:rgba(255, 255, 255, 0);
  4298. box-sizing:border-box;
  4299. border-width:1px;
  4300. border-style:solid;
  4301. border-color:rgba(127, 127, 127, 1);
  4302. border-right:0px;
  4303. border-bottom:0px;
  4304. border-radius:0px;
  4305. border-top-right-radius:0px;
  4306. border-bottom-left-radius:0px;
  4307. filter:drop-shadow(none);
  4308. transition:none;
  4309. }
  4310. #u42240 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:831px;
  4314. top:186px;
  4315. width:8px;
  4316. height:8px;
  4317. display:flex;
  4318. -webkit-transform:rotate(135deg);
  4319. -moz-transform:rotate(135deg);
  4320. -ms-transform:rotate(135deg);
  4321. transform:rotate(135deg);
  4322. transition:none;
  4323. transform-origin:50% 50%;
  4324. }
  4325. #u42240 .text {
  4326. position:absolute;
  4327. align-self:center;
  4328. padding:2px 2px 2px 2px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u42240_text {
  4333. border-width:0px;
  4334. word-wrap:break-word;
  4335. text-transform:none;
  4336. visibility:hidden;
  4337. }
  4338. #u42241_div {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:43px;
  4344. height:30px;
  4345. background:inherit;
  4346. background-color:rgba(255, 255, 255, 0);
  4347. border-left:0px;
  4348. border-top:0px;
  4349. border-right:0px;
  4350. border-radius:0px;
  4351. border-bottom-right-radius:0px;
  4352. border-bottom-left-radius:0px;
  4353. filter:drop-shadow(none);
  4354. transition:none;
  4355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:14px;
  4359. color:#AAAAAA;
  4360. text-align:right;
  4361. line-height:30px;
  4362. }
  4363. #u42241 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:781px;
  4367. top:175px;
  4368. width:43px;
  4369. height:30px;
  4370. display:flex;
  4371. transition:none;
  4372. transform-origin:50% 50%;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:14px;
  4377. color:#AAAAAA;
  4378. text-align:right;
  4379. line-height:30px;
  4380. }
  4381. #u42241 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:0px 0px 0px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u42241_text {
  4389. border-width:0px;
  4390. white-space:nowrap;
  4391. text-transform:none;
  4392. }
  4393. #u42242_div {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:309px;
  4399. height:60px;
  4400. background:inherit;
  4401. background-color:rgba(255, 255, 255, 0);
  4402. border-left:0px;
  4403. border-top:0px;
  4404. border-right:0px;
  4405. border-radius:0px;
  4406. border-bottom-right-radius:0px;
  4407. border-bottom-left-radius:0px;
  4408. filter:drop-shadow(none);
  4409. transition:none;
  4410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4411. font-weight:400;
  4412. font-style:normal;
  4413. font-size:14px;
  4414. color:#D9001B;
  4415. }
  4416. #u42242 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:556px;
  4420. top:314px;
  4421. width:309px;
  4422. height:60px;
  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. color:#D9001B;
  4431. }
  4432. #u42242 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:0px 0px 0px 0px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u42242_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. }
  4444. #u42243 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:0px;
  4450. height:0px;
  4451. }
  4452. #u42244_div {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:8px;
  4458. height:8px;
  4459. background:inherit;
  4460. background-color:rgba(255, 255, 255, 0);
  4461. box-sizing:border-box;
  4462. border-width:1px;
  4463. border-style:solid;
  4464. border-color:rgba(127, 127, 127, 1);
  4465. border-right:0px;
  4466. border-bottom:0px;
  4467. border-radius:0px;
  4468. border-top-right-radius:0px;
  4469. border-bottom-left-radius:0px;
  4470. filter:drop-shadow(none);
  4471. transition:none;
  4472. }
  4473. #u42244 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:831px;
  4477. top:297px;
  4478. width:8px;
  4479. height:8px;
  4480. display:flex;
  4481. -webkit-transform:rotate(135deg);
  4482. -moz-transform:rotate(135deg);
  4483. -ms-transform:rotate(135deg);
  4484. transform:rotate(135deg);
  4485. transition:none;
  4486. transform-origin:50% 50%;
  4487. }
  4488. #u42244 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:2px 2px 2px 2px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u42244_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }
  4501. #u42245_div {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:66px;
  4507. height:30px;
  4508. background:inherit;
  4509. background-color:rgba(255, 255, 255, 0);
  4510. border-left:0px;
  4511. border-top:0px;
  4512. border-right:0px;
  4513. border-radius:0px;
  4514. border-bottom-right-radius:0px;
  4515. border-bottom-left-radius:0px;
  4516. filter:drop-shadow(none);
  4517. transition:none;
  4518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4519. font-weight:400;
  4520. font-style:normal;
  4521. font-size:14px;
  4522. text-align:right;
  4523. line-height:30px;
  4524. }
  4525. #u42245 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:763px;
  4529. top:286px;
  4530. width:66px;
  4531. height:30px;
  4532. display:flex;
  4533. transition:none;
  4534. transform-origin:50% 50%;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:14px;
  4539. text-align:right;
  4540. line-height:30px;
  4541. }
  4542. #u42245 .text {
  4543. position:absolute;
  4544. align-self:center;
  4545. padding:0px 0px 0px 0px;
  4546. box-sizing:border-box;
  4547. width:100%;
  4548. }
  4549. #u42245_text {
  4550. border-width:0px;
  4551. white-space:nowrap;
  4552. text-transform:none;
  4553. }
  4554. #u42246_div {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:295px;
  4560. height:20px;
  4561. background:inherit;
  4562. background-color:rgba(255, 255, 255, 0);
  4563. border-radius:0px;
  4564. filter:drop-shadow(none);
  4565. transition:none;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:14px;
  4570. color:#D9001B;
  4571. }
  4572. #u42246 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:94px;
  4576. top:316px;
  4577. width:295px;
  4578. height:20px;
  4579. display:flex;
  4580. transition:none;
  4581. transform-origin:50% 50%;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:14px;
  4586. color:#D9001B;
  4587. }
  4588. #u42246 .text {
  4589. position:absolute;
  4590. align-self:flex-start;
  4591. padding:0px 0px 0px 0px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u42246_text {
  4596. border-width:0px;
  4597. white-space:nowrap;
  4598. text-transform:none;
  4599. }
  4600. #u42247_div {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:300px;
  4606. height:40px;
  4607. background:inherit;
  4608. background-color:rgba(255, 255, 255, 0);
  4609. border-radius:0px;
  4610. filter:drop-shadow(none);
  4611. transition:none;
  4612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:14px;
  4616. color:#D9001B;
  4617. }
  4618. #u42247 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:104px;
  4622. top:474px;
  4623. width:300px;
  4624. height:40px;
  4625. display:flex;
  4626. transition:none;
  4627. transform-origin:50% 50%;
  4628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. font-size:14px;
  4632. color:#D9001B;
  4633. }
  4634. #u42247 .text {
  4635. position:absolute;
  4636. align-self:flex-start;
  4637. padding:0px 0px 0px 0px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u42247_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. }
  4646. #u42248 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:0px;
  4652. height:0px;
  4653. }
  4654. #u42249_div {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:375px;
  4660. height:60px;
  4661. background:inherit;
  4662. background-color:rgba(24, 144, 255, 1);
  4663. border-radius:0px;
  4664. filter:drop-shadow(none);
  4665. transition:none;
  4666. }
  4667. #u42249 {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:29px;
  4671. top:105px;
  4672. width:375px;
  4673. height:60px;
  4674. display:flex;
  4675. transition:none;
  4676. transform-origin:50% 50%;
  4677. }
  4678. #u42249 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:2px 2px 2px 2px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u42249_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u42250_div {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:109px;
  4697. height:25px;
  4698. background:inherit;
  4699. background-color:rgba(255, 255, 255, 0);
  4700. border-radius:0px;
  4701. filter:drop-shadow(none);
  4702. transition:none;
  4703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:18px;
  4707. color:#FFFFFF;
  4708. }
  4709. #u42250 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:49px;
  4713. top:123px;
  4714. width:109px;
  4715. height:25px;
  4716. display:flex;
  4717. transition:none;
  4718. transform-origin:50% 50%;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:18px;
  4723. color:#FFFFFF;
  4724. }
  4725. #u42250 .text {
  4726. position:absolute;
  4727. align-self:flex-start;
  4728. padding:0px 0px 0px 0px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u42250_text {
  4733. border-width:0px;
  4734. white-space:nowrap;
  4735. text-transform:none;
  4736. }
  4737. #u42251 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:378px;
  4741. top:131px;
  4742. width:11px;
  4743. height:8px;
  4744. display:flex;
  4745. transition:none;
  4746. }
  4747. #u42251 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 2px 2px 2px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u42251_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:11px;
  4760. height:8px;
  4761. }
  4762. #u42251_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. visibility:hidden;
  4767. }
  4768. #u42252 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:0px;
  4774. height:0px;
  4775. }
  4776. #u42253_div {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:375px;
  4782. height:60px;
  4783. background:inherit;
  4784. background-color:rgba(24, 144, 255, 1);
  4785. border-radius:0px;
  4786. filter:drop-shadow(none);
  4787. transition:none;
  4788. }
  4789. #u42253 {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:481px;
  4793. top:105px;
  4794. width:375px;
  4795. height:60px;
  4796. display:flex;
  4797. transition:none;
  4798. transform-origin:50% 50%;
  4799. }
  4800. #u42253 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 2px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u42253_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. visibility:hidden;
  4812. }
  4813. #u42254_div {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:109px;
  4819. height:25px;
  4820. background:inherit;
  4821. background-color:rgba(255, 255, 255, 0);
  4822. border-radius:0px;
  4823. filter:drop-shadow(none);
  4824. transition:none;
  4825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:18px;
  4829. color:#FFFFFF;
  4830. }
  4831. #u42254 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:501px;
  4835. top:123px;
  4836. width:109px;
  4837. height:25px;
  4838. display:flex;
  4839. transition:none;
  4840. transform-origin:50% 50%;
  4841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4842. font-weight:400;
  4843. font-style:normal;
  4844. font-size:18px;
  4845. color:#FFFFFF;
  4846. }
  4847. #u42254 .text {
  4848. position:absolute;
  4849. align-self:flex-start;
  4850. padding:0px 0px 0px 0px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u42254_text {
  4855. border-width:0px;
  4856. white-space:nowrap;
  4857. text-transform:none;
  4858. }
  4859. #u42255 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:830px;
  4863. top:131px;
  4864. width:11px;
  4865. height:8px;
  4866. display:flex;
  4867. transition:none;
  4868. }
  4869. #u42255 .text {
  4870. position:absolute;
  4871. align-self:center;
  4872. padding:2px 2px 2px 2px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u42255_img {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:11px;
  4882. height:8px;
  4883. }
  4884. #u42255_text {
  4885. border-width:0px;
  4886. word-wrap:break-word;
  4887. text-transform:none;
  4888. visibility:hidden;
  4889. }
  4890. #u42256 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:0px;
  4896. height:0px;
  4897. }
  4898. #u42257 {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:922px;
  4902. top:0px;
  4903. width:433px;
  4904. height:865px;
  4905. }
  4906. #u42258 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:433px;
  4912. height:865px;
  4913. display:flex;
  4914. transition:none;
  4915. }
  4916. #u42258 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 2px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u42258_img {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:0px;
  4927. top:0px;
  4928. width:433px;
  4929. height:865px;
  4930. }
  4931. #u42258_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u42259_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:375px;
  4943. height:40px;
  4944. background:inherit;
  4945. background-color:rgba(255, 255, 255, 1);
  4946. box-sizing:border-box;
  4947. border-width:1px;
  4948. border-style:solid;
  4949. border-color:rgba(215, 215, 215, 1);
  4950. border-left:0px;
  4951. border-top:0px;
  4952. border-right:0px;
  4953. border-radius:0px;
  4954. border-bottom-right-radius:0px;
  4955. border-bottom-left-radius:0px;
  4956. filter:drop-shadow(none);
  4957. transition:none;
  4958. }
  4959. #u42259 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:29px;
  4963. top:67px;
  4964. width:375px;
  4965. height:40px;
  4966. display:flex;
  4967. transition:none;
  4968. transform-origin:50% 50%;
  4969. }
  4970. #u42259 .text {
  4971. position:absolute;
  4972. align-self:center;
  4973. padding:2px 2px 2px 2px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u42259_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. visibility:hidden;
  4982. }
  4983. #u42260 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:0px;
  4989. height:0px;
  4990. }
  4991. #u42261_div {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:0px;
  4995. top:0px;
  4996. width:88px;
  4997. height:32px;
  4998. background:inherit;
  4999. background-color:rgba(255, 255, 255, 1);
  5000. box-sizing:border-box;
  5001. border-width:1px;
  5002. border-style:solid;
  5003. border-color:rgba(242, 242, 242, 1);
  5004. border-radius:33px;
  5005. filter:drop-shadow(none);
  5006. transition:none;
  5007. }
  5008. #u42261 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:309px;
  5012. top:71px;
  5013. width:88px;
  5014. height:32px;
  5015. display:flex;
  5016. transition:none;
  5017. transform-origin:50% 50%;
  5018. }
  5019. #u42261 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:2px 2px 2px 2px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u42261_text {
  5027. border-width:0px;
  5028. word-wrap:break-word;
  5029. text-transform:none;
  5030. visibility:hidden;
  5031. }
  5032. #u42262 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:0px;
  5038. height:0px;
  5039. }
  5040. #u42263 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:372px;
  5044. top:78px;
  5045. width:18px;
  5046. height:18px;
  5047. display:flex;
  5048. transition:none;
  5049. }
  5050. #u42263 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:2px 2px 2px 2px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u42263_img {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:0px;
  5061. top:0px;
  5062. width:18px;
  5063. height:18px;
  5064. }
  5065. #u42263_text {
  5066. border-width:0px;
  5067. word-wrap:break-word;
  5068. text-transform:none;
  5069. visibility:hidden;
  5070. }
  5071. #u42264 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:378px;
  5075. top:84px;
  5076. width:6px;
  5077. height:6px;
  5078. display:flex;
  5079. transition:none;
  5080. }
  5081. #u42264 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:2px 2px 2px 2px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u42264_img {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:6px;
  5094. height:6px;
  5095. }
  5096. #u42264_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. visibility:hidden;
  5101. }
  5102. #u42265 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:0px;
  5108. height:0px;
  5109. }
  5110. #u42266 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:323px;
  5114. top:85px;
  5115. width:5px;
  5116. height:5px;
  5117. display:flex;
  5118. transition:none;
  5119. }
  5120. #u42266 .text {
  5121. position:absolute;
  5122. align-self:center;
  5123. padding:2px 2px 2px 2px;
  5124. box-sizing:border-box;
  5125. width:100%;
  5126. }
  5127. #u42266_img {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:0px;
  5131. top:0px;
  5132. width:5px;
  5133. height:5px;
  5134. }
  5135. #u42266_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u42267 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:339px;
  5145. top:85px;
  5146. width:5px;
  5147. height:5px;
  5148. display:flex;
  5149. transition:none;
  5150. }
  5151. #u42267 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 2px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u42267_img {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:5px;
  5164. height:5px;
  5165. }
  5166. #u42267_text {
  5167. border-width:0px;
  5168. word-wrap:break-word;
  5169. text-transform:none;
  5170. visibility:hidden;
  5171. }
  5172. #u42268 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:330px;
  5176. top:84px;
  5177. width:7px;
  5178. height:7px;
  5179. display:flex;
  5180. transition:none;
  5181. }
  5182. #u42268 .text {
  5183. position:absolute;
  5184. align-self:center;
  5185. padding:2px 2px 2px 2px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u42268_img {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:7px;
  5195. height:7px;
  5196. }
  5197. #u42268_text {
  5198. border-width:0px;
  5199. word-wrap:break-word;
  5200. text-transform:none;
  5201. visibility:hidden;
  5202. }
  5203. #u42269 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:347px;
  5207. top:87px;
  5208. width:18px;
  5209. height:1px;
  5210. display:flex;
  5211. -webkit-transform:rotate(90deg);
  5212. -moz-transform:rotate(90deg);
  5213. -ms-transform:rotate(90deg);
  5214. transform:rotate(90deg);
  5215. transition:none;
  5216. }
  5217. #u42269 .text {
  5218. position:absolute;
  5219. align-self:center;
  5220. padding:2px 2px 2px 2px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u42269_img {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:19px;
  5230. height:2px;
  5231. }
  5232. #u42269_text {
  5233. border-width:0px;
  5234. word-wrap:break-word;
  5235. text-transform:none;
  5236. visibility:hidden;
  5237. }
  5238. #u42270 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:29px;
  5242. top:24px;
  5243. width:375px;
  5244. height:44px;
  5245. display:flex;
  5246. transition:none;
  5247. }
  5248. #u42270 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:2px 2px 2px 2px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u42270_img {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:375px;
  5261. height:44px;
  5262. }
  5263. #u42270_text {
  5264. border-width:0px;
  5265. word-wrap:break-word;
  5266. text-transform:none;
  5267. visibility:hidden;
  5268. }
  5269. #u42271_div {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:0px;
  5273. top:0px;
  5274. width:375px;
  5275. height:50px;
  5276. background:inherit;
  5277. background-color:rgba(255, 255, 255, 1);
  5278. box-sizing:border-box;
  5279. border-width:1px;
  5280. border-style:solid;
  5281. border-color:rgba(242, 242, 242, 1);
  5282. border-radius:26px;
  5283. border-top-left-radius:0px;
  5284. border-top-right-radius:0px;
  5285. filter:drop-shadow(none);
  5286. transition:none;
  5287. }
  5288. #u42271 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:29px;
  5292. top:788px;
  5293. width:375px;
  5294. height:50px;
  5295. display:flex;
  5296. transition:none;
  5297. transform-origin:50% 50%;
  5298. }
  5299. #u42271 .text {
  5300. position:absolute;
  5301. align-self:center;
  5302. padding:2px 2px 2px 2px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u42271_text {
  5307. border-width:0px;
  5308. word-wrap:break-word;
  5309. text-transform:none;
  5310. visibility:hidden;
  5311. }
  5312. #u42272 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:0px;
  5318. height:0px;
  5319. }
  5320. #u42273 {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:69px;
  5324. top:792px;
  5325. width:24px;
  5326. height:24px;
  5327. display:flex;
  5328. transition:none;
  5329. font-size:8px;
  5330. }
  5331. #u42273 .text {
  5332. position:absolute;
  5333. align-self:center;
  5334. padding:2px 2px 2px 2px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u42273_img {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:24px;
  5344. height:24px;
  5345. }
  5346. #u42273_text {
  5347. border-width:0px;
  5348. word-wrap:break-word;
  5349. text-transform:none;
  5350. }
  5351. #u42274_div {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:25px;
  5357. height:17px;
  5358. background:inherit;
  5359. background-color:rgba(255, 255, 255, 0);
  5360. border-radius:0px;
  5361. filter:drop-shadow(none);
  5362. transition:none;
  5363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:12px;
  5367. }
  5368. #u42274 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:69px;
  5372. top:817px;
  5373. width:25px;
  5374. height:17px;
  5375. display:flex;
  5376. transition:none;
  5377. transform-origin:50% 50%;
  5378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. font-size:12px;
  5382. }
  5383. #u42274 .text {
  5384. position:absolute;
  5385. align-self:flex-start;
  5386. padding:0px 0px 0px 0px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u42274_text {
  5391. border-width:0px;
  5392. white-space:nowrap;
  5393. text-transform:none;
  5394. }
  5395. #u42275 {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:0px;
  5401. height:0px;
  5402. }
  5403. #u42276 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:339px;
  5407. top:794px;
  5408. width:24px;
  5409. height:24px;
  5410. display:flex;
  5411. transition:none;
  5412. font-size:8px;
  5413. }
  5414. #u42276 .text {
  5415. position:absolute;
  5416. align-self:center;
  5417. padding:2px 2px 2px 2px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u42276_img {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:24px;
  5427. height:24px;
  5428. }
  5429. #u42276_text {
  5430. border-width:0px;
  5431. word-wrap:break-word;
  5432. text-transform:none;
  5433. }
  5434. #u42277_div {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:0px;
  5439. width:25px;
  5440. height:17px;
  5441. background:inherit;
  5442. background-color:rgba(255, 255, 255, 0);
  5443. border-radius:0px;
  5444. filter:drop-shadow(none);
  5445. transition:none;
  5446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:12px;
  5450. }
  5451. #u42277 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:339px;
  5455. top:819px;
  5456. width:25px;
  5457. height:17px;
  5458. display:flex;
  5459. transition:none;
  5460. transform-origin:50% 50%;
  5461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. font-size:12px;
  5465. }
  5466. #u42277 .text {
  5467. position:absolute;
  5468. align-self:flex-start;
  5469. padding:0px 0px 0px 0px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u42277_text {
  5474. border-width:0px;
  5475. white-space:nowrap;
  5476. text-transform:none;
  5477. }
  5478. #u42278_div {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:375px;
  5484. height:681px;
  5485. background:inherit;
  5486. background-color:rgba(242, 242, 242, 0.4627450980392157);
  5487. border-radius:0px;
  5488. filter:drop-shadow(none);
  5489. transition:none;
  5490. }
  5491. #u42278 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:29px;
  5495. top:107px;
  5496. width:375px;
  5497. height:681px;
  5498. display:flex;
  5499. transition:none;
  5500. transform-origin:50% 50%;
  5501. }
  5502. #u42278 .text {
  5503. position:absolute;
  5504. align-self:center;
  5505. padding:2px 2px 2px 2px;
  5506. box-sizing:border-box;
  5507. width:100%;
  5508. }
  5509. #u42278_text {
  5510. border-width:0px;
  5511. word-wrap:break-word;
  5512. text-transform:none;
  5513. visibility:hidden;
  5514. }
  5515. #u42279 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:0px;
  5519. top:0px;
  5520. width:0px;
  5521. height:0px;
  5522. }
  5523. #u42280 {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:251px;
  5527. top:792px;
  5528. width:24px;
  5529. height:24px;
  5530. display:flex;
  5531. transition:none;
  5532. font-size:8px;
  5533. }
  5534. #u42280 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:2px 2px 2px 2px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u42280_img {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:24px;
  5547. height:24px;
  5548. }
  5549. #u42280_text {
  5550. border-width:0px;
  5551. word-wrap:break-word;
  5552. text-transform:none;
  5553. }
  5554. #u42281_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:37px;
  5560. height:17px;
  5561. background:inherit;
  5562. background-color:rgba(255, 255, 255, 0);
  5563. border-radius:0px;
  5564. filter:drop-shadow(none);
  5565. transition:none;
  5566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5567. font-weight:400;
  5568. font-style:normal;
  5569. font-size:12px;
  5570. }
  5571. #u42281 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:245px;
  5575. top:817px;
  5576. width:37px;
  5577. height:17px;
  5578. display:flex;
  5579. transition:none;
  5580. transform-origin:50% 50%;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:12px;
  5585. }
  5586. #u42281 .text {
  5587. position:absolute;
  5588. align-self:flex-start;
  5589. padding:0px 0px 0px 0px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u42281_text {
  5594. border-width:0px;
  5595. white-space:nowrap;
  5596. text-transform:none;
  5597. }
  5598. #u42282 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:0px;
  5604. height:0px;
  5605. }
  5606. #u42283 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:157px;
  5610. top:792px;
  5611. width:24px;
  5612. height:24px;
  5613. display:flex;
  5614. transition:none;
  5615. font-size:8px;
  5616. }
  5617. #u42283 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 2px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u42283_img {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:24px;
  5630. height:24px;
  5631. }
  5632. #u42283_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. }
  5637. #u42284_div {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:37px;
  5643. height:17px;
  5644. background:inherit;
  5645. background-color:rgba(255, 255, 255, 0);
  5646. border-radius:0px;
  5647. filter:drop-shadow(none);
  5648. transition:none;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:12px;
  5653. }
  5654. #u42284 {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:151px;
  5658. top:817px;
  5659. width:37px;
  5660. height:17px;
  5661. display:flex;
  5662. transition:none;
  5663. transform-origin:50% 50%;
  5664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:12px;
  5668. }
  5669. #u42284 .text {
  5670. position:absolute;
  5671. align-self:flex-start;
  5672. padding:0px 0px 0px 0px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u42284_text {
  5677. border-width:0px;
  5678. white-space:nowrap;
  5679. text-transform:none;
  5680. }
  5681. #u42285_div {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:375px;
  5687. height:775px;
  5688. background:inherit;
  5689. background-color:rgba(255, 255, 255, 1);
  5690. border-top:0px;
  5691. border-radius:28px;
  5692. border-top-left-radius:0px;
  5693. border-top-right-radius:0px;
  5694. filter:drop-shadow(none);
  5695. transition:none;
  5696. }
  5697. #u42285 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:951px;
  5701. top:65px;
  5702. width:375px;
  5703. height:775px;
  5704. display:flex;
  5705. transition:none;
  5706. transform-origin:50% 50%;
  5707. }
  5708. #u42285 .text {
  5709. position:absolute;
  5710. align-self:center;
  5711. padding:2px 2px 2px 2px;
  5712. box-sizing:border-box;
  5713. width:100%;
  5714. }
  5715. #u42285_text {
  5716. border-width:0px;
  5717. word-wrap:break-word;
  5718. text-transform:none;
  5719. visibility:hidden;
  5720. }
  5721. #u42286_div {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:97px;
  5727. height:30px;
  5728. background:inherit;
  5729. background-color:rgba(255, 255, 255, 0);
  5730. border-left:0px;
  5731. border-top:0px;
  5732. border-right:0px;
  5733. border-radius:0px;
  5734. border-bottom-right-radius:0px;
  5735. border-bottom-left-radius:0px;
  5736. filter:drop-shadow(none);
  5737. transition:none;
  5738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. line-height:30px;
  5742. }
  5743. #u42286 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:1090px;
  5747. top:226px;
  5748. width:97px;
  5749. height:30px;
  5750. display:flex;
  5751. transition:none;
  5752. transform-origin:50% 50%;
  5753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. line-height:30px;
  5757. }
  5758. #u42286 .text {
  5759. position:absolute;
  5760. align-self:center;
  5761. padding:0px 0px 0px 0px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u42286_text {
  5766. border-width:0px;
  5767. white-space:nowrap;
  5768. text-transform:none;
  5769. }
  5770. #u42287_div {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:0px;
  5774. top:0px;
  5775. width:126px;
  5776. height:40px;
  5777. background:inherit;
  5778. background-color:rgba(255, 255, 255, 1);
  5779. box-sizing:border-box;
  5780. border-width:1px;
  5781. border-style:solid;
  5782. border-color:rgba(121, 121, 121, 1);
  5783. border-radius:63px;
  5784. filter:drop-shadow(none);
  5785. transition:none;
  5786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5787. font-weight:400;
  5788. font-style:normal;
  5789. font-size:14px;
  5790. }
  5791. #u42287 {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:1149px;
  5795. top:324px;
  5796. width:126px;
  5797. height:40px;
  5798. display:flex;
  5799. transition:none;
  5800. transform-origin:50% 50%;
  5801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:14px;
  5805. }
  5806. #u42287 .text {
  5807. position:absolute;
  5808. align-self:center;
  5809. padding:2px 2px 2px 2px;
  5810. box-sizing:border-box;
  5811. width:100%;
  5812. }
  5813. #u42287_text {
  5814. border-width:0px;
  5815. word-wrap:break-word;
  5816. text-transform:none;
  5817. }
  5818. #u42288 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:1097px;
  5822. top:127px;
  5823. width:83px;
  5824. height:83px;
  5825. display:flex;
  5826. transition:none;
  5827. }
  5828. #u42288 .text {
  5829. position:absolute;
  5830. align-self:center;
  5831. padding:2px 2px 2px 2px;
  5832. box-sizing:border-box;
  5833. width:100%;
  5834. }
  5835. #u42288_img {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:83px;
  5841. height:83px;
  5842. }
  5843. #u42288_text {
  5844. border-width:0px;
  5845. word-wrap:break-word;
  5846. text-transform:none;
  5847. visibility:hidden;
  5848. }
  5849. #u42289_div {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:126px;
  5855. height:40px;
  5856. background:inherit;
  5857. background-color:rgba(255, 255, 255, 1);
  5858. box-sizing:border-box;
  5859. border-width:1px;
  5860. border-style:solid;
  5861. border-color:rgba(121, 121, 121, 1);
  5862. border-radius:63px;
  5863. filter:drop-shadow(none);
  5864. transition:none;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:14px;
  5869. }
  5870. #u42289 {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:1003px;
  5874. top:324px;
  5875. width:126px;
  5876. height:40px;
  5877. display:flex;
  5878. transition:none;
  5879. transform-origin:50% 50%;
  5880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5881. font-weight:400;
  5882. font-style:normal;
  5883. font-size:14px;
  5884. }
  5885. #u42289 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 2px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u42289_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. }
  5897. #u42290_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:30px;
  5903. height:30px;
  5904. background:inherit;
  5905. background-color:rgba(255, 255, 255, 0);
  5906. border-left:0px;
  5907. border-top:0px;
  5908. border-right:0px;
  5909. border-radius:0px;
  5910. border-bottom-right-radius:0px;
  5911. border-bottom-left-radius:0px;
  5912. filter:drop-shadow(none);
  5913. transition:none;
  5914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5915. font-weight:400;
  5916. font-style:normal;
  5917. font-size:18px;
  5918. text-align:center;
  5919. line-height:30px;
  5920. }
  5921. #u42290 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:961px;
  5925. top:75px;
  5926. width:30px;
  5927. height:30px;
  5928. display:flex;
  5929. transition:none;
  5930. transform-origin:50% 50%;
  5931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:18px;
  5935. text-align:center;
  5936. line-height:30px;
  5937. }
  5938. #u42290 .text {
  5939. position:absolute;
  5940. align-self:center;
  5941. padding:0px 0px 0px 0px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u42290_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. }
  5950. #u42291 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:0px;
  5955. width:0px;
  5956. height:0px;
  5957. }
  5958. #u42292 {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:963px;
  5962. top:402px;
  5963. width:350px;
  5964. height:40px;
  5965. display:flex;
  5966. transition:none;
  5967. }
  5968. #u42292 .text {
  5969. position:absolute;
  5970. align-self:center;
  5971. padding:2px 2px 2px 2px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u42292_img {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:0px;
  5979. top:0px;
  5980. width:350px;
  5981. height:40px;
  5982. }
  5983. #u42292_text {
  5984. border-width:0px;
  5985. word-wrap:break-word;
  5986. text-transform:none;
  5987. visibility:hidden;
  5988. }
  5989. #u42293 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:0px;
  5995. height:0px;
  5996. }
  5997. #u42294_div {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:221px;
  6003. height:30px;
  6004. background:inherit;
  6005. background-color:rgba(255, 255, 255, 0);
  6006. border-left:0px;
  6007. border-top:0px;
  6008. border-right:0px;
  6009. border-radius:0px;
  6010. border-bottom-right-radius:0px;
  6011. border-bottom-left-radius:0px;
  6012. filter:drop-shadow(none);
  6013. transition:none;
  6014. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6015. font-style:normal;
  6016. color:#FFFFFF;
  6017. text-align:center;
  6018. line-height:30px;
  6019. }
  6020. #u42294 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:1043px;
  6024. top:407px;
  6025. width:221px;
  6026. height:30px;
  6027. display:flex;
  6028. transition:none;
  6029. transform-origin:50% 50%;
  6030. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6031. font-style:normal;
  6032. color:#FFFFFF;
  6033. text-align:center;
  6034. line-height:30px;
  6035. }
  6036. #u42294 .text {
  6037. position:absolute;
  6038. align-self:center;
  6039. padding:0px 0px 0px 0px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u42294_text {
  6044. border-width:0px;
  6045. white-space:nowrap;
  6046. text-transform:none;
  6047. }
  6048. #u42295 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:1013px;
  6052. top:409px;
  6053. width:26px;
  6054. height:26px;
  6055. display:flex;
  6056. transition:none;
  6057. }
  6058. #u42295 .text {
  6059. position:absolute;
  6060. align-self:center;
  6061. padding:2px 2px 2px 2px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u42295_img {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:26px;
  6071. height:26px;
  6072. }
  6073. #u42295_text {
  6074. border-width:0px;
  6075. word-wrap:break-word;
  6076. text-transform:none;
  6077. }
  6078. #u42296_div {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:0px;
  6082. top:0px;
  6083. width:197px;
  6084. height:30px;
  6085. background:inherit;
  6086. background-color:rgba(255, 255, 255, 0);
  6087. border-left:0px;
  6088. border-top:0px;
  6089. border-right:0px;
  6090. border-radius:0px;
  6091. border-bottom-right-radius:0px;
  6092. border-bottom-left-radius:0px;
  6093. filter:drop-shadow(none);
  6094. transition:none;
  6095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:14px;
  6099. line-height:30px;
  6100. }
  6101. #u42296 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:1040px;
  6105. top:271px;
  6106. width:197px;
  6107. height:30px;
  6108. display:flex;
  6109. transition:none;
  6110. transform-origin:50% 50%;
  6111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6112. font-weight:400;
  6113. font-style:normal;
  6114. font-size:14px;
  6115. line-height:30px;
  6116. }
  6117. #u42296 .text {
  6118. position:absolute;
  6119. align-self:center;
  6120. padding:0px 0px 0px 0px;
  6121. box-sizing:border-box;
  6122. width:100%;
  6123. }
  6124. #u42296_text {
  6125. border-width:0px;
  6126. white-space:nowrap;
  6127. text-transform:none;
  6128. }
  6129. #u42297_div {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:0px;
  6133. top:0px;
  6134. width:363px;
  6135. height:60px;
  6136. background:inherit;
  6137. background-color:rgba(255, 255, 255, 0);
  6138. border-left:0px;
  6139. border-top:0px;
  6140. border-right:0px;
  6141. border-radius:0px;
  6142. border-bottom-right-radius:0px;
  6143. border-bottom-left-radius:0px;
  6144. filter:drop-shadow(none);
  6145. transition:none;
  6146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6147. font-weight:400;
  6148. font-style:normal;
  6149. font-size:14px;
  6150. color:#D9001B;
  6151. line-height:30px;
  6152. }
  6153. #u42297 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:963px;
  6157. top:471px;
  6158. width:363px;
  6159. height:60px;
  6160. display:flex;
  6161. transition:none;
  6162. transform-origin:50% 50%;
  6163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6164. font-weight:400;
  6165. font-style:normal;
  6166. font-size:14px;
  6167. color:#D9001B;
  6168. line-height:30px;
  6169. }
  6170. #u42297 .text {
  6171. position:absolute;
  6172. align-self:flex-start;
  6173. padding:0px 0px 0px 0px;
  6174. box-sizing:border-box;
  6175. width:100%;
  6176. }
  6177. #u42297_text {
  6178. border-width:0px;
  6179. word-wrap:break-word;
  6180. text-transform:none;
  6181. }
  6182. #u42298 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:0px;
  6188. height:0px;
  6189. }
  6190. #u42299_div {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:342px;
  6196. height:149px;
  6197. background:inherit;
  6198. background-color:rgba(255, 255, 255, 1);
  6199. border-radius:10px;
  6200. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  6201. transition:none;
  6202. }
  6203. #u42299 {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:580px;
  6207. top:598px;
  6208. width:342px;
  6209. height:149px;
  6210. display:flex;
  6211. transition:none;
  6212. transform-origin:50% 50%;
  6213. }
  6214. #u42299 .text {
  6215. position:absolute;
  6216. align-self:center;
  6217. padding:2px 2px 2px 2px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u42299_text {
  6222. border-width:0px;
  6223. word-wrap:break-word;
  6224. text-transform:none;
  6225. visibility:hidden;
  6226. }
  6227. #u42300_div {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:127px;
  6233. height:30px;
  6234. background:inherit;
  6235. background-color:rgba(255, 255, 255, 0);
  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. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6245. font-weight:500;
  6246. font-style:normal;
  6247. font-size:18px;
  6248. text-align:center;
  6249. line-height:30px;
  6250. }
  6251. #u42300 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:688px;
  6255. top:622px;
  6256. width:127px;
  6257. height:30px;
  6258. display:flex;
  6259. transition:none;
  6260. transform-origin:50% 50%;
  6261. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6262. font-weight:500;
  6263. font-style:normal;
  6264. font-size:18px;
  6265. text-align:center;
  6266. line-height:30px;
  6267. }
  6268. #u42300 .text {
  6269. position:absolute;
  6270. align-self:flex-start;
  6271. padding:0px 0px 0px 0px;
  6272. box-sizing:border-box;
  6273. width:100%;
  6274. }
  6275. #u42300_text {
  6276. border-width:0px;
  6277. white-space:nowrap;
  6278. text-transform:none;
  6279. }
  6280. #u42301 {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:580px;
  6284. top:686px;
  6285. width:342px;
  6286. height:1px;
  6287. display:flex;
  6288. transition:none;
  6289. }
  6290. #u42301 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 2px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u42301_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:343px;
  6303. height:2px;
  6304. }
  6305. #u42301_text {
  6306. border-width:0px;
  6307. word-wrap:break-word;
  6308. text-transform:none;
  6309. visibility:hidden;
  6310. }
  6311. #u42302_div {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:0px;
  6315. top:0px;
  6316. width:37px;
  6317. height:30px;
  6318. background:inherit;
  6319. background-color:rgba(255, 255, 255, 0);
  6320. border-left:0px;
  6321. border-top:0px;
  6322. border-right:0px;
  6323. border-radius:0px;
  6324. border-bottom-right-radius:0px;
  6325. border-bottom-left-radius:0px;
  6326. filter:drop-shadow(none);
  6327. transition:none;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:18px;
  6332. color:#0089FE;
  6333. text-align:right;
  6334. line-height:30px;
  6335. }
  6336. #u42302 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:821px;
  6340. top:705px;
  6341. width:37px;
  6342. height:30px;
  6343. display:flex;
  6344. transition:none;
  6345. transform-origin:50% 50%;
  6346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:18px;
  6350. color:#0089FE;
  6351. text-align:right;
  6352. line-height:30px;
  6353. }
  6354. #u42302 .text {
  6355. position:absolute;
  6356. align-self:flex-start;
  6357. padding:0px 0px 0px 0px;
  6358. box-sizing:border-box;
  6359. width:100%;
  6360. }
  6361. #u42302_text {
  6362. border-width:0px;
  6363. white-space:nowrap;
  6364. text-transform:none;
  6365. }
  6366. #u42303_div {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:37px;
  6372. height:30px;
  6373. background:inherit;
  6374. background-color:rgba(255, 255, 255, 0);
  6375. border-left:0px;
  6376. border-top:0px;
  6377. border-right:0px;
  6378. border-radius:0px;
  6379. border-bottom-right-radius:0px;
  6380. border-bottom-left-radius:0px;
  6381. filter:drop-shadow(none);
  6382. transition:none;
  6383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. font-size:18px;
  6387. color:#0089FE;
  6388. text-align:right;
  6389. line-height:30px;
  6390. }
  6391. #u42303 {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:654px;
  6395. top:705px;
  6396. width:37px;
  6397. height:30px;
  6398. display:flex;
  6399. transition:none;
  6400. transform-origin:50% 50%;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:18px;
  6405. color:#0089FE;
  6406. text-align:right;
  6407. line-height:30px;
  6408. }
  6409. #u42303 .text {
  6410. position:absolute;
  6411. align-self:flex-start;
  6412. padding:0px 0px 0px 0px;
  6413. box-sizing:border-box;
  6414. width:100%;
  6415. }
  6416. #u42303_text {
  6417. border-width:0px;
  6418. white-space:nowrap;
  6419. text-transform:none;
  6420. }
  6421. #u42304 {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:751px;
  6425. top:687px;
  6426. width:1px;
  6427. height:60px;
  6428. display:flex;
  6429. transition:none;
  6430. }
  6431. #u42304 .text {
  6432. position:absolute;
  6433. align-self:center;
  6434. padding:2px 2px 2px 2px;
  6435. box-sizing:border-box;
  6436. width:100%;
  6437. }
  6438. #u42304_img {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:2px;
  6444. height:61px;
  6445. }
  6446. #u42304_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. visibility:hidden;
  6451. }