styles.css 119 KB

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