styles.css 113 KB

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