styles.css 133 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1839px;
  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. #u56474 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u56475 {
  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. #u56475 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u56475_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u56475_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u56476_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. #u56476 {
  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. #u56476 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u56476_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u56477 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u56478_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. #u56478 {
  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. #u56478 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u56478_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u56479 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u56480 {
  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. #u56480 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u56480_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u56480_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u56481 {
  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. #u56481 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u56481_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u56481_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u56482 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u56483 {
  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. #u56483 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u56483_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u56483_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u56484 {
  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. #u56484 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u56484_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u56484_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u56485 {
  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. #u56485 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u56485_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u56485_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u56486 {
  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. #u56486 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u56486_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u56486_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u56487 {
  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. #u56487 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u56487_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u56487_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u56488_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. #u56488 {
  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. #u56488 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u56488_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u56489 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u56490 {
  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. #u56490 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u56490_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u56490_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u56491_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. #u56491 {
  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. #u56491 .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. #u56491_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u56492 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u56493 {
  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. #u56493 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u56493_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u56493_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u56494_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. #u56494 {
  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. #u56494 .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. #u56494_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u56495_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. #u56495 {
  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. #u56495 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u56495_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u56496 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u56497 {
  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. #u56497 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u56497_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u56497_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u56498_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. #u56498 {
  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. #u56498 .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. #u56498_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u56499 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u56500 {
  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. #u56500 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u56500_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u56500_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u56501_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. #u56501 {
  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. #u56501 .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. #u56501_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u56502 {
  803. border-width:0px;
  804. position:absolute;
  805. left:29px;
  806. top:106px;
  807. width:375px;
  808. height:739px;
  809. display:flex;
  810. transition:none;
  811. }
  812. #u56502 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u56502_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:739px;
  826. }
  827. #u56502_text {
  828. border-width:0px;
  829. word-wrap:break-word;
  830. text-transform:none;
  831. visibility:hidden;
  832. }
  833. #u56503_div {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:375px;
  839. height:739px;
  840. background:inherit;
  841. background-color:rgba(255, 255, 255, 1);
  842. border-top:0px;
  843. border-radius:29px;
  844. border-top-left-radius:0px;
  845. border-top-right-radius:0px;
  846. filter:drop-shadow(none);
  847. transition:none;
  848. }
  849. #u56503 {
  850. border-width:0px;
  851. position:absolute;
  852. left:29px;
  853. top:106px;
  854. width:375px;
  855. height:739px;
  856. display:flex;
  857. transition:none;
  858. transform-origin:50% 50%;
  859. }
  860. #u56503 .text {
  861. position:absolute;
  862. align-self:center;
  863. padding:2px 2px 2px 2px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u56503_text {
  868. border-width:0px;
  869. word-wrap:break-word;
  870. text-transform:none;
  871. visibility:hidden;
  872. }
  873. #u56504 {
  874. border-width:0px;
  875. position:absolute;
  876. left:40px;
  877. top:79px;
  878. width:11px;
  879. height:18px;
  880. display:flex;
  881. transition:none;
  882. }
  883. #u56504 .text {
  884. position:absolute;
  885. align-self:center;
  886. padding:2px 2px 2px 2px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u56504_img {
  891. border-width:0px;
  892. position:absolute;
  893. left:0px;
  894. top:0px;
  895. width:11px;
  896. height:18px;
  897. }
  898. #u56504_text {
  899. border-width:0px;
  900. word-wrap:break-word;
  901. text-transform:none;
  902. visibility:hidden;
  903. }
  904. #u56505_div {
  905. border-width:0px;
  906. position:absolute;
  907. left:0px;
  908. top:0px;
  909. width:97px;
  910. height:33px;
  911. background:inherit;
  912. background-color:rgba(255, 255, 255, 0);
  913. border-radius:0px;
  914. filter:drop-shadow(none);
  915. transition:none;
  916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  917. font-weight:500;
  918. font-style:normal;
  919. font-size:24px;
  920. }
  921. #u56505 {
  922. border-width:0px;
  923. position:absolute;
  924. left:50px;
  925. top:126px;
  926. width:97px;
  927. height:33px;
  928. display:flex;
  929. transition:none;
  930. transform-origin:50% 50%;
  931. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  932. font-weight:500;
  933. font-style:normal;
  934. font-size:24px;
  935. }
  936. #u56505 .text {
  937. position:absolute;
  938. align-self:flex-start;
  939. padding:0px 0px 0px 0px;
  940. box-sizing:border-box;
  941. width:100%;
  942. }
  943. #u56505_text {
  944. border-width:0px;
  945. white-space:nowrap;
  946. text-transform:none;
  947. }
  948. #u56506 {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:0px;
  954. height:0px;
  955. }
  956. #u56507_div {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:340px;
  962. height:50px;
  963. background:inherit;
  964. background-color:rgba(242, 242, 242, 0.45098039215686275);
  965. border-left:0px;
  966. border-top:0px;
  967. border-right:0px;
  968. border-radius:0px;
  969. border-bottom-right-radius:0px;
  970. border-bottom-left-radius:0px;
  971. filter:drop-shadow(none);
  972. transition:none;
  973. }
  974. #u56507 {
  975. border-width:0px;
  976. position:absolute;
  977. left:51px;
  978. top:228px;
  979. width:340px;
  980. height:50px;
  981. display:flex;
  982. transition:none;
  983. transform-origin:50% 50%;
  984. }
  985. #u56507 .text {
  986. position:absolute;
  987. align-self:center;
  988. padding:2px 2px 2px 2px;
  989. box-sizing:border-box;
  990. width:100%;
  991. }
  992. #u56507_text {
  993. border-width:0px;
  994. word-wrap:break-word;
  995. text-transform:none;
  996. visibility:hidden;
  997. }
  998. #u56508_input {
  999. position:absolute;
  1000. left:0px;
  1001. top:0px;
  1002. width:168px;
  1003. height:25px;
  1004. padding:2px 2px 2px 2px;
  1005. font-family:"ArialMT", "Arial", sans-serif;
  1006. font-weight:400;
  1007. font-style:normal;
  1008. font-size:14px;
  1009. letter-spacing:normal;
  1010. color:#000000;
  1011. vertical-align:none;
  1012. text-align:left;
  1013. text-transform:none;
  1014. background-color:transparent;
  1015. border-color:transparent;
  1016. }
  1017. #u56508_input.disabled {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:168px;
  1022. height:25px;
  1023. padding:2px 2px 2px 2px;
  1024. font-family:"ArialMT", "Arial", sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. letter-spacing:normal;
  1029. color:#000000;
  1030. vertical-align:none;
  1031. text-align:left;
  1032. text-transform:none;
  1033. background-color:transparent;
  1034. border-color:transparent;
  1035. }
  1036. #u56508_div {
  1037. border-width:0px;
  1038. position:absolute;
  1039. left:0px;
  1040. top:0px;
  1041. width:168px;
  1042. height:25px;
  1043. background:inherit;
  1044. background-color:rgba(242, 242, 242, 0);
  1045. border-radius:0px;
  1046. filter:drop-shadow(none);
  1047. transition:none;
  1048. font-size:14px;
  1049. }
  1050. #u56508 {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:64px;
  1054. top:241px;
  1055. width:168px;
  1056. height:25px;
  1057. display:flex;
  1058. transition:none;
  1059. transform-origin:50% 50%;
  1060. font-size:14px;
  1061. }
  1062. #u56508 .text {
  1063. position:absolute;
  1064. align-self:center;
  1065. padding:2px 2px 2px 2px;
  1066. box-sizing:border-box;
  1067. width:100%;
  1068. }
  1069. #u56508_div.disabled {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:168px;
  1075. height:25px;
  1076. background:inherit;
  1077. background-color:rgba(240, 240, 240, 1);
  1078. border-radius:0px;
  1079. filter:drop-shadow(none);
  1080. transition:none;
  1081. font-size:14px;
  1082. }
  1083. #u56508.disabled {
  1084. }
  1085. #u56509_div {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:315px;
  1091. height:40px;
  1092. background:inherit;
  1093. background-color:rgba(24, 144, 255, 1);
  1094. border-radius:39px;
  1095. filter:drop-shadow(none);
  1096. transition:none;
  1097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1098. font-weight:400;
  1099. font-style:normal;
  1100. font-size:16px;
  1101. color:#FFFFFF;
  1102. }
  1103. #u56509 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:59px;
  1107. top:308px;
  1108. width:315px;
  1109. height:40px;
  1110. display:flex;
  1111. transition:none;
  1112. transform-origin:50% 50%;
  1113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1114. font-weight:400;
  1115. font-style:normal;
  1116. font-size:16px;
  1117. color:#FFFFFF;
  1118. }
  1119. #u56509 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 2px 2px 2px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u56509_text {
  1127. border-width:0px;
  1128. word-wrap:break-word;
  1129. text-transform:none;
  1130. }
  1131. #u56510_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:71px;
  1137. height:20px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border-left:0px;
  1141. border-top:0px;
  1142. border-right:0px;
  1143. border-radius:0px;
  1144. border-bottom-right-radius:0px;
  1145. border-bottom-left-radius:0px;
  1146. filter:drop-shadow(none);
  1147. transition:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:14px;
  1152. }
  1153. #u56510 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:51px;
  1157. top:188px;
  1158. width:71px;
  1159. height:20px;
  1160. display:flex;
  1161. transition:none;
  1162. transform-origin:50% 50%;
  1163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1164. font-weight:400;
  1165. font-style:normal;
  1166. font-size:14px;
  1167. }
  1168. #u56510 .text {
  1169. position:absolute;
  1170. align-self:flex-start;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u56510_text {
  1176. border-width:0px;
  1177. white-space:nowrap;
  1178. text-transform:none;
  1179. }
  1180. #u56511 {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:453px;
  1184. top:0px;
  1185. width:433px;
  1186. height:865px;
  1187. }
  1188. #u56512 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:433px;
  1194. height:865px;
  1195. display:flex;
  1196. transition:none;
  1197. }
  1198. #u56512 .text {
  1199. position:absolute;
  1200. align-self:center;
  1201. padding:2px 2px 2px 2px;
  1202. box-sizing:border-box;
  1203. width:100%;
  1204. }
  1205. #u56512_img {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:433px;
  1211. height:865px;
  1212. }
  1213. #u56512_text {
  1214. border-width:0px;
  1215. word-wrap:break-word;
  1216. text-transform:none;
  1217. visibility:hidden;
  1218. }
  1219. #u56513_div {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:0px;
  1223. top:0px;
  1224. width:375px;
  1225. height:40px;
  1226. background:inherit;
  1227. background-color:rgba(255, 255, 255, 1);
  1228. box-sizing:border-box;
  1229. border-width:1px;
  1230. border-style:solid;
  1231. border-color:rgba(215, 215, 215, 1);
  1232. border-left:0px;
  1233. border-top:0px;
  1234. border-right:0px;
  1235. border-radius:0px;
  1236. border-bottom-right-radius:0px;
  1237. border-bottom-left-radius:0px;
  1238. filter:drop-shadow(none);
  1239. transition:none;
  1240. }
  1241. #u56513 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:29px;
  1245. top:67px;
  1246. width:375px;
  1247. height:40px;
  1248. display:flex;
  1249. transition:none;
  1250. transform-origin:50% 50%;
  1251. }
  1252. #u56513 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:2px 2px 2px 2px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u56513_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. visibility:hidden;
  1264. }
  1265. #u56514 {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:0px;
  1269. top:0px;
  1270. width:0px;
  1271. height:0px;
  1272. }
  1273. #u56515_div {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:88px;
  1279. height:32px;
  1280. background:inherit;
  1281. background-color:rgba(255, 255, 255, 1);
  1282. box-sizing:border-box;
  1283. border-width:1px;
  1284. border-style:solid;
  1285. border-color:rgba(242, 242, 242, 1);
  1286. border-radius:33px;
  1287. filter:drop-shadow(none);
  1288. transition:none;
  1289. }
  1290. #u56515 {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:309px;
  1294. top:71px;
  1295. width:88px;
  1296. height:32px;
  1297. display:flex;
  1298. transition:none;
  1299. transform-origin:50% 50%;
  1300. }
  1301. #u56515 .text {
  1302. position:absolute;
  1303. align-self:center;
  1304. padding:2px 2px 2px 2px;
  1305. box-sizing:border-box;
  1306. width:100%;
  1307. }
  1308. #u56515_text {
  1309. border-width:0px;
  1310. word-wrap:break-word;
  1311. text-transform:none;
  1312. visibility:hidden;
  1313. }
  1314. #u56516 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:0px;
  1320. height:0px;
  1321. }
  1322. #u56517 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:372px;
  1326. top:78px;
  1327. width:18px;
  1328. height:18px;
  1329. display:flex;
  1330. transition:none;
  1331. }
  1332. #u56517 .text {
  1333. position:absolute;
  1334. align-self:center;
  1335. padding:2px 2px 2px 2px;
  1336. box-sizing:border-box;
  1337. width:100%;
  1338. }
  1339. #u56517_img {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:18px;
  1345. height:18px;
  1346. }
  1347. #u56517_text {
  1348. border-width:0px;
  1349. word-wrap:break-word;
  1350. text-transform:none;
  1351. visibility:hidden;
  1352. }
  1353. #u56518 {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:378px;
  1357. top:84px;
  1358. width:6px;
  1359. height:6px;
  1360. display:flex;
  1361. transition:none;
  1362. }
  1363. #u56518 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:2px 2px 2px 2px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u56518_img {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:6px;
  1376. height:6px;
  1377. }
  1378. #u56518_text {
  1379. border-width:0px;
  1380. word-wrap:break-word;
  1381. text-transform:none;
  1382. visibility:hidden;
  1383. }
  1384. #u56519 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:0px;
  1390. height:0px;
  1391. }
  1392. #u56520 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:323px;
  1396. top:85px;
  1397. width:5px;
  1398. height:5px;
  1399. display:flex;
  1400. transition:none;
  1401. }
  1402. #u56520 .text {
  1403. position:absolute;
  1404. align-self:center;
  1405. padding:2px 2px 2px 2px;
  1406. box-sizing:border-box;
  1407. width:100%;
  1408. }
  1409. #u56520_img {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:0px;
  1413. top:0px;
  1414. width:5px;
  1415. height:5px;
  1416. }
  1417. #u56520_text {
  1418. border-width:0px;
  1419. word-wrap:break-word;
  1420. text-transform:none;
  1421. visibility:hidden;
  1422. }
  1423. #u56521 {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:339px;
  1427. top:85px;
  1428. width:5px;
  1429. height:5px;
  1430. display:flex;
  1431. transition:none;
  1432. }
  1433. #u56521 .text {
  1434. position:absolute;
  1435. align-self:center;
  1436. padding:2px 2px 2px 2px;
  1437. box-sizing:border-box;
  1438. width:100%;
  1439. }
  1440. #u56521_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:5px;
  1446. height:5px;
  1447. }
  1448. #u56521_text {
  1449. border-width:0px;
  1450. word-wrap:break-word;
  1451. text-transform:none;
  1452. visibility:hidden;
  1453. }
  1454. #u56522 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:330px;
  1458. top:84px;
  1459. width:7px;
  1460. height:7px;
  1461. display:flex;
  1462. transition:none;
  1463. }
  1464. #u56522 .text {
  1465. position:absolute;
  1466. align-self:center;
  1467. padding:2px 2px 2px 2px;
  1468. box-sizing:border-box;
  1469. width:100%;
  1470. }
  1471. #u56522_img {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:0px;
  1475. top:0px;
  1476. width:7px;
  1477. height:7px;
  1478. }
  1479. #u56522_text {
  1480. border-width:0px;
  1481. word-wrap:break-word;
  1482. text-transform:none;
  1483. visibility:hidden;
  1484. }
  1485. #u56523 {
  1486. border-width:0px;
  1487. position:absolute;
  1488. left:347px;
  1489. top:87px;
  1490. width:18px;
  1491. height:1px;
  1492. display:flex;
  1493. -webkit-transform:rotate(90deg);
  1494. -moz-transform:rotate(90deg);
  1495. -ms-transform:rotate(90deg);
  1496. transform:rotate(90deg);
  1497. transition:none;
  1498. }
  1499. #u56523 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u56523_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:19px;
  1512. height:2px;
  1513. }
  1514. #u56523_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u56524 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:29px;
  1524. top:24px;
  1525. width:375px;
  1526. height:44px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u56524 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u56524_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:375px;
  1543. height:44px;
  1544. }
  1545. #u56524_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u56525_div {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:0px;
  1555. top:0px;
  1556. width:375px;
  1557. height:50px;
  1558. background:inherit;
  1559. background-color:rgba(255, 255, 255, 1);
  1560. box-sizing:border-box;
  1561. border-width:1px;
  1562. border-style:solid;
  1563. border-color:rgba(242, 242, 242, 1);
  1564. border-radius:26px;
  1565. border-top-left-radius:0px;
  1566. border-top-right-radius:0px;
  1567. filter:drop-shadow(none);
  1568. transition:none;
  1569. }
  1570. #u56525 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:29px;
  1574. top:788px;
  1575. width:375px;
  1576. height:50px;
  1577. display:flex;
  1578. transition:none;
  1579. transform-origin:50% 50%;
  1580. }
  1581. #u56525 .text {
  1582. position:absolute;
  1583. align-self:center;
  1584. padding:2px 2px 2px 2px;
  1585. box-sizing:border-box;
  1586. width:100%;
  1587. }
  1588. #u56525_text {
  1589. border-width:0px;
  1590. word-wrap:break-word;
  1591. text-transform:none;
  1592. visibility:hidden;
  1593. }
  1594. #u56526 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:0px;
  1600. height:0px;
  1601. }
  1602. #u56527 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:69px;
  1606. top:792px;
  1607. width:24px;
  1608. height:24px;
  1609. display:flex;
  1610. transition:none;
  1611. font-size:8px;
  1612. }
  1613. #u56527 .text {
  1614. position:absolute;
  1615. align-self:center;
  1616. padding:2px 2px 2px 2px;
  1617. box-sizing:border-box;
  1618. width:100%;
  1619. }
  1620. #u56527_img {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:24px;
  1626. height:24px;
  1627. }
  1628. #u56527_text {
  1629. border-width:0px;
  1630. word-wrap:break-word;
  1631. text-transform:none;
  1632. }
  1633. #u56528_div {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:25px;
  1639. height:17px;
  1640. background:inherit;
  1641. background-color:rgba(255, 255, 255, 0);
  1642. border-radius:0px;
  1643. filter:drop-shadow(none);
  1644. transition:none;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:12px;
  1649. }
  1650. #u56528 {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:69px;
  1654. top:817px;
  1655. width:25px;
  1656. height:17px;
  1657. display:flex;
  1658. transition:none;
  1659. transform-origin:50% 50%;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:12px;
  1664. }
  1665. #u56528 .text {
  1666. position:absolute;
  1667. align-self:flex-start;
  1668. padding:0px 0px 0px 0px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u56528_text {
  1673. border-width:0px;
  1674. white-space:nowrap;
  1675. text-transform:none;
  1676. }
  1677. #u56529 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:0px;
  1683. height:0px;
  1684. }
  1685. #u56530 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:339px;
  1689. top:794px;
  1690. width:24px;
  1691. height:24px;
  1692. display:flex;
  1693. transition:none;
  1694. font-size:8px;
  1695. }
  1696. #u56530 .text {
  1697. position:absolute;
  1698. align-self:center;
  1699. padding:2px 2px 2px 2px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u56530_img {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:24px;
  1709. height:24px;
  1710. }
  1711. #u56530_text {
  1712. border-width:0px;
  1713. word-wrap:break-word;
  1714. text-transform:none;
  1715. }
  1716. #u56531_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:25px;
  1722. height:17px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 0);
  1725. border-radius:0px;
  1726. filter:drop-shadow(none);
  1727. transition:none;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:12px;
  1732. }
  1733. #u56531 {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:339px;
  1737. top:819px;
  1738. width:25px;
  1739. height:17px;
  1740. display:flex;
  1741. transition:none;
  1742. transform-origin:50% 50%;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:12px;
  1747. }
  1748. #u56531 .text {
  1749. position:absolute;
  1750. align-self:flex-start;
  1751. padding:0px 0px 0px 0px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u56531_text {
  1756. border-width:0px;
  1757. white-space:nowrap;
  1758. text-transform:none;
  1759. }
  1760. #u56532_div {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:375px;
  1766. height:681px;
  1767. background:inherit;
  1768. background-color:rgba(242, 242, 242, 0.4627450980392157);
  1769. border-radius:0px;
  1770. filter:drop-shadow(none);
  1771. transition:none;
  1772. }
  1773. #u56532 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:29px;
  1777. top:107px;
  1778. width:375px;
  1779. height:681px;
  1780. display:flex;
  1781. transition:none;
  1782. transform-origin:50% 50%;
  1783. }
  1784. #u56532 .text {
  1785. position:absolute;
  1786. align-self:center;
  1787. padding:2px 2px 2px 2px;
  1788. box-sizing:border-box;
  1789. width:100%;
  1790. }
  1791. #u56532_text {
  1792. border-width:0px;
  1793. word-wrap:break-word;
  1794. text-transform:none;
  1795. visibility:hidden;
  1796. }
  1797. #u56533 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:0px;
  1803. height:0px;
  1804. }
  1805. #u56534 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:251px;
  1809. top:792px;
  1810. width:24px;
  1811. height:24px;
  1812. display:flex;
  1813. transition:none;
  1814. font-size:8px;
  1815. }
  1816. #u56534 .text {
  1817. position:absolute;
  1818. align-self:center;
  1819. padding:2px 2px 2px 2px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u56534_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:24px;
  1829. height:24px;
  1830. }
  1831. #u56534_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. }
  1836. #u56535_div {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:37px;
  1842. height:17px;
  1843. background:inherit;
  1844. background-color:rgba(255, 255, 255, 0);
  1845. border-radius:0px;
  1846. filter:drop-shadow(none);
  1847. transition:none;
  1848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1849. font-weight:400;
  1850. font-style:normal;
  1851. font-size:12px;
  1852. }
  1853. #u56535 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:245px;
  1857. top:817px;
  1858. width:37px;
  1859. height:17px;
  1860. display:flex;
  1861. transition:none;
  1862. transform-origin:50% 50%;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:12px;
  1867. }
  1868. #u56535 .text {
  1869. position:absolute;
  1870. align-self:flex-start;
  1871. padding:0px 0px 0px 0px;
  1872. box-sizing:border-box;
  1873. width:100%;
  1874. }
  1875. #u56535_text {
  1876. border-width:0px;
  1877. white-space:nowrap;
  1878. text-transform:none;
  1879. }
  1880. #u56536 {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:0px;
  1886. height:0px;
  1887. }
  1888. #u56537 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:157px;
  1892. top:792px;
  1893. width:24px;
  1894. height:24px;
  1895. display:flex;
  1896. transition:none;
  1897. font-size:8px;
  1898. }
  1899. #u56537 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 2px 2px 2px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u56537_img {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:24px;
  1912. height:24px;
  1913. }
  1914. #u56537_text {
  1915. border-width:0px;
  1916. word-wrap:break-word;
  1917. text-transform:none;
  1918. }
  1919. #u56538_div {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:37px;
  1925. height:17px;
  1926. background:inherit;
  1927. background-color:rgba(255, 255, 255, 0);
  1928. border-radius:0px;
  1929. filter:drop-shadow(none);
  1930. transition:none;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. }
  1936. #u56538 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:151px;
  1940. top:817px;
  1941. width:37px;
  1942. height:17px;
  1943. display:flex;
  1944. transition:none;
  1945. transform-origin:50% 50%;
  1946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:12px;
  1950. }
  1951. #u56538 .text {
  1952. position:absolute;
  1953. align-self:flex-start;
  1954. padding:0px 0px 0px 0px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u56538_text {
  1959. border-width:0px;
  1960. white-space:nowrap;
  1961. text-transform:none;
  1962. }
  1963. #u56539 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:482px;
  1967. top:106px;
  1968. width:375px;
  1969. height:739px;
  1970. display:flex;
  1971. transition:none;
  1972. }
  1973. #u56539 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u56539_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:375px;
  1986. height:739px;
  1987. }
  1988. #u56539_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. visibility:hidden;
  1993. }
  1994. #u56540_div {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:375px;
  2000. height:739px;
  2001. background:inherit;
  2002. background-color:rgba(255, 255, 255, 1);
  2003. border-top:0px;
  2004. border-radius:29px;
  2005. border-top-left-radius:0px;
  2006. border-top-right-radius:0px;
  2007. filter:drop-shadow(none);
  2008. transition:none;
  2009. }
  2010. #u56540 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:482px;
  2014. top:106px;
  2015. width:375px;
  2016. height:739px;
  2017. display:flex;
  2018. transition:none;
  2019. transform-origin:50% 50%;
  2020. }
  2021. #u56540 .text {
  2022. position:absolute;
  2023. align-self:center;
  2024. padding:2px 2px 2px 2px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u56540_text {
  2029. border-width:0px;
  2030. word-wrap:break-word;
  2031. text-transform:none;
  2032. visibility:hidden;
  2033. }
  2034. #u56541 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:493px;
  2038. top:79px;
  2039. width:11px;
  2040. height:18px;
  2041. display:flex;
  2042. transition:none;
  2043. }
  2044. #u56541 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:2px 2px 2px 2px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u56541_img {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:11px;
  2057. height:18px;
  2058. }
  2059. #u56541_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. visibility:hidden;
  2064. }
  2065. #u56542_div {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:73px;
  2071. height:25px;
  2072. background:inherit;
  2073. background-color:rgba(255, 255, 255, 0);
  2074. border-radius:0px;
  2075. filter:drop-shadow(none);
  2076. transition:none;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:18px;
  2081. }
  2082. #u56542 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:520px;
  2086. top:75px;
  2087. width:73px;
  2088. height:25px;
  2089. display:flex;
  2090. transition:none;
  2091. transform-origin:50% 50%;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:18px;
  2096. }
  2097. #u56542 .text {
  2098. position:absolute;
  2099. align-self:flex-start;
  2100. padding:0px 0px 0px 0px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u56542_text {
  2105. border-width:0px;
  2106. white-space:nowrap;
  2107. text-transform:none;
  2108. }
  2109. #u56543_div {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:0px;
  2113. top:0px;
  2114. width:315px;
  2115. height:40px;
  2116. background:inherit;
  2117. background-color:rgba(24, 144, 255, 1);
  2118. border-radius:39px;
  2119. filter:drop-shadow(none);
  2120. transition:none;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:16px;
  2125. color:#FFFFFF;
  2126. }
  2127. #u56543 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:512px;
  2131. top:308px;
  2132. width:315px;
  2133. height:40px;
  2134. display:flex;
  2135. transition:none;
  2136. transform-origin:50% 50%;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:16px;
  2141. color:#FFFFFF;
  2142. }
  2143. #u56543 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 2px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u56543_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. }
  2155. #u56544_div {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:85px;
  2161. height:20px;
  2162. background:inherit;
  2163. background-color:rgba(255, 255, 255, 0);
  2164. border-left:0px;
  2165. border-top:0px;
  2166. border-right:0px;
  2167. border-radius:0px;
  2168. border-bottom-right-radius:0px;
  2169. border-bottom-left-radius:0px;
  2170. filter:drop-shadow(none);
  2171. transition:none;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:14px;
  2176. }
  2177. #u56544 {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:499px;
  2181. top:188px;
  2182. width:85px;
  2183. height:20px;
  2184. display:flex;
  2185. transition:none;
  2186. transform-origin:50% 50%;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:14px;
  2191. }
  2192. #u56544 .text {
  2193. position:absolute;
  2194. align-self:flex-start;
  2195. padding:0px 0px 0px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u56544_text {
  2200. border-width:0px;
  2201. white-space:nowrap;
  2202. text-transform:none;
  2203. }
  2204. #u56545_div {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:50px;
  2210. height:50px;
  2211. background:inherit;
  2212. background-color:rgba(255, 255, 255, 1);
  2213. box-sizing:border-box;
  2214. border-width:1px;
  2215. border-style:solid;
  2216. border-color:rgba(121, 121, 121, 1);
  2217. border-radius:0px;
  2218. filter:drop-shadow(none);
  2219. transition:none;
  2220. }
  2221. #u56545 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:499px;
  2225. top:228px;
  2226. width:50px;
  2227. height:50px;
  2228. display:flex;
  2229. transition:none;
  2230. transform-origin:50% 50%;
  2231. }
  2232. #u56545 .text {
  2233. position:absolute;
  2234. align-self:center;
  2235. padding:2px 2px 2px 2px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u56545_text {
  2240. border-width:0px;
  2241. word-wrap:break-word;
  2242. text-transform:none;
  2243. visibility:hidden;
  2244. }
  2245. #u56546_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:50px;
  2251. height:50px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 1);
  2254. box-sizing:border-box;
  2255. border-width:1px;
  2256. border-style:solid;
  2257. border-color:rgba(121, 121, 121, 1);
  2258. border-radius:0px;
  2259. filter:drop-shadow(none);
  2260. transition:none;
  2261. }
  2262. #u56546 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:559px;
  2266. top:228px;
  2267. width:50px;
  2268. height:50px;
  2269. display:flex;
  2270. transition:none;
  2271. transform-origin:50% 50%;
  2272. }
  2273. #u56546 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u56546_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u56547_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:50px;
  2292. height:50px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 1);
  2295. box-sizing:border-box;
  2296. border-width:1px;
  2297. border-style:solid;
  2298. border-color:rgba(121, 121, 121, 1);
  2299. border-radius:0px;
  2300. filter:drop-shadow(none);
  2301. transition:none;
  2302. }
  2303. #u56547 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:619px;
  2307. top:228px;
  2308. width:50px;
  2309. height:50px;
  2310. display:flex;
  2311. transition:none;
  2312. transform-origin:50% 50%;
  2313. }
  2314. #u56547 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u56547_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. visibility:hidden;
  2326. }
  2327. #u56548_div {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:50px;
  2333. height:50px;
  2334. background:inherit;
  2335. background-color:rgba(255, 255, 255, 1);
  2336. box-sizing:border-box;
  2337. border-width:1px;
  2338. border-style:solid;
  2339. border-color:rgba(121, 121, 121, 1);
  2340. border-radius:0px;
  2341. filter:drop-shadow(none);
  2342. transition:none;
  2343. }
  2344. #u56548 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:679px;
  2348. top:228px;
  2349. width:50px;
  2350. height:50px;
  2351. display:flex;
  2352. transition:none;
  2353. transform-origin:50% 50%;
  2354. }
  2355. #u56548 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 2px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u56548_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u56549_div {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:50px;
  2374. height:50px;
  2375. background:inherit;
  2376. background-color:rgba(255, 255, 255, 1);
  2377. box-sizing:border-box;
  2378. border-width:1px;
  2379. border-style:solid;
  2380. border-color:rgba(121, 121, 121, 1);
  2381. border-radius:0px;
  2382. filter:drop-shadow(none);
  2383. transition:none;
  2384. }
  2385. #u56549 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:739px;
  2389. top:228px;
  2390. width:50px;
  2391. height:50px;
  2392. display:flex;
  2393. transition:none;
  2394. transform-origin:50% 50%;
  2395. }
  2396. #u56549 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 2px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u56549_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u56550_div {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:50px;
  2415. height:50px;
  2416. background:inherit;
  2417. background-color:rgba(255, 255, 255, 1);
  2418. box-sizing:border-box;
  2419. border-width:1px;
  2420. border-style:solid;
  2421. border-color:rgba(121, 121, 121, 1);
  2422. border-radius:0px;
  2423. filter:drop-shadow(none);
  2424. transition:none;
  2425. }
  2426. #u56550 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:799px;
  2430. top:228px;
  2431. width:50px;
  2432. height:50px;
  2433. display:flex;
  2434. transition:none;
  2435. transform-origin:50% 50%;
  2436. }
  2437. #u56550 .text {
  2438. position:absolute;
  2439. align-self:center;
  2440. padding:2px 2px 2px 2px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u56550_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. visibility:hidden;
  2449. }
  2450. #u56551 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:906px;
  2454. top:0px;
  2455. width:433px;
  2456. height:865px;
  2457. }
  2458. #u56552 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:433px;
  2464. height:865px;
  2465. display:flex;
  2466. transition:none;
  2467. }
  2468. #u56552 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 2px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u56552_img {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:433px;
  2481. height:865px;
  2482. }
  2483. #u56552_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. visibility:hidden;
  2488. }
  2489. #u56553_div {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:375px;
  2495. height:40px;
  2496. background:inherit;
  2497. background-color:rgba(255, 255, 255, 1);
  2498. box-sizing:border-box;
  2499. border-width:1px;
  2500. border-style:solid;
  2501. border-color:rgba(215, 215, 215, 1);
  2502. border-left:0px;
  2503. border-top:0px;
  2504. border-right:0px;
  2505. border-radius:0px;
  2506. border-bottom-right-radius:0px;
  2507. border-bottom-left-radius:0px;
  2508. filter:drop-shadow(none);
  2509. transition:none;
  2510. }
  2511. #u56553 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:29px;
  2515. top:67px;
  2516. width:375px;
  2517. height:40px;
  2518. display:flex;
  2519. transition:none;
  2520. transform-origin:50% 50%;
  2521. }
  2522. #u56553 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:2px 2px 2px 2px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u56553_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. visibility:hidden;
  2534. }
  2535. #u56554 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:0px;
  2541. height:0px;
  2542. }
  2543. #u56555_div {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:88px;
  2549. height:32px;
  2550. background:inherit;
  2551. background-color:rgba(255, 255, 255, 1);
  2552. box-sizing:border-box;
  2553. border-width:1px;
  2554. border-style:solid;
  2555. border-color:rgba(242, 242, 242, 1);
  2556. border-radius:33px;
  2557. filter:drop-shadow(none);
  2558. transition:none;
  2559. }
  2560. #u56555 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:309px;
  2564. top:71px;
  2565. width:88px;
  2566. height:32px;
  2567. display:flex;
  2568. transition:none;
  2569. transform-origin:50% 50%;
  2570. }
  2571. #u56555 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 2px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u56555_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. visibility:hidden;
  2583. }
  2584. #u56556 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:0px;
  2590. height:0px;
  2591. }
  2592. #u56557 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:372px;
  2596. top:78px;
  2597. width:18px;
  2598. height:18px;
  2599. display:flex;
  2600. transition:none;
  2601. }
  2602. #u56557 .text {
  2603. position:absolute;
  2604. align-self:center;
  2605. padding:2px 2px 2px 2px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u56557_img {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:18px;
  2615. height:18px;
  2616. }
  2617. #u56557_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u56558 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:378px;
  2627. top:84px;
  2628. width:6px;
  2629. height:6px;
  2630. display:flex;
  2631. transition:none;
  2632. }
  2633. #u56558 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:2px 2px 2px 2px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u56558_img {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:6px;
  2646. height:6px;
  2647. }
  2648. #u56558_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. visibility:hidden;
  2653. }
  2654. #u56559 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:0px;
  2660. height:0px;
  2661. }
  2662. #u56560 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:323px;
  2666. top:85px;
  2667. width:5px;
  2668. height:5px;
  2669. display:flex;
  2670. transition:none;
  2671. }
  2672. #u56560 .text {
  2673. position:absolute;
  2674. align-self:center;
  2675. padding:2px 2px 2px 2px;
  2676. box-sizing:border-box;
  2677. width:100%;
  2678. }
  2679. #u56560_img {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:5px;
  2685. height:5px;
  2686. }
  2687. #u56560_text {
  2688. border-width:0px;
  2689. word-wrap:break-word;
  2690. text-transform:none;
  2691. visibility:hidden;
  2692. }
  2693. #u56561 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:339px;
  2697. top:85px;
  2698. width:5px;
  2699. height:5px;
  2700. display:flex;
  2701. transition:none;
  2702. }
  2703. #u56561 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 2px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u56561_img {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:5px;
  2716. height:5px;
  2717. }
  2718. #u56561_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. visibility:hidden;
  2723. }
  2724. #u56562 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:330px;
  2728. top:84px;
  2729. width:7px;
  2730. height:7px;
  2731. display:flex;
  2732. transition:none;
  2733. }
  2734. #u56562 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 2px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u56562_img {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:7px;
  2747. height:7px;
  2748. }
  2749. #u56562_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. visibility:hidden;
  2754. }
  2755. #u56563 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:347px;
  2759. top:87px;
  2760. width:18px;
  2761. height:1px;
  2762. display:flex;
  2763. -webkit-transform:rotate(90deg);
  2764. -moz-transform:rotate(90deg);
  2765. -ms-transform:rotate(90deg);
  2766. transform:rotate(90deg);
  2767. transition:none;
  2768. }
  2769. #u56563 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 2px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u56563_img {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:19px;
  2782. height:2px;
  2783. }
  2784. #u56563_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u56564 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:29px;
  2794. top:24px;
  2795. width:375px;
  2796. height:44px;
  2797. display:flex;
  2798. transition:none;
  2799. }
  2800. #u56564 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:2px 2px 2px 2px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u56564_img {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:375px;
  2813. height:44px;
  2814. }
  2815. #u56564_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u56565_div {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:375px;
  2827. height:50px;
  2828. background:inherit;
  2829. background-color:rgba(255, 255, 255, 1);
  2830. box-sizing:border-box;
  2831. border-width:1px;
  2832. border-style:solid;
  2833. border-color:rgba(242, 242, 242, 1);
  2834. border-radius:26px;
  2835. border-top-left-radius:0px;
  2836. border-top-right-radius:0px;
  2837. filter:drop-shadow(none);
  2838. transition:none;
  2839. }
  2840. #u56565 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:29px;
  2844. top:788px;
  2845. width:375px;
  2846. height:50px;
  2847. display:flex;
  2848. transition:none;
  2849. transform-origin:50% 50%;
  2850. }
  2851. #u56565 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 2px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u56565_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. visibility:hidden;
  2863. }
  2864. #u56566 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:0px;
  2870. height:0px;
  2871. }
  2872. #u56567 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:69px;
  2876. top:792px;
  2877. width:24px;
  2878. height:24px;
  2879. display:flex;
  2880. transition:none;
  2881. font-size:8px;
  2882. }
  2883. #u56567 .text {
  2884. position:absolute;
  2885. align-self:center;
  2886. padding:2px 2px 2px 2px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u56567_img {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:24px;
  2896. height:24px;
  2897. }
  2898. #u56567_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. }
  2903. #u56568_div {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:25px;
  2909. height:17px;
  2910. background:inherit;
  2911. background-color:rgba(255, 255, 255, 0);
  2912. border-radius:0px;
  2913. filter:drop-shadow(none);
  2914. transition:none;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. }
  2920. #u56568 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:69px;
  2924. top:817px;
  2925. width:25px;
  2926. height:17px;
  2927. display:flex;
  2928. transition:none;
  2929. transform-origin:50% 50%;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:12px;
  2934. }
  2935. #u56568 .text {
  2936. position:absolute;
  2937. align-self:flex-start;
  2938. padding:0px 0px 0px 0px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u56568_text {
  2943. border-width:0px;
  2944. white-space:nowrap;
  2945. text-transform:none;
  2946. }
  2947. #u56569 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:0px;
  2953. height:0px;
  2954. }
  2955. #u56570 {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:339px;
  2959. top:794px;
  2960. width:24px;
  2961. height:24px;
  2962. display:flex;
  2963. transition:none;
  2964. font-size:8px;
  2965. }
  2966. #u56570 .text {
  2967. position:absolute;
  2968. align-self:center;
  2969. padding:2px 2px 2px 2px;
  2970. box-sizing:border-box;
  2971. width:100%;
  2972. }
  2973. #u56570_img {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:24px;
  2979. height:24px;
  2980. }
  2981. #u56570_text {
  2982. border-width:0px;
  2983. word-wrap:break-word;
  2984. text-transform:none;
  2985. }
  2986. #u56571_div {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:25px;
  2992. height:17px;
  2993. background:inherit;
  2994. background-color:rgba(255, 255, 255, 0);
  2995. border-radius:0px;
  2996. filter:drop-shadow(none);
  2997. transition:none;
  2998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. font-size:12px;
  3002. }
  3003. #u56571 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:339px;
  3007. top:819px;
  3008. width:25px;
  3009. height:17px;
  3010. display:flex;
  3011. transition:none;
  3012. transform-origin:50% 50%;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:12px;
  3017. }
  3018. #u56571 .text {
  3019. position:absolute;
  3020. align-self:flex-start;
  3021. padding:0px 0px 0px 0px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u56571_text {
  3026. border-width:0px;
  3027. white-space:nowrap;
  3028. text-transform:none;
  3029. }
  3030. #u56572_div {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:375px;
  3036. height:681px;
  3037. background:inherit;
  3038. background-color:rgba(242, 242, 242, 0.4627450980392157);
  3039. border-radius:0px;
  3040. filter:drop-shadow(none);
  3041. transition:none;
  3042. }
  3043. #u56572 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:29px;
  3047. top:107px;
  3048. width:375px;
  3049. height:681px;
  3050. display:flex;
  3051. transition:none;
  3052. transform-origin:50% 50%;
  3053. }
  3054. #u56572 .text {
  3055. position:absolute;
  3056. align-self:center;
  3057. padding:2px 2px 2px 2px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u56572_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. visibility:hidden;
  3066. }
  3067. #u56573 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:0px;
  3073. height:0px;
  3074. }
  3075. #u56574 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:251px;
  3079. top:792px;
  3080. width:24px;
  3081. height:24px;
  3082. display:flex;
  3083. transition:none;
  3084. font-size:8px;
  3085. }
  3086. #u56574 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 2px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u56574_img {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:24px;
  3099. height:24px;
  3100. }
  3101. #u56574_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. }
  3106. #u56575_div {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:37px;
  3112. height:17px;
  3113. background:inherit;
  3114. background-color:rgba(255, 255, 255, 0);
  3115. border-radius:0px;
  3116. filter:drop-shadow(none);
  3117. transition:none;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:12px;
  3122. }
  3123. #u56575 {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:245px;
  3127. top:817px;
  3128. width:37px;
  3129. height:17px;
  3130. display:flex;
  3131. transition:none;
  3132. transform-origin:50% 50%;
  3133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3134. font-weight:400;
  3135. font-style:normal;
  3136. font-size:12px;
  3137. }
  3138. #u56575 .text {
  3139. position:absolute;
  3140. align-self:flex-start;
  3141. padding:0px 0px 0px 0px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u56575_text {
  3146. border-width:0px;
  3147. white-space:nowrap;
  3148. text-transform:none;
  3149. }
  3150. #u56576 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:0px;
  3156. height:0px;
  3157. }
  3158. #u56577 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:157px;
  3162. top:792px;
  3163. width:24px;
  3164. height:24px;
  3165. display:flex;
  3166. transition:none;
  3167. font-size:8px;
  3168. }
  3169. #u56577 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 2px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u56577_img {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:24px;
  3182. height:24px;
  3183. }
  3184. #u56577_text {
  3185. border-width:0px;
  3186. word-wrap:break-word;
  3187. text-transform:none;
  3188. }
  3189. #u56578_div {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:37px;
  3195. height:17px;
  3196. background:inherit;
  3197. background-color:rgba(255, 255, 255, 0);
  3198. border-radius:0px;
  3199. filter:drop-shadow(none);
  3200. transition:none;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:12px;
  3205. }
  3206. #u56578 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:151px;
  3210. top:817px;
  3211. width:37px;
  3212. height:17px;
  3213. display:flex;
  3214. transition:none;
  3215. transform-origin:50% 50%;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:12px;
  3220. }
  3221. #u56578 .text {
  3222. position:absolute;
  3223. align-self:flex-start;
  3224. padding:0px 0px 0px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u56578_text {
  3229. border-width:0px;
  3230. white-space:nowrap;
  3231. text-transform:none;
  3232. }
  3233. #u56579 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:935px;
  3237. top:106px;
  3238. width:375px;
  3239. height:739px;
  3240. display:flex;
  3241. transition:none;
  3242. }
  3243. #u56579 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 2px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u56579_img {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:375px;
  3256. height:739px;
  3257. }
  3258. #u56579_text {
  3259. border-width:0px;
  3260. word-wrap:break-word;
  3261. text-transform:none;
  3262. visibility:hidden;
  3263. }
  3264. #u56580_div {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:375px;
  3270. height:739px;
  3271. background:inherit;
  3272. background-color:rgba(255, 255, 255, 1);
  3273. border-top:0px;
  3274. border-radius:29px;
  3275. border-top-left-radius:0px;
  3276. border-top-right-radius:0px;
  3277. filter:drop-shadow(none);
  3278. transition:none;
  3279. }
  3280. #u56580 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:935px;
  3284. top:106px;
  3285. width:375px;
  3286. height:739px;
  3287. display:flex;
  3288. transition:none;
  3289. transform-origin:50% 50%;
  3290. }
  3291. #u56580 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 2px 2px 2px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u56580_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. visibility:hidden;
  3303. }
  3304. #u56581 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:946px;
  3308. top:79px;
  3309. width:11px;
  3310. height:18px;
  3311. display:flex;
  3312. transition:none;
  3313. }
  3314. #u56581 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:2px 2px 2px 2px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u56581_img {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:11px;
  3327. height:18px;
  3328. }
  3329. #u56581_text {
  3330. border-width:0px;
  3331. word-wrap:break-word;
  3332. text-transform:none;
  3333. visibility:hidden;
  3334. }
  3335. #u56582_div {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:73px;
  3341. height:25px;
  3342. background:inherit;
  3343. background-color:rgba(255, 255, 255, 0);
  3344. border-radius:0px;
  3345. filter:drop-shadow(none);
  3346. transition:none;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:18px;
  3351. }
  3352. #u56582 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:973px;
  3356. top:75px;
  3357. width:73px;
  3358. height:25px;
  3359. display:flex;
  3360. transition:none;
  3361. transform-origin:50% 50%;
  3362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3363. font-weight:400;
  3364. font-style:normal;
  3365. font-size:18px;
  3366. }
  3367. #u56582 .text {
  3368. position:absolute;
  3369. align-self:flex-start;
  3370. padding:0px 0px 0px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u56582_text {
  3375. border-width:0px;
  3376. white-space:nowrap;
  3377. text-transform:none;
  3378. }
  3379. #u56583_div {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:315px;
  3385. height:40px;
  3386. background:inherit;
  3387. background-color:rgba(24, 144, 255, 1);
  3388. border-radius:39px;
  3389. filter:drop-shadow(none);
  3390. transition:none;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:16px;
  3395. color:#FFFFFF;
  3396. }
  3397. #u56583 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:965px;
  3401. top:396px;
  3402. width:315px;
  3403. height:40px;
  3404. display:flex;
  3405. transition:none;
  3406. transform-origin:50% 50%;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:16px;
  3411. color:#FFFFFF;
  3412. }
  3413. #u56583 .text {
  3414. position:absolute;
  3415. align-self:center;
  3416. padding:2px 2px 2px 2px;
  3417. box-sizing:border-box;
  3418. width:100%;
  3419. }
  3420. #u56583_text {
  3421. border-width:0px;
  3422. word-wrap:break-word;
  3423. text-transform:none;
  3424. }
  3425. #u56584_div {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:0px;
  3429. top:0px;
  3430. width:85px;
  3431. height:20px;
  3432. background:inherit;
  3433. background-color:rgba(255, 255, 255, 0);
  3434. border-left:0px;
  3435. border-top:0px;
  3436. border-right:0px;
  3437. border-radius:0px;
  3438. border-bottom-right-radius:0px;
  3439. border-bottom-left-radius:0px;
  3440. filter:drop-shadow(none);
  3441. transition:none;
  3442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3443. font-weight:400;
  3444. font-style:normal;
  3445. font-size:14px;
  3446. }
  3447. #u56584 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:952px;
  3451. top:188px;
  3452. width:85px;
  3453. height:20px;
  3454. display:flex;
  3455. transition:none;
  3456. transform-origin:50% 50%;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:14px;
  3461. }
  3462. #u56584 .text {
  3463. position:absolute;
  3464. align-self:flex-start;
  3465. padding:0px 0px 0px 0px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u56584_text {
  3470. border-width:0px;
  3471. white-space:nowrap;
  3472. text-transform:none;
  3473. }
  3474. #u56585 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:0px;
  3480. height:0px;
  3481. }
  3482. #u56586_div {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:0px;
  3486. top:0px;
  3487. width:340px;
  3488. height:50px;
  3489. background:inherit;
  3490. background-color:rgba(242, 242, 242, 0.45098039215686275);
  3491. border-left:0px;
  3492. border-top:0px;
  3493. border-right:0px;
  3494. border-radius:0px;
  3495. border-bottom-right-radius:0px;
  3496. border-bottom-left-radius:0px;
  3497. filter:drop-shadow(none);
  3498. transition:none;
  3499. }
  3500. #u56586 {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:946px;
  3504. top:218px;
  3505. width:340px;
  3506. height:50px;
  3507. display:flex;
  3508. transition:none;
  3509. transform-origin:50% 50%;
  3510. }
  3511. #u56586 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 2px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u56586_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. visibility:hidden;
  3523. }
  3524. #u56587_input {
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:168px;
  3529. height:25px;
  3530. padding:2px 2px 2px 2px;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:14px;
  3535. letter-spacing:normal;
  3536. color:#AAAAAA;
  3537. vertical-align:none;
  3538. text-align:left;
  3539. text-transform:none;
  3540. background-color:transparent;
  3541. border-color:transparent;
  3542. }
  3543. #u56587_input.disabled {
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:168px;
  3548. height:25px;
  3549. padding:2px 2px 2px 2px;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:14px;
  3554. letter-spacing:normal;
  3555. color:#AAAAAA;
  3556. vertical-align:none;
  3557. text-align:left;
  3558. text-transform:none;
  3559. background-color:transparent;
  3560. border-color:transparent;
  3561. }
  3562. #u56587_div {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:168px;
  3568. height:25px;
  3569. background:inherit;
  3570. background-color:rgba(242, 242, 242, 0);
  3571. border-radius:0px;
  3572. filter:drop-shadow(none);
  3573. transition:none;
  3574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:14px;
  3578. color:#AAAAAA;
  3579. }
  3580. #u56587 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:959px;
  3584. top:231px;
  3585. width:168px;
  3586. height:25px;
  3587. display:flex;
  3588. transition:none;
  3589. transform-origin:50% 50%;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:14px;
  3594. color:#AAAAAA;
  3595. }
  3596. #u56587 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 2px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u56587_div.disabled {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:0px;
  3607. top:0px;
  3608. width:168px;
  3609. height:25px;
  3610. background:inherit;
  3611. background-color:rgba(240, 240, 240, 1);
  3612. border-radius:0px;
  3613. filter:drop-shadow(none);
  3614. transition:none;
  3615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3616. font-weight:400;
  3617. font-style:normal;
  3618. font-size:14px;
  3619. color:#AAAAAA;
  3620. }
  3621. #u56587.disabled {
  3622. }
  3623. #u56588_div {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:71px;
  3629. height:20px;
  3630. background:inherit;
  3631. background-color:rgba(255, 255, 255, 0);
  3632. border-left:0px;
  3633. border-top:0px;
  3634. border-right:0px;
  3635. border-radius:0px;
  3636. border-bottom-right-radius:0px;
  3637. border-bottom-left-radius:0px;
  3638. filter:drop-shadow(none);
  3639. transition:none;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:14px;
  3644. }
  3645. #u56588 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:952px;
  3649. top:288px;
  3650. width:71px;
  3651. height:20px;
  3652. display:flex;
  3653. transition:none;
  3654. transform-origin:50% 50%;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:14px;
  3659. }
  3660. #u56588 .text {
  3661. position:absolute;
  3662. align-self:flex-start;
  3663. padding:0px 0px 0px 0px;
  3664. box-sizing:border-box;
  3665. width:100%;
  3666. }
  3667. #u56588_text {
  3668. border-width:0px;
  3669. white-space:nowrap;
  3670. text-transform:none;
  3671. }
  3672. #u56589 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:0px;
  3678. height:0px;
  3679. }
  3680. #u56590_div {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:340px;
  3686. height:50px;
  3687. background:inherit;
  3688. background-color:rgba(242, 242, 242, 0.45098039215686275);
  3689. border-left:0px;
  3690. border-top:0px;
  3691. border-right:0px;
  3692. border-radius:0px;
  3693. border-bottom-right-radius:0px;
  3694. border-bottom-left-radius:0px;
  3695. filter:drop-shadow(none);
  3696. transition:none;
  3697. }
  3698. #u56590 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:952px;
  3702. top:318px;
  3703. width:340px;
  3704. height:50px;
  3705. display:flex;
  3706. transition:none;
  3707. transform-origin:50% 50%;
  3708. }
  3709. #u56590 .text {
  3710. position:absolute;
  3711. align-self:center;
  3712. padding:2px 2px 2px 2px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u56590_text {
  3717. border-width:0px;
  3718. word-wrap:break-word;
  3719. text-transform:none;
  3720. visibility:hidden;
  3721. }
  3722. #u56591_input {
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:168px;
  3727. height:25px;
  3728. padding:2px 2px 2px 2px;
  3729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:14px;
  3733. letter-spacing:normal;
  3734. color:#AAAAAA;
  3735. vertical-align:none;
  3736. text-align:left;
  3737. text-transform:none;
  3738. background-color:transparent;
  3739. border-color:transparent;
  3740. }
  3741. #u56591_input.disabled {
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:168px;
  3746. height:25px;
  3747. padding:2px 2px 2px 2px;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:14px;
  3752. letter-spacing:normal;
  3753. color:#AAAAAA;
  3754. vertical-align:none;
  3755. text-align:left;
  3756. text-transform:none;
  3757. background-color:transparent;
  3758. border-color:transparent;
  3759. }
  3760. #u56591_div {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:168px;
  3766. height:25px;
  3767. background:inherit;
  3768. background-color:rgba(242, 242, 242, 0);
  3769. border-radius:0px;
  3770. filter:drop-shadow(none);
  3771. transition:none;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:14px;
  3776. color:#AAAAAA;
  3777. }
  3778. #u56591 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:965px;
  3782. top:331px;
  3783. width:168px;
  3784. height:25px;
  3785. display:flex;
  3786. transition:none;
  3787. transform-origin:50% 50%;
  3788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3789. font-weight:400;
  3790. font-style:normal;
  3791. font-size:14px;
  3792. color:#AAAAAA;
  3793. }
  3794. #u56591 .text {
  3795. position:absolute;
  3796. align-self:center;
  3797. padding:2px 2px 2px 2px;
  3798. box-sizing:border-box;
  3799. width:100%;
  3800. }
  3801. #u56591_div.disabled {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:168px;
  3807. height:25px;
  3808. background:inherit;
  3809. background-color:rgba(240, 240, 240, 1);
  3810. border-radius:0px;
  3811. filter:drop-shadow(none);
  3812. transition:none;
  3813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:14px;
  3817. color:#AAAAAA;
  3818. }
  3819. #u56591.disabled {
  3820. }
  3821. #u56592_div {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:97px;
  3827. height:33px;
  3828. background:inherit;
  3829. background-color:rgba(255, 255, 255, 0);
  3830. border-radius:0px;
  3831. filter:drop-shadow(none);
  3832. transition:none;
  3833. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3834. font-weight:500;
  3835. font-style:normal;
  3836. font-size:24px;
  3837. }
  3838. #u56592 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:499px;
  3842. top:126px;
  3843. width:97px;
  3844. height:33px;
  3845. display:flex;
  3846. transition:none;
  3847. transform-origin:50% 50%;
  3848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3849. font-weight:500;
  3850. font-style:normal;
  3851. font-size:24px;
  3852. }
  3853. #u56592 .text {
  3854. position:absolute;
  3855. align-self:flex-start;
  3856. padding:0px 0px 0px 0px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u56592_text {
  3861. border-width:0px;
  3862. white-space:nowrap;
  3863. text-transform:none;
  3864. }
  3865. #u56593_div {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:97px;
  3871. height:33px;
  3872. background:inherit;
  3873. background-color:rgba(255, 255, 255, 0);
  3874. border-radius:0px;
  3875. filter:drop-shadow(none);
  3876. transition:none;
  3877. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3878. font-weight:500;
  3879. font-style:normal;
  3880. font-size:24px;
  3881. }
  3882. #u56593 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:952px;
  3886. top:126px;
  3887. width:97px;
  3888. height:33px;
  3889. display:flex;
  3890. transition:none;
  3891. transform-origin:50% 50%;
  3892. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3893. font-weight:500;
  3894. font-style:normal;
  3895. font-size:24px;
  3896. }
  3897. #u56593 .text {
  3898. position:absolute;
  3899. align-self:flex-start;
  3900. padding:0px 0px 0px 0px;
  3901. box-sizing:border-box;
  3902. width:100%;
  3903. }
  3904. #u56593_text {
  3905. border-width:0px;
  3906. white-space:nowrap;
  3907. text-transform:none;
  3908. }
  3909. #u56594_div {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:0px;
  3914. width:71px;
  3915. height:20px;
  3916. background:inherit;
  3917. background-color:rgba(255, 255, 255, 0);
  3918. border-left:0px;
  3919. border-top:0px;
  3920. border-right:0px;
  3921. border-radius:0px;
  3922. border-bottom-right-radius:0px;
  3923. border-bottom-left-radius:0px;
  3924. filter:drop-shadow(none);
  3925. transition:none;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. font-size:14px;
  3930. }
  3931. #u56594 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:181px;
  3935. top:378px;
  3936. width:71px;
  3937. height:20px;
  3938. display:flex;
  3939. transition:none;
  3940. transform-origin:50% 50%;
  3941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3942. font-weight:400;
  3943. font-style:normal;
  3944. font-size:14px;
  3945. }
  3946. #u56594 .text {
  3947. position:absolute;
  3948. align-self:flex-start;
  3949. padding:0px 0px 0px 0px;
  3950. box-sizing:border-box;
  3951. width:100%;
  3952. }
  3953. #u56594_text {
  3954. border-width:0px;
  3955. white-space:nowrap;
  3956. text-transform:none;
  3957. }
  3958. #u56595 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:895px;
  3963. width:433px;
  3964. height:865px;
  3965. }
  3966. #u56596 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:433px;
  3972. height:865px;
  3973. display:flex;
  3974. transition:none;
  3975. }
  3976. #u56596 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 2px 2px 2px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u56596_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:433px;
  3989. height:865px;
  3990. }
  3991. #u56596_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u56597_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:375px;
  4003. height:40px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 1);
  4006. box-sizing:border-box;
  4007. border-width:1px;
  4008. border-style:solid;
  4009. border-color:rgba(215, 215, 215, 1);
  4010. border-left:0px;
  4011. border-top:0px;
  4012. border-right:0px;
  4013. border-radius:0px;
  4014. border-bottom-right-radius:0px;
  4015. border-bottom-left-radius:0px;
  4016. filter:drop-shadow(none);
  4017. transition:none;
  4018. }
  4019. #u56597 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:29px;
  4023. top:67px;
  4024. width:375px;
  4025. height:40px;
  4026. display:flex;
  4027. transition:none;
  4028. transform-origin:50% 50%;
  4029. }
  4030. #u56597 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 2px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u56597_text {
  4038. border-width:0px;
  4039. word-wrap:break-word;
  4040. text-transform:none;
  4041. visibility:hidden;
  4042. }
  4043. #u56598 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:0px;
  4049. height:0px;
  4050. }
  4051. #u56599_div {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:88px;
  4057. height:32px;
  4058. background:inherit;
  4059. background-color:rgba(255, 255, 255, 1);
  4060. box-sizing:border-box;
  4061. border-width:1px;
  4062. border-style:solid;
  4063. border-color:rgba(242, 242, 242, 1);
  4064. border-radius:33px;
  4065. filter:drop-shadow(none);
  4066. transition:none;
  4067. }
  4068. #u56599 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:309px;
  4072. top:71px;
  4073. width:88px;
  4074. height:32px;
  4075. display:flex;
  4076. transition:none;
  4077. transform-origin:50% 50%;
  4078. }
  4079. #u56599 .text {
  4080. position:absolute;
  4081. align-self:center;
  4082. padding:2px 2px 2px 2px;
  4083. box-sizing:border-box;
  4084. width:100%;
  4085. }
  4086. #u56599_text {
  4087. border-width:0px;
  4088. word-wrap:break-word;
  4089. text-transform:none;
  4090. visibility:hidden;
  4091. }
  4092. #u56600 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:0px;
  4096. top:0px;
  4097. width:0px;
  4098. height:0px;
  4099. }
  4100. #u56601 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:372px;
  4104. top:78px;
  4105. width:18px;
  4106. height:18px;
  4107. display:flex;
  4108. transition:none;
  4109. }
  4110. #u56601 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 2px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u56601_img {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:18px;
  4123. height:18px;
  4124. }
  4125. #u56601_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. visibility:hidden;
  4130. }
  4131. #u56602 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:378px;
  4135. top:84px;
  4136. width:6px;
  4137. height:6px;
  4138. display:flex;
  4139. transition:none;
  4140. }
  4141. #u56602 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:2px 2px 2px 2px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u56602_img {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:6px;
  4154. height:6px;
  4155. }
  4156. #u56602_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. visibility:hidden;
  4161. }
  4162. #u56603 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:0px;
  4168. height:0px;
  4169. }
  4170. #u56604 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:323px;
  4174. top:85px;
  4175. width:5px;
  4176. height:5px;
  4177. display:flex;
  4178. transition:none;
  4179. }
  4180. #u56604 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 2px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u56604_img {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:5px;
  4193. height:5px;
  4194. }
  4195. #u56604_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u56605 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:339px;
  4205. top:85px;
  4206. width:5px;
  4207. height:5px;
  4208. display:flex;
  4209. transition:none;
  4210. }
  4211. #u56605 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:2px 2px 2px 2px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u56605_img {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:5px;
  4224. height:5px;
  4225. }
  4226. #u56605_text {
  4227. border-width:0px;
  4228. word-wrap:break-word;
  4229. text-transform:none;
  4230. visibility:hidden;
  4231. }
  4232. #u56606 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:330px;
  4236. top:84px;
  4237. width:7px;
  4238. height:7px;
  4239. display:flex;
  4240. transition:none;
  4241. }
  4242. #u56606 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 2px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u56606_img {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:7px;
  4255. height:7px;
  4256. }
  4257. #u56606_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. visibility:hidden;
  4262. }
  4263. #u56607 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:347px;
  4267. top:87px;
  4268. width:18px;
  4269. height:1px;
  4270. display:flex;
  4271. -webkit-transform:rotate(90deg);
  4272. -moz-transform:rotate(90deg);
  4273. -ms-transform:rotate(90deg);
  4274. transform:rotate(90deg);
  4275. transition:none;
  4276. }
  4277. #u56607 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:2px 2px 2px 2px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u56607_img {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:19px;
  4290. height:2px;
  4291. }
  4292. #u56607_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u56608 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:29px;
  4302. top:24px;
  4303. width:375px;
  4304. height:44px;
  4305. display:flex;
  4306. transition:none;
  4307. }
  4308. #u56608 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 2px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u56608_img {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:375px;
  4321. height:44px;
  4322. }
  4323. #u56608_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. visibility:hidden;
  4328. }
  4329. #u56609_div {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:375px;
  4335. height:50px;
  4336. background:inherit;
  4337. background-color:rgba(255, 255, 255, 1);
  4338. box-sizing:border-box;
  4339. border-width:1px;
  4340. border-style:solid;
  4341. border-color:rgba(242, 242, 242, 1);
  4342. border-radius:26px;
  4343. border-top-left-radius:0px;
  4344. border-top-right-radius:0px;
  4345. filter:drop-shadow(none);
  4346. transition:none;
  4347. }
  4348. #u56609 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:29px;
  4352. top:788px;
  4353. width:375px;
  4354. height:50px;
  4355. display:flex;
  4356. transition:none;
  4357. transform-origin:50% 50%;
  4358. }
  4359. #u56609 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u56609_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u56610 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:0px;
  4378. height:0px;
  4379. }
  4380. #u56611 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:69px;
  4384. top:792px;
  4385. width:24px;
  4386. height:24px;
  4387. display:flex;
  4388. transition:none;
  4389. font-size:8px;
  4390. }
  4391. #u56611 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 2px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u56611_img {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:24px;
  4404. height:24px;
  4405. }
  4406. #u56611_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. }
  4411. #u56612_div {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:25px;
  4417. height:17px;
  4418. background:inherit;
  4419. background-color:rgba(255, 255, 255, 0);
  4420. border-radius:0px;
  4421. filter:drop-shadow(none);
  4422. transition:none;
  4423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4424. font-weight:400;
  4425. font-style:normal;
  4426. font-size:12px;
  4427. }
  4428. #u56612 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:69px;
  4432. top:817px;
  4433. width:25px;
  4434. height:17px;
  4435. display:flex;
  4436. transition:none;
  4437. transform-origin:50% 50%;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:12px;
  4442. }
  4443. #u56612 .text {
  4444. position:absolute;
  4445. align-self:flex-start;
  4446. padding:0px 0px 0px 0px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u56612_text {
  4451. border-width:0px;
  4452. white-space:nowrap;
  4453. text-transform:none;
  4454. }
  4455. #u56613 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:0px;
  4461. height:0px;
  4462. }
  4463. #u56614 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:339px;
  4467. top:794px;
  4468. width:24px;
  4469. height:24px;
  4470. display:flex;
  4471. transition:none;
  4472. font-size:8px;
  4473. }
  4474. #u56614 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:2px 2px 2px 2px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u56614_img {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:24px;
  4487. height:24px;
  4488. }
  4489. #u56614_text {
  4490. border-width:0px;
  4491. word-wrap:break-word;
  4492. text-transform:none;
  4493. }
  4494. #u56615_div {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:25px;
  4500. height:17px;
  4501. background:inherit;
  4502. background-color:rgba(255, 255, 255, 0);
  4503. border-radius:0px;
  4504. filter:drop-shadow(none);
  4505. transition:none;
  4506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:12px;
  4510. }
  4511. #u56615 {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:339px;
  4515. top:819px;
  4516. width:25px;
  4517. height:17px;
  4518. display:flex;
  4519. transition:none;
  4520. transform-origin:50% 50%;
  4521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:12px;
  4525. }
  4526. #u56615 .text {
  4527. position:absolute;
  4528. align-self:flex-start;
  4529. padding:0px 0px 0px 0px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u56615_text {
  4534. border-width:0px;
  4535. white-space:nowrap;
  4536. text-transform:none;
  4537. }
  4538. #u56616_div {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:375px;
  4544. height:681px;
  4545. background:inherit;
  4546. background-color:rgba(242, 242, 242, 0.4627450980392157);
  4547. border-radius:0px;
  4548. filter:drop-shadow(none);
  4549. transition:none;
  4550. }
  4551. #u56616 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:29px;
  4555. top:107px;
  4556. width:375px;
  4557. height:681px;
  4558. display:flex;
  4559. transition:none;
  4560. transform-origin:50% 50%;
  4561. }
  4562. #u56616 .text {
  4563. position:absolute;
  4564. align-self:center;
  4565. padding:2px 2px 2px 2px;
  4566. box-sizing:border-box;
  4567. width:100%;
  4568. }
  4569. #u56616_text {
  4570. border-width:0px;
  4571. word-wrap:break-word;
  4572. text-transform:none;
  4573. visibility:hidden;
  4574. }
  4575. #u56617 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:0px;
  4581. height:0px;
  4582. }
  4583. #u56618 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:251px;
  4587. top:792px;
  4588. width:24px;
  4589. height:24px;
  4590. display:flex;
  4591. transition:none;
  4592. font-size:8px;
  4593. }
  4594. #u56618 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:2px 2px 2px 2px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u56618_img {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:24px;
  4607. height:24px;
  4608. }
  4609. #u56618_text {
  4610. border-width:0px;
  4611. word-wrap:break-word;
  4612. text-transform:none;
  4613. }
  4614. #u56619_div {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:37px;
  4620. height:17px;
  4621. background:inherit;
  4622. background-color:rgba(255, 255, 255, 0);
  4623. border-radius:0px;
  4624. filter:drop-shadow(none);
  4625. transition:none;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:12px;
  4630. }
  4631. #u56619 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:245px;
  4635. top:817px;
  4636. width:37px;
  4637. height:17px;
  4638. display:flex;
  4639. transition:none;
  4640. transform-origin:50% 50%;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:12px;
  4645. }
  4646. #u56619 .text {
  4647. position:absolute;
  4648. align-self:flex-start;
  4649. padding:0px 0px 0px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u56619_text {
  4654. border-width:0px;
  4655. white-space:nowrap;
  4656. text-transform:none;
  4657. }
  4658. #u56620 {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:0px;
  4664. height:0px;
  4665. }
  4666. #u56621 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:157px;
  4670. top:792px;
  4671. width:24px;
  4672. height:24px;
  4673. display:flex;
  4674. transition:none;
  4675. font-size:8px;
  4676. }
  4677. #u56621 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 2px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u56621_img {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:24px;
  4690. height:24px;
  4691. }
  4692. #u56621_text {
  4693. border-width:0px;
  4694. word-wrap:break-word;
  4695. text-transform:none;
  4696. }
  4697. #u56622_div {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:37px;
  4703. height:17px;
  4704. background:inherit;
  4705. background-color:rgba(255, 255, 255, 0);
  4706. border-radius:0px;
  4707. filter:drop-shadow(none);
  4708. transition:none;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. }
  4714. #u56622 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:151px;
  4718. top:817px;
  4719. width:37px;
  4720. height:17px;
  4721. display:flex;
  4722. transition:none;
  4723. transform-origin:50% 50%;
  4724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:12px;
  4728. }
  4729. #u56622 .text {
  4730. position:absolute;
  4731. align-self:flex-start;
  4732. padding:0px 0px 0px 0px;
  4733. box-sizing:border-box;
  4734. width:100%;
  4735. }
  4736. #u56622_text {
  4737. border-width:0px;
  4738. white-space:nowrap;
  4739. text-transform:none;
  4740. }
  4741. #u56623 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:29px;
  4745. top:1001px;
  4746. width:375px;
  4747. height:739px;
  4748. display:flex;
  4749. transition:none;
  4750. }
  4751. #u56623 .text {
  4752. position:absolute;
  4753. align-self:center;
  4754. padding:2px 2px 2px 2px;
  4755. box-sizing:border-box;
  4756. width:100%;
  4757. }
  4758. #u56623_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:375px;
  4764. height:739px;
  4765. }
  4766. #u56623_text {
  4767. border-width:0px;
  4768. word-wrap:break-word;
  4769. text-transform:none;
  4770. visibility:hidden;
  4771. }
  4772. #u56624_div {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:375px;
  4778. height:739px;
  4779. background:inherit;
  4780. background-color:rgba(255, 255, 255, 1);
  4781. border-top:0px;
  4782. border-radius:29px;
  4783. border-top-left-radius:0px;
  4784. border-top-right-radius:0px;
  4785. filter:drop-shadow(none);
  4786. transition:none;
  4787. }
  4788. #u56624 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:29px;
  4792. top:1001px;
  4793. width:375px;
  4794. height:739px;
  4795. display:flex;
  4796. transition:none;
  4797. transform-origin:50% 50%;
  4798. }
  4799. #u56624 .text {
  4800. position:absolute;
  4801. align-self:center;
  4802. padding:2px 2px 2px 2px;
  4803. box-sizing:border-box;
  4804. width:100%;
  4805. }
  4806. #u56624_text {
  4807. border-width:0px;
  4808. word-wrap:break-word;
  4809. text-transform:none;
  4810. visibility:hidden;
  4811. }
  4812. #u56625 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:40px;
  4816. top:974px;
  4817. width:11px;
  4818. height:18px;
  4819. display:flex;
  4820. transition:none;
  4821. }
  4822. #u56625 .text {
  4823. position:absolute;
  4824. align-self:center;
  4825. padding:2px 2px 2px 2px;
  4826. box-sizing:border-box;
  4827. width:100%;
  4828. }
  4829. #u56625_img {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:11px;
  4835. height:18px;
  4836. }
  4837. #u56625_text {
  4838. border-width:0px;
  4839. word-wrap:break-word;
  4840. text-transform:none;
  4841. visibility:hidden;
  4842. }
  4843. #u56626_div {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:97px;
  4849. height:33px;
  4850. background:inherit;
  4851. background-color:rgba(255, 255, 255, 0);
  4852. border-radius:0px;
  4853. filter:drop-shadow(none);
  4854. transition:none;
  4855. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4856. font-weight:500;
  4857. font-style:normal;
  4858. font-size:24px;
  4859. }
  4860. #u56626 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:50px;
  4864. top:1021px;
  4865. width:97px;
  4866. height:33px;
  4867. display:flex;
  4868. transition:none;
  4869. transform-origin:50% 50%;
  4870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4871. font-weight:500;
  4872. font-style:normal;
  4873. font-size:24px;
  4874. }
  4875. #u56626 .text {
  4876. position:absolute;
  4877. align-self:flex-start;
  4878. padding:0px 0px 0px 0px;
  4879. box-sizing:border-box;
  4880. width:100%;
  4881. }
  4882. #u56626_text {
  4883. border-width:0px;
  4884. white-space:nowrap;
  4885. text-transform:none;
  4886. }
  4887. #u56627 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:0px;
  4891. top:0px;
  4892. width:0px;
  4893. height:0px;
  4894. }
  4895. #u56628_div {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:340px;
  4901. height:50px;
  4902. background:inherit;
  4903. background-color:rgba(242, 242, 242, 0.45098039215686275);
  4904. border-left:0px;
  4905. border-top:0px;
  4906. border-right:0px;
  4907. border-radius:0px;
  4908. border-bottom-right-radius:0px;
  4909. border-bottom-left-radius:0px;
  4910. filter:drop-shadow(none);
  4911. transition:none;
  4912. }
  4913. #u56628 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:51px;
  4917. top:1123px;
  4918. width:340px;
  4919. height:50px;
  4920. display:flex;
  4921. transition:none;
  4922. transform-origin:50% 50%;
  4923. }
  4924. #u56628 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 2px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u56628_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u56629_input {
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:168px;
  4942. height:25px;
  4943. padding:2px 2px 2px 2px;
  4944. font-family:"ArialMT", "Arial", sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:14px;
  4948. letter-spacing:normal;
  4949. color:#000000;
  4950. vertical-align:none;
  4951. text-align:left;
  4952. text-transform:none;
  4953. background-color:transparent;
  4954. border-color:transparent;
  4955. }
  4956. #u56629_input.disabled {
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:168px;
  4961. height:25px;
  4962. padding:2px 2px 2px 2px;
  4963. font-family:"ArialMT", "Arial", sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:14px;
  4967. letter-spacing:normal;
  4968. color:#000000;
  4969. vertical-align:none;
  4970. text-align:left;
  4971. text-transform:none;
  4972. background-color:transparent;
  4973. border-color:transparent;
  4974. }
  4975. #u56629_div {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:168px;
  4981. height:25px;
  4982. background:inherit;
  4983. background-color:rgba(242, 242, 242, 0);
  4984. border-radius:0px;
  4985. filter:drop-shadow(none);
  4986. transition:none;
  4987. font-size:14px;
  4988. }
  4989. #u56629 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:64px;
  4993. top:1136px;
  4994. width:168px;
  4995. height:25px;
  4996. display:flex;
  4997. transition:none;
  4998. transform-origin:50% 50%;
  4999. font-size:14px;
  5000. }
  5001. #u56629 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:2px 2px 2px 2px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u56629_div.disabled {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:168px;
  5014. height:25px;
  5015. background:inherit;
  5016. background-color:rgba(240, 240, 240, 1);
  5017. border-radius:0px;
  5018. filter:drop-shadow(none);
  5019. transition:none;
  5020. font-size:14px;
  5021. }
  5022. #u56629.disabled {
  5023. }
  5024. #u56630_div {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:315px;
  5030. height:40px;
  5031. background:inherit;
  5032. background-color:rgba(24, 144, 255, 1);
  5033. border-radius:39px;
  5034. filter:drop-shadow(none);
  5035. transition:none;
  5036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:16px;
  5040. color:#FFFFFF;
  5041. }
  5042. #u56630 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:59px;
  5046. top:1328px;
  5047. width:315px;
  5048. height:40px;
  5049. display:flex;
  5050. transition:none;
  5051. transform-origin:50% 50%;
  5052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:16px;
  5056. color:#FFFFFF;
  5057. }
  5058. #u56630 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:2px 2px 2px 2px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u56630_text {
  5066. border-width:0px;
  5067. word-wrap:break-word;
  5068. text-transform:none;
  5069. }
  5070. #u56631_div {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:71px;
  5076. height:20px;
  5077. background:inherit;
  5078. background-color:rgba(255, 255, 255, 0);
  5079. border-left:0px;
  5080. border-top:0px;
  5081. border-right:0px;
  5082. border-radius:0px;
  5083. border-bottom-right-radius:0px;
  5084. border-bottom-left-radius:0px;
  5085. filter:drop-shadow(none);
  5086. transition:none;
  5087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:14px;
  5091. }
  5092. #u56631 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:51px;
  5096. top:1083px;
  5097. width:71px;
  5098. height:20px;
  5099. display:flex;
  5100. transition:none;
  5101. transform-origin:50% 50%;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:14px;
  5106. }
  5107. #u56631 .text {
  5108. position:absolute;
  5109. align-self:flex-start;
  5110. padding:0px 0px 0px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u56631_text {
  5115. border-width:0px;
  5116. white-space:nowrap;
  5117. text-transform:none;
  5118. }
  5119. #u56632_div {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:71px;
  5125. height:20px;
  5126. background:inherit;
  5127. background-color:rgba(255, 255, 255, 0);
  5128. border-left:0px;
  5129. border-top:0px;
  5130. border-right:0px;
  5131. border-radius:0px;
  5132. border-bottom-right-radius:0px;
  5133. border-bottom-left-radius:0px;
  5134. filter:drop-shadow(none);
  5135. transition:none;
  5136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:14px;
  5140. }
  5141. #u56632 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:181px;
  5145. top:1399px;
  5146. width:71px;
  5147. height:20px;
  5148. display:flex;
  5149. transition:none;
  5150. transform-origin:50% 50%;
  5151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5152. font-weight:400;
  5153. font-style:normal;
  5154. font-size:14px;
  5155. }
  5156. #u56632 .text {
  5157. position:absolute;
  5158. align-self:flex-start;
  5159. padding:0px 0px 0px 0px;
  5160. box-sizing:border-box;
  5161. width:100%;
  5162. }
  5163. #u56632_text {
  5164. border-width:0px;
  5165. white-space:nowrap;
  5166. text-transform:none;
  5167. }
  5168. #u56633 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:0px;
  5174. height:0px;
  5175. }
  5176. #u56634_div {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:340px;
  5182. height:50px;
  5183. background:inherit;
  5184. background-color:rgba(242, 242, 242, 0.45098039215686275);
  5185. border-left:0px;
  5186. border-top:0px;
  5187. border-right:0px;
  5188. border-radius:0px;
  5189. border-bottom-right-radius:0px;
  5190. border-bottom-left-radius:0px;
  5191. filter:drop-shadow(none);
  5192. transition:none;
  5193. }
  5194. #u56634 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:51px;
  5198. top:1243px;
  5199. width:340px;
  5200. height:50px;
  5201. display:flex;
  5202. transition:none;
  5203. transform-origin:50% 50%;
  5204. }
  5205. #u56634 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:2px 2px 2px 2px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u56634_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. visibility:hidden;
  5217. }
  5218. #u56635_input {
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:168px;
  5223. height:25px;
  5224. padding:2px 2px 2px 2px;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:14px;
  5229. letter-spacing:normal;
  5230. color:#000000;
  5231. vertical-align:none;
  5232. text-align:left;
  5233. text-transform:none;
  5234. background-color:transparent;
  5235. border-color:transparent;
  5236. }
  5237. #u56635_input.disabled {
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:168px;
  5242. height:25px;
  5243. padding:2px 2px 2px 2px;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:14px;
  5248. letter-spacing:normal;
  5249. color:#000000;
  5250. vertical-align:none;
  5251. text-align:left;
  5252. text-transform:none;
  5253. background-color:transparent;
  5254. border-color:transparent;
  5255. }
  5256. #u56635_div {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:168px;
  5262. height:25px;
  5263. background:inherit;
  5264. background-color:rgba(242, 242, 242, 0);
  5265. border-radius:0px;
  5266. filter:drop-shadow(none);
  5267. transition:none;
  5268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:14px;
  5272. }
  5273. #u56635 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:64px;
  5277. top:1256px;
  5278. width:168px;
  5279. height:25px;
  5280. display:flex;
  5281. transition:none;
  5282. transform-origin:50% 50%;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:14px;
  5287. }
  5288. #u56635 .text {
  5289. position:absolute;
  5290. align-self:center;
  5291. padding:2px 2px 2px 2px;
  5292. box-sizing:border-box;
  5293. width:100%;
  5294. }
  5295. #u56635_div.disabled {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:168px;
  5301. height:25px;
  5302. background:inherit;
  5303. background-color:rgba(240, 240, 240, 1);
  5304. border-radius:0px;
  5305. filter:drop-shadow(none);
  5306. transition:none;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:14px;
  5311. }
  5312. #u56635.disabled {
  5313. }
  5314. #u56636_div {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:43px;
  5320. height:20px;
  5321. background:inherit;
  5322. background-color:rgba(255, 255, 255, 0);
  5323. border-left:0px;
  5324. border-top:0px;
  5325. border-right:0px;
  5326. border-radius:0px;
  5327. border-bottom-right-radius:0px;
  5328. border-bottom-left-radius:0px;
  5329. filter:drop-shadow(none);
  5330. transition:none;
  5331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. font-size:14px;
  5335. }
  5336. #u56636 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:51px;
  5340. top:1203px;
  5341. width:43px;
  5342. height:20px;
  5343. display:flex;
  5344. transition:none;
  5345. transform-origin:50% 50%;
  5346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:14px;
  5350. }
  5351. #u56636 .text {
  5352. position:absolute;
  5353. align-self:flex-start;
  5354. padding:0px 0px 0px 0px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u56636_text {
  5359. border-width:0px;
  5360. white-space:nowrap;
  5361. text-transform:none;
  5362. }
  5363. #u56637 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:453px;
  5367. top:895px;
  5368. width:433px;
  5369. height:865px;
  5370. }
  5371. #u56638 {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:433px;
  5377. height:865px;
  5378. display:flex;
  5379. transition:none;
  5380. }
  5381. #u56638 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 2px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u56638_img {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:433px;
  5394. height:865px;
  5395. }
  5396. #u56638_text {
  5397. border-width:0px;
  5398. word-wrap:break-word;
  5399. text-transform:none;
  5400. visibility:hidden;
  5401. }
  5402. #u56639_div {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:375px;
  5408. height:40px;
  5409. background:inherit;
  5410. background-color:rgba(255, 255, 255, 1);
  5411. box-sizing:border-box;
  5412. border-width:1px;
  5413. border-style:solid;
  5414. border-color:rgba(215, 215, 215, 1);
  5415. border-left:0px;
  5416. border-top:0px;
  5417. border-right:0px;
  5418. border-radius:0px;
  5419. border-bottom-right-radius:0px;
  5420. border-bottom-left-radius:0px;
  5421. filter:drop-shadow(none);
  5422. transition:none;
  5423. }
  5424. #u56639 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:29px;
  5428. top:67px;
  5429. width:375px;
  5430. height:40px;
  5431. display:flex;
  5432. transition:none;
  5433. transform-origin:50% 50%;
  5434. }
  5435. #u56639 .text {
  5436. position:absolute;
  5437. align-self:center;
  5438. padding:2px 2px 2px 2px;
  5439. box-sizing:border-box;
  5440. width:100%;
  5441. }
  5442. #u56639_text {
  5443. border-width:0px;
  5444. word-wrap:break-word;
  5445. text-transform:none;
  5446. visibility:hidden;
  5447. }
  5448. #u56640 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:0px;
  5454. height:0px;
  5455. }
  5456. #u56641_div {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:88px;
  5462. height:32px;
  5463. background:inherit;
  5464. background-color:rgba(255, 255, 255, 1);
  5465. box-sizing:border-box;
  5466. border-width:1px;
  5467. border-style:solid;
  5468. border-color:rgba(242, 242, 242, 1);
  5469. border-radius:33px;
  5470. filter:drop-shadow(none);
  5471. transition:none;
  5472. }
  5473. #u56641 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:309px;
  5477. top:71px;
  5478. width:88px;
  5479. height:32px;
  5480. display:flex;
  5481. transition:none;
  5482. transform-origin:50% 50%;
  5483. }
  5484. #u56641 .text {
  5485. position:absolute;
  5486. align-self:center;
  5487. padding:2px 2px 2px 2px;
  5488. box-sizing:border-box;
  5489. width:100%;
  5490. }
  5491. #u56641_text {
  5492. border-width:0px;
  5493. word-wrap:break-word;
  5494. text-transform:none;
  5495. visibility:hidden;
  5496. }
  5497. #u56642 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:0px;
  5503. height:0px;
  5504. }
  5505. #u56643 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:372px;
  5509. top:78px;
  5510. width:18px;
  5511. height:18px;
  5512. display:flex;
  5513. transition:none;
  5514. }
  5515. #u56643 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 2px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u56643_img {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:18px;
  5528. height:18px;
  5529. }
  5530. #u56643_text {
  5531. border-width:0px;
  5532. word-wrap:break-word;
  5533. text-transform:none;
  5534. visibility:hidden;
  5535. }
  5536. #u56644 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:378px;
  5540. top:84px;
  5541. width:6px;
  5542. height:6px;
  5543. display:flex;
  5544. transition:none;
  5545. }
  5546. #u56644 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 2px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u56644_img {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:6px;
  5559. height:6px;
  5560. }
  5561. #u56644_text {
  5562. border-width:0px;
  5563. word-wrap:break-word;
  5564. text-transform:none;
  5565. visibility:hidden;
  5566. }
  5567. #u56645 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:0px;
  5573. height:0px;
  5574. }
  5575. #u56646 {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:323px;
  5579. top:85px;
  5580. width:5px;
  5581. height:5px;
  5582. display:flex;
  5583. transition:none;
  5584. }
  5585. #u56646 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:2px 2px 2px 2px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u56646_img {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:5px;
  5598. height:5px;
  5599. }
  5600. #u56646_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. visibility:hidden;
  5605. }
  5606. #u56647 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:339px;
  5610. top:85px;
  5611. width:5px;
  5612. height:5px;
  5613. display:flex;
  5614. transition:none;
  5615. }
  5616. #u56647 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:2px 2px 2px 2px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u56647_img {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:5px;
  5629. height:5px;
  5630. }
  5631. #u56647_text {
  5632. border-width:0px;
  5633. word-wrap:break-word;
  5634. text-transform:none;
  5635. visibility:hidden;
  5636. }
  5637. #u56648 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:330px;
  5641. top:84px;
  5642. width:7px;
  5643. height:7px;
  5644. display:flex;
  5645. transition:none;
  5646. }
  5647. #u56648 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:2px 2px 2px 2px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u56648_img {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:7px;
  5660. height:7px;
  5661. }
  5662. #u56648_text {
  5663. border-width:0px;
  5664. word-wrap:break-word;
  5665. text-transform:none;
  5666. visibility:hidden;
  5667. }
  5668. #u56649 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:347px;
  5672. top:87px;
  5673. width:18px;
  5674. height:1px;
  5675. display:flex;
  5676. -webkit-transform:rotate(90deg);
  5677. -moz-transform:rotate(90deg);
  5678. -ms-transform:rotate(90deg);
  5679. transform:rotate(90deg);
  5680. transition:none;
  5681. }
  5682. #u56649 .text {
  5683. position:absolute;
  5684. align-self:center;
  5685. padding:2px 2px 2px 2px;
  5686. box-sizing:border-box;
  5687. width:100%;
  5688. }
  5689. #u56649_img {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:19px;
  5695. height:2px;
  5696. }
  5697. #u56649_text {
  5698. border-width:0px;
  5699. word-wrap:break-word;
  5700. text-transform:none;
  5701. visibility:hidden;
  5702. }
  5703. #u56650 {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:29px;
  5707. top:24px;
  5708. width:375px;
  5709. height:44px;
  5710. display:flex;
  5711. transition:none;
  5712. }
  5713. #u56650 .text {
  5714. position:absolute;
  5715. align-self:center;
  5716. padding:2px 2px 2px 2px;
  5717. box-sizing:border-box;
  5718. width:100%;
  5719. }
  5720. #u56650_img {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:375px;
  5726. height:44px;
  5727. }
  5728. #u56650_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u56651_div {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:375px;
  5740. height:50px;
  5741. background:inherit;
  5742. background-color:rgba(255, 255, 255, 1);
  5743. box-sizing:border-box;
  5744. border-width:1px;
  5745. border-style:solid;
  5746. border-color:rgba(242, 242, 242, 1);
  5747. border-radius:26px;
  5748. border-top-left-radius:0px;
  5749. border-top-right-radius:0px;
  5750. filter:drop-shadow(none);
  5751. transition:none;
  5752. }
  5753. #u56651 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:29px;
  5757. top:788px;
  5758. width:375px;
  5759. height:50px;
  5760. display:flex;
  5761. transition:none;
  5762. transform-origin:50% 50%;
  5763. }
  5764. #u56651 .text {
  5765. position:absolute;
  5766. align-self:center;
  5767. padding:2px 2px 2px 2px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u56651_text {
  5772. border-width:0px;
  5773. word-wrap:break-word;
  5774. text-transform:none;
  5775. visibility:hidden;
  5776. }
  5777. #u56652 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:0px;
  5783. height:0px;
  5784. }
  5785. #u56653 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:69px;
  5789. top:792px;
  5790. width:24px;
  5791. height:24px;
  5792. display:flex;
  5793. transition:none;
  5794. font-size:8px;
  5795. }
  5796. #u56653 .text {
  5797. position:absolute;
  5798. align-self:center;
  5799. padding:2px 2px 2px 2px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u56653_img {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:24px;
  5809. height:24px;
  5810. }
  5811. #u56653_text {
  5812. border-width:0px;
  5813. word-wrap:break-word;
  5814. text-transform:none;
  5815. }
  5816. #u56654_div {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:25px;
  5822. height:17px;
  5823. background:inherit;
  5824. background-color:rgba(255, 255, 255, 0);
  5825. border-radius:0px;
  5826. filter:drop-shadow(none);
  5827. transition:none;
  5828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:12px;
  5832. }
  5833. #u56654 {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:69px;
  5837. top:817px;
  5838. width:25px;
  5839. height:17px;
  5840. display:flex;
  5841. transition:none;
  5842. transform-origin:50% 50%;
  5843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5844. font-weight:400;
  5845. font-style:normal;
  5846. font-size:12px;
  5847. }
  5848. #u56654 .text {
  5849. position:absolute;
  5850. align-self:flex-start;
  5851. padding:0px 0px 0px 0px;
  5852. box-sizing:border-box;
  5853. width:100%;
  5854. }
  5855. #u56654_text {
  5856. border-width:0px;
  5857. white-space:nowrap;
  5858. text-transform:none;
  5859. }
  5860. #u56655 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:0px;
  5866. height:0px;
  5867. }
  5868. #u56656 {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:339px;
  5872. top:794px;
  5873. width:24px;
  5874. height:24px;
  5875. display:flex;
  5876. transition:none;
  5877. font-size:8px;
  5878. }
  5879. #u56656 .text {
  5880. position:absolute;
  5881. align-self:center;
  5882. padding:2px 2px 2px 2px;
  5883. box-sizing:border-box;
  5884. width:100%;
  5885. }
  5886. #u56656_img {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:24px;
  5892. height:24px;
  5893. }
  5894. #u56656_text {
  5895. border-width:0px;
  5896. word-wrap:break-word;
  5897. text-transform:none;
  5898. }
  5899. #u56657_div {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:25px;
  5905. height:17px;
  5906. background:inherit;
  5907. background-color:rgba(255, 255, 255, 0);
  5908. border-radius:0px;
  5909. filter:drop-shadow(none);
  5910. transition:none;
  5911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5912. font-weight:400;
  5913. font-style:normal;
  5914. font-size:12px;
  5915. }
  5916. #u56657 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:339px;
  5920. top:819px;
  5921. width:25px;
  5922. height:17px;
  5923. display:flex;
  5924. transition:none;
  5925. transform-origin:50% 50%;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:12px;
  5930. }
  5931. #u56657 .text {
  5932. position:absolute;
  5933. align-self:flex-start;
  5934. padding:0px 0px 0px 0px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u56657_text {
  5939. border-width:0px;
  5940. white-space:nowrap;
  5941. text-transform:none;
  5942. }
  5943. #u56658_div {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:375px;
  5949. height:681px;
  5950. background:inherit;
  5951. background-color:rgba(242, 242, 242, 0.4627450980392157);
  5952. border-radius:0px;
  5953. filter:drop-shadow(none);
  5954. transition:none;
  5955. }
  5956. #u56658 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:29px;
  5960. top:107px;
  5961. width:375px;
  5962. height:681px;
  5963. display:flex;
  5964. transition:none;
  5965. transform-origin:50% 50%;
  5966. }
  5967. #u56658 .text {
  5968. position:absolute;
  5969. align-self:center;
  5970. padding:2px 2px 2px 2px;
  5971. box-sizing:border-box;
  5972. width:100%;
  5973. }
  5974. #u56658_text {
  5975. border-width:0px;
  5976. word-wrap:break-word;
  5977. text-transform:none;
  5978. visibility:hidden;
  5979. }
  5980. #u56659 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:0px;
  5986. height:0px;
  5987. }
  5988. #u56660 {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:251px;
  5992. top:792px;
  5993. width:24px;
  5994. height:24px;
  5995. display:flex;
  5996. transition:none;
  5997. font-size:8px;
  5998. }
  5999. #u56660 .text {
  6000. position:absolute;
  6001. align-self:center;
  6002. padding:2px 2px 2px 2px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u56660_img {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:24px;
  6012. height:24px;
  6013. }
  6014. #u56660_text {
  6015. border-width:0px;
  6016. word-wrap:break-word;
  6017. text-transform:none;
  6018. }
  6019. #u56661_div {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:37px;
  6025. height:17px;
  6026. background:inherit;
  6027. background-color:rgba(255, 255, 255, 0);
  6028. border-radius:0px;
  6029. filter:drop-shadow(none);
  6030. transition:none;
  6031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:12px;
  6035. }
  6036. #u56661 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:245px;
  6040. top:817px;
  6041. width:37px;
  6042. height:17px;
  6043. display:flex;
  6044. transition:none;
  6045. transform-origin:50% 50%;
  6046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6047. font-weight:400;
  6048. font-style:normal;
  6049. font-size:12px;
  6050. }
  6051. #u56661 .text {
  6052. position:absolute;
  6053. align-self:flex-start;
  6054. padding:0px 0px 0px 0px;
  6055. box-sizing:border-box;
  6056. width:100%;
  6057. }
  6058. #u56661_text {
  6059. border-width:0px;
  6060. white-space:nowrap;
  6061. text-transform:none;
  6062. }
  6063. #u56662 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:0px;
  6067. top:0px;
  6068. width:0px;
  6069. height:0px;
  6070. }
  6071. #u56663 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:157px;
  6075. top:792px;
  6076. width:24px;
  6077. height:24px;
  6078. display:flex;
  6079. transition:none;
  6080. font-size:8px;
  6081. }
  6082. #u56663 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:2px 2px 2px 2px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u56663_img {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:24px;
  6095. height:24px;
  6096. }
  6097. #u56663_text {
  6098. border-width:0px;
  6099. word-wrap:break-word;
  6100. text-transform:none;
  6101. }
  6102. #u56664_div {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:37px;
  6108. height:17px;
  6109. background:inherit;
  6110. background-color:rgba(255, 255, 255, 0);
  6111. border-radius:0px;
  6112. filter:drop-shadow(none);
  6113. transition:none;
  6114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. font-size:12px;
  6118. }
  6119. #u56664 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:151px;
  6123. top:817px;
  6124. width:37px;
  6125. height:17px;
  6126. display:flex;
  6127. transition:none;
  6128. transform-origin:50% 50%;
  6129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:12px;
  6133. }
  6134. #u56664 .text {
  6135. position:absolute;
  6136. align-self:flex-start;
  6137. padding:0px 0px 0px 0px;
  6138. box-sizing:border-box;
  6139. width:100%;
  6140. }
  6141. #u56664_text {
  6142. border-width:0px;
  6143. white-space:nowrap;
  6144. text-transform:none;
  6145. }
  6146. #u56665 {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:482px;
  6150. top:1001px;
  6151. width:375px;
  6152. height:739px;
  6153. display:flex;
  6154. transition:none;
  6155. }
  6156. #u56665 .text {
  6157. position:absolute;
  6158. align-self:center;
  6159. padding:2px 2px 2px 2px;
  6160. box-sizing:border-box;
  6161. width:100%;
  6162. }
  6163. #u56665_img {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:375px;
  6169. height:739px;
  6170. }
  6171. #u56665_text {
  6172. border-width:0px;
  6173. word-wrap:break-word;
  6174. text-transform:none;
  6175. visibility:hidden;
  6176. }
  6177. #u56666_div {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:375px;
  6183. height:739px;
  6184. background:inherit;
  6185. background-color:rgba(255, 255, 255, 1);
  6186. border-top:0px;
  6187. border-radius:29px;
  6188. border-top-left-radius:0px;
  6189. border-top-right-radius:0px;
  6190. filter:drop-shadow(none);
  6191. transition:none;
  6192. }
  6193. #u56666 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:482px;
  6197. top:1001px;
  6198. width:375px;
  6199. height:739px;
  6200. display:flex;
  6201. transition:none;
  6202. transform-origin:50% 50%;
  6203. }
  6204. #u56666 .text {
  6205. position:absolute;
  6206. align-self:center;
  6207. padding:2px 2px 2px 2px;
  6208. box-sizing:border-box;
  6209. width:100%;
  6210. }
  6211. #u56666_text {
  6212. border-width:0px;
  6213. word-wrap:break-word;
  6214. text-transform:none;
  6215. visibility:hidden;
  6216. }
  6217. #u56667 {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:493px;
  6221. top:974px;
  6222. width:11px;
  6223. height:18px;
  6224. display:flex;
  6225. transition:none;
  6226. }
  6227. #u56667 .text {
  6228. position:absolute;
  6229. align-self:center;
  6230. padding:2px 2px 2px 2px;
  6231. box-sizing:border-box;
  6232. width:100%;
  6233. }
  6234. #u56667_img {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:11px;
  6240. height:18px;
  6241. }
  6242. #u56667_text {
  6243. border-width:0px;
  6244. word-wrap:break-word;
  6245. text-transform:none;
  6246. visibility:hidden;
  6247. }
  6248. #u56668_div {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:73px;
  6254. height:25px;
  6255. background:inherit;
  6256. background-color:rgba(255, 255, 255, 0);
  6257. border-radius:0px;
  6258. filter:drop-shadow(none);
  6259. transition:none;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:18px;
  6264. }
  6265. #u56668 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:520px;
  6269. top:970px;
  6270. width:73px;
  6271. height:25px;
  6272. display:flex;
  6273. transition:none;
  6274. transform-origin:50% 50%;
  6275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:18px;
  6279. }
  6280. #u56668 .text {
  6281. position:absolute;
  6282. align-self:flex-start;
  6283. padding:0px 0px 0px 0px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u56668_text {
  6288. border-width:0px;
  6289. white-space:nowrap;
  6290. text-transform:none;
  6291. }
  6292. #u56669_div {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:315px;
  6298. height:40px;
  6299. background:inherit;
  6300. background-color:rgba(24, 144, 255, 1);
  6301. border-radius:39px;
  6302. filter:drop-shadow(none);
  6303. transition:none;
  6304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:16px;
  6308. color:#FFFFFF;
  6309. }
  6310. #u56669 {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:512px;
  6314. top:1291px;
  6315. width:315px;
  6316. height:40px;
  6317. display:flex;
  6318. transition:none;
  6319. transform-origin:50% 50%;
  6320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6321. font-weight:400;
  6322. font-style:normal;
  6323. font-size:16px;
  6324. color:#FFFFFF;
  6325. }
  6326. #u56669 .text {
  6327. position:absolute;
  6328. align-self:center;
  6329. padding:2px 2px 2px 2px;
  6330. box-sizing:border-box;
  6331. width:100%;
  6332. }
  6333. #u56669_text {
  6334. border-width:0px;
  6335. word-wrap:break-word;
  6336. text-transform:none;
  6337. }
  6338. #u56670_div {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:85px;
  6344. height:20px;
  6345. background:inherit;
  6346. background-color:rgba(255, 255, 255, 0);
  6347. border-left:0px;
  6348. border-top:0px;
  6349. border-right:0px;
  6350. border-radius:0px;
  6351. border-bottom-right-radius:0px;
  6352. border-bottom-left-radius:0px;
  6353. filter:drop-shadow(none);
  6354. transition:none;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. }
  6360. #u56670 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:499px;
  6364. top:1083px;
  6365. width:85px;
  6366. height:20px;
  6367. display:flex;
  6368. transition:none;
  6369. transform-origin:50% 50%;
  6370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:14px;
  6374. }
  6375. #u56670 .text {
  6376. position:absolute;
  6377. align-self:flex-start;
  6378. padding:0px 0px 0px 0px;
  6379. box-sizing:border-box;
  6380. width:100%;
  6381. }
  6382. #u56670_text {
  6383. border-width:0px;
  6384. white-space:nowrap;
  6385. text-transform:none;
  6386. }
  6387. #u56671 {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:0px;
  6393. height:0px;
  6394. }
  6395. #u56672_div {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:340px;
  6401. height:50px;
  6402. background:inherit;
  6403. background-color:rgba(242, 242, 242, 0.45098039215686275);
  6404. border-left:0px;
  6405. border-top:0px;
  6406. border-right:0px;
  6407. border-radius:0px;
  6408. border-bottom-right-radius:0px;
  6409. border-bottom-left-radius:0px;
  6410. filter:drop-shadow(none);
  6411. transition:none;
  6412. }
  6413. #u56672 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:493px;
  6417. top:1113px;
  6418. width:340px;
  6419. height:50px;
  6420. display:flex;
  6421. transition:none;
  6422. transform-origin:50% 50%;
  6423. }
  6424. #u56672 .text {
  6425. position:absolute;
  6426. align-self:center;
  6427. padding:2px 2px 2px 2px;
  6428. box-sizing:border-box;
  6429. width:100%;
  6430. }
  6431. #u56672_text {
  6432. border-width:0px;
  6433. word-wrap:break-word;
  6434. text-transform:none;
  6435. visibility:hidden;
  6436. }
  6437. #u56673_input {
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:168px;
  6442. height:25px;
  6443. padding:2px 2px 2px 2px;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:14px;
  6448. letter-spacing:normal;
  6449. color:#AAAAAA;
  6450. vertical-align:none;
  6451. text-align:left;
  6452. text-transform:none;
  6453. background-color:transparent;
  6454. border-color:transparent;
  6455. }
  6456. #u56673_input.disabled {
  6457. position:absolute;
  6458. left:0px;
  6459. top:0px;
  6460. width:168px;
  6461. height:25px;
  6462. padding:2px 2px 2px 2px;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:14px;
  6467. letter-spacing:normal;
  6468. color:#AAAAAA;
  6469. vertical-align:none;
  6470. text-align:left;
  6471. text-transform:none;
  6472. background-color:transparent;
  6473. border-color:transparent;
  6474. }
  6475. #u56673_div {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:168px;
  6481. height:25px;
  6482. background:inherit;
  6483. background-color:rgba(242, 242, 242, 0);
  6484. border-radius:0px;
  6485. filter:drop-shadow(none);
  6486. transition:none;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:14px;
  6491. color:#AAAAAA;
  6492. }
  6493. #u56673 {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:506px;
  6497. top:1126px;
  6498. width:168px;
  6499. height:25px;
  6500. display:flex;
  6501. transition:none;
  6502. transform-origin:50% 50%;
  6503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:14px;
  6507. color:#AAAAAA;
  6508. }
  6509. #u56673 .text {
  6510. position:absolute;
  6511. align-self:center;
  6512. padding:2px 2px 2px 2px;
  6513. box-sizing:border-box;
  6514. width:100%;
  6515. }
  6516. #u56673_div.disabled {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:168px;
  6522. height:25px;
  6523. background:inherit;
  6524. background-color:rgba(240, 240, 240, 1);
  6525. border-radius:0px;
  6526. filter:drop-shadow(none);
  6527. transition:none;
  6528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6529. font-weight:400;
  6530. font-style:normal;
  6531. font-size:14px;
  6532. color:#AAAAAA;
  6533. }
  6534. #u56673.disabled {
  6535. }
  6536. #u56674_div {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:71px;
  6542. height:20px;
  6543. background:inherit;
  6544. background-color:rgba(255, 255, 255, 0);
  6545. border-left:0px;
  6546. border-top:0px;
  6547. border-right:0px;
  6548. border-radius:0px;
  6549. border-bottom-right-radius:0px;
  6550. border-bottom-left-radius:0px;
  6551. filter:drop-shadow(none);
  6552. transition:none;
  6553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:14px;
  6557. }
  6558. #u56674 {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:499px;
  6562. top:1183px;
  6563. width:71px;
  6564. height:20px;
  6565. display:flex;
  6566. transition:none;
  6567. transform-origin:50% 50%;
  6568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:14px;
  6572. }
  6573. #u56674 .text {
  6574. position:absolute;
  6575. align-self:flex-start;
  6576. padding:0px 0px 0px 0px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u56674_text {
  6581. border-width:0px;
  6582. white-space:nowrap;
  6583. text-transform:none;
  6584. }
  6585. #u56675 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:0px;
  6591. height:0px;
  6592. }
  6593. #u56676_div {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:340px;
  6599. height:50px;
  6600. background:inherit;
  6601. background-color:rgba(242, 242, 242, 0.45098039215686275);
  6602. border-left:0px;
  6603. border-top:0px;
  6604. border-right:0px;
  6605. border-radius:0px;
  6606. border-bottom-right-radius:0px;
  6607. border-bottom-left-radius:0px;
  6608. filter:drop-shadow(none);
  6609. transition:none;
  6610. }
  6611. #u56676 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:499px;
  6615. top:1213px;
  6616. width:340px;
  6617. height:50px;
  6618. display:flex;
  6619. transition:none;
  6620. transform-origin:50% 50%;
  6621. }
  6622. #u56676 .text {
  6623. position:absolute;
  6624. align-self:center;
  6625. padding:2px 2px 2px 2px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u56676_text {
  6630. border-width:0px;
  6631. word-wrap:break-word;
  6632. text-transform:none;
  6633. visibility:hidden;
  6634. }
  6635. #u56677_input {
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:168px;
  6640. height:25px;
  6641. padding:2px 2px 2px 2px;
  6642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:14px;
  6646. letter-spacing:normal;
  6647. color:#AAAAAA;
  6648. vertical-align:none;
  6649. text-align:left;
  6650. text-transform:none;
  6651. background-color:transparent;
  6652. border-color:transparent;
  6653. }
  6654. #u56677_input.disabled {
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:168px;
  6659. height:25px;
  6660. padding:2px 2px 2px 2px;
  6661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:14px;
  6665. letter-spacing:normal;
  6666. color:#AAAAAA;
  6667. vertical-align:none;
  6668. text-align:left;
  6669. text-transform:none;
  6670. background-color:transparent;
  6671. border-color:transparent;
  6672. }
  6673. #u56677_div {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:0px;
  6677. top:0px;
  6678. width:168px;
  6679. height:25px;
  6680. background:inherit;
  6681. background-color:rgba(242, 242, 242, 0);
  6682. border-radius:0px;
  6683. filter:drop-shadow(none);
  6684. transition:none;
  6685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:14px;
  6689. color:#AAAAAA;
  6690. }
  6691. #u56677 {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:512px;
  6695. top:1226px;
  6696. width:168px;
  6697. height:25px;
  6698. display:flex;
  6699. transition:none;
  6700. transform-origin:50% 50%;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:14px;
  6705. color:#AAAAAA;
  6706. }
  6707. #u56677 .text {
  6708. position:absolute;
  6709. align-self:center;
  6710. padding:2px 2px 2px 2px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u56677_div.disabled {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:0px;
  6718. top:0px;
  6719. width:168px;
  6720. height:25px;
  6721. background:inherit;
  6722. background-color:rgba(240, 240, 240, 1);
  6723. border-radius:0px;
  6724. filter:drop-shadow(none);
  6725. transition:none;
  6726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6727. font-weight:400;
  6728. font-style:normal;
  6729. font-size:14px;
  6730. color:#AAAAAA;
  6731. }
  6732. #u56677.disabled {
  6733. }
  6734. #u56678_div {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:0px;
  6738. top:0px;
  6739. width:97px;
  6740. height:33px;
  6741. background:inherit;
  6742. background-color:rgba(255, 255, 255, 0);
  6743. border-radius:0px;
  6744. filter:drop-shadow(none);
  6745. transition:none;
  6746. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6747. font-weight:500;
  6748. font-style:normal;
  6749. font-size:24px;
  6750. }
  6751. #u56678 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:499px;
  6755. top:1021px;
  6756. width:97px;
  6757. height:33px;
  6758. display:flex;
  6759. transition:none;
  6760. transform-origin:50% 50%;
  6761. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6762. font-weight:500;
  6763. font-style:normal;
  6764. font-size:24px;
  6765. }
  6766. #u56678 .text {
  6767. position:absolute;
  6768. align-self:flex-start;
  6769. padding:0px 0px 0px 0px;
  6770. box-sizing:border-box;
  6771. width:100%;
  6772. }
  6773. #u56678_text {
  6774. border-width:0px;
  6775. white-space:nowrap;
  6776. text-transform:none;
  6777. }
  6778. #u56679_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:331px;
  6784. height:120px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 0);
  6787. border-left:0px;
  6788. border-top:0px;
  6789. border-right:0px;
  6790. border-radius:0px;
  6791. border-bottom-right-radius:0px;
  6792. border-bottom-left-radius:0px;
  6793. filter:drop-shadow(none);
  6794. transition:none;
  6795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:14px;
  6799. color:#D9001B;
  6800. }
  6801. #u56679 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:51px;
  6805. top:413px;
  6806. width:331px;
  6807. height:120px;
  6808. display:flex;
  6809. transition:none;
  6810. transform-origin:50% 50%;
  6811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:14px;
  6815. color:#D9001B;
  6816. }
  6817. #u56679 .text {
  6818. position:absolute;
  6819. align-self:flex-start;
  6820. padding:0px 0px 0px 0px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u56679_text {
  6825. border-width:0px;
  6826. word-wrap:break-word;
  6827. text-transform:none;
  6828. }
  6829. #u56680 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:0px;
  6835. height:0px;
  6836. }
  6837. #u56681_div {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:460px;
  6843. height:763px;
  6844. background:inherit;
  6845. background-color:rgba(255, 255, 255, 1);
  6846. box-sizing:border-box;
  6847. border-width:1px;
  6848. border-style:solid;
  6849. border-color:rgba(121, 121, 121, 1);
  6850. border-radius:0px;
  6851. filter:drop-shadow(none);
  6852. transition:none;
  6853. }
  6854. #u56681 {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:1379px;
  6858. top:35px;
  6859. width:460px;
  6860. height:763px;
  6861. display:flex;
  6862. transition:none;
  6863. transform-origin:50% 50%;
  6864. }
  6865. #u56681 .text {
  6866. position:absolute;
  6867. align-self:center;
  6868. padding:2px 2px 2px 2px;
  6869. box-sizing:border-box;
  6870. width:100%;
  6871. }
  6872. #u56681_text {
  6873. border-width:0px;
  6874. word-wrap:break-word;
  6875. text-transform:none;
  6876. visibility:hidden;
  6877. }
  6878. #u56682_div {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:0px;
  6882. top:0px;
  6883. width:100px;
  6884. height:60px;
  6885. background:inherit;
  6886. background-color:rgba(255, 255, 255, 1);
  6887. box-sizing:border-box;
  6888. border-width:1px;
  6889. border-style:solid;
  6890. border-color:rgba(121, 121, 121, 1);
  6891. border-radius:50px;
  6892. filter:drop-shadow(none);
  6893. transition:none;
  6894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. }
  6898. #u56682 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:1476px;
  6902. top:101px;
  6903. width:100px;
  6904. height:60px;
  6905. display:flex;
  6906. transition:none;
  6907. transform-origin:50% 50%;
  6908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6909. font-weight:400;
  6910. font-style:normal;
  6911. }
  6912. #u56682 .text {
  6913. position:absolute;
  6914. align-self:center;
  6915. padding:2px 2px 2px 2px;
  6916. box-sizing:border-box;
  6917. width:100%;
  6918. }
  6919. #u56682_text {
  6920. border-width:0px;
  6921. word-wrap:break-word;
  6922. text-transform:none;
  6923. }
  6924. #u56683_div {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:151px;
  6930. height:60px;
  6931. background:inherit;
  6932. background-color:rgba(255, 255, 255, 1);
  6933. box-sizing:border-box;
  6934. border-width:1px;
  6935. border-style:solid;
  6936. border-color:rgba(121, 121, 121, 1);
  6937. border-radius:0px;
  6938. filter:drop-shadow(none);
  6939. transition:none;
  6940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. }
  6944. #u56683 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:1450px;
  6948. top:224px;
  6949. width:151px;
  6950. height:60px;
  6951. display:flex;
  6952. transition:none;
  6953. transform-origin:50% 50%;
  6954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6955. font-weight:400;
  6956. font-style:normal;
  6957. }
  6958. #u56683 .text {
  6959. position:absolute;
  6960. align-self:center;
  6961. padding:2px 2px 2px 2px;
  6962. box-sizing:border-box;
  6963. width:100%;
  6964. }
  6965. #u56683_text {
  6966. border-width:0px;
  6967. word-wrap:break-word;
  6968. text-transform:none;
  6969. }
  6970. #u56684_div {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:151px;
  6976. height:60px;
  6977. background:inherit;
  6978. background-color:rgba(255, 255, 255, 1);
  6979. box-sizing:border-box;
  6980. border-width:1px;
  6981. border-style:solid;
  6982. border-color:rgba(121, 121, 121, 1);
  6983. border-radius:0px;
  6984. filter:drop-shadow(none);
  6985. transition:none;
  6986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. }
  6990. #u56684 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:1450px;
  6994. top:315px;
  6995. width:151px;
  6996. height:60px;
  6997. display:flex;
  6998. transition:none;
  6999. transform-origin:50% 50%;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. }
  7004. #u56684 .text {
  7005. position:absolute;
  7006. align-self:center;
  7007. padding:2px 2px 2px 2px;
  7008. box-sizing:border-box;
  7009. width:100%;
  7010. }
  7011. #u56684_text {
  7012. border-width:0px;
  7013. word-wrap:break-word;
  7014. text-transform:none;
  7015. }
  7016. #u56685_div {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:151px;
  7022. height:60px;
  7023. background:inherit;
  7024. background-color:rgba(255, 255, 255, 1);
  7025. box-sizing:border-box;
  7026. border-width:1px;
  7027. border-style:solid;
  7028. border-color:rgba(121, 121, 121, 1);
  7029. border-radius:0px;
  7030. filter:drop-shadow(none);
  7031. transition:none;
  7032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. }
  7036. #u56685 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:1637px;
  7040. top:615px;
  7041. width:151px;
  7042. height:60px;
  7043. display:flex;
  7044. transition:none;
  7045. transform-origin:50% 50%;
  7046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. }
  7050. #u56685 .text {
  7051. position:absolute;
  7052. align-self:center;
  7053. padding:2px 2px 2px 2px;
  7054. box-sizing:border-box;
  7055. width:100%;
  7056. }
  7057. #u56685_text {
  7058. border-width:0px;
  7059. word-wrap:break-word;
  7060. text-transform:none;
  7061. }
  7062. #u56686_div {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:0px;
  7066. top:0px;
  7067. width:100px;
  7068. height:60px;
  7069. background:inherit;
  7070. background-color:rgba(255, 255, 255, 1);
  7071. box-sizing:border-box;
  7072. border-width:1px;
  7073. border-style:solid;
  7074. border-color:rgba(121, 121, 121, 1);
  7075. border-radius:50px;
  7076. filter:drop-shadow(none);
  7077. transition:none;
  7078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7079. font-weight:400;
  7080. font-style:normal;
  7081. }
  7082. #u56686 {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:1663px;
  7086. top:694px;
  7087. width:100px;
  7088. height:60px;
  7089. display:flex;
  7090. transition:none;
  7091. transform-origin:50% 50%;
  7092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7093. font-weight:400;
  7094. font-style:normal;
  7095. }
  7096. #u56686 .text {
  7097. position:absolute;
  7098. align-self:center;
  7099. padding:2px 2px 2px 2px;
  7100. box-sizing:border-box;
  7101. width:100%;
  7102. }
  7103. #u56686_text {
  7104. border-width:0px;
  7105. word-wrap:break-word;
  7106. text-transform:none;
  7107. }
  7108. #u56687 {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:1526px;
  7112. top:161px;
  7113. width:0px;
  7114. height:0px;
  7115. transition:none;
  7116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7117. font-weight:400;
  7118. font-style:normal;
  7119. font-size:12px;
  7120. color:#333333;
  7121. }
  7122. #u56687_seg0 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:-5px;
  7126. top:0px;
  7127. width:10px;
  7128. height:68px;
  7129. }
  7130. #u56687_text {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:-50px;
  7134. top:14px;
  7135. width:100px;
  7136. word-wrap:break-word;
  7137. text-transform:none;
  7138. }
  7139. #u56688 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:1526px;
  7143. top:284px;
  7144. width:0px;
  7145. height:0px;
  7146. transition:none;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:12px;
  7151. color:#333333;
  7152. }
  7153. #u56688_seg0 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:-5px;
  7157. top:0px;
  7158. width:10px;
  7159. height:36px;
  7160. }
  7161. #u56688_text {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:-50px;
  7165. top:8px;
  7166. width:100px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. visibility:hidden;
  7170. }
  7171. #u56689 {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:1526px;
  7175. top:375px;
  7176. width:0px;
  7177. height:0px;
  7178. transition:none;
  7179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7180. font-weight:400;
  7181. font-style:normal;
  7182. font-size:12px;
  7183. color:#333333;
  7184. }
  7185. #u56689_seg0 {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:-5px;
  7189. top:0px;
  7190. width:10px;
  7191. height:65px;
  7192. }
  7193. #u56689_text {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:-50px;
  7197. top:13px;
  7198. width:100px;
  7199. word-wrap:break-word;
  7200. text-transform:none;
  7201. }
  7202. #u56690 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:1713px;
  7206. top:675px;
  7207. width:0px;
  7208. height:0px;
  7209. transition:none;
  7210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7211. font-weight:400;
  7212. font-style:normal;
  7213. font-size:12px;
  7214. color:#333333;
  7215. }
  7216. #u56690_seg0 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:-5px;
  7220. top:0px;
  7221. width:10px;
  7222. height:24px;
  7223. }
  7224. #u56690_text {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:-50px;
  7228. top:2px;
  7229. width:100px;
  7230. word-wrap:break-word;
  7231. text-transform:none;
  7232. visibility:hidden;
  7233. }
  7234. #u56691_div {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:0px;
  7238. top:0px;
  7239. width:156px;
  7240. height:25px;
  7241. background:inherit;
  7242. background-color:rgba(255, 255, 255, 0);
  7243. border-radius:0px;
  7244. filter:drop-shadow(none);
  7245. transition:none;
  7246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7247. font-weight:400;
  7248. font-style:normal;
  7249. font-size:18px;
  7250. }
  7251. #u56691 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:1401px;
  7255. top:51px;
  7256. width:156px;
  7257. height:25px;
  7258. display:flex;
  7259. transition:none;
  7260. transform-origin:50% 50%;
  7261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7262. font-weight:400;
  7263. font-style:normal;
  7264. font-size:18px;
  7265. }
  7266. #u56691 .text {
  7267. position:absolute;
  7268. align-self:flex-start;
  7269. padding:0px 0px 0px 0px;
  7270. box-sizing:border-box;
  7271. width:100%;
  7272. }
  7273. #u56691_text {
  7274. border-width:0px;
  7275. white-space:nowrap;
  7276. text-transform:none;
  7277. }
  7278. #u56692_div {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:0px;
  7283. width:151px;
  7284. height:60px;
  7285. background:inherit;
  7286. background-color:rgba(255, 255, 255, 1);
  7287. box-sizing:border-box;
  7288. border-width:1px;
  7289. border-style:solid;
  7290. border-color:rgba(121, 121, 121, 1);
  7291. border-radius:0px;
  7292. filter:drop-shadow(none);
  7293. transition:none;
  7294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7295. font-weight:400;
  7296. font-style:normal;
  7297. }
  7298. #u56692 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:1450px;
  7302. top:435px;
  7303. width:151px;
  7304. height:60px;
  7305. display:flex;
  7306. transition:none;
  7307. transform-origin:50% 50%;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. }
  7312. #u56692 .text {
  7313. position:absolute;
  7314. align-self:center;
  7315. padding:2px 2px 2px 2px;
  7316. box-sizing:border-box;
  7317. width:100%;
  7318. }
  7319. #u56692_text {
  7320. border-width:0px;
  7321. word-wrap:break-word;
  7322. text-transform:none;
  7323. }
  7324. #u56693_div {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:151px;
  7330. height:60px;
  7331. background:inherit;
  7332. background-color:rgba(255, 255, 255, 1);
  7333. box-sizing:border-box;
  7334. border-width:1px;
  7335. border-style:solid;
  7336. border-color:rgba(121, 121, 121, 1);
  7337. border-radius:0px;
  7338. filter:drop-shadow(none);
  7339. transition:none;
  7340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. }
  7344. #u56693 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:1450px;
  7348. top:525px;
  7349. width:151px;
  7350. height:60px;
  7351. display:flex;
  7352. transition:none;
  7353. transform-origin:50% 50%;
  7354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7355. font-weight:400;
  7356. font-style:normal;
  7357. }
  7358. #u56693 .text {
  7359. position:absolute;
  7360. align-self:center;
  7361. padding:2px 2px 2px 2px;
  7362. box-sizing:border-box;
  7363. width:100%;
  7364. }
  7365. #u56693_text {
  7366. border-width:0px;
  7367. word-wrap:break-word;
  7368. text-transform:none;
  7369. }
  7370. #u56694_div {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:151px;
  7376. height:60px;
  7377. background:inherit;
  7378. background-color:rgba(255, 255, 255, 1);
  7379. box-sizing:border-box;
  7380. border-width:1px;
  7381. border-style:solid;
  7382. border-color:rgba(121, 121, 121, 1);
  7383. border-radius:0px;
  7384. filter:drop-shadow(none);
  7385. transition:none;
  7386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7387. font-weight:400;
  7388. font-style:normal;
  7389. }
  7390. #u56694 {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:1637px;
  7394. top:525px;
  7395. width:151px;
  7396. height:60px;
  7397. display:flex;
  7398. transition:none;
  7399. transform-origin:50% 50%;
  7400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. }
  7404. #u56694 .text {
  7405. position:absolute;
  7406. align-self:center;
  7407. padding:2px 2px 2px 2px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u56694_text {
  7412. border-width:0px;
  7413. word-wrap:break-word;
  7414. text-transform:none;
  7415. }
  7416. #u56695 {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:1526px;
  7420. top:495px;
  7421. width:0px;
  7422. height:0px;
  7423. transition:none;
  7424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:12px;
  7428. color:#333333;
  7429. }
  7430. #u56695_seg0 {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:-5px;
  7434. top:0px;
  7435. width:10px;
  7436. height:35px;
  7437. }
  7438. #u56695_text {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:-50px;
  7442. top:7px;
  7443. width:100px;
  7444. word-wrap:break-word;
  7445. text-transform:none;
  7446. visibility:hidden;
  7447. }
  7448. #u56696 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:1601px;
  7452. top:555px;
  7453. width:0px;
  7454. height:0px;
  7455. transition:none;
  7456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7457. font-weight:400;
  7458. font-style:normal;
  7459. font-size:12px;
  7460. color:#333333;
  7461. }
  7462. #u56696_seg0 {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:-5px;
  7467. width:41px;
  7468. height:10px;
  7469. }
  7470. #u56696_text {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:-32px;
  7474. top:-8px;
  7475. width:100px;
  7476. word-wrap:break-word;
  7477. text-transform:none;
  7478. visibility:hidden;
  7479. }
  7480. #u56697 {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:1713px;
  7484. top:585px;
  7485. width:0px;
  7486. height:0px;
  7487. transition:none;
  7488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7489. font-weight:400;
  7490. font-style:normal;
  7491. font-size:12px;
  7492. color:#333333;
  7493. }
  7494. #u56697_seg0 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:-5px;
  7498. top:0px;
  7499. width:10px;
  7500. height:35px;
  7501. }
  7502. #u56697_text {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:-50px;
  7506. top:7px;
  7507. width:100px;
  7508. word-wrap:break-word;
  7509. text-transform:none;
  7510. visibility:hidden;
  7511. }
  7512. #u56698_div {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:241px;
  7518. height:50px;
  7519. background:inherit;
  7520. background-color:rgba(51, 51, 51, 0.8);
  7521. border-radius:52px;
  7522. filter:drop-shadow(none);
  7523. transition:none;
  7524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7525. font-weight:400;
  7526. font-style:normal;
  7527. color:#FFFFFF;
  7528. }
  7529. #u56698 {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:1002px;
  7533. top:356px;
  7534. width:241px;
  7535. height:50px;
  7536. display:flex;
  7537. transition:none;
  7538. transform-origin:50% 50%;
  7539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. color:#FFFFFF;
  7543. }
  7544. #u56698 .text {
  7545. position:absolute;
  7546. align-self:center;
  7547. padding:2px 2px 2px 2px;
  7548. box-sizing:border-box;
  7549. width:100%;
  7550. }
  7551. #u56698_text {
  7552. border-width:0px;
  7553. word-wrap:break-word;
  7554. text-transform:none;
  7555. }