styles.css 124 KB

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