styles.css 112 KB

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