styles.css 230 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3191px;
  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. #u37164_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u37164 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u37164 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u37164_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u37165_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u37165 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u37165 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u37165_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u37166 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u37167_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u37167 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u37167 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u37167_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u37168 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u37169_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u37169 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u37169 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u37169_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u37170_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u37170 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u37170 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u37170_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u37171 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u37172_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u37172 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u37172 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u37172_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u37173_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u37173 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u37173 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u37173_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u37174_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u37174 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u37174 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u37174_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u37175_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u37175 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u37175 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u37175_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u37176_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u37176 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u37176 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u37176_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u37177_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u37177 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u37177 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u37177_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u37178 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u37179_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u37179 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u37179 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u37179_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u37180_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u37180 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u37180 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u37180_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u37181 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u37182_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u37182 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u37182 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u37182_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u37183_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u37183 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u37183 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u37183_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u37184_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u37184 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u37184 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u37184_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u37185 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u37186_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u37186 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u37186 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u37186_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u37187_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u37187 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u37187 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u37187_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u37188 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u37189_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u37189 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u37189 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u37189_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u37190_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u37190 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u37190 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u37190_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u37191_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:732px;
  783. background:inherit;
  784. background-color:rgba(242, 242, 242, 0.996078431372549);
  785. border:none;
  786. border-top:0px;
  787. border-radius:28px;
  788. border-top-left-radius:0px;
  789. border-top-right-radius:0px;
  790. -moz-box-shadow:none;
  791. -webkit-box-shadow:none;
  792. box-shadow:none;
  793. }
  794. #u37191 {
  795. border-width:0px;
  796. position:absolute;
  797. left:29px;
  798. top:107px;
  799. width:375px;
  800. height:732px;
  801. display:flex;
  802. }
  803. #u37191 .text {
  804. position:absolute;
  805. align-self:center;
  806. padding:2px 2px 2px 2px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u37191_text {
  811. border-width:0px;
  812. word-wrap:break-word;
  813. text-transform:none;
  814. visibility:hidden;
  815. }
  816. #u37192_div {
  817. border-width:0px;
  818. position:absolute;
  819. left:0px;
  820. top:0px;
  821. width:375px;
  822. height:125px;
  823. background:inherit;
  824. background-color:rgba(255, 255, 255, 1);
  825. border:none;
  826. border-left:0px;
  827. border-top:0px;
  828. border-right:0px;
  829. border-radius:0px;
  830. border-bottom-right-radius:0px;
  831. border-bottom-left-radius:0px;
  832. -moz-box-shadow:none;
  833. -webkit-box-shadow:none;
  834. box-shadow:none;
  835. }
  836. #u37192 {
  837. border-width:0px;
  838. position:absolute;
  839. left:29px;
  840. top:108px;
  841. width:375px;
  842. height:125px;
  843. display:flex;
  844. }
  845. #u37192 .text {
  846. position:absolute;
  847. align-self:center;
  848. padding:2px 2px 2px 2px;
  849. box-sizing:border-box;
  850. width:100%;
  851. }
  852. #u37192_text {
  853. border-width:0px;
  854. word-wrap:break-word;
  855. text-transform:none;
  856. visibility:hidden;
  857. }
  858. #u37193_div {
  859. border-width:0px;
  860. position:absolute;
  861. left:0px;
  862. top:0px;
  863. width:43px;
  864. height:20px;
  865. background:inherit;
  866. background-color:rgba(255, 255, 255, 0);
  867. border:none;
  868. border-radius:0px;
  869. -moz-box-shadow:none;
  870. -webkit-box-shadow:none;
  871. box-shadow:none;
  872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  873. font-weight:400;
  874. font-style:normal;
  875. color:#0089FE;
  876. }
  877. #u37193 {
  878. border-width:0px;
  879. position:absolute;
  880. left:342px;
  881. top:124px;
  882. width:43px;
  883. height:20px;
  884. display:flex;
  885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  886. font-weight:400;
  887. font-style:normal;
  888. color:#0089FE;
  889. }
  890. #u37193 .text {
  891. position:absolute;
  892. align-self:flex-start;
  893. padding:0px 0px 0px 0px;
  894. box-sizing:border-box;
  895. width:100%;
  896. }
  897. #u37193_text {
  898. border-width:0px;
  899. white-space:nowrap;
  900. text-transform:none;
  901. }
  902. #u37194_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:180px;
  908. height:30px;
  909. background:inherit;
  910. background-color:rgba(255, 255, 255, 0);
  911. border:none;
  912. border-left:0px;
  913. border-top:0px;
  914. border-right:0px;
  915. border-radius:0px;
  916. border-bottom-right-radius:0px;
  917. border-bottom-left-radius:0px;
  918. -moz-box-shadow:none;
  919. -webkit-box-shadow:none;
  920. box-shadow:none;
  921. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  922. font-weight:500;
  923. font-style:normal;
  924. font-size:14px;
  925. line-height:30px;
  926. }
  927. #u37194 {
  928. border-width:0px;
  929. position:absolute;
  930. left:42px;
  931. top:118px;
  932. width:180px;
  933. height:30px;
  934. display:flex;
  935. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  936. font-weight:500;
  937. font-style:normal;
  938. font-size:14px;
  939. line-height:30px;
  940. }
  941. #u37194 .text {
  942. position:absolute;
  943. align-self:flex-start;
  944. padding:0px 0px 0px 0px;
  945. box-sizing:border-box;
  946. width:100%;
  947. }
  948. #u37194_text {
  949. border-width:0px;
  950. white-space:nowrap;
  951. text-transform:none;
  952. }
  953. #u37195_div {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:167px;
  959. height:75px;
  960. background:inherit;
  961. background-color:rgba(255, 255, 255, 0);
  962. border:none;
  963. border-left:0px;
  964. border-top:0px;
  965. border-right:0px;
  966. border-radius:0px;
  967. border-bottom-right-radius:0px;
  968. border-bottom-left-radius:0px;
  969. -moz-box-shadow:none;
  970. -webkit-box-shadow:none;
  971. box-shadow:none;
  972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  973. font-weight:400;
  974. font-style:normal;
  975. font-size:12px;
  976. line-height:25px;
  977. }
  978. #u37195 {
  979. border-width:0px;
  980. position:absolute;
  981. left:42px;
  982. top:148px;
  983. width:167px;
  984. height:75px;
  985. display:flex;
  986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  987. font-weight:400;
  988. font-style:normal;
  989. font-size:12px;
  990. line-height:25px;
  991. }
  992. #u37195 .text {
  993. position:absolute;
  994. align-self:flex-start;
  995. padding:0px 0px 0px 0px;
  996. box-sizing:border-box;
  997. width:100%;
  998. }
  999. #u37195_text {
  1000. border-width:0px;
  1001. white-space:nowrap;
  1002. text-transform:none;
  1003. }
  1004. #u37196_div {
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:0px;
  1008. top:0px;
  1009. width:375px;
  1010. height:41px;
  1011. background:inherit;
  1012. background-color:rgba(255, 255, 255, 1);
  1013. box-sizing:border-box;
  1014. border-width:1px;
  1015. border-style:solid;
  1016. border-color:rgba(215, 215, 215, 1);
  1017. border-left:0px;
  1018. border-top:0px;
  1019. border-right:0px;
  1020. border-radius:0px;
  1021. border-bottom-right-radius:0px;
  1022. border-bottom-left-radius:0px;
  1023. -moz-box-shadow:none;
  1024. -webkit-box-shadow:none;
  1025. box-shadow:none;
  1026. }
  1027. #u37196 {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:29px;
  1031. top:67px;
  1032. width:375px;
  1033. height:41px;
  1034. display:flex;
  1035. }
  1036. #u37196 .text {
  1037. position:absolute;
  1038. align-self:center;
  1039. padding:2px 2px 2px 2px;
  1040. box-sizing:border-box;
  1041. width:100%;
  1042. }
  1043. #u37196_text {
  1044. border-width:0px;
  1045. word-wrap:break-word;
  1046. text-transform:none;
  1047. visibility:hidden;
  1048. }
  1049. #u37197 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:0px;
  1055. height:0px;
  1056. }
  1057. #u37198_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:88px;
  1063. height:32px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 1);
  1066. box-sizing:border-box;
  1067. border-width:1px;
  1068. border-style:solid;
  1069. border-color:rgba(242, 242, 242, 1);
  1070. border-radius:33px;
  1071. -moz-box-shadow:none;
  1072. -webkit-box-shadow:none;
  1073. box-shadow:none;
  1074. }
  1075. #u37198 {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:309px;
  1079. top:71px;
  1080. width:88px;
  1081. height:32px;
  1082. display:flex;
  1083. }
  1084. #u37198 .text {
  1085. position:absolute;
  1086. align-self:center;
  1087. padding:2px 2px 2px 2px;
  1088. box-sizing:border-box;
  1089. width:100%;
  1090. }
  1091. #u37198_text {
  1092. border-width:0px;
  1093. word-wrap:break-word;
  1094. text-transform:none;
  1095. visibility:hidden;
  1096. }
  1097. #u37199 {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:0px;
  1103. height:0px;
  1104. }
  1105. #u37200_img {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:18px;
  1111. height:18px;
  1112. }
  1113. #u37200 {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:372px;
  1117. top:78px;
  1118. width:18px;
  1119. height:18px;
  1120. display:flex;
  1121. }
  1122. #u37200 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u37200_text {
  1130. border-width:0px;
  1131. word-wrap:break-word;
  1132. text-transform:none;
  1133. visibility:hidden;
  1134. }
  1135. #u37201_img {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:6px;
  1141. height:6px;
  1142. }
  1143. #u37201 {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:378px;
  1147. top:84px;
  1148. width:6px;
  1149. height:6px;
  1150. display:flex;
  1151. }
  1152. #u37201 .text {
  1153. position:absolute;
  1154. align-self:center;
  1155. padding:2px 2px 2px 2px;
  1156. box-sizing:border-box;
  1157. width:100%;
  1158. }
  1159. #u37201_text {
  1160. border-width:0px;
  1161. word-wrap:break-word;
  1162. text-transform:none;
  1163. visibility:hidden;
  1164. }
  1165. #u37202 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:0px;
  1171. height:0px;
  1172. }
  1173. #u37203_img {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:0px;
  1177. top:0px;
  1178. width:5px;
  1179. height:5px;
  1180. }
  1181. #u37203 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:323px;
  1185. top:85px;
  1186. width:5px;
  1187. height:5px;
  1188. display:flex;
  1189. }
  1190. #u37203 .text {
  1191. position:absolute;
  1192. align-self:center;
  1193. padding:2px 2px 2px 2px;
  1194. box-sizing:border-box;
  1195. width:100%;
  1196. }
  1197. #u37203_text {
  1198. border-width:0px;
  1199. word-wrap:break-word;
  1200. text-transform:none;
  1201. visibility:hidden;
  1202. }
  1203. #u37204_img {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:5px;
  1209. height:5px;
  1210. }
  1211. #u37204 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:339px;
  1215. top:85px;
  1216. width:5px;
  1217. height:5px;
  1218. display:flex;
  1219. }
  1220. #u37204 .text {
  1221. position:absolute;
  1222. align-self:center;
  1223. padding:2px 2px 2px 2px;
  1224. box-sizing:border-box;
  1225. width:100%;
  1226. }
  1227. #u37204_text {
  1228. border-width:0px;
  1229. word-wrap:break-word;
  1230. text-transform:none;
  1231. visibility:hidden;
  1232. }
  1233. #u37205_img {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:0px;
  1237. top:0px;
  1238. width:7px;
  1239. height:7px;
  1240. }
  1241. #u37205 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:330px;
  1245. top:84px;
  1246. width:7px;
  1247. height:7px;
  1248. display:flex;
  1249. }
  1250. #u37205 .text {
  1251. position:absolute;
  1252. align-self:center;
  1253. padding:2px 2px 2px 2px;
  1254. box-sizing:border-box;
  1255. width:100%;
  1256. }
  1257. #u37205_text {
  1258. border-width:0px;
  1259. word-wrap:break-word;
  1260. text-transform:none;
  1261. visibility:hidden;
  1262. }
  1263. #u37206_img {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:0px;
  1267. top:0px;
  1268. width:19px;
  1269. height:2px;
  1270. }
  1271. #u37206 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:347px;
  1275. top:87px;
  1276. width:18px;
  1277. height:1px;
  1278. display:flex;
  1279. -webkit-transform:rotate(90deg);
  1280. -moz-transform:rotate(90deg);
  1281. -ms-transform:rotate(90deg);
  1282. transform:rotate(90deg);
  1283. }
  1284. #u37206 .text {
  1285. position:absolute;
  1286. align-self:center;
  1287. padding:2px 2px 2px 2px;
  1288. box-sizing:border-box;
  1289. width:100%;
  1290. }
  1291. #u37206_text {
  1292. border-width:0px;
  1293. word-wrap:break-word;
  1294. text-transform:none;
  1295. visibility:hidden;
  1296. }
  1297. #u37207_div {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:0px;
  1301. top:0px;
  1302. width:12px;
  1303. height:12px;
  1304. background:inherit;
  1305. background-color:rgba(255, 255, 255, 0);
  1306. box-sizing:border-box;
  1307. border-width:2px;
  1308. border-style:solid;
  1309. border-color:rgba(51, 51, 51, 1);
  1310. border-right:0px;
  1311. border-bottom:0px;
  1312. border-radius:0px;
  1313. border-top-right-radius:0px;
  1314. border-bottom-left-radius:0px;
  1315. -moz-box-shadow:none;
  1316. -webkit-box-shadow:none;
  1317. box-shadow:none;
  1318. }
  1319. #u37207 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:44px;
  1323. top:81px;
  1324. width:12px;
  1325. height:12px;
  1326. display:flex;
  1327. -webkit-transform:rotate(315deg);
  1328. -moz-transform:rotate(315deg);
  1329. -ms-transform:rotate(315deg);
  1330. transform:rotate(315deg);
  1331. }
  1332. #u37207 .text {
  1333. position:absolute;
  1334. align-self:center;
  1335. padding:2px 2px 2px 2px;
  1336. box-sizing:border-box;
  1337. width:100%;
  1338. }
  1339. #u37207_text {
  1340. border-width:0px;
  1341. word-wrap:break-word;
  1342. text-transform:none;
  1343. visibility:hidden;
  1344. }
  1345. #u37208_div {
  1346. border-width:0px;
  1347. position:absolute;
  1348. left:0px;
  1349. top:0px;
  1350. width:73px;
  1351. height:25px;
  1352. background:inherit;
  1353. background-color:rgba(255, 255, 255, 0);
  1354. border:none;
  1355. border-radius:0px;
  1356. -moz-box-shadow:none;
  1357. -webkit-box-shadow:none;
  1358. box-shadow:none;
  1359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:18px;
  1363. }
  1364. #u37208 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:64px;
  1368. top:75px;
  1369. width:73px;
  1370. height:25px;
  1371. display:flex;
  1372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1373. font-weight:400;
  1374. font-style:normal;
  1375. font-size:18px;
  1376. }
  1377. #u37208 .text {
  1378. position:absolute;
  1379. align-self:flex-start;
  1380. padding:0px 0px 0px 0px;
  1381. box-sizing:border-box;
  1382. width:100%;
  1383. }
  1384. #u37208_text {
  1385. border-width:0px;
  1386. white-space:nowrap;
  1387. text-transform:none;
  1388. }
  1389. #u37209 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:0px;
  1393. top:0px;
  1394. width:0px;
  1395. height:0px;
  1396. }
  1397. #u37210_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:375px;
  1403. height:180px;
  1404. background:inherit;
  1405. background-color:rgba(255, 255, 255, 1);
  1406. border:none;
  1407. border-top:0px;
  1408. border-bottom:0px;
  1409. border-radius:0px;
  1410. border-top-left-radius:0px;
  1411. border-top-right-radius:0px;
  1412. border-bottom-right-radius:0px;
  1413. border-bottom-left-radius:0px;
  1414. -moz-box-shadow:none;
  1415. -webkit-box-shadow:none;
  1416. box-shadow:none;
  1417. }
  1418. #u37210 {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:29px;
  1422. top:234px;
  1423. width:375px;
  1424. height:180px;
  1425. display:flex;
  1426. }
  1427. #u37210 .text {
  1428. position:absolute;
  1429. align-self:center;
  1430. padding:2px 2px 2px 2px;
  1431. box-sizing:border-box;
  1432. width:100%;
  1433. }
  1434. #u37210_text {
  1435. border-width:0px;
  1436. word-wrap:break-word;
  1437. text-transform:none;
  1438. visibility:hidden;
  1439. }
  1440. #u37211_div {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:150px;
  1446. height:150px;
  1447. background:inherit;
  1448. background-color:rgba(255, 255, 255, 0);
  1449. border:none;
  1450. border-left:0px;
  1451. border-top:0px;
  1452. border-right:0px;
  1453. border-radius:0px;
  1454. border-bottom-right-radius:0px;
  1455. border-bottom-left-radius:0px;
  1456. -moz-box-shadow:none;
  1457. -webkit-box-shadow:none;
  1458. box-shadow:none;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:12px;
  1463. line-height:25px;
  1464. }
  1465. #u37211 {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:53px;
  1469. top:248px;
  1470. width:150px;
  1471. height:150px;
  1472. display:flex;
  1473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1474. font-weight:400;
  1475. font-style:normal;
  1476. font-size:12px;
  1477. line-height:25px;
  1478. }
  1479. #u37211 .text {
  1480. position:absolute;
  1481. align-self:flex-start;
  1482. padding:0px 0px 0px 0px;
  1483. box-sizing:border-box;
  1484. width:100%;
  1485. }
  1486. #u37211_text {
  1487. border-width:0px;
  1488. white-space:nowrap;
  1489. text-transform:none;
  1490. }
  1491. #u37212 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:0px;
  1495. top:0px;
  1496. width:0px;
  1497. height:0px;
  1498. }
  1499. #u37213_div {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:375px;
  1505. height:355px;
  1506. background:inherit;
  1507. background-color:rgba(255, 255, 255, 1);
  1508. border:none;
  1509. border-left:0px;
  1510. border-right:0px;
  1511. border-radius:0px;
  1512. border-top-left-radius:0px;
  1513. border-top-right-radius:0px;
  1514. border-bottom-right-radius:0px;
  1515. border-bottom-left-radius:0px;
  1516. -moz-box-shadow:none;
  1517. -webkit-box-shadow:none;
  1518. box-shadow:none;
  1519. }
  1520. #u37213 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:29px;
  1524. top:424px;
  1525. width:375px;
  1526. height:355px;
  1527. display:flex;
  1528. }
  1529. #u37213 .text {
  1530. position:absolute;
  1531. align-self:center;
  1532. padding:2px 2px 2px 2px;
  1533. box-sizing:border-box;
  1534. width:100%;
  1535. }
  1536. #u37213_text {
  1537. border-width:0px;
  1538. word-wrap:break-word;
  1539. text-transform:none;
  1540. visibility:hidden;
  1541. }
  1542. #u37214_div {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:0px;
  1547. width:57px;
  1548. height:30px;
  1549. background:inherit;
  1550. background-color:rgba(255, 255, 255, 0);
  1551. border:none;
  1552. border-left:0px;
  1553. border-top:0px;
  1554. border-right:0px;
  1555. border-radius:0px;
  1556. border-bottom-right-radius:0px;
  1557. border-bottom-left-radius:0px;
  1558. -moz-box-shadow:none;
  1559. -webkit-box-shadow:none;
  1560. box-shadow:none;
  1561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1562. font-weight:400;
  1563. font-style:normal;
  1564. font-size:14px;
  1565. line-height:30px;
  1566. }
  1567. #u37214 {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:53px;
  1571. top:434px;
  1572. width:57px;
  1573. height:30px;
  1574. display:flex;
  1575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1576. font-weight:400;
  1577. font-style:normal;
  1578. font-size:14px;
  1579. line-height:30px;
  1580. }
  1581. #u37214 .text {
  1582. position:absolute;
  1583. align-self:flex-start;
  1584. padding:0px 0px 0px 0px;
  1585. box-sizing:border-box;
  1586. width:100%;
  1587. }
  1588. #u37214_text {
  1589. border-width:0px;
  1590. white-space:nowrap;
  1591. text-transform:none;
  1592. }
  1593. #u37215_div {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:0px;
  1597. top:0px;
  1598. width:97px;
  1599. height:30px;
  1600. background:inherit;
  1601. background-color:rgba(255, 255, 255, 0);
  1602. border:none;
  1603. border-left:0px;
  1604. border-top:0px;
  1605. border-right:0px;
  1606. border-radius:0px;
  1607. border-bottom-right-radius:0px;
  1608. border-bottom-left-radius:0px;
  1609. -moz-box-shadow:none;
  1610. -webkit-box-shadow:none;
  1611. box-shadow:none;
  1612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1613. font-weight:400;
  1614. font-style:normal;
  1615. font-size:12px;
  1616. color:#0089FE;
  1617. line-height:30px;
  1618. }
  1619. #u37215 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:68px;
  1623. top:470px;
  1624. width:97px;
  1625. height:30px;
  1626. display:flex;
  1627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1628. font-weight:400;
  1629. font-style:normal;
  1630. font-size:12px;
  1631. color:#0089FE;
  1632. line-height:30px;
  1633. }
  1634. #u37215 .text {
  1635. position:absolute;
  1636. align-self:flex-start;
  1637. padding:0px 0px 0px 0px;
  1638. box-sizing:border-box;
  1639. width:100%;
  1640. }
  1641. #u37215_text {
  1642. border-width:0px;
  1643. white-space:nowrap;
  1644. text-transform:none;
  1645. }
  1646. #u37216 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:0px;
  1652. height:0px;
  1653. }
  1654. #u37217_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:375px;
  1660. height:60px;
  1661. background:inherit;
  1662. background-color:rgba(255, 255, 255, 1);
  1663. box-sizing:border-box;
  1664. border-width:1px;
  1665. border-style:solid;
  1666. border-color:rgba(242, 242, 242, 1);
  1667. border-radius:20px;
  1668. border-top-left-radius:0px;
  1669. border-top-right-radius:0px;
  1670. -moz-box-shadow:none;
  1671. -webkit-box-shadow:none;
  1672. box-shadow:none;
  1673. }
  1674. #u37217 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:29px;
  1678. top:779px;
  1679. width:375px;
  1680. height:60px;
  1681. display:flex;
  1682. }
  1683. #u37217 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 2px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u37217_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. visibility:hidden;
  1695. }
  1696. #u37218_div {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:342px;
  1702. height:40px;
  1703. background:inherit;
  1704. background-color:rgba(255, 255, 255, 1);
  1705. box-sizing:border-box;
  1706. border-width:1px;
  1707. border-style:solid;
  1708. border-color:rgba(121, 121, 121, 1);
  1709. border-radius:63px;
  1710. -moz-box-shadow:none;
  1711. -webkit-box-shadow:none;
  1712. box-shadow:none;
  1713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1714. font-weight:400;
  1715. font-style:normal;
  1716. font-size:14px;
  1717. color:#555555;
  1718. }
  1719. #u37218 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:48px;
  1723. top:789px;
  1724. width:342px;
  1725. height:40px;
  1726. display:flex;
  1727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1728. font-weight:400;
  1729. font-style:normal;
  1730. font-size:14px;
  1731. color:#555555;
  1732. }
  1733. #u37218 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u37218_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. }
  1745. #u37220_img {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:433px;
  1751. height:865px;
  1752. }
  1753. #u37220 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:453px;
  1757. top:0px;
  1758. width:433px;
  1759. height:865px;
  1760. display:flex;
  1761. }
  1762. #u37220 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 2px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u37220_text {
  1770. border-width:0px;
  1771. word-wrap:break-word;
  1772. text-transform:none;
  1773. visibility:hidden;
  1774. }
  1775. #u37221_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:375px;
  1781. height:40px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 1);
  1784. border:none;
  1785. border-left:0px;
  1786. border-top:0px;
  1787. border-right:0px;
  1788. border-radius:0px;
  1789. border-bottom-right-radius:0px;
  1790. border-bottom-left-radius:0px;
  1791. -moz-box-shadow:none;
  1792. -webkit-box-shadow:none;
  1793. box-shadow:none;
  1794. }
  1795. #u37221 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:482px;
  1799. top:67px;
  1800. width:375px;
  1801. height:40px;
  1802. display:flex;
  1803. }
  1804. #u37221 .text {
  1805. position:absolute;
  1806. align-self:center;
  1807. padding:2px 2px 2px 2px;
  1808. box-sizing:border-box;
  1809. width:100%;
  1810. }
  1811. #u37221_text {
  1812. border-width:0px;
  1813. word-wrap:break-word;
  1814. text-transform:none;
  1815. visibility:hidden;
  1816. }
  1817. #u37222 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:0px;
  1823. height:0px;
  1824. }
  1825. #u37223_div {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:88px;
  1831. height:32px;
  1832. background:inherit;
  1833. background-color:rgba(255, 255, 255, 1);
  1834. box-sizing:border-box;
  1835. border-width:1px;
  1836. border-style:solid;
  1837. border-color:rgba(242, 242, 242, 1);
  1838. border-radius:33px;
  1839. -moz-box-shadow:none;
  1840. -webkit-box-shadow:none;
  1841. box-shadow:none;
  1842. }
  1843. #u37223 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:762px;
  1847. top:71px;
  1848. width:88px;
  1849. height:32px;
  1850. display:flex;
  1851. }
  1852. #u37223 .text {
  1853. position:absolute;
  1854. align-self:center;
  1855. padding:2px 2px 2px 2px;
  1856. box-sizing:border-box;
  1857. width:100%;
  1858. }
  1859. #u37223_text {
  1860. border-width:0px;
  1861. word-wrap:break-word;
  1862. text-transform:none;
  1863. visibility:hidden;
  1864. }
  1865. #u37224 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:0px;
  1871. height:0px;
  1872. }
  1873. #u37225_img {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:18px;
  1879. height:18px;
  1880. }
  1881. #u37225 {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:825px;
  1885. top:78px;
  1886. width:18px;
  1887. height:18px;
  1888. display:flex;
  1889. }
  1890. #u37225 .text {
  1891. position:absolute;
  1892. align-self:center;
  1893. padding:2px 2px 2px 2px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u37225_text {
  1898. border-width:0px;
  1899. word-wrap:break-word;
  1900. text-transform:none;
  1901. visibility:hidden;
  1902. }
  1903. #u37226_img {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:6px;
  1909. height:6px;
  1910. }
  1911. #u37226 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:831px;
  1915. top:84px;
  1916. width:6px;
  1917. height:6px;
  1918. display:flex;
  1919. }
  1920. #u37226 .text {
  1921. position:absolute;
  1922. align-self:center;
  1923. padding:2px 2px 2px 2px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u37226_text {
  1928. border-width:0px;
  1929. word-wrap:break-word;
  1930. text-transform:none;
  1931. visibility:hidden;
  1932. }
  1933. #u37227 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:0px;
  1939. height:0px;
  1940. }
  1941. #u37228_img {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:5px;
  1947. height:5px;
  1948. }
  1949. #u37228 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:776px;
  1953. top:85px;
  1954. width:5px;
  1955. height:5px;
  1956. display:flex;
  1957. }
  1958. #u37228 .text {
  1959. position:absolute;
  1960. align-self:center;
  1961. padding:2px 2px 2px 2px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u37228_text {
  1966. border-width:0px;
  1967. word-wrap:break-word;
  1968. text-transform:none;
  1969. visibility:hidden;
  1970. }
  1971. #u37229_img {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:5px;
  1977. height:5px;
  1978. }
  1979. #u37229 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:792px;
  1983. top:85px;
  1984. width:5px;
  1985. height:5px;
  1986. display:flex;
  1987. }
  1988. #u37229 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 2px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u37229_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. visibility:hidden;
  2000. }
  2001. #u37230_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:7px;
  2007. height:7px;
  2008. }
  2009. #u37230 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:783px;
  2013. top:84px;
  2014. width:7px;
  2015. height:7px;
  2016. display:flex;
  2017. }
  2018. #u37230 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u37230_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. visibility:hidden;
  2030. }
  2031. #u37231_img {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:19px;
  2037. height:2px;
  2038. }
  2039. #u37231 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:800px;
  2043. top:87px;
  2044. width:18px;
  2045. height:1px;
  2046. display:flex;
  2047. -webkit-transform:rotate(90deg);
  2048. -moz-transform:rotate(90deg);
  2049. -ms-transform:rotate(90deg);
  2050. transform:rotate(90deg);
  2051. }
  2052. #u37231 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:2px 2px 2px 2px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u37231_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. visibility:hidden;
  2064. }
  2065. #u37232_img {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:375px;
  2071. height:44px;
  2072. }
  2073. #u37232 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:482px;
  2077. top:24px;
  2078. width:375px;
  2079. height:44px;
  2080. display:flex;
  2081. }
  2082. #u37232 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 2px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u37232_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. visibility:hidden;
  2094. }
  2095. #u37233_div {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:375px;
  2101. height:50px;
  2102. background:inherit;
  2103. background-color:rgba(255, 255, 255, 1);
  2104. box-sizing:border-box;
  2105. border-width:1px;
  2106. border-style:solid;
  2107. border-color:rgba(242, 242, 242, 1);
  2108. border-radius:26px;
  2109. border-top-left-radius:0px;
  2110. border-top-right-radius:0px;
  2111. -moz-box-shadow:none;
  2112. -webkit-box-shadow:none;
  2113. box-shadow:none;
  2114. }
  2115. #u37233 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:482px;
  2119. top:788px;
  2120. width:375px;
  2121. height:50px;
  2122. display:flex;
  2123. }
  2124. #u37233 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 2px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u37233_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. visibility:hidden;
  2136. }
  2137. #u37234 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. height:0px;
  2144. }
  2145. #u37235_img {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:24px;
  2151. height:24px;
  2152. }
  2153. #u37235 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:522px;
  2157. top:792px;
  2158. width:24px;
  2159. height:24px;
  2160. display:flex;
  2161. font-size:8px;
  2162. }
  2163. #u37235 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u37235_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. }
  2175. #u37236_div {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:25px;
  2181. height:17px;
  2182. background:inherit;
  2183. background-color:rgba(255, 255, 255, 0);
  2184. border:none;
  2185. border-radius:0px;
  2186. -moz-box-shadow:none;
  2187. -webkit-box-shadow:none;
  2188. box-shadow:none;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. }
  2194. #u37236 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:522px;
  2198. top:817px;
  2199. width:25px;
  2200. height:17px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:12px;
  2206. }
  2207. #u37236 .text {
  2208. position:absolute;
  2209. align-self:flex-start;
  2210. padding:0px 0px 0px 0px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u37236_text {
  2215. border-width:0px;
  2216. white-space:nowrap;
  2217. text-transform:none;
  2218. }
  2219. #u37237 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:0px;
  2225. height:0px;
  2226. }
  2227. #u37238_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:24px;
  2233. height:24px;
  2234. }
  2235. #u37238 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:792px;
  2239. top:794px;
  2240. width:24px;
  2241. height:24px;
  2242. display:flex;
  2243. font-size:8px;
  2244. }
  2245. #u37238 .text {
  2246. position:absolute;
  2247. align-self:center;
  2248. padding:2px 2px 2px 2px;
  2249. box-sizing:border-box;
  2250. width:100%;
  2251. }
  2252. #u37238_text {
  2253. border-width:0px;
  2254. word-wrap:break-word;
  2255. text-transform:none;
  2256. }
  2257. #u37239_div {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:25px;
  2263. height:17px;
  2264. background:inherit;
  2265. background-color:rgba(255, 255, 255, 0);
  2266. border:none;
  2267. border-radius:0px;
  2268. -moz-box-shadow:none;
  2269. -webkit-box-shadow:none;
  2270. box-shadow:none;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2272. font-weight:400;
  2273. font-style:normal;
  2274. font-size:12px;
  2275. }
  2276. #u37239 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:792px;
  2280. top:819px;
  2281. width:25px;
  2282. height:17px;
  2283. display:flex;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:12px;
  2288. }
  2289. #u37239 .text {
  2290. position:absolute;
  2291. align-self:flex-start;
  2292. padding:0px 0px 0px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u37239_text {
  2297. border-width:0px;
  2298. white-space:nowrap;
  2299. text-transform:none;
  2300. }
  2301. #u37240_div {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:375px;
  2307. height:681px;
  2308. background:inherit;
  2309. background-color:rgba(242, 242, 242, 0.462745098039216);
  2310. border:none;
  2311. border-radius:0px;
  2312. -moz-box-shadow:none;
  2313. -webkit-box-shadow:none;
  2314. box-shadow:none;
  2315. }
  2316. #u37240 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:482px;
  2320. top:107px;
  2321. width:375px;
  2322. height:681px;
  2323. display:flex;
  2324. }
  2325. #u37240 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 2px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u37240_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. visibility:hidden;
  2337. }
  2338. #u37241 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:0px;
  2344. height:0px;
  2345. }
  2346. #u37242_img {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:24px;
  2352. height:24px;
  2353. }
  2354. #u37242 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:704px;
  2358. top:792px;
  2359. width:24px;
  2360. height:24px;
  2361. display:flex;
  2362. font-size:8px;
  2363. }
  2364. #u37242 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 2px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u37242_text {
  2372. border-width:0px;
  2373. word-wrap:break-word;
  2374. text-transform:none;
  2375. }
  2376. #u37243_div {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:37px;
  2382. height:17px;
  2383. background:inherit;
  2384. background-color:rgba(255, 255, 255, 0);
  2385. border:none;
  2386. border-radius:0px;
  2387. -moz-box-shadow:none;
  2388. -webkit-box-shadow:none;
  2389. box-shadow:none;
  2390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:12px;
  2394. }
  2395. #u37243 {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:698px;
  2399. top:817px;
  2400. width:37px;
  2401. height:17px;
  2402. display:flex;
  2403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2404. font-weight:400;
  2405. font-style:normal;
  2406. font-size:12px;
  2407. }
  2408. #u37243 .text {
  2409. position:absolute;
  2410. align-self:flex-start;
  2411. padding:0px 0px 0px 0px;
  2412. box-sizing:border-box;
  2413. width:100%;
  2414. }
  2415. #u37243_text {
  2416. border-width:0px;
  2417. white-space:nowrap;
  2418. text-transform:none;
  2419. }
  2420. #u37244 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:0px;
  2426. height:0px;
  2427. }
  2428. #u37245_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:24px;
  2434. height:24px;
  2435. }
  2436. #u37245 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:610px;
  2440. top:792px;
  2441. width:24px;
  2442. height:24px;
  2443. display:flex;
  2444. font-size:8px;
  2445. }
  2446. #u37245 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 2px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u37245_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. }
  2458. #u37246_div {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:37px;
  2464. height:17px;
  2465. background:inherit;
  2466. background-color:rgba(255, 255, 255, 0);
  2467. border:none;
  2468. border-radius:0px;
  2469. -moz-box-shadow:none;
  2470. -webkit-box-shadow:none;
  2471. box-shadow:none;
  2472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:12px;
  2476. }
  2477. #u37246 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:604px;
  2481. top:817px;
  2482. width:37px;
  2483. height:17px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. }
  2490. #u37246 .text {
  2491. position:absolute;
  2492. align-self:flex-start;
  2493. padding:0px 0px 0px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u37246_text {
  2498. border-width:0px;
  2499. white-space:nowrap;
  2500. text-transform:none;
  2501. }
  2502. #u37247_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:375px;
  2508. height:732px;
  2509. background:inherit;
  2510. background-color:rgba(242, 242, 242, 0.996078431372549);
  2511. border:none;
  2512. border-top:0px;
  2513. border-radius:28px;
  2514. border-top-left-radius:0px;
  2515. border-top-right-radius:0px;
  2516. -moz-box-shadow:none;
  2517. -webkit-box-shadow:none;
  2518. box-shadow:none;
  2519. }
  2520. #u37247 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:482px;
  2524. top:107px;
  2525. width:375px;
  2526. height:732px;
  2527. display:flex;
  2528. }
  2529. #u37247 .text {
  2530. position:absolute;
  2531. align-self:center;
  2532. padding:2px 2px 2px 2px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u37247_text {
  2537. border-width:0px;
  2538. word-wrap:break-word;
  2539. text-transform:none;
  2540. visibility:hidden;
  2541. }
  2542. #u37248_div {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:375px;
  2548. height:125px;
  2549. background:inherit;
  2550. background-color:rgba(255, 255, 255, 1);
  2551. border:none;
  2552. border-left:0px;
  2553. border-top:0px;
  2554. border-right:0px;
  2555. border-radius:0px;
  2556. border-bottom-right-radius:0px;
  2557. border-bottom-left-radius:0px;
  2558. -moz-box-shadow:none;
  2559. -webkit-box-shadow:none;
  2560. box-shadow:none;
  2561. }
  2562. #u37248 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:482px;
  2566. top:108px;
  2567. width:375px;
  2568. height:125px;
  2569. display:flex;
  2570. }
  2571. #u37248 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 2px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u37248_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. visibility:hidden;
  2583. }
  2584. #u37249_div {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:43px;
  2590. height:20px;
  2591. background:inherit;
  2592. background-color:rgba(255, 255, 255, 0);
  2593. border:none;
  2594. border-radius:0px;
  2595. -moz-box-shadow:none;
  2596. -webkit-box-shadow:none;
  2597. box-shadow:none;
  2598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2599. font-weight:400;
  2600. font-style:normal;
  2601. color:#0089FE;
  2602. }
  2603. #u37249 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:795px;
  2607. top:124px;
  2608. width:43px;
  2609. height:20px;
  2610. display:flex;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. color:#0089FE;
  2615. }
  2616. #u37249 .text {
  2617. position:absolute;
  2618. align-self:flex-start;
  2619. padding:0px 0px 0px 0px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u37249_text {
  2624. border-width:0px;
  2625. white-space:nowrap;
  2626. text-transform:none;
  2627. }
  2628. #u37250_div {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:124px;
  2634. height:30px;
  2635. background:inherit;
  2636. background-color:rgba(255, 255, 255, 0);
  2637. border:none;
  2638. border-left:0px;
  2639. border-top:0px;
  2640. border-right:0px;
  2641. border-radius:0px;
  2642. border-bottom-right-radius:0px;
  2643. border-bottom-left-radius:0px;
  2644. -moz-box-shadow:none;
  2645. -webkit-box-shadow:none;
  2646. box-shadow:none;
  2647. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2648. font-weight:500;
  2649. font-style:normal;
  2650. font-size:14px;
  2651. line-height:30px;
  2652. }
  2653. #u37250 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:495px;
  2657. top:118px;
  2658. width:124px;
  2659. height:30px;
  2660. display:flex;
  2661. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2662. font-weight:500;
  2663. font-style:normal;
  2664. font-size:14px;
  2665. line-height:30px;
  2666. }
  2667. #u37250 .text {
  2668. position:absolute;
  2669. align-self:flex-start;
  2670. padding:0px 0px 0px 0px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u37250_text {
  2675. border-width:0px;
  2676. white-space:nowrap;
  2677. text-transform:none;
  2678. }
  2679. #u37251_div {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:167px;
  2685. height:75px;
  2686. background:inherit;
  2687. background-color:rgba(255, 255, 255, 0);
  2688. border:none;
  2689. border-left:0px;
  2690. border-top:0px;
  2691. border-right:0px;
  2692. border-radius:0px;
  2693. border-bottom-right-radius:0px;
  2694. border-bottom-left-radius:0px;
  2695. -moz-box-shadow:none;
  2696. -webkit-box-shadow:none;
  2697. box-shadow:none;
  2698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:12px;
  2702. line-height:25px;
  2703. }
  2704. #u37251 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:495px;
  2708. top:148px;
  2709. width:167px;
  2710. height:75px;
  2711. display:flex;
  2712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2713. font-weight:400;
  2714. font-style:normal;
  2715. font-size:12px;
  2716. line-height:25px;
  2717. }
  2718. #u37251 .text {
  2719. position:absolute;
  2720. align-self:flex-start;
  2721. padding:0px 0px 0px 0px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u37251_text {
  2726. border-width:0px;
  2727. white-space:nowrap;
  2728. text-transform:none;
  2729. }
  2730. #u37252_div {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:375px;
  2736. height:41px;
  2737. background:inherit;
  2738. background-color:rgba(255, 255, 255, 1);
  2739. box-sizing:border-box;
  2740. border-width:1px;
  2741. border-style:solid;
  2742. border-color:rgba(215, 215, 215, 1);
  2743. border-left:0px;
  2744. border-top:0px;
  2745. border-right:0px;
  2746. border-radius:0px;
  2747. border-bottom-right-radius:0px;
  2748. border-bottom-left-radius:0px;
  2749. -moz-box-shadow:none;
  2750. -webkit-box-shadow:none;
  2751. box-shadow:none;
  2752. }
  2753. #u37252 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:482px;
  2757. top:67px;
  2758. width:375px;
  2759. height:41px;
  2760. display:flex;
  2761. }
  2762. #u37252 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 2px 2px 2px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u37252_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. visibility:hidden;
  2774. }
  2775. #u37253 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:0px;
  2781. height:0px;
  2782. }
  2783. #u37254_div {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:88px;
  2789. height:32px;
  2790. background:inherit;
  2791. background-color:rgba(255, 255, 255, 1);
  2792. box-sizing:border-box;
  2793. border-width:1px;
  2794. border-style:solid;
  2795. border-color:rgba(242, 242, 242, 1);
  2796. border-radius:33px;
  2797. -moz-box-shadow:none;
  2798. -webkit-box-shadow:none;
  2799. box-shadow:none;
  2800. }
  2801. #u37254 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:762px;
  2805. top:71px;
  2806. width:88px;
  2807. height:32px;
  2808. display:flex;
  2809. }
  2810. #u37254 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 2px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u37254_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. visibility:hidden;
  2822. }
  2823. #u37255 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:0px;
  2829. height:0px;
  2830. }
  2831. #u37256_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:18px;
  2837. height:18px;
  2838. }
  2839. #u37256 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:825px;
  2843. top:78px;
  2844. width:18px;
  2845. height:18px;
  2846. display:flex;
  2847. }
  2848. #u37256 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 2px 2px 2px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u37256_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. visibility:hidden;
  2860. }
  2861. #u37257_img {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:6px;
  2867. height:6px;
  2868. }
  2869. #u37257 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:831px;
  2873. top:84px;
  2874. width:6px;
  2875. height:6px;
  2876. display:flex;
  2877. }
  2878. #u37257 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 2px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u37257_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. visibility:hidden;
  2890. }
  2891. #u37258 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:0px;
  2897. height:0px;
  2898. }
  2899. #u37259_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:5px;
  2905. height:5px;
  2906. }
  2907. #u37259 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:776px;
  2911. top:85px;
  2912. width:5px;
  2913. height:5px;
  2914. display:flex;
  2915. }
  2916. #u37259 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u37259_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u37260_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:5px;
  2935. height:5px;
  2936. }
  2937. #u37260 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:792px;
  2941. top:85px;
  2942. width:5px;
  2943. height:5px;
  2944. display:flex;
  2945. }
  2946. #u37260 .text {
  2947. position:absolute;
  2948. align-self:center;
  2949. padding:2px 2px 2px 2px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u37260_text {
  2954. border-width:0px;
  2955. word-wrap:break-word;
  2956. text-transform:none;
  2957. visibility:hidden;
  2958. }
  2959. #u37261_img {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:7px;
  2965. height:7px;
  2966. }
  2967. #u37261 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:783px;
  2971. top:84px;
  2972. width:7px;
  2973. height:7px;
  2974. display:flex;
  2975. }
  2976. #u37261 .text {
  2977. position:absolute;
  2978. align-self:center;
  2979. padding:2px 2px 2px 2px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u37261_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u37262_img {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:19px;
  2995. height:2px;
  2996. }
  2997. #u37262 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:800px;
  3001. top:87px;
  3002. width:18px;
  3003. height:1px;
  3004. display:flex;
  3005. -webkit-transform:rotate(90deg);
  3006. -moz-transform:rotate(90deg);
  3007. -ms-transform:rotate(90deg);
  3008. transform:rotate(90deg);
  3009. }
  3010. #u37262 .text {
  3011. position:absolute;
  3012. align-self:center;
  3013. padding:2px 2px 2px 2px;
  3014. box-sizing:border-box;
  3015. width:100%;
  3016. }
  3017. #u37262_text {
  3018. border-width:0px;
  3019. word-wrap:break-word;
  3020. text-transform:none;
  3021. visibility:hidden;
  3022. }
  3023. #u37263_div {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:12px;
  3029. height:12px;
  3030. background:inherit;
  3031. background-color:rgba(255, 255, 255, 0);
  3032. box-sizing:border-box;
  3033. border-width:2px;
  3034. border-style:solid;
  3035. border-color:rgba(51, 51, 51, 1);
  3036. border-right:0px;
  3037. border-bottom:0px;
  3038. border-radius:0px;
  3039. border-top-right-radius:0px;
  3040. border-bottom-left-radius:0px;
  3041. -moz-box-shadow:none;
  3042. -webkit-box-shadow:none;
  3043. box-shadow:none;
  3044. }
  3045. #u37263 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:497px;
  3049. top:81px;
  3050. width:12px;
  3051. height:12px;
  3052. display:flex;
  3053. -webkit-transform:rotate(315deg);
  3054. -moz-transform:rotate(315deg);
  3055. -ms-transform:rotate(315deg);
  3056. transform:rotate(315deg);
  3057. }
  3058. #u37263 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 2px 2px 2px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u37263_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. visibility:hidden;
  3070. }
  3071. #u37264_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:73px;
  3077. height:25px;
  3078. background:inherit;
  3079. background-color:rgba(255, 255, 255, 0);
  3080. border:none;
  3081. border-radius:0px;
  3082. -moz-box-shadow:none;
  3083. -webkit-box-shadow:none;
  3084. box-shadow:none;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:18px;
  3089. }
  3090. #u37264 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:517px;
  3094. top:75px;
  3095. width:73px;
  3096. height:25px;
  3097. display:flex;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:18px;
  3102. }
  3103. #u37264 .text {
  3104. position:absolute;
  3105. align-self:flex-start;
  3106. padding:0px 0px 0px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u37264_text {
  3111. border-width:0px;
  3112. white-space:nowrap;
  3113. text-transform:none;
  3114. }
  3115. #u37265 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:0px;
  3121. height:0px;
  3122. }
  3123. #u37266_div {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:375px;
  3129. height:356px;
  3130. background:inherit;
  3131. background-color:rgba(255, 255, 255, 1);
  3132. border:none;
  3133. border-left:0px;
  3134. border-right:0px;
  3135. border-radius:0px;
  3136. border-top-left-radius:0px;
  3137. border-top-right-radius:0px;
  3138. border-bottom-right-radius:0px;
  3139. border-bottom-left-radius:0px;
  3140. -moz-box-shadow:none;
  3141. -webkit-box-shadow:none;
  3142. box-shadow:none;
  3143. }
  3144. #u37266 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:482px;
  3148. top:423px;
  3149. width:375px;
  3150. height:356px;
  3151. display:flex;
  3152. }
  3153. #u37266 .text {
  3154. position:absolute;
  3155. align-self:center;
  3156. padding:2px 2px 2px 2px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u37266_text {
  3161. border-width:0px;
  3162. word-wrap:break-word;
  3163. text-transform:none;
  3164. visibility:hidden;
  3165. }
  3166. #u37267_div {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:57px;
  3172. height:30px;
  3173. background:inherit;
  3174. background-color:rgba(255, 255, 255, 0);
  3175. border:none;
  3176. border-left:0px;
  3177. border-top:0px;
  3178. border-right:0px;
  3179. border-radius:0px;
  3180. border-bottom-right-radius:0px;
  3181. border-bottom-left-radius:0px;
  3182. -moz-box-shadow:none;
  3183. -webkit-box-shadow:none;
  3184. box-shadow:none;
  3185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:14px;
  3189. line-height:30px;
  3190. }
  3191. #u37267 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:506px;
  3195. top:433px;
  3196. width:57px;
  3197. height:30px;
  3198. display:flex;
  3199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3200. font-weight:400;
  3201. font-style:normal;
  3202. font-size:14px;
  3203. line-height:30px;
  3204. }
  3205. #u37267 .text {
  3206. position:absolute;
  3207. align-self:flex-start;
  3208. padding:0px 0px 0px 0px;
  3209. box-sizing:border-box;
  3210. width:100%;
  3211. }
  3212. #u37267_text {
  3213. border-width:0px;
  3214. white-space:nowrap;
  3215. text-transform:none;
  3216. }
  3217. #u37268_div {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:181px;
  3223. height:30px;
  3224. background:inherit;
  3225. background-color:rgba(255, 255, 255, 0);
  3226. border:none;
  3227. border-left:0px;
  3228. border-top:0px;
  3229. border-right:0px;
  3230. border-radius:0px;
  3231. border-bottom-right-radius:0px;
  3232. border-bottom-left-radius:0px;
  3233. -moz-box-shadow:none;
  3234. -webkit-box-shadow:none;
  3235. box-shadow:none;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:12px;
  3240. line-height:30px;
  3241. }
  3242. #u37268 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:506px;
  3246. top:463px;
  3247. width:181px;
  3248. height:30px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. line-height:30px;
  3255. }
  3256. #u37268 .text {
  3257. position:absolute;
  3258. align-self:flex-start;
  3259. padding:0px 0px 0px 0px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u37268_text {
  3264. border-width:0px;
  3265. white-space:nowrap;
  3266. text-transform:none;
  3267. }
  3268. #u37269_div {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:167px;
  3274. height:30px;
  3275. background:inherit;
  3276. background-color:rgba(255, 255, 255, 0);
  3277. border:none;
  3278. border-left:0px;
  3279. border-top:0px;
  3280. border-right:0px;
  3281. border-radius:0px;
  3282. border-bottom-right-radius:0px;
  3283. border-bottom-left-radius:0px;
  3284. -moz-box-shadow:none;
  3285. -webkit-box-shadow:none;
  3286. box-shadow:none;
  3287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:12px;
  3291. line-height:30px;
  3292. }
  3293. #u37269 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:506px;
  3297. top:493px;
  3298. width:167px;
  3299. height:30px;
  3300. display:flex;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:12px;
  3305. line-height:30px;
  3306. }
  3307. #u37269 .text {
  3308. position:absolute;
  3309. align-self:flex-start;
  3310. padding:0px 0px 0px 0px;
  3311. box-sizing:border-box;
  3312. width:100%;
  3313. }
  3314. #u37269_text {
  3315. border-width:0px;
  3316. white-space:nowrap;
  3317. text-transform:none;
  3318. }
  3319. #u37270_img {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:375px;
  3325. height:252px;
  3326. }
  3327. #u37270 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:482px;
  3331. top:527px;
  3332. width:375px;
  3333. height:252px;
  3334. display:flex;
  3335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3336. font-weight:400;
  3337. font-style:normal;
  3338. }
  3339. #u37270 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 2px 2px 2px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u37270_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. }
  3351. #u37271_div {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:85px;
  3357. height:30px;
  3358. background:inherit;
  3359. background-color:rgba(255, 255, 255, 0);
  3360. border:none;
  3361. border-left:0px;
  3362. border-top:0px;
  3363. border-right:0px;
  3364. border-radius:0px;
  3365. border-bottom-right-radius:0px;
  3366. border-bottom-left-radius:0px;
  3367. -moz-box-shadow:none;
  3368. -webkit-box-shadow:none;
  3369. box-shadow:none;
  3370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3371. font-weight:400;
  3372. font-style:normal;
  3373. font-size:12px;
  3374. color:#0089FE;
  3375. line-height:30px;
  3376. }
  3377. #u37271 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:758px;
  3381. top:433px;
  3382. width:85px;
  3383. height:30px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. color:#0089FE;
  3390. line-height:30px;
  3391. }
  3392. #u37271 .text {
  3393. position:absolute;
  3394. align-self:flex-start;
  3395. padding:0px 0px 0px 0px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u37271_text {
  3400. border-width:0px;
  3401. white-space:nowrap;
  3402. text-transform:none;
  3403. }
  3404. #u37273_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:433px;
  3410. height:865px;
  3411. }
  3412. #u37273 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:906px;
  3416. top:0px;
  3417. width:433px;
  3418. height:865px;
  3419. display:flex;
  3420. }
  3421. #u37273 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 2px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u37273_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u37274_div {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:375px;
  3440. height:40px;
  3441. background:inherit;
  3442. background-color:rgba(255, 255, 255, 1);
  3443. border:none;
  3444. border-left:0px;
  3445. border-top:0px;
  3446. border-right:0px;
  3447. border-radius:0px;
  3448. border-bottom-right-radius:0px;
  3449. border-bottom-left-radius:0px;
  3450. -moz-box-shadow:none;
  3451. -webkit-box-shadow:none;
  3452. box-shadow:none;
  3453. }
  3454. #u37274 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:935px;
  3458. top:67px;
  3459. width:375px;
  3460. height:40px;
  3461. display:flex;
  3462. }
  3463. #u37274 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 2px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u37274_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. visibility:hidden;
  3475. }
  3476. #u37275 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:0px;
  3482. height:0px;
  3483. }
  3484. #u37276_div {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:88px;
  3490. height:32px;
  3491. background:inherit;
  3492. background-color:rgba(255, 255, 255, 1);
  3493. box-sizing:border-box;
  3494. border-width:1px;
  3495. border-style:solid;
  3496. border-color:rgba(242, 242, 242, 1);
  3497. border-radius:33px;
  3498. -moz-box-shadow:none;
  3499. -webkit-box-shadow:none;
  3500. box-shadow:none;
  3501. }
  3502. #u37276 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:1215px;
  3506. top:71px;
  3507. width:88px;
  3508. height:32px;
  3509. display:flex;
  3510. }
  3511. #u37276 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 2px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u37276_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. visibility:hidden;
  3523. }
  3524. #u37277 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:0px;
  3530. height:0px;
  3531. }
  3532. #u37278_img {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:0px;
  3536. top:0px;
  3537. width:18px;
  3538. height:18px;
  3539. }
  3540. #u37278 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:1278px;
  3544. top:78px;
  3545. width:18px;
  3546. height:18px;
  3547. display:flex;
  3548. }
  3549. #u37278 .text {
  3550. position:absolute;
  3551. align-self:center;
  3552. padding:2px 2px 2px 2px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u37278_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. visibility:hidden;
  3561. }
  3562. #u37279_img {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:6px;
  3568. height:6px;
  3569. }
  3570. #u37279 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:1284px;
  3574. top:84px;
  3575. width:6px;
  3576. height:6px;
  3577. display:flex;
  3578. }
  3579. #u37279 .text {
  3580. position:absolute;
  3581. align-self:center;
  3582. padding:2px 2px 2px 2px;
  3583. box-sizing:border-box;
  3584. width:100%;
  3585. }
  3586. #u37279_text {
  3587. border-width:0px;
  3588. word-wrap:break-word;
  3589. text-transform:none;
  3590. visibility:hidden;
  3591. }
  3592. #u37280 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:0px;
  3598. height:0px;
  3599. }
  3600. #u37281_img {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:5px;
  3606. height:5px;
  3607. }
  3608. #u37281 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:1229px;
  3612. top:85px;
  3613. width:5px;
  3614. height:5px;
  3615. display:flex;
  3616. }
  3617. #u37281 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 2px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u37281_text {
  3625. border-width:0px;
  3626. word-wrap:break-word;
  3627. text-transform:none;
  3628. visibility:hidden;
  3629. }
  3630. #u37282_img {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:5px;
  3636. height:5px;
  3637. }
  3638. #u37282 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:1245px;
  3642. top:85px;
  3643. width:5px;
  3644. height:5px;
  3645. display:flex;
  3646. }
  3647. #u37282 .text {
  3648. position:absolute;
  3649. align-self:center;
  3650. padding:2px 2px 2px 2px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u37282_text {
  3655. border-width:0px;
  3656. word-wrap:break-word;
  3657. text-transform:none;
  3658. visibility:hidden;
  3659. }
  3660. #u37283_img {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:7px;
  3666. height:7px;
  3667. }
  3668. #u37283 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:1236px;
  3672. top:84px;
  3673. width:7px;
  3674. height:7px;
  3675. display:flex;
  3676. }
  3677. #u37283 .text {
  3678. position:absolute;
  3679. align-self:center;
  3680. padding:2px 2px 2px 2px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u37283_text {
  3685. border-width:0px;
  3686. word-wrap:break-word;
  3687. text-transform:none;
  3688. visibility:hidden;
  3689. }
  3690. #u37284_img {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:19px;
  3696. height:2px;
  3697. }
  3698. #u37284 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:1253px;
  3702. top:87px;
  3703. width:18px;
  3704. height:1px;
  3705. display:flex;
  3706. -webkit-transform:rotate(90deg);
  3707. -moz-transform:rotate(90deg);
  3708. -ms-transform:rotate(90deg);
  3709. transform:rotate(90deg);
  3710. }
  3711. #u37284 .text {
  3712. position:absolute;
  3713. align-self:center;
  3714. padding:2px 2px 2px 2px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u37284_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. visibility:hidden;
  3723. }
  3724. #u37285_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:375px;
  3730. height:44px;
  3731. }
  3732. #u37285 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:935px;
  3736. top:24px;
  3737. width:375px;
  3738. height:44px;
  3739. display:flex;
  3740. }
  3741. #u37285 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 2px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u37285_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. visibility:hidden;
  3753. }
  3754. #u37286_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:375px;
  3760. height:50px;
  3761. background:inherit;
  3762. background-color:rgba(255, 255, 255, 1);
  3763. box-sizing:border-box;
  3764. border-width:1px;
  3765. border-style:solid;
  3766. border-color:rgba(242, 242, 242, 1);
  3767. border-radius:26px;
  3768. border-top-left-radius:0px;
  3769. border-top-right-radius:0px;
  3770. -moz-box-shadow:none;
  3771. -webkit-box-shadow:none;
  3772. box-shadow:none;
  3773. }
  3774. #u37286 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:935px;
  3778. top:788px;
  3779. width:375px;
  3780. height:50px;
  3781. display:flex;
  3782. }
  3783. #u37286 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 2px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u37286_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. visibility:hidden;
  3795. }
  3796. #u37287 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:0px;
  3802. height:0px;
  3803. }
  3804. #u37288_img {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:24px;
  3810. height:24px;
  3811. }
  3812. #u37288 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:975px;
  3816. top:792px;
  3817. width:24px;
  3818. height:24px;
  3819. display:flex;
  3820. font-size:8px;
  3821. }
  3822. #u37288 .text {
  3823. position:absolute;
  3824. align-self:center;
  3825. padding:2px 2px 2px 2px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u37288_text {
  3830. border-width:0px;
  3831. word-wrap:break-word;
  3832. text-transform:none;
  3833. }
  3834. #u37289_div {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:25px;
  3840. height:17px;
  3841. background:inherit;
  3842. background-color:rgba(255, 255, 255, 0);
  3843. border:none;
  3844. border-radius:0px;
  3845. -moz-box-shadow:none;
  3846. -webkit-box-shadow:none;
  3847. box-shadow:none;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:12px;
  3852. }
  3853. #u37289 {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:975px;
  3857. top:817px;
  3858. width:25px;
  3859. height:17px;
  3860. display:flex;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:12px;
  3865. }
  3866. #u37289 .text {
  3867. position:absolute;
  3868. align-self:flex-start;
  3869. padding:0px 0px 0px 0px;
  3870. box-sizing:border-box;
  3871. width:100%;
  3872. }
  3873. #u37289_text {
  3874. border-width:0px;
  3875. white-space:nowrap;
  3876. text-transform:none;
  3877. }
  3878. #u37290 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:0px;
  3884. height:0px;
  3885. }
  3886. #u37291_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:24px;
  3892. height:24px;
  3893. }
  3894. #u37291 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:1245px;
  3898. top:794px;
  3899. width:24px;
  3900. height:24px;
  3901. display:flex;
  3902. font-size:8px;
  3903. }
  3904. #u37291 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 2px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u37291_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. }
  3916. #u37292_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:25px;
  3922. height:17px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 0);
  3925. border:none;
  3926. border-radius:0px;
  3927. -moz-box-shadow:none;
  3928. -webkit-box-shadow:none;
  3929. box-shadow:none;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:12px;
  3934. }
  3935. #u37292 {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:1245px;
  3939. top:819px;
  3940. width:25px;
  3941. height:17px;
  3942. display:flex;
  3943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3944. font-weight:400;
  3945. font-style:normal;
  3946. font-size:12px;
  3947. }
  3948. #u37292 .text {
  3949. position:absolute;
  3950. align-self:flex-start;
  3951. padding:0px 0px 0px 0px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u37292_text {
  3956. border-width:0px;
  3957. white-space:nowrap;
  3958. text-transform:none;
  3959. }
  3960. #u37293_div {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:375px;
  3966. height:681px;
  3967. background:inherit;
  3968. background-color:rgba(242, 242, 242, 0.462745098039216);
  3969. border:none;
  3970. border-radius:0px;
  3971. -moz-box-shadow:none;
  3972. -webkit-box-shadow:none;
  3973. box-shadow:none;
  3974. }
  3975. #u37293 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:935px;
  3979. top:107px;
  3980. width:375px;
  3981. height:681px;
  3982. display:flex;
  3983. }
  3984. #u37293 .text {
  3985. position:absolute;
  3986. align-self:center;
  3987. padding:2px 2px 2px 2px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u37293_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u37294 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:0px;
  4003. height:0px;
  4004. }
  4005. #u37295_img {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:0px;
  4009. top:0px;
  4010. width:24px;
  4011. height:24px;
  4012. }
  4013. #u37295 {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:1157px;
  4017. top:792px;
  4018. width:24px;
  4019. height:24px;
  4020. display:flex;
  4021. font-size:8px;
  4022. }
  4023. #u37295 .text {
  4024. position:absolute;
  4025. align-self:center;
  4026. padding:2px 2px 2px 2px;
  4027. box-sizing:border-box;
  4028. width:100%;
  4029. }
  4030. #u37295_text {
  4031. border-width:0px;
  4032. word-wrap:break-word;
  4033. text-transform:none;
  4034. }
  4035. #u37296_div {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:37px;
  4041. height:17px;
  4042. background:inherit;
  4043. background-color:rgba(255, 255, 255, 0);
  4044. border:none;
  4045. border-radius:0px;
  4046. -moz-box-shadow:none;
  4047. -webkit-box-shadow:none;
  4048. box-shadow:none;
  4049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4050. font-weight:400;
  4051. font-style:normal;
  4052. font-size:12px;
  4053. }
  4054. #u37296 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:1151px;
  4058. top:817px;
  4059. width:37px;
  4060. height:17px;
  4061. display:flex;
  4062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:12px;
  4066. }
  4067. #u37296 .text {
  4068. position:absolute;
  4069. align-self:flex-start;
  4070. padding:0px 0px 0px 0px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u37296_text {
  4075. border-width:0px;
  4076. white-space:nowrap;
  4077. text-transform:none;
  4078. }
  4079. #u37297 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:0px;
  4085. height:0px;
  4086. }
  4087. #u37298_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:24px;
  4093. height:24px;
  4094. }
  4095. #u37298 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:1063px;
  4099. top:792px;
  4100. width:24px;
  4101. height:24px;
  4102. display:flex;
  4103. font-size:8px;
  4104. }
  4105. #u37298 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:2px 2px 2px 2px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u37298_text {
  4113. border-width:0px;
  4114. word-wrap:break-word;
  4115. text-transform:none;
  4116. }
  4117. #u37299_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:37px;
  4123. height:17px;
  4124. background:inherit;
  4125. background-color:rgba(255, 255, 255, 0);
  4126. border:none;
  4127. border-radius:0px;
  4128. -moz-box-shadow:none;
  4129. -webkit-box-shadow:none;
  4130. box-shadow:none;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:12px;
  4135. }
  4136. #u37299 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:1057px;
  4140. top:817px;
  4141. width:37px;
  4142. height:17px;
  4143. display:flex;
  4144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:12px;
  4148. }
  4149. #u37299 .text {
  4150. position:absolute;
  4151. align-self:flex-start;
  4152. padding:0px 0px 0px 0px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u37299_text {
  4157. border-width:0px;
  4158. white-space:nowrap;
  4159. text-transform:none;
  4160. }
  4161. #u37300_div {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:375px;
  4167. height:732px;
  4168. background:inherit;
  4169. background-color:rgba(242, 242, 242, 0.996078431372549);
  4170. border:none;
  4171. border-top:0px;
  4172. border-radius:28px;
  4173. border-top-left-radius:0px;
  4174. border-top-right-radius:0px;
  4175. -moz-box-shadow:none;
  4176. -webkit-box-shadow:none;
  4177. box-shadow:none;
  4178. }
  4179. #u37300 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:935px;
  4183. top:107px;
  4184. width:375px;
  4185. height:732px;
  4186. display:flex;
  4187. }
  4188. #u37300 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 2px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u37300_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u37301_div {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:375px;
  4207. height:125px;
  4208. background:inherit;
  4209. background-color:rgba(255, 255, 255, 1);
  4210. border:none;
  4211. border-left:0px;
  4212. border-top:0px;
  4213. border-right:0px;
  4214. border-radius:0px;
  4215. border-bottom-right-radius:0px;
  4216. border-bottom-left-radius:0px;
  4217. -moz-box-shadow:none;
  4218. -webkit-box-shadow:none;
  4219. box-shadow:none;
  4220. }
  4221. #u37301 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:935px;
  4225. top:108px;
  4226. width:375px;
  4227. height:125px;
  4228. display:flex;
  4229. }
  4230. #u37301 .text {
  4231. position:absolute;
  4232. align-self:center;
  4233. padding:2px 2px 2px 2px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u37301_text {
  4238. border-width:0px;
  4239. word-wrap:break-word;
  4240. text-transform:none;
  4241. visibility:hidden;
  4242. }
  4243. #u37302_div {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:43px;
  4249. height:20px;
  4250. background:inherit;
  4251. background-color:rgba(255, 255, 255, 0);
  4252. border:none;
  4253. border-radius:0px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. color:#0089FE;
  4261. }
  4262. #u37302 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:1248px;
  4266. top:124px;
  4267. width:43px;
  4268. height:20px;
  4269. display:flex;
  4270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. color:#0089FE;
  4274. }
  4275. #u37302 .text {
  4276. position:absolute;
  4277. align-self:flex-start;
  4278. padding:0px 0px 0px 0px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u37302_text {
  4283. border-width:0px;
  4284. white-space:nowrap;
  4285. text-transform:none;
  4286. }
  4287. #u37303_div {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:124px;
  4293. height:30px;
  4294. background:inherit;
  4295. background-color:rgba(255, 255, 255, 0);
  4296. border:none;
  4297. border-left:0px;
  4298. border-top:0px;
  4299. border-right:0px;
  4300. border-radius:0px;
  4301. border-bottom-right-radius:0px;
  4302. border-bottom-left-radius:0px;
  4303. -moz-box-shadow:none;
  4304. -webkit-box-shadow:none;
  4305. box-shadow:none;
  4306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4307. font-weight:500;
  4308. font-style:normal;
  4309. font-size:14px;
  4310. line-height:30px;
  4311. }
  4312. #u37303 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:948px;
  4316. top:118px;
  4317. width:124px;
  4318. height:30px;
  4319. display:flex;
  4320. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4321. font-weight:500;
  4322. font-style:normal;
  4323. font-size:14px;
  4324. line-height:30px;
  4325. }
  4326. #u37303 .text {
  4327. position:absolute;
  4328. align-self:flex-start;
  4329. padding:0px 0px 0px 0px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u37303_text {
  4334. border-width:0px;
  4335. white-space:nowrap;
  4336. text-transform:none;
  4337. }
  4338. #u37304_div {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:167px;
  4344. height:75px;
  4345. background:inherit;
  4346. background-color:rgba(255, 255, 255, 0);
  4347. border:none;
  4348. border-left:0px;
  4349. border-top:0px;
  4350. border-right:0px;
  4351. border-radius:0px;
  4352. border-bottom-right-radius:0px;
  4353. border-bottom-left-radius:0px;
  4354. -moz-box-shadow:none;
  4355. -webkit-box-shadow:none;
  4356. box-shadow:none;
  4357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4358. font-weight:400;
  4359. font-style:normal;
  4360. font-size:12px;
  4361. line-height:25px;
  4362. }
  4363. #u37304 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:948px;
  4367. top:148px;
  4368. width:167px;
  4369. height:75px;
  4370. display:flex;
  4371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4372. font-weight:400;
  4373. font-style:normal;
  4374. font-size:12px;
  4375. line-height:25px;
  4376. }
  4377. #u37304 .text {
  4378. position:absolute;
  4379. align-self:flex-start;
  4380. padding:0px 0px 0px 0px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u37304_text {
  4385. border-width:0px;
  4386. white-space:nowrap;
  4387. text-transform:none;
  4388. }
  4389. #u37305_div {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:375px;
  4395. height:41px;
  4396. background:inherit;
  4397. background-color:rgba(255, 255, 255, 1);
  4398. box-sizing:border-box;
  4399. border-width:1px;
  4400. border-style:solid;
  4401. border-color:rgba(215, 215, 215, 1);
  4402. border-left:0px;
  4403. border-top:0px;
  4404. border-right:0px;
  4405. border-radius:0px;
  4406. border-bottom-right-radius:0px;
  4407. border-bottom-left-radius:0px;
  4408. -moz-box-shadow:none;
  4409. -webkit-box-shadow:none;
  4410. box-shadow:none;
  4411. }
  4412. #u37305 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:935px;
  4416. top:67px;
  4417. width:375px;
  4418. height:41px;
  4419. display:flex;
  4420. }
  4421. #u37305 .text {
  4422. position:absolute;
  4423. align-self:center;
  4424. padding:2px 2px 2px 2px;
  4425. box-sizing:border-box;
  4426. width:100%;
  4427. }
  4428. #u37305_text {
  4429. border-width:0px;
  4430. word-wrap:break-word;
  4431. text-transform:none;
  4432. visibility:hidden;
  4433. }
  4434. #u37306 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:0px;
  4440. height:0px;
  4441. }
  4442. #u37307_div {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:88px;
  4448. height:32px;
  4449. background:inherit;
  4450. background-color:rgba(255, 255, 255, 1);
  4451. box-sizing:border-box;
  4452. border-width:1px;
  4453. border-style:solid;
  4454. border-color:rgba(242, 242, 242, 1);
  4455. border-radius:33px;
  4456. -moz-box-shadow:none;
  4457. -webkit-box-shadow:none;
  4458. box-shadow:none;
  4459. }
  4460. #u37307 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:1215px;
  4464. top:71px;
  4465. width:88px;
  4466. height:32px;
  4467. display:flex;
  4468. }
  4469. #u37307 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u37307_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u37308 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:0px;
  4488. height:0px;
  4489. }
  4490. #u37309_img {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:18px;
  4496. height:18px;
  4497. }
  4498. #u37309 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:1278px;
  4502. top:78px;
  4503. width:18px;
  4504. height:18px;
  4505. display:flex;
  4506. }
  4507. #u37309 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:2px 2px 2px 2px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u37309_text {
  4515. border-width:0px;
  4516. word-wrap:break-word;
  4517. text-transform:none;
  4518. visibility:hidden;
  4519. }
  4520. #u37310_img {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:6px;
  4526. height:6px;
  4527. }
  4528. #u37310 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:1284px;
  4532. top:84px;
  4533. width:6px;
  4534. height:6px;
  4535. display:flex;
  4536. }
  4537. #u37310 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 2px 2px 2px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u37310_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. visibility:hidden;
  4549. }
  4550. #u37311 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:0px;
  4556. height:0px;
  4557. }
  4558. #u37312_img {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:0px;
  4563. width:5px;
  4564. height:5px;
  4565. }
  4566. #u37312 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:1229px;
  4570. top:85px;
  4571. width:5px;
  4572. height:5px;
  4573. display:flex;
  4574. }
  4575. #u37312 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 2px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u37312_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u37313_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:5px;
  4594. height:5px;
  4595. }
  4596. #u37313 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:1245px;
  4600. top:85px;
  4601. width:5px;
  4602. height:5px;
  4603. display:flex;
  4604. }
  4605. #u37313 .text {
  4606. position:absolute;
  4607. align-self:center;
  4608. padding:2px 2px 2px 2px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u37313_text {
  4613. border-width:0px;
  4614. word-wrap:break-word;
  4615. text-transform:none;
  4616. visibility:hidden;
  4617. }
  4618. #u37314_img {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:7px;
  4624. height:7px;
  4625. }
  4626. #u37314 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:1236px;
  4630. top:84px;
  4631. width:7px;
  4632. height:7px;
  4633. display:flex;
  4634. }
  4635. #u37314 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 2px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u37314_text {
  4643. border-width:0px;
  4644. word-wrap:break-word;
  4645. text-transform:none;
  4646. visibility:hidden;
  4647. }
  4648. #u37315_img {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:19px;
  4654. height:2px;
  4655. }
  4656. #u37315 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:1253px;
  4660. top:87px;
  4661. width:18px;
  4662. height:1px;
  4663. display:flex;
  4664. -webkit-transform:rotate(90deg);
  4665. -moz-transform:rotate(90deg);
  4666. -ms-transform:rotate(90deg);
  4667. transform:rotate(90deg);
  4668. }
  4669. #u37315 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:2px 2px 2px 2px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u37315_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. visibility:hidden;
  4681. }
  4682. #u37316_div {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:12px;
  4688. height:12px;
  4689. background:inherit;
  4690. background-color:rgba(255, 255, 255, 0);
  4691. box-sizing:border-box;
  4692. border-width:2px;
  4693. border-style:solid;
  4694. border-color:rgba(51, 51, 51, 1);
  4695. border-right:0px;
  4696. border-bottom:0px;
  4697. border-radius:0px;
  4698. border-top-right-radius:0px;
  4699. border-bottom-left-radius:0px;
  4700. -moz-box-shadow:none;
  4701. -webkit-box-shadow:none;
  4702. box-shadow:none;
  4703. }
  4704. #u37316 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:950px;
  4708. top:81px;
  4709. width:12px;
  4710. height:12px;
  4711. display:flex;
  4712. -webkit-transform:rotate(315deg);
  4713. -moz-transform:rotate(315deg);
  4714. -ms-transform:rotate(315deg);
  4715. transform:rotate(315deg);
  4716. }
  4717. #u37316 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 2px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u37316_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u37317_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:73px;
  4736. height:25px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 0);
  4739. border:none;
  4740. border-radius:0px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:18px;
  4748. }
  4749. #u37317 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:970px;
  4753. top:75px;
  4754. width:73px;
  4755. height:25px;
  4756. display:flex;
  4757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:18px;
  4761. }
  4762. #u37317 .text {
  4763. position:absolute;
  4764. align-self:flex-start;
  4765. padding:0px 0px 0px 0px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u37317_text {
  4770. border-width:0px;
  4771. white-space:nowrap;
  4772. text-transform:none;
  4773. }
  4774. #u37319_img {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:433px;
  4780. height:865px;
  4781. }
  4782. #u37319 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:2295px;
  4786. top:0px;
  4787. width:433px;
  4788. height:865px;
  4789. display:flex;
  4790. }
  4791. #u37319 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 2px 2px 2px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u37319_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. visibility:hidden;
  4803. }
  4804. #u37320_div {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:375px;
  4810. height:40px;
  4811. background:inherit;
  4812. background-color:rgba(255, 255, 255, 1);
  4813. border:none;
  4814. border-left:0px;
  4815. border-top:0px;
  4816. border-right:0px;
  4817. border-radius:0px;
  4818. border-bottom-right-radius:0px;
  4819. border-bottom-left-radius:0px;
  4820. -moz-box-shadow:none;
  4821. -webkit-box-shadow:none;
  4822. box-shadow:none;
  4823. }
  4824. #u37320 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:2324px;
  4828. top:67px;
  4829. width:375px;
  4830. height:40px;
  4831. display:flex;
  4832. }
  4833. #u37320 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:2px 2px 2px 2px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u37320_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. visibility:hidden;
  4845. }
  4846. #u37321 {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:0px;
  4852. height:0px;
  4853. }
  4854. #u37322_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:88px;
  4860. height:32px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 1);
  4863. box-sizing:border-box;
  4864. border-width:1px;
  4865. border-style:solid;
  4866. border-color:rgba(242, 242, 242, 1);
  4867. border-radius:33px;
  4868. -moz-box-shadow:none;
  4869. -webkit-box-shadow:none;
  4870. box-shadow:none;
  4871. }
  4872. #u37322 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:2604px;
  4876. top:71px;
  4877. width:88px;
  4878. height:32px;
  4879. display:flex;
  4880. }
  4881. #u37322 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 2px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u37322_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u37323 {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:0px;
  4900. height:0px;
  4901. }
  4902. #u37324_img {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:0px;
  4907. width:18px;
  4908. height:18px;
  4909. }
  4910. #u37324 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:2667px;
  4914. top:78px;
  4915. width:18px;
  4916. height:18px;
  4917. display:flex;
  4918. }
  4919. #u37324 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:2px 2px 2px 2px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u37324_text {
  4927. border-width:0px;
  4928. word-wrap:break-word;
  4929. text-transform:none;
  4930. visibility:hidden;
  4931. }
  4932. #u37325_img {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:6px;
  4938. height:6px;
  4939. }
  4940. #u37325 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:2673px;
  4944. top:84px;
  4945. width:6px;
  4946. height:6px;
  4947. display:flex;
  4948. }
  4949. #u37325 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 2px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u37325_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u37326 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:0px;
  4968. height:0px;
  4969. }
  4970. #u37327_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:5px;
  4976. height:5px;
  4977. }
  4978. #u37327 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:2618px;
  4982. top:85px;
  4983. width:5px;
  4984. height:5px;
  4985. display:flex;
  4986. }
  4987. #u37327 .text {
  4988. position:absolute;
  4989. align-self:center;
  4990. padding:2px 2px 2px 2px;
  4991. box-sizing:border-box;
  4992. width:100%;
  4993. }
  4994. #u37327_text {
  4995. border-width:0px;
  4996. word-wrap:break-word;
  4997. text-transform:none;
  4998. visibility:hidden;
  4999. }
  5000. #u37328_img {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:0px;
  5004. top:0px;
  5005. width:5px;
  5006. height:5px;
  5007. }
  5008. #u37328 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:2634px;
  5012. top:85px;
  5013. width:5px;
  5014. height:5px;
  5015. display:flex;
  5016. }
  5017. #u37328 .text {
  5018. position:absolute;
  5019. align-self:center;
  5020. padding:2px 2px 2px 2px;
  5021. box-sizing:border-box;
  5022. width:100%;
  5023. }
  5024. #u37328_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. visibility:hidden;
  5029. }
  5030. #u37329_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:7px;
  5036. height:7px;
  5037. }
  5038. #u37329 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:2625px;
  5042. top:84px;
  5043. width:7px;
  5044. height:7px;
  5045. display:flex;
  5046. }
  5047. #u37329 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 2px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u37329_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. visibility:hidden;
  5059. }
  5060. #u37330_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:19px;
  5066. height:2px;
  5067. }
  5068. #u37330 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:2642px;
  5072. top:87px;
  5073. width:18px;
  5074. height:1px;
  5075. display:flex;
  5076. -webkit-transform:rotate(90deg);
  5077. -moz-transform:rotate(90deg);
  5078. -ms-transform:rotate(90deg);
  5079. transform:rotate(90deg);
  5080. }
  5081. #u37330 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:2px 2px 2px 2px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u37330_text {
  5089. border-width:0px;
  5090. word-wrap:break-word;
  5091. text-transform:none;
  5092. visibility:hidden;
  5093. }
  5094. #u37331_img {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:375px;
  5100. height:44px;
  5101. }
  5102. #u37331 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:2324px;
  5106. top:24px;
  5107. width:375px;
  5108. height:44px;
  5109. display:flex;
  5110. }
  5111. #u37331 .text {
  5112. position:absolute;
  5113. align-self:center;
  5114. padding:2px 2px 2px 2px;
  5115. box-sizing:border-box;
  5116. width:100%;
  5117. }
  5118. #u37331_text {
  5119. border-width:0px;
  5120. word-wrap:break-word;
  5121. text-transform:none;
  5122. visibility:hidden;
  5123. }
  5124. #u37332_div {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:375px;
  5130. height:50px;
  5131. background:inherit;
  5132. background-color:rgba(255, 255, 255, 1);
  5133. box-sizing:border-box;
  5134. border-width:1px;
  5135. border-style:solid;
  5136. border-color:rgba(242, 242, 242, 1);
  5137. border-radius:26px;
  5138. border-top-left-radius:0px;
  5139. border-top-right-radius:0px;
  5140. -moz-box-shadow:none;
  5141. -webkit-box-shadow:none;
  5142. box-shadow:none;
  5143. }
  5144. #u37332 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:2324px;
  5148. top:788px;
  5149. width:375px;
  5150. height:50px;
  5151. display:flex;
  5152. }
  5153. #u37332 .text {
  5154. position:absolute;
  5155. align-self:center;
  5156. padding:2px 2px 2px 2px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u37332_text {
  5161. border-width:0px;
  5162. word-wrap:break-word;
  5163. text-transform:none;
  5164. visibility:hidden;
  5165. }
  5166. #u37333 {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:0px;
  5172. height:0px;
  5173. }
  5174. #u37334_img {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:24px;
  5180. height:24px;
  5181. }
  5182. #u37334 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:2364px;
  5186. top:792px;
  5187. width:24px;
  5188. height:24px;
  5189. display:flex;
  5190. font-size:8px;
  5191. }
  5192. #u37334 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:2px 2px 2px 2px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u37334_text {
  5200. border-width:0px;
  5201. word-wrap:break-word;
  5202. text-transform:none;
  5203. }
  5204. #u37335_div {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:25px;
  5210. height:17px;
  5211. background:inherit;
  5212. background-color:rgba(255, 255, 255, 0);
  5213. border:none;
  5214. border-radius:0px;
  5215. -moz-box-shadow:none;
  5216. -webkit-box-shadow:none;
  5217. box-shadow:none;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:12px;
  5222. }
  5223. #u37335 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:2364px;
  5227. top:817px;
  5228. width:25px;
  5229. height:17px;
  5230. display:flex;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:12px;
  5235. }
  5236. #u37335 .text {
  5237. position:absolute;
  5238. align-self:flex-start;
  5239. padding:0px 0px 0px 0px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u37335_text {
  5244. border-width:0px;
  5245. white-space:nowrap;
  5246. text-transform:none;
  5247. }
  5248. #u37336 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:0px;
  5254. height:0px;
  5255. }
  5256. #u37337_img {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:24px;
  5262. height:24px;
  5263. }
  5264. #u37337 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:2634px;
  5268. top:794px;
  5269. width:24px;
  5270. height:24px;
  5271. display:flex;
  5272. font-size:8px;
  5273. }
  5274. #u37337 .text {
  5275. position:absolute;
  5276. align-self:center;
  5277. padding:2px 2px 2px 2px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u37337_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. }
  5286. #u37338_div {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:25px;
  5292. height:17px;
  5293. background:inherit;
  5294. background-color:rgba(255, 255, 255, 0);
  5295. border:none;
  5296. border-radius:0px;
  5297. -moz-box-shadow:none;
  5298. -webkit-box-shadow:none;
  5299. box-shadow:none;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:12px;
  5304. }
  5305. #u37338 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:2634px;
  5309. top:819px;
  5310. width:25px;
  5311. height:17px;
  5312. display:flex;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:12px;
  5317. }
  5318. #u37338 .text {
  5319. position:absolute;
  5320. align-self:flex-start;
  5321. padding:0px 0px 0px 0px;
  5322. box-sizing:border-box;
  5323. width:100%;
  5324. }
  5325. #u37338_text {
  5326. border-width:0px;
  5327. white-space:nowrap;
  5328. text-transform:none;
  5329. }
  5330. #u37339_div {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:375px;
  5336. height:681px;
  5337. background:inherit;
  5338. background-color:rgba(242, 242, 242, 0.462745098039216);
  5339. border:none;
  5340. border-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. }
  5345. #u37339 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:2324px;
  5349. top:107px;
  5350. width:375px;
  5351. height:681px;
  5352. display:flex;
  5353. }
  5354. #u37339 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:2px 2px 2px 2px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u37339_text {
  5362. border-width:0px;
  5363. word-wrap:break-word;
  5364. text-transform:none;
  5365. visibility:hidden;
  5366. }
  5367. #u37340 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:0px;
  5373. height:0px;
  5374. }
  5375. #u37341_img {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:24px;
  5381. height:24px;
  5382. }
  5383. #u37341 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:2546px;
  5387. top:792px;
  5388. width:24px;
  5389. height:24px;
  5390. display:flex;
  5391. font-size:8px;
  5392. }
  5393. #u37341 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:2px 2px 2px 2px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u37341_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. }
  5405. #u37342_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:37px;
  5411. height:17px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 0);
  5414. border:none;
  5415. border-radius:0px;
  5416. -moz-box-shadow:none;
  5417. -webkit-box-shadow:none;
  5418. box-shadow:none;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:12px;
  5423. }
  5424. #u37342 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:2540px;
  5428. top:817px;
  5429. width:37px;
  5430. height:17px;
  5431. display:flex;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:12px;
  5436. }
  5437. #u37342 .text {
  5438. position:absolute;
  5439. align-self:flex-start;
  5440. padding:0px 0px 0px 0px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u37342_text {
  5445. border-width:0px;
  5446. white-space:nowrap;
  5447. text-transform:none;
  5448. }
  5449. #u37343 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:0px;
  5455. height:0px;
  5456. }
  5457. #u37344_img {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:24px;
  5463. height:24px;
  5464. }
  5465. #u37344 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:2452px;
  5469. top:792px;
  5470. width:24px;
  5471. height:24px;
  5472. display:flex;
  5473. font-size:8px;
  5474. }
  5475. #u37344 .text {
  5476. position:absolute;
  5477. align-self:center;
  5478. padding:2px 2px 2px 2px;
  5479. box-sizing:border-box;
  5480. width:100%;
  5481. }
  5482. #u37344_text {
  5483. border-width:0px;
  5484. word-wrap:break-word;
  5485. text-transform:none;
  5486. }
  5487. #u37345_div {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:37px;
  5493. height:17px;
  5494. background:inherit;
  5495. background-color:rgba(255, 255, 255, 0);
  5496. border:none;
  5497. border-radius:0px;
  5498. -moz-box-shadow:none;
  5499. -webkit-box-shadow:none;
  5500. box-shadow:none;
  5501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5502. font-weight:400;
  5503. font-style:normal;
  5504. font-size:12px;
  5505. }
  5506. #u37345 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:2446px;
  5510. top:817px;
  5511. width:37px;
  5512. height:17px;
  5513. display:flex;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. }
  5519. #u37345 .text {
  5520. position:absolute;
  5521. align-self:flex-start;
  5522. padding:0px 0px 0px 0px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u37345_text {
  5527. border-width:0px;
  5528. white-space:nowrap;
  5529. text-transform:none;
  5530. }
  5531. #u37346_div {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:375px;
  5537. height:732px;
  5538. background:inherit;
  5539. background-color:rgba(242, 242, 242, 0.996078431372549);
  5540. border:none;
  5541. border-top:0px;
  5542. border-radius:28px;
  5543. border-top-left-radius:0px;
  5544. border-top-right-radius:0px;
  5545. -moz-box-shadow:none;
  5546. -webkit-box-shadow:none;
  5547. box-shadow:none;
  5548. }
  5549. #u37346 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:2324px;
  5553. top:107px;
  5554. width:375px;
  5555. height:732px;
  5556. display:flex;
  5557. }
  5558. #u37346 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 2px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u37346_text {
  5566. border-width:0px;
  5567. word-wrap:break-word;
  5568. text-transform:none;
  5569. visibility:hidden;
  5570. }
  5571. #u37347_div {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:375px;
  5577. height:125px;
  5578. background:inherit;
  5579. background-color:rgba(255, 255, 255, 1);
  5580. border:none;
  5581. border-left:0px;
  5582. border-top:0px;
  5583. border-right:0px;
  5584. border-radius:0px;
  5585. border-bottom-right-radius:0px;
  5586. border-bottom-left-radius:0px;
  5587. -moz-box-shadow:none;
  5588. -webkit-box-shadow:none;
  5589. box-shadow:none;
  5590. }
  5591. #u37347 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:2324px;
  5595. top:108px;
  5596. width:375px;
  5597. height:125px;
  5598. display:flex;
  5599. }
  5600. #u37347 .text {
  5601. position:absolute;
  5602. align-self:center;
  5603. padding:2px 2px 2px 2px;
  5604. box-sizing:border-box;
  5605. width:100%;
  5606. }
  5607. #u37347_text {
  5608. border-width:0px;
  5609. word-wrap:break-word;
  5610. text-transform:none;
  5611. visibility:hidden;
  5612. }
  5613. #u37348_div {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:124px;
  5619. height:30px;
  5620. background:inherit;
  5621. background-color:rgba(255, 255, 255, 0);
  5622. border:none;
  5623. border-left:0px;
  5624. border-top:0px;
  5625. border-right:0px;
  5626. border-radius:0px;
  5627. border-bottom-right-radius:0px;
  5628. border-bottom-left-radius:0px;
  5629. -moz-box-shadow:none;
  5630. -webkit-box-shadow:none;
  5631. box-shadow:none;
  5632. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5633. font-weight:500;
  5634. font-style:normal;
  5635. font-size:14px;
  5636. line-height:30px;
  5637. }
  5638. #u37348 {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:2337px;
  5642. top:118px;
  5643. width:124px;
  5644. height:30px;
  5645. display:flex;
  5646. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5647. font-weight:500;
  5648. font-style:normal;
  5649. font-size:14px;
  5650. line-height:30px;
  5651. }
  5652. #u37348 .text {
  5653. position:absolute;
  5654. align-self:flex-start;
  5655. padding:0px 0px 0px 0px;
  5656. box-sizing:border-box;
  5657. width:100%;
  5658. }
  5659. #u37348_text {
  5660. border-width:0px;
  5661. white-space:nowrap;
  5662. text-transform:none;
  5663. }
  5664. #u37349_div {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:167px;
  5670. height:75px;
  5671. background:inherit;
  5672. background-color:rgba(255, 255, 255, 0);
  5673. border:none;
  5674. border-left:0px;
  5675. border-top:0px;
  5676. border-right:0px;
  5677. border-radius:0px;
  5678. border-bottom-right-radius:0px;
  5679. border-bottom-left-radius:0px;
  5680. -moz-box-shadow:none;
  5681. -webkit-box-shadow:none;
  5682. box-shadow:none;
  5683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:12px;
  5687. line-height:25px;
  5688. }
  5689. #u37349 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:2337px;
  5693. top:148px;
  5694. width:167px;
  5695. height:75px;
  5696. display:flex;
  5697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:12px;
  5701. line-height:25px;
  5702. }
  5703. #u37349 .text {
  5704. position:absolute;
  5705. align-self:flex-start;
  5706. padding:0px 0px 0px 0px;
  5707. box-sizing:border-box;
  5708. width:100%;
  5709. }
  5710. #u37349_text {
  5711. border-width:0px;
  5712. white-space:nowrap;
  5713. text-transform:none;
  5714. }
  5715. #u37350_div {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:375px;
  5721. height:41px;
  5722. background:inherit;
  5723. background-color:rgba(255, 255, 255, 1);
  5724. box-sizing:border-box;
  5725. border-width:1px;
  5726. border-style:solid;
  5727. border-color:rgba(215, 215, 215, 1);
  5728. border-left:0px;
  5729. border-top:0px;
  5730. border-right:0px;
  5731. border-radius:0px;
  5732. border-bottom-right-radius:0px;
  5733. border-bottom-left-radius:0px;
  5734. -moz-box-shadow:none;
  5735. -webkit-box-shadow:none;
  5736. box-shadow:none;
  5737. }
  5738. #u37350 {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:2324px;
  5742. top:67px;
  5743. width:375px;
  5744. height:41px;
  5745. display:flex;
  5746. }
  5747. #u37350 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:2px 2px 2px 2px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u37350_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u37351 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:0px;
  5766. height:0px;
  5767. }
  5768. #u37352_div {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:88px;
  5774. height:32px;
  5775. background:inherit;
  5776. background-color:rgba(255, 255, 255, 1);
  5777. box-sizing:border-box;
  5778. border-width:1px;
  5779. border-style:solid;
  5780. border-color:rgba(242, 242, 242, 1);
  5781. border-radius:33px;
  5782. -moz-box-shadow:none;
  5783. -webkit-box-shadow:none;
  5784. box-shadow:none;
  5785. }
  5786. #u37352 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:2604px;
  5790. top:71px;
  5791. width:88px;
  5792. height:32px;
  5793. display:flex;
  5794. }
  5795. #u37352 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 2px 2px 2px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u37352_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. visibility:hidden;
  5807. }
  5808. #u37353 {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:0px;
  5814. height:0px;
  5815. }
  5816. #u37354_img {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:18px;
  5822. height:18px;
  5823. }
  5824. #u37354 {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:2667px;
  5828. top:78px;
  5829. width:18px;
  5830. height:18px;
  5831. display:flex;
  5832. }
  5833. #u37354 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 2px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u37354_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u37355_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:6px;
  5852. height:6px;
  5853. }
  5854. #u37355 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:2673px;
  5858. top:84px;
  5859. width:6px;
  5860. height:6px;
  5861. display:flex;
  5862. }
  5863. #u37355 .text {
  5864. position:absolute;
  5865. align-self:center;
  5866. padding:2px 2px 2px 2px;
  5867. box-sizing:border-box;
  5868. width:100%;
  5869. }
  5870. #u37355_text {
  5871. border-width:0px;
  5872. word-wrap:break-word;
  5873. text-transform:none;
  5874. visibility:hidden;
  5875. }
  5876. #u37356 {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:0px;
  5882. height:0px;
  5883. }
  5884. #u37357_img {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:5px;
  5890. height:5px;
  5891. }
  5892. #u37357 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:2618px;
  5896. top:85px;
  5897. width:5px;
  5898. height:5px;
  5899. display:flex;
  5900. }
  5901. #u37357 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 2px 2px 2px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u37357_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u37358_img {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:5px;
  5920. height:5px;
  5921. }
  5922. #u37358 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:2634px;
  5926. top:85px;
  5927. width:5px;
  5928. height:5px;
  5929. display:flex;
  5930. }
  5931. #u37358 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 2px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u37358_text {
  5939. border-width:0px;
  5940. word-wrap:break-word;
  5941. text-transform:none;
  5942. visibility:hidden;
  5943. }
  5944. #u37359_img {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:7px;
  5950. height:7px;
  5951. }
  5952. #u37359 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:2625px;
  5956. top:84px;
  5957. width:7px;
  5958. height:7px;
  5959. display:flex;
  5960. }
  5961. #u37359 .text {
  5962. position:absolute;
  5963. align-self:center;
  5964. padding:2px 2px 2px 2px;
  5965. box-sizing:border-box;
  5966. width:100%;
  5967. }
  5968. #u37359_text {
  5969. border-width:0px;
  5970. word-wrap:break-word;
  5971. text-transform:none;
  5972. visibility:hidden;
  5973. }
  5974. #u37360_img {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:0px;
  5978. top:0px;
  5979. width:19px;
  5980. height:2px;
  5981. }
  5982. #u37360 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:2642px;
  5986. top:87px;
  5987. width:18px;
  5988. height:1px;
  5989. display:flex;
  5990. -webkit-transform:rotate(90deg);
  5991. -moz-transform:rotate(90deg);
  5992. -ms-transform:rotate(90deg);
  5993. transform:rotate(90deg);
  5994. }
  5995. #u37360 .text {
  5996. position:absolute;
  5997. align-self:center;
  5998. padding:2px 2px 2px 2px;
  5999. box-sizing:border-box;
  6000. width:100%;
  6001. }
  6002. #u37360_text {
  6003. border-width:0px;
  6004. word-wrap:break-word;
  6005. text-transform:none;
  6006. visibility:hidden;
  6007. }
  6008. #u37361_div {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:12px;
  6014. height:12px;
  6015. background:inherit;
  6016. background-color:rgba(255, 255, 255, 0);
  6017. box-sizing:border-box;
  6018. border-width:2px;
  6019. border-style:solid;
  6020. border-color:rgba(51, 51, 51, 1);
  6021. border-right:0px;
  6022. border-bottom:0px;
  6023. border-radius:0px;
  6024. border-top-right-radius:0px;
  6025. border-bottom-left-radius:0px;
  6026. -moz-box-shadow:none;
  6027. -webkit-box-shadow:none;
  6028. box-shadow:none;
  6029. }
  6030. #u37361 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:2339px;
  6034. top:81px;
  6035. width:12px;
  6036. height:12px;
  6037. display:flex;
  6038. -webkit-transform:rotate(315deg);
  6039. -moz-transform:rotate(315deg);
  6040. -ms-transform:rotate(315deg);
  6041. transform:rotate(315deg);
  6042. }
  6043. #u37361 .text {
  6044. position:absolute;
  6045. align-self:center;
  6046. padding:2px 2px 2px 2px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u37361_text {
  6051. border-width:0px;
  6052. word-wrap:break-word;
  6053. text-transform:none;
  6054. visibility:hidden;
  6055. }
  6056. #u37362_div {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:73px;
  6062. height:25px;
  6063. background:inherit;
  6064. background-color:rgba(255, 255, 255, 0);
  6065. border:none;
  6066. border-radius:0px;
  6067. -moz-box-shadow:none;
  6068. -webkit-box-shadow:none;
  6069. box-shadow:none;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:18px;
  6074. }
  6075. #u37362 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:2359px;
  6079. top:75px;
  6080. width:73px;
  6081. height:25px;
  6082. display:flex;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. font-size:18px;
  6087. }
  6088. #u37362 .text {
  6089. position:absolute;
  6090. align-self:flex-start;
  6091. padding:0px 0px 0px 0px;
  6092. box-sizing:border-box;
  6093. width:100%;
  6094. }
  6095. #u37362_text {
  6096. border-width:0px;
  6097. white-space:nowrap;
  6098. text-transform:none;
  6099. }
  6100. #u37363_div {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:43px;
  6106. height:20px;
  6107. background:inherit;
  6108. background-color:rgba(255, 255, 255, 0);
  6109. border:none;
  6110. border-radius:0px;
  6111. -moz-box-shadow:none;
  6112. -webkit-box-shadow:none;
  6113. box-shadow:none;
  6114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. color:#0089FE;
  6118. }
  6119. #u37363 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:2642px;
  6123. top:123px;
  6124. width:43px;
  6125. height:20px;
  6126. display:flex;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. color:#0089FE;
  6131. }
  6132. #u37363 .text {
  6133. position:absolute;
  6134. align-self:flex-start;
  6135. padding:0px 0px 0px 0px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u37363_text {
  6140. border-width:0px;
  6141. white-space:nowrap;
  6142. text-transform:none;
  6143. }
  6144. #u37364 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:0px;
  6150. height:0px;
  6151. }
  6152. #u37365_div {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:375px;
  6158. height:190px;
  6159. background:inherit;
  6160. background-color:rgba(255, 255, 255, 1);
  6161. border:none;
  6162. border-left:0px;
  6163. border-right:0px;
  6164. border-radius:0px;
  6165. border-top-left-radius:0px;
  6166. border-top-right-radius:0px;
  6167. border-bottom-right-radius:0px;
  6168. border-bottom-left-radius:0px;
  6169. -moz-box-shadow:none;
  6170. -webkit-box-shadow:none;
  6171. box-shadow:none;
  6172. }
  6173. #u37365 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:2324px;
  6177. top:424px;
  6178. width:375px;
  6179. height:190px;
  6180. display:flex;
  6181. }
  6182. #u37365 .text {
  6183. position:absolute;
  6184. align-self:center;
  6185. padding:2px 2px 2px 2px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u37365_text {
  6190. border-width:0px;
  6191. word-wrap:break-word;
  6192. text-transform:none;
  6193. visibility:hidden;
  6194. }
  6195. #u37366_div {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:57px;
  6201. height:30px;
  6202. background:inherit;
  6203. background-color:rgba(255, 255, 255, 0);
  6204. border:none;
  6205. border-left:0px;
  6206. border-top:0px;
  6207. border-right:0px;
  6208. border-radius:0px;
  6209. border-bottom-right-radius:0px;
  6210. border-bottom-left-radius:0px;
  6211. -moz-box-shadow:none;
  6212. -webkit-box-shadow:none;
  6213. box-shadow:none;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:14px;
  6218. line-height:30px;
  6219. }
  6220. #u37366 {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:2348px;
  6224. top:434px;
  6225. width:57px;
  6226. height:30px;
  6227. display:flex;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:14px;
  6232. line-height:30px;
  6233. }
  6234. #u37366 .text {
  6235. position:absolute;
  6236. align-self:flex-start;
  6237. padding:0px 0px 0px 0px;
  6238. box-sizing:border-box;
  6239. width:100%;
  6240. }
  6241. #u37366_text {
  6242. border-width:0px;
  6243. white-space:nowrap;
  6244. text-transform:none;
  6245. }
  6246. #u37367_div {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:181px;
  6252. height:30px;
  6253. background:inherit;
  6254. background-color:rgba(255, 255, 255, 0);
  6255. border:none;
  6256. border-left:0px;
  6257. border-top:0px;
  6258. border-right:0px;
  6259. border-radius:0px;
  6260. border-bottom-right-radius:0px;
  6261. border-bottom-left-radius:0px;
  6262. -moz-box-shadow:none;
  6263. -webkit-box-shadow:none;
  6264. box-shadow:none;
  6265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:12px;
  6269. line-height:30px;
  6270. }
  6271. #u37367 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:2348px;
  6275. top:464px;
  6276. width:181px;
  6277. height:30px;
  6278. display:flex;
  6279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6280. font-weight:400;
  6281. font-style:normal;
  6282. font-size:12px;
  6283. line-height:30px;
  6284. }
  6285. #u37367 .text {
  6286. position:absolute;
  6287. align-self:flex-start;
  6288. padding:0px 0px 0px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u37367_text {
  6293. border-width:0px;
  6294. white-space:nowrap;
  6295. text-transform:none;
  6296. }
  6297. #u37368_div {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:167px;
  6303. height:30px;
  6304. background:inherit;
  6305. background-color:rgba(255, 255, 255, 0);
  6306. border:none;
  6307. border-left:0px;
  6308. border-top:0px;
  6309. border-right:0px;
  6310. border-radius:0px;
  6311. border-bottom-right-radius:0px;
  6312. border-bottom-left-radius:0px;
  6313. -moz-box-shadow:none;
  6314. -webkit-box-shadow:none;
  6315. box-shadow:none;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:12px;
  6320. line-height:30px;
  6321. }
  6322. #u37368 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:2348px;
  6326. top:494px;
  6327. width:167px;
  6328. height:30px;
  6329. display:flex;
  6330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6331. font-weight:400;
  6332. font-style:normal;
  6333. font-size:12px;
  6334. line-height:30px;
  6335. }
  6336. #u37368 .text {
  6337. position:absolute;
  6338. align-self:flex-start;
  6339. padding:0px 0px 0px 0px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u37368_text {
  6344. border-width:0px;
  6345. white-space:nowrap;
  6346. text-transform:none;
  6347. }
  6348. #u37369_div {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:167px;
  6354. height:30px;
  6355. background:inherit;
  6356. background-color:rgba(255, 255, 255, 0);
  6357. border:none;
  6358. border-left:0px;
  6359. border-top:0px;
  6360. border-right:0px;
  6361. border-radius:0px;
  6362. border-bottom-right-radius:0px;
  6363. border-bottom-left-radius:0px;
  6364. -moz-box-shadow:none;
  6365. -webkit-box-shadow:none;
  6366. box-shadow:none;
  6367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. font-size:12px;
  6371. line-height:30px;
  6372. }
  6373. #u37369 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:2348px;
  6377. top:524px;
  6378. width:167px;
  6379. height:30px;
  6380. display:flex;
  6381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:12px;
  6385. line-height:30px;
  6386. }
  6387. #u37369 .text {
  6388. position:absolute;
  6389. align-self:flex-start;
  6390. padding:0px 0px 0px 0px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u37369_text {
  6395. border-width:0px;
  6396. white-space:nowrap;
  6397. text-transform:none;
  6398. }
  6399. #u37370_div {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:167px;
  6405. height:30px;
  6406. background:inherit;
  6407. background-color:rgba(255, 255, 255, 0);
  6408. border:none;
  6409. border-left:0px;
  6410. border-top:0px;
  6411. border-right:0px;
  6412. border-radius:0px;
  6413. border-bottom-right-radius:0px;
  6414. border-bottom-left-radius:0px;
  6415. -moz-box-shadow:none;
  6416. -webkit-box-shadow:none;
  6417. box-shadow:none;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:12px;
  6422. line-height:30px;
  6423. }
  6424. #u37370 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:2348px;
  6428. top:554px;
  6429. width:167px;
  6430. height:30px;
  6431. display:flex;
  6432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6433. font-weight:400;
  6434. font-style:normal;
  6435. font-size:12px;
  6436. line-height:30px;
  6437. }
  6438. #u37370 .text {
  6439. position:absolute;
  6440. align-self:flex-start;
  6441. padding:0px 0px 0px 0px;
  6442. box-sizing:border-box;
  6443. width:100%;
  6444. }
  6445. #u37370_text {
  6446. border-width:0px;
  6447. white-space:nowrap;
  6448. text-transform:none;
  6449. }
  6450. #u37372_img {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:0px;
  6454. top:0px;
  6455. width:433px;
  6456. height:865px;
  6457. }
  6458. #u37372 {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:2758px;
  6462. top:0px;
  6463. width:433px;
  6464. height:865px;
  6465. display:flex;
  6466. }
  6467. #u37372 .text {
  6468. position:absolute;
  6469. align-self:center;
  6470. padding:2px 2px 2px 2px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u37372_text {
  6475. border-width:0px;
  6476. word-wrap:break-word;
  6477. text-transform:none;
  6478. visibility:hidden;
  6479. }
  6480. #u37373_div {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:375px;
  6486. height:40px;
  6487. background:inherit;
  6488. background-color:rgba(255, 255, 255, 1);
  6489. border:none;
  6490. border-left:0px;
  6491. border-top:0px;
  6492. border-right:0px;
  6493. border-radius:0px;
  6494. border-bottom-right-radius:0px;
  6495. border-bottom-left-radius:0px;
  6496. -moz-box-shadow:none;
  6497. -webkit-box-shadow:none;
  6498. box-shadow:none;
  6499. }
  6500. #u37373 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:2787px;
  6504. top:67px;
  6505. width:375px;
  6506. height:40px;
  6507. display:flex;
  6508. }
  6509. #u37373 .text {
  6510. position:absolute;
  6511. align-self:center;
  6512. padding:2px 2px 2px 2px;
  6513. box-sizing:border-box;
  6514. width:100%;
  6515. }
  6516. #u37373_text {
  6517. border-width:0px;
  6518. word-wrap:break-word;
  6519. text-transform:none;
  6520. visibility:hidden;
  6521. }
  6522. #u37374 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:0px;
  6528. height:0px;
  6529. }
  6530. #u37375_div {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:88px;
  6536. height:32px;
  6537. background:inherit;
  6538. background-color:rgba(255, 255, 255, 1);
  6539. box-sizing:border-box;
  6540. border-width:1px;
  6541. border-style:solid;
  6542. border-color:rgba(242, 242, 242, 1);
  6543. border-radius:33px;
  6544. -moz-box-shadow:none;
  6545. -webkit-box-shadow:none;
  6546. box-shadow:none;
  6547. }
  6548. #u37375 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:3067px;
  6552. top:71px;
  6553. width:88px;
  6554. height:32px;
  6555. display:flex;
  6556. }
  6557. #u37375 .text {
  6558. position:absolute;
  6559. align-self:center;
  6560. padding:2px 2px 2px 2px;
  6561. box-sizing:border-box;
  6562. width:100%;
  6563. }
  6564. #u37375_text {
  6565. border-width:0px;
  6566. word-wrap:break-word;
  6567. text-transform:none;
  6568. visibility:hidden;
  6569. }
  6570. #u37376 {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:0px;
  6576. height:0px;
  6577. }
  6578. #u37377_img {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:18px;
  6584. height:18px;
  6585. }
  6586. #u37377 {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:3130px;
  6590. top:78px;
  6591. width:18px;
  6592. height:18px;
  6593. display:flex;
  6594. }
  6595. #u37377 .text {
  6596. position:absolute;
  6597. align-self:center;
  6598. padding:2px 2px 2px 2px;
  6599. box-sizing:border-box;
  6600. width:100%;
  6601. }
  6602. #u37377_text {
  6603. border-width:0px;
  6604. word-wrap:break-word;
  6605. text-transform:none;
  6606. visibility:hidden;
  6607. }
  6608. #u37378_img {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:6px;
  6614. height:6px;
  6615. }
  6616. #u37378 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:3136px;
  6620. top:84px;
  6621. width:6px;
  6622. height:6px;
  6623. display:flex;
  6624. }
  6625. #u37378 .text {
  6626. position:absolute;
  6627. align-self:center;
  6628. padding:2px 2px 2px 2px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u37378_text {
  6633. border-width:0px;
  6634. word-wrap:break-word;
  6635. text-transform:none;
  6636. visibility:hidden;
  6637. }
  6638. #u37379 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:0px;
  6644. height:0px;
  6645. }
  6646. #u37380_img {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:5px;
  6652. height:5px;
  6653. }
  6654. #u37380 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:3081px;
  6658. top:85px;
  6659. width:5px;
  6660. height:5px;
  6661. display:flex;
  6662. }
  6663. #u37380 .text {
  6664. position:absolute;
  6665. align-self:center;
  6666. padding:2px 2px 2px 2px;
  6667. box-sizing:border-box;
  6668. width:100%;
  6669. }
  6670. #u37380_text {
  6671. border-width:0px;
  6672. word-wrap:break-word;
  6673. text-transform:none;
  6674. visibility:hidden;
  6675. }
  6676. #u37381_img {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:5px;
  6682. height:5px;
  6683. }
  6684. #u37381 {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:3097px;
  6688. top:85px;
  6689. width:5px;
  6690. height:5px;
  6691. display:flex;
  6692. }
  6693. #u37381 .text {
  6694. position:absolute;
  6695. align-self:center;
  6696. padding:2px 2px 2px 2px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u37381_text {
  6701. border-width:0px;
  6702. word-wrap:break-word;
  6703. text-transform:none;
  6704. visibility:hidden;
  6705. }
  6706. #u37382_img {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:7px;
  6712. height:7px;
  6713. }
  6714. #u37382 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:3088px;
  6718. top:84px;
  6719. width:7px;
  6720. height:7px;
  6721. display:flex;
  6722. }
  6723. #u37382 .text {
  6724. position:absolute;
  6725. align-self:center;
  6726. padding:2px 2px 2px 2px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u37382_text {
  6731. border-width:0px;
  6732. word-wrap:break-word;
  6733. text-transform:none;
  6734. visibility:hidden;
  6735. }
  6736. #u37383_img {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:0px;
  6740. top:0px;
  6741. width:19px;
  6742. height:2px;
  6743. }
  6744. #u37383 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:3105px;
  6748. top:87px;
  6749. width:18px;
  6750. height:1px;
  6751. display:flex;
  6752. -webkit-transform:rotate(90deg);
  6753. -moz-transform:rotate(90deg);
  6754. -ms-transform:rotate(90deg);
  6755. transform:rotate(90deg);
  6756. }
  6757. #u37383 .text {
  6758. position:absolute;
  6759. align-self:center;
  6760. padding:2px 2px 2px 2px;
  6761. box-sizing:border-box;
  6762. width:100%;
  6763. }
  6764. #u37383_text {
  6765. border-width:0px;
  6766. word-wrap:break-word;
  6767. text-transform:none;
  6768. visibility:hidden;
  6769. }
  6770. #u37384_img {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:375px;
  6776. height:44px;
  6777. }
  6778. #u37384 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:2787px;
  6782. top:24px;
  6783. width:375px;
  6784. height:44px;
  6785. display:flex;
  6786. }
  6787. #u37384 .text {
  6788. position:absolute;
  6789. align-self:center;
  6790. padding:2px 2px 2px 2px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u37384_text {
  6795. border-width:0px;
  6796. word-wrap:break-word;
  6797. text-transform:none;
  6798. visibility:hidden;
  6799. }
  6800. #u37385_div {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:375px;
  6806. height:50px;
  6807. background:inherit;
  6808. background-color:rgba(255, 255, 255, 1);
  6809. box-sizing:border-box;
  6810. border-width:1px;
  6811. border-style:solid;
  6812. border-color:rgba(242, 242, 242, 1);
  6813. border-radius:26px;
  6814. border-top-left-radius:0px;
  6815. border-top-right-radius:0px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. }
  6820. #u37385 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:2787px;
  6824. top:788px;
  6825. width:375px;
  6826. height:50px;
  6827. display:flex;
  6828. }
  6829. #u37385 .text {
  6830. position:absolute;
  6831. align-self:center;
  6832. padding:2px 2px 2px 2px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u37385_text {
  6837. border-width:0px;
  6838. word-wrap:break-word;
  6839. text-transform:none;
  6840. visibility:hidden;
  6841. }
  6842. #u37386 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:0px;
  6848. height:0px;
  6849. }
  6850. #u37387_img {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:0px;
  6854. top:0px;
  6855. width:24px;
  6856. height:24px;
  6857. }
  6858. #u37387 {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:2827px;
  6862. top:792px;
  6863. width:24px;
  6864. height:24px;
  6865. display:flex;
  6866. font-size:8px;
  6867. }
  6868. #u37387 .text {
  6869. position:absolute;
  6870. align-self:center;
  6871. padding:2px 2px 2px 2px;
  6872. box-sizing:border-box;
  6873. width:100%;
  6874. }
  6875. #u37387_text {
  6876. border-width:0px;
  6877. word-wrap:break-word;
  6878. text-transform:none;
  6879. }
  6880. #u37388_div {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:25px;
  6886. height:17px;
  6887. background:inherit;
  6888. background-color:rgba(255, 255, 255, 0);
  6889. border:none;
  6890. border-radius:0px;
  6891. -moz-box-shadow:none;
  6892. -webkit-box-shadow:none;
  6893. box-shadow:none;
  6894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. font-size:12px;
  6898. }
  6899. #u37388 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:2827px;
  6903. top:817px;
  6904. width:25px;
  6905. height:17px;
  6906. display:flex;
  6907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6908. font-weight:400;
  6909. font-style:normal;
  6910. font-size:12px;
  6911. }
  6912. #u37388 .text {
  6913. position:absolute;
  6914. align-self:flex-start;
  6915. padding:0px 0px 0px 0px;
  6916. box-sizing:border-box;
  6917. width:100%;
  6918. }
  6919. #u37388_text {
  6920. border-width:0px;
  6921. white-space:nowrap;
  6922. text-transform:none;
  6923. }
  6924. #u37389 {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:0px;
  6930. height:0px;
  6931. }
  6932. #u37390_img {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:24px;
  6938. height:24px;
  6939. }
  6940. #u37390 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:3097px;
  6944. top:794px;
  6945. width:24px;
  6946. height:24px;
  6947. display:flex;
  6948. font-size:8px;
  6949. }
  6950. #u37390 .text {
  6951. position:absolute;
  6952. align-self:center;
  6953. padding:2px 2px 2px 2px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u37390_text {
  6958. border-width:0px;
  6959. word-wrap:break-word;
  6960. text-transform:none;
  6961. }
  6962. #u37391_div {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:25px;
  6968. height:17px;
  6969. background:inherit;
  6970. background-color:rgba(255, 255, 255, 0);
  6971. border:none;
  6972. border-radius:0px;
  6973. -moz-box-shadow:none;
  6974. -webkit-box-shadow:none;
  6975. box-shadow:none;
  6976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6977. font-weight:400;
  6978. font-style:normal;
  6979. font-size:12px;
  6980. }
  6981. #u37391 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:3097px;
  6985. top:819px;
  6986. width:25px;
  6987. height:17px;
  6988. display:flex;
  6989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. font-size:12px;
  6993. }
  6994. #u37391 .text {
  6995. position:absolute;
  6996. align-self:flex-start;
  6997. padding:0px 0px 0px 0px;
  6998. box-sizing:border-box;
  6999. width:100%;
  7000. }
  7001. #u37391_text {
  7002. border-width:0px;
  7003. white-space:nowrap;
  7004. text-transform:none;
  7005. }
  7006. #u37392_div {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:375px;
  7012. height:681px;
  7013. background:inherit;
  7014. background-color:rgba(242, 242, 242, 0.462745098039216);
  7015. border:none;
  7016. border-radius:0px;
  7017. -moz-box-shadow:none;
  7018. -webkit-box-shadow:none;
  7019. box-shadow:none;
  7020. }
  7021. #u37392 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:2787px;
  7025. top:107px;
  7026. width:375px;
  7027. height:681px;
  7028. display:flex;
  7029. }
  7030. #u37392 .text {
  7031. position:absolute;
  7032. align-self:center;
  7033. padding:2px 2px 2px 2px;
  7034. box-sizing:border-box;
  7035. width:100%;
  7036. }
  7037. #u37392_text {
  7038. border-width:0px;
  7039. word-wrap:break-word;
  7040. text-transform:none;
  7041. visibility:hidden;
  7042. }
  7043. #u37393 {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:0px;
  7047. top:0px;
  7048. width:0px;
  7049. height:0px;
  7050. }
  7051. #u37394_img {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:24px;
  7057. height:24px;
  7058. }
  7059. #u37394 {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:3009px;
  7063. top:792px;
  7064. width:24px;
  7065. height:24px;
  7066. display:flex;
  7067. font-size:8px;
  7068. }
  7069. #u37394 .text {
  7070. position:absolute;
  7071. align-self:center;
  7072. padding:2px 2px 2px 2px;
  7073. box-sizing:border-box;
  7074. width:100%;
  7075. }
  7076. #u37394_text {
  7077. border-width:0px;
  7078. word-wrap:break-word;
  7079. text-transform:none;
  7080. }
  7081. #u37395_div {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:37px;
  7087. height:17px;
  7088. background:inherit;
  7089. background-color:rgba(255, 255, 255, 0);
  7090. border:none;
  7091. border-radius:0px;
  7092. -moz-box-shadow:none;
  7093. -webkit-box-shadow:none;
  7094. box-shadow:none;
  7095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7096. font-weight:400;
  7097. font-style:normal;
  7098. font-size:12px;
  7099. }
  7100. #u37395 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:3003px;
  7104. top:817px;
  7105. width:37px;
  7106. height:17px;
  7107. display:flex;
  7108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:12px;
  7112. }
  7113. #u37395 .text {
  7114. position:absolute;
  7115. align-self:flex-start;
  7116. padding:0px 0px 0px 0px;
  7117. box-sizing:border-box;
  7118. width:100%;
  7119. }
  7120. #u37395_text {
  7121. border-width:0px;
  7122. white-space:nowrap;
  7123. text-transform:none;
  7124. }
  7125. #u37396 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:0px;
  7131. height:0px;
  7132. }
  7133. #u37397_img {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:0px;
  7137. top:0px;
  7138. width:24px;
  7139. height:24px;
  7140. }
  7141. #u37397 {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:2915px;
  7145. top:792px;
  7146. width:24px;
  7147. height:24px;
  7148. display:flex;
  7149. font-size:8px;
  7150. }
  7151. #u37397 .text {
  7152. position:absolute;
  7153. align-self:center;
  7154. padding:2px 2px 2px 2px;
  7155. box-sizing:border-box;
  7156. width:100%;
  7157. }
  7158. #u37397_text {
  7159. border-width:0px;
  7160. word-wrap:break-word;
  7161. text-transform:none;
  7162. }
  7163. #u37398_div {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:0px;
  7167. top:0px;
  7168. width:37px;
  7169. height:17px;
  7170. background:inherit;
  7171. background-color:rgba(255, 255, 255, 0);
  7172. border:none;
  7173. border-radius:0px;
  7174. -moz-box-shadow:none;
  7175. -webkit-box-shadow:none;
  7176. box-shadow:none;
  7177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7178. font-weight:400;
  7179. font-style:normal;
  7180. font-size:12px;
  7181. }
  7182. #u37398 {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:2909px;
  7186. top:817px;
  7187. width:37px;
  7188. height:17px;
  7189. display:flex;
  7190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7191. font-weight:400;
  7192. font-style:normal;
  7193. font-size:12px;
  7194. }
  7195. #u37398 .text {
  7196. position:absolute;
  7197. align-self:flex-start;
  7198. padding:0px 0px 0px 0px;
  7199. box-sizing:border-box;
  7200. width:100%;
  7201. }
  7202. #u37398_text {
  7203. border-width:0px;
  7204. white-space:nowrap;
  7205. text-transform:none;
  7206. }
  7207. #u37399_div {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:375px;
  7213. height:732px;
  7214. background:inherit;
  7215. background-color:rgba(242, 242, 242, 0.996078431372549);
  7216. border:none;
  7217. border-top:0px;
  7218. border-radius:28px;
  7219. border-top-left-radius:0px;
  7220. border-top-right-radius:0px;
  7221. -moz-box-shadow:none;
  7222. -webkit-box-shadow:none;
  7223. box-shadow:none;
  7224. }
  7225. #u37399 {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:2787px;
  7229. top:107px;
  7230. width:375px;
  7231. height:732px;
  7232. display:flex;
  7233. }
  7234. #u37399 .text {
  7235. position:absolute;
  7236. align-self:center;
  7237. padding:2px 2px 2px 2px;
  7238. box-sizing:border-box;
  7239. width:100%;
  7240. }
  7241. #u37399_text {
  7242. border-width:0px;
  7243. word-wrap:break-word;
  7244. text-transform:none;
  7245. visibility:hidden;
  7246. }
  7247. #u37400_div {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:375px;
  7253. height:125px;
  7254. background:inherit;
  7255. background-color:rgba(255, 255, 255, 1);
  7256. border:none;
  7257. border-left:0px;
  7258. border-top:0px;
  7259. border-right:0px;
  7260. border-radius:0px;
  7261. border-bottom-right-radius:0px;
  7262. border-bottom-left-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. }
  7267. #u37400 {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:2787px;
  7271. top:108px;
  7272. width:375px;
  7273. height:125px;
  7274. display:flex;
  7275. }
  7276. #u37400 .text {
  7277. position:absolute;
  7278. align-self:center;
  7279. padding:2px 2px 2px 2px;
  7280. box-sizing:border-box;
  7281. width:100%;
  7282. }
  7283. #u37400_text {
  7284. border-width:0px;
  7285. word-wrap:break-word;
  7286. text-transform:none;
  7287. visibility:hidden;
  7288. }
  7289. #u37401_div {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:124px;
  7295. height:30px;
  7296. background:inherit;
  7297. background-color:rgba(255, 255, 255, 0);
  7298. border:none;
  7299. border-left:0px;
  7300. border-top:0px;
  7301. border-right:0px;
  7302. border-radius:0px;
  7303. border-bottom-right-radius:0px;
  7304. border-bottom-left-radius:0px;
  7305. -moz-box-shadow:none;
  7306. -webkit-box-shadow:none;
  7307. box-shadow:none;
  7308. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7309. font-weight:500;
  7310. font-style:normal;
  7311. font-size:14px;
  7312. line-height:30px;
  7313. }
  7314. #u37401 {
  7315. border-width:0px;
  7316. position:absolute;
  7317. left:2800px;
  7318. top:118px;
  7319. width:124px;
  7320. height:30px;
  7321. display:flex;
  7322. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7323. font-weight:500;
  7324. font-style:normal;
  7325. font-size:14px;
  7326. line-height:30px;
  7327. }
  7328. #u37401 .text {
  7329. position:absolute;
  7330. align-self:flex-start;
  7331. padding:0px 0px 0px 0px;
  7332. box-sizing:border-box;
  7333. width:100%;
  7334. }
  7335. #u37401_text {
  7336. border-width:0px;
  7337. white-space:nowrap;
  7338. text-transform:none;
  7339. }
  7340. #u37402_div {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:0px;
  7344. top:0px;
  7345. width:167px;
  7346. height:75px;
  7347. background:inherit;
  7348. background-color:rgba(255, 255, 255, 0);
  7349. border:none;
  7350. border-left:0px;
  7351. border-top:0px;
  7352. border-right:0px;
  7353. border-radius:0px;
  7354. border-bottom-right-radius:0px;
  7355. border-bottom-left-radius:0px;
  7356. -moz-box-shadow:none;
  7357. -webkit-box-shadow:none;
  7358. box-shadow:none;
  7359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7360. font-weight:400;
  7361. font-style:normal;
  7362. font-size:12px;
  7363. line-height:25px;
  7364. }
  7365. #u37402 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:2800px;
  7369. top:148px;
  7370. width:167px;
  7371. height:75px;
  7372. display:flex;
  7373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7374. font-weight:400;
  7375. font-style:normal;
  7376. font-size:12px;
  7377. line-height:25px;
  7378. }
  7379. #u37402 .text {
  7380. position:absolute;
  7381. align-self:flex-start;
  7382. padding:0px 0px 0px 0px;
  7383. box-sizing:border-box;
  7384. width:100%;
  7385. }
  7386. #u37402_text {
  7387. border-width:0px;
  7388. white-space:nowrap;
  7389. text-transform:none;
  7390. }
  7391. #u37403_div {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:375px;
  7397. height:41px;
  7398. background:inherit;
  7399. background-color:rgba(255, 255, 255, 1);
  7400. box-sizing:border-box;
  7401. border-width:1px;
  7402. border-style:solid;
  7403. border-color:rgba(215, 215, 215, 1);
  7404. border-left:0px;
  7405. border-top:0px;
  7406. border-right:0px;
  7407. border-radius:0px;
  7408. border-bottom-right-radius:0px;
  7409. border-bottom-left-radius:0px;
  7410. -moz-box-shadow:none;
  7411. -webkit-box-shadow:none;
  7412. box-shadow:none;
  7413. }
  7414. #u37403 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:2787px;
  7418. top:67px;
  7419. width:375px;
  7420. height:41px;
  7421. display:flex;
  7422. }
  7423. #u37403 .text {
  7424. position:absolute;
  7425. align-self:center;
  7426. padding:2px 2px 2px 2px;
  7427. box-sizing:border-box;
  7428. width:100%;
  7429. }
  7430. #u37403_text {
  7431. border-width:0px;
  7432. word-wrap:break-word;
  7433. text-transform:none;
  7434. visibility:hidden;
  7435. }
  7436. #u37404 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:0px;
  7442. height:0px;
  7443. }
  7444. #u37405_div {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:0px;
  7448. top:0px;
  7449. width:88px;
  7450. height:32px;
  7451. background:inherit;
  7452. background-color:rgba(255, 255, 255, 1);
  7453. box-sizing:border-box;
  7454. border-width:1px;
  7455. border-style:solid;
  7456. border-color:rgba(242, 242, 242, 1);
  7457. border-radius:33px;
  7458. -moz-box-shadow:none;
  7459. -webkit-box-shadow:none;
  7460. box-shadow:none;
  7461. }
  7462. #u37405 {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:3067px;
  7466. top:71px;
  7467. width:88px;
  7468. height:32px;
  7469. display:flex;
  7470. }
  7471. #u37405 .text {
  7472. position:absolute;
  7473. align-self:center;
  7474. padding:2px 2px 2px 2px;
  7475. box-sizing:border-box;
  7476. width:100%;
  7477. }
  7478. #u37405_text {
  7479. border-width:0px;
  7480. word-wrap:break-word;
  7481. text-transform:none;
  7482. visibility:hidden;
  7483. }
  7484. #u37406 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:0px;
  7490. height:0px;
  7491. }
  7492. #u37407_img {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:18px;
  7498. height:18px;
  7499. }
  7500. #u37407 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:3130px;
  7504. top:78px;
  7505. width:18px;
  7506. height:18px;
  7507. display:flex;
  7508. }
  7509. #u37407 .text {
  7510. position:absolute;
  7511. align-self:center;
  7512. padding:2px 2px 2px 2px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u37407_text {
  7517. border-width:0px;
  7518. word-wrap:break-word;
  7519. text-transform:none;
  7520. visibility:hidden;
  7521. }
  7522. #u37408_img {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:0px;
  7526. top:0px;
  7527. width:6px;
  7528. height:6px;
  7529. }
  7530. #u37408 {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:3136px;
  7534. top:84px;
  7535. width:6px;
  7536. height:6px;
  7537. display:flex;
  7538. }
  7539. #u37408 .text {
  7540. position:absolute;
  7541. align-self:center;
  7542. padding:2px 2px 2px 2px;
  7543. box-sizing:border-box;
  7544. width:100%;
  7545. }
  7546. #u37408_text {
  7547. border-width:0px;
  7548. word-wrap:break-word;
  7549. text-transform:none;
  7550. visibility:hidden;
  7551. }
  7552. #u37409 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:0px;
  7556. top:0px;
  7557. width:0px;
  7558. height:0px;
  7559. }
  7560. #u37410_img {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:5px;
  7566. height:5px;
  7567. }
  7568. #u37410 {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:3081px;
  7572. top:85px;
  7573. width:5px;
  7574. height:5px;
  7575. display:flex;
  7576. }
  7577. #u37410 .text {
  7578. position:absolute;
  7579. align-self:center;
  7580. padding:2px 2px 2px 2px;
  7581. box-sizing:border-box;
  7582. width:100%;
  7583. }
  7584. #u37410_text {
  7585. border-width:0px;
  7586. word-wrap:break-word;
  7587. text-transform:none;
  7588. visibility:hidden;
  7589. }
  7590. #u37411_img {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:0px;
  7594. top:0px;
  7595. width:5px;
  7596. height:5px;
  7597. }
  7598. #u37411 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:3097px;
  7602. top:85px;
  7603. width:5px;
  7604. height:5px;
  7605. display:flex;
  7606. }
  7607. #u37411 .text {
  7608. position:absolute;
  7609. align-self:center;
  7610. padding:2px 2px 2px 2px;
  7611. box-sizing:border-box;
  7612. width:100%;
  7613. }
  7614. #u37411_text {
  7615. border-width:0px;
  7616. word-wrap:break-word;
  7617. text-transform:none;
  7618. visibility:hidden;
  7619. }
  7620. #u37412_img {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:0px;
  7624. top:0px;
  7625. width:7px;
  7626. height:7px;
  7627. }
  7628. #u37412 {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:3088px;
  7632. top:84px;
  7633. width:7px;
  7634. height:7px;
  7635. display:flex;
  7636. }
  7637. #u37412 .text {
  7638. position:absolute;
  7639. align-self:center;
  7640. padding:2px 2px 2px 2px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u37412_text {
  7645. border-width:0px;
  7646. word-wrap:break-word;
  7647. text-transform:none;
  7648. visibility:hidden;
  7649. }
  7650. #u37413_img {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:19px;
  7656. height:2px;
  7657. }
  7658. #u37413 {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:3105px;
  7662. top:87px;
  7663. width:18px;
  7664. height:1px;
  7665. display:flex;
  7666. -webkit-transform:rotate(90deg);
  7667. -moz-transform:rotate(90deg);
  7668. -ms-transform:rotate(90deg);
  7669. transform:rotate(90deg);
  7670. }
  7671. #u37413 .text {
  7672. position:absolute;
  7673. align-self:center;
  7674. padding:2px 2px 2px 2px;
  7675. box-sizing:border-box;
  7676. width:100%;
  7677. }
  7678. #u37413_text {
  7679. border-width:0px;
  7680. word-wrap:break-word;
  7681. text-transform:none;
  7682. visibility:hidden;
  7683. }
  7684. #u37414_div {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:12px;
  7690. height:12px;
  7691. background:inherit;
  7692. background-color:rgba(255, 255, 255, 0);
  7693. box-sizing:border-box;
  7694. border-width:2px;
  7695. border-style:solid;
  7696. border-color:rgba(51, 51, 51, 1);
  7697. border-right:0px;
  7698. border-bottom:0px;
  7699. border-radius:0px;
  7700. border-top-right-radius:0px;
  7701. border-bottom-left-radius:0px;
  7702. -moz-box-shadow:none;
  7703. -webkit-box-shadow:none;
  7704. box-shadow:none;
  7705. }
  7706. #u37414 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:2802px;
  7710. top:81px;
  7711. width:12px;
  7712. height:12px;
  7713. display:flex;
  7714. -webkit-transform:rotate(315deg);
  7715. -moz-transform:rotate(315deg);
  7716. -ms-transform:rotate(315deg);
  7717. transform:rotate(315deg);
  7718. }
  7719. #u37414 .text {
  7720. position:absolute;
  7721. align-self:center;
  7722. padding:2px 2px 2px 2px;
  7723. box-sizing:border-box;
  7724. width:100%;
  7725. }
  7726. #u37414_text {
  7727. border-width:0px;
  7728. word-wrap:break-word;
  7729. text-transform:none;
  7730. visibility:hidden;
  7731. }
  7732. #u37415_div {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:0px;
  7736. top:0px;
  7737. width:73px;
  7738. height:25px;
  7739. background:inherit;
  7740. background-color:rgba(255, 255, 255, 0);
  7741. border:none;
  7742. border-radius:0px;
  7743. -moz-box-shadow:none;
  7744. -webkit-box-shadow:none;
  7745. box-shadow:none;
  7746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7747. font-weight:400;
  7748. font-style:normal;
  7749. font-size:18px;
  7750. }
  7751. #u37415 {
  7752. border-width:0px;
  7753. position:absolute;
  7754. left:2822px;
  7755. top:75px;
  7756. width:73px;
  7757. height:25px;
  7758. display:flex;
  7759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7760. font-weight:400;
  7761. font-style:normal;
  7762. font-size:18px;
  7763. }
  7764. #u37415 .text {
  7765. position:absolute;
  7766. align-self:flex-start;
  7767. padding:0px 0px 0px 0px;
  7768. box-sizing:border-box;
  7769. width:100%;
  7770. }
  7771. #u37415_text {
  7772. border-width:0px;
  7773. white-space:nowrap;
  7774. text-transform:none;
  7775. }
  7776. #u37416_div {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:43px;
  7782. height:20px;
  7783. background:inherit;
  7784. background-color:rgba(255, 255, 255, 0);
  7785. border:none;
  7786. border-radius:0px;
  7787. -moz-box-shadow:none;
  7788. -webkit-box-shadow:none;
  7789. box-shadow:none;
  7790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7791. font-weight:400;
  7792. font-style:normal;
  7793. color:#0089FE;
  7794. }
  7795. #u37416 {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:3105px;
  7799. top:123px;
  7800. width:43px;
  7801. height:20px;
  7802. display:flex;
  7803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7804. font-weight:400;
  7805. font-style:normal;
  7806. color:#0089FE;
  7807. }
  7808. #u37416 .text {
  7809. position:absolute;
  7810. align-self:flex-start;
  7811. padding:0px 0px 0px 0px;
  7812. box-sizing:border-box;
  7813. width:100%;
  7814. }
  7815. #u37416_text {
  7816. border-width:0px;
  7817. white-space:nowrap;
  7818. text-transform:none;
  7819. }
  7820. #u37417 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:0px;
  7824. top:0px;
  7825. width:0px;
  7826. height:0px;
  7827. }
  7828. #u37418_div {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:0px;
  7832. top:0px;
  7833. width:375px;
  7834. height:110px;
  7835. background:inherit;
  7836. background-color:rgba(255, 255, 255, 1);
  7837. border:none;
  7838. border-left:0px;
  7839. border-top:0px;
  7840. border-right:0px;
  7841. border-radius:0px;
  7842. border-bottom-right-radius:0px;
  7843. border-bottom-left-radius:0px;
  7844. -moz-box-shadow:none;
  7845. -webkit-box-shadow:none;
  7846. box-shadow:none;
  7847. }
  7848. #u37418 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:2787px;
  7852. top:424px;
  7853. width:375px;
  7854. height:110px;
  7855. display:flex;
  7856. }
  7857. #u37418 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 2px 2px 2px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u37418_text {
  7865. border-width:0px;
  7866. word-wrap:break-word;
  7867. text-transform:none;
  7868. visibility:hidden;
  7869. }
  7870. #u37419_div {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:167px;
  7876. height:30px;
  7877. background:inherit;
  7878. background-color:rgba(255, 255, 255, 0);
  7879. border:none;
  7880. border-left:0px;
  7881. border-top:0px;
  7882. border-right:0px;
  7883. border-radius:0px;
  7884. border-bottom-right-radius:0px;
  7885. border-bottom-left-radius:0px;
  7886. -moz-box-shadow:none;
  7887. -webkit-box-shadow:none;
  7888. box-shadow:none;
  7889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7890. font-weight:400;
  7891. font-style:normal;
  7892. font-size:12px;
  7893. line-height:30px;
  7894. }
  7895. #u37419 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:2800px;
  7899. top:434px;
  7900. width:167px;
  7901. height:30px;
  7902. display:flex;
  7903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7904. font-weight:400;
  7905. font-style:normal;
  7906. font-size:12px;
  7907. line-height:30px;
  7908. }
  7909. #u37419 .text {
  7910. position:absolute;
  7911. align-self:flex-start;
  7912. padding:0px 0px 0px 0px;
  7913. box-sizing:border-box;
  7914. width:100%;
  7915. }
  7916. #u37419_text {
  7917. border-width:0px;
  7918. white-space:nowrap;
  7919. text-transform:none;
  7920. }
  7921. #u37420_div {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:186px;
  7927. height:30px;
  7928. background:inherit;
  7929. background-color:rgba(255, 255, 255, 0);
  7930. border:none;
  7931. border-left:0px;
  7932. border-top:0px;
  7933. border-right:0px;
  7934. border-radius:0px;
  7935. border-bottom-right-radius:0px;
  7936. border-bottom-left-radius:0px;
  7937. -moz-box-shadow:none;
  7938. -webkit-box-shadow:none;
  7939. box-shadow:none;
  7940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7941. font-weight:400;
  7942. font-style:normal;
  7943. font-size:12px;
  7944. line-height:30px;
  7945. }
  7946. #u37420 {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:2800px;
  7950. top:464px;
  7951. width:186px;
  7952. height:30px;
  7953. display:flex;
  7954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7955. font-weight:400;
  7956. font-style:normal;
  7957. font-size:12px;
  7958. line-height:30px;
  7959. }
  7960. #u37420 .text {
  7961. position:absolute;
  7962. align-self:flex-start;
  7963. padding:0px 0px 0px 0px;
  7964. box-sizing:border-box;
  7965. width:100%;
  7966. }
  7967. #u37420_text {
  7968. border-width:0px;
  7969. white-space:nowrap;
  7970. text-transform:none;
  7971. }
  7972. #u37421_div {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:0px;
  7976. top:0px;
  7977. width:133px;
  7978. height:30px;
  7979. background:inherit;
  7980. background-color:rgba(255, 255, 255, 0);
  7981. border:none;
  7982. border-left:0px;
  7983. border-top:0px;
  7984. border-right:0px;
  7985. border-radius:0px;
  7986. border-bottom-right-radius:0px;
  7987. border-bottom-left-radius:0px;
  7988. -moz-box-shadow:none;
  7989. -webkit-box-shadow:none;
  7990. box-shadow:none;
  7991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7992. font-weight:400;
  7993. font-style:normal;
  7994. font-size:12px;
  7995. line-height:30px;
  7996. }
  7997. #u37421 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:2800px;
  8001. top:494px;
  8002. width:133px;
  8003. height:30px;
  8004. display:flex;
  8005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8006. font-weight:400;
  8007. font-style:normal;
  8008. font-size:12px;
  8009. line-height:30px;
  8010. }
  8011. #u37421 .text {
  8012. position:absolute;
  8013. align-self:flex-start;
  8014. padding:0px 0px 0px 0px;
  8015. box-sizing:border-box;
  8016. width:100%;
  8017. }
  8018. #u37421_text {
  8019. border-width:0px;
  8020. white-space:nowrap;
  8021. text-transform:none;
  8022. }
  8023. #u37422 {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:0px;
  8027. top:0px;
  8028. width:0px;
  8029. height:0px;
  8030. }
  8031. #u37423_div {
  8032. border-width:0px;
  8033. position:absolute;
  8034. left:0px;
  8035. top:0px;
  8036. width:375px;
  8037. height:60px;
  8038. background:inherit;
  8039. background-color:rgba(255, 255, 255, 1);
  8040. box-sizing:border-box;
  8041. border-width:1px;
  8042. border-style:solid;
  8043. border-color:rgba(242, 242, 242, 1);
  8044. border-radius:20px;
  8045. border-top-left-radius:0px;
  8046. border-top-right-radius:0px;
  8047. -moz-box-shadow:none;
  8048. -webkit-box-shadow:none;
  8049. box-shadow:none;
  8050. }
  8051. #u37423 {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:482px;
  8055. top:779px;
  8056. width:375px;
  8057. height:60px;
  8058. display:flex;
  8059. }
  8060. #u37423 .text {
  8061. position:absolute;
  8062. align-self:center;
  8063. padding:2px 2px 2px 2px;
  8064. box-sizing:border-box;
  8065. width:100%;
  8066. }
  8067. #u37423_text {
  8068. border-width:0px;
  8069. word-wrap:break-word;
  8070. text-transform:none;
  8071. visibility:hidden;
  8072. }
  8073. #u37424_div {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:0px;
  8077. top:0px;
  8078. width:342px;
  8079. height:40px;
  8080. background:inherit;
  8081. background-color:rgba(255, 255, 255, 1);
  8082. box-sizing:border-box;
  8083. border-width:1px;
  8084. border-style:solid;
  8085. border-color:rgba(121, 121, 121, 1);
  8086. border-radius:63px;
  8087. -moz-box-shadow:none;
  8088. -webkit-box-shadow:none;
  8089. box-shadow:none;
  8090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8091. font-weight:400;
  8092. font-style:normal;
  8093. font-size:14px;
  8094. color:#555555;
  8095. }
  8096. #u37424 {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:501px;
  8100. top:789px;
  8101. width:342px;
  8102. height:40px;
  8103. display:flex;
  8104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8105. font-weight:400;
  8106. font-style:normal;
  8107. font-size:14px;
  8108. color:#555555;
  8109. }
  8110. #u37424 .text {
  8111. position:absolute;
  8112. align-self:center;
  8113. padding:2px 2px 2px 2px;
  8114. box-sizing:border-box;
  8115. width:100%;
  8116. }
  8117. #u37424_text {
  8118. border-width:0px;
  8119. word-wrap:break-word;
  8120. text-transform:none;
  8121. }
  8122. #u37425 {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:0px;
  8126. top:0px;
  8127. width:0px;
  8128. height:0px;
  8129. }
  8130. #u37426_div {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:0px;
  8134. top:0px;
  8135. width:240px;
  8136. height:122px;
  8137. background:inherit;
  8138. background-color:rgba(255, 255, 255, 1);
  8139. border:none;
  8140. border-radius:4px;
  8141. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8142. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8143. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:12px;
  8148. color:#FFFFFF;
  8149. }
  8150. #u37426 {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:93px;
  8154. top:527px;
  8155. width:240px;
  8156. height:122px;
  8157. display:flex;
  8158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8159. font-weight:400;
  8160. font-style:normal;
  8161. font-size:12px;
  8162. color:#FFFFFF;
  8163. }
  8164. #u37426 .text {
  8165. position:absolute;
  8166. align-self:center;
  8167. padding:8px 15px 8px 15px;
  8168. box-sizing:border-box;
  8169. width:100%;
  8170. }
  8171. #u37426_text {
  8172. border-width:0px;
  8173. word-wrap:break-word;
  8174. text-transform:none;
  8175. visibility:hidden;
  8176. }
  8177. #u37427_div {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:0px;
  8181. top:0px;
  8182. width:183px;
  8183. height:35px;
  8184. background:inherit;
  8185. background-color:rgba(51, 153, 255, 0);
  8186. border:none;
  8187. border-radius:0px;
  8188. -moz-box-shadow:none;
  8189. -webkit-box-shadow:none;
  8190. box-shadow:none;
  8191. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. font-size:16px;
  8195. }
  8196. #u37427 {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:122px;
  8200. top:552px;
  8201. width:183px;
  8202. height:35px;
  8203. display:flex;
  8204. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  8205. font-weight:400;
  8206. font-style:normal;
  8207. font-size:16px;
  8208. }
  8209. #u37427 .text {
  8210. position:absolute;
  8211. align-self:center;
  8212. padding:8px 15px 8px 20px;
  8213. box-sizing:border-box;
  8214. width:100%;
  8215. }
  8216. #u37427_text {
  8217. border-width:0px;
  8218. white-space:nowrap;
  8219. text-transform:none;
  8220. }
  8221. #u37428_img {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:0px;
  8225. top:0px;
  8226. width:120px;
  8227. height:38px;
  8228. }
  8229. #u37428 {
  8230. border-width:0px;
  8231. position:absolute;
  8232. left:93px;
  8233. top:611px;
  8234. width:120px;
  8235. height:38px;
  8236. display:flex;
  8237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8238. font-weight:400;
  8239. font-style:normal;
  8240. font-size:12px;
  8241. }
  8242. #u37428 .text {
  8243. position:absolute;
  8244. align-self:center;
  8245. padding:8px 0px 8px 0px;
  8246. box-sizing:border-box;
  8247. width:100%;
  8248. }
  8249. #u37428_text {
  8250. border-width:0px;
  8251. word-wrap:break-word;
  8252. text-transform:none;
  8253. }
  8254. #u37429_img {
  8255. border-width:0px;
  8256. position:absolute;
  8257. left:0px;
  8258. top:0px;
  8259. width:121px;
  8260. height:38px;
  8261. }
  8262. #u37429 {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:212px;
  8266. top:611px;
  8267. width:121px;
  8268. height:38px;
  8269. display:flex;
  8270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8271. font-weight:400;
  8272. font-style:normal;
  8273. font-size:12px;
  8274. color:#1890FF;
  8275. }
  8276. #u37429 .text {
  8277. position:absolute;
  8278. align-self:center;
  8279. padding:8px 0px 8px 0px;
  8280. box-sizing:border-box;
  8281. width:100%;
  8282. }
  8283. #u37429_text {
  8284. border-width:0px;
  8285. word-wrap:break-word;
  8286. text-transform:none;
  8287. }
  8288. #u37430 {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:0px;
  8292. top:0px;
  8293. width:0px;
  8294. height:0px;
  8295. }
  8296. #u37431_div {
  8297. border-width:0px;
  8298. position:absolute;
  8299. left:0px;
  8300. top:0px;
  8301. width:240px;
  8302. height:122px;
  8303. background:inherit;
  8304. background-color:rgba(255, 255, 255, 1);
  8305. border:none;
  8306. border-radius:4px;
  8307. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8308. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8309. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8311. font-weight:400;
  8312. font-style:normal;
  8313. font-size:12px;
  8314. color:#FFFFFF;
  8315. }
  8316. #u37431 {
  8317. border-width:0px;
  8318. position:absolute;
  8319. left:550px;
  8320. top:569px;
  8321. width:240px;
  8322. height:122px;
  8323. display:flex;
  8324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8325. font-weight:400;
  8326. font-style:normal;
  8327. font-size:12px;
  8328. color:#FFFFFF;
  8329. }
  8330. #u37431 .text {
  8331. position:absolute;
  8332. align-self:center;
  8333. padding:8px 15px 8px 15px;
  8334. box-sizing:border-box;
  8335. width:100%;
  8336. }
  8337. #u37431_text {
  8338. border-width:0px;
  8339. word-wrap:break-word;
  8340. text-transform:none;
  8341. visibility:hidden;
  8342. }
  8343. #u37432_div {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:0px;
  8347. top:0px;
  8348. width:183px;
  8349. height:35px;
  8350. background:inherit;
  8351. background-color:rgba(51, 153, 255, 0);
  8352. border:none;
  8353. border-radius:0px;
  8354. -moz-box-shadow:none;
  8355. -webkit-box-shadow:none;
  8356. box-shadow:none;
  8357. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:16px;
  8361. }
  8362. #u37432 {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:579px;
  8366. top:594px;
  8367. width:183px;
  8368. height:35px;
  8369. display:flex;
  8370. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  8371. font-weight:400;
  8372. font-style:normal;
  8373. font-size:16px;
  8374. }
  8375. #u37432 .text {
  8376. position:absolute;
  8377. align-self:center;
  8378. padding:8px 15px 8px 20px;
  8379. box-sizing:border-box;
  8380. width:100%;
  8381. }
  8382. #u37432_text {
  8383. border-width:0px;
  8384. white-space:nowrap;
  8385. text-transform:none;
  8386. }
  8387. #u37433_img {
  8388. border-width:0px;
  8389. position:absolute;
  8390. left:0px;
  8391. top:0px;
  8392. width:120px;
  8393. height:38px;
  8394. }
  8395. #u37433 {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:550px;
  8399. top:653px;
  8400. width:120px;
  8401. height:38px;
  8402. display:flex;
  8403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8404. font-weight:400;
  8405. font-style:normal;
  8406. font-size:12px;
  8407. }
  8408. #u37433 .text {
  8409. position:absolute;
  8410. align-self:center;
  8411. padding:8px 0px 8px 0px;
  8412. box-sizing:border-box;
  8413. width:100%;
  8414. }
  8415. #u37433_text {
  8416. border-width:0px;
  8417. word-wrap:break-word;
  8418. text-transform:none;
  8419. }
  8420. #u37434_img {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:0px;
  8424. top:0px;
  8425. width:121px;
  8426. height:38px;
  8427. }
  8428. #u37434 {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:669px;
  8432. top:653px;
  8433. width:121px;
  8434. height:38px;
  8435. display:flex;
  8436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8437. font-weight:400;
  8438. font-style:normal;
  8439. font-size:12px;
  8440. color:#1890FF;
  8441. }
  8442. #u37434 .text {
  8443. position:absolute;
  8444. align-self:center;
  8445. padding:8px 0px 8px 0px;
  8446. box-sizing:border-box;
  8447. width:100%;
  8448. }
  8449. #u37434_text {
  8450. border-width:0px;
  8451. word-wrap:break-word;
  8452. text-transform:none;
  8453. }
  8454. #u37435 {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:0px;
  8458. top:0px;
  8459. width:0px;
  8460. height:0px;
  8461. }
  8462. #u37436_div {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:0px;
  8466. top:0px;
  8467. width:375px;
  8468. height:180px;
  8469. background:inherit;
  8470. background-color:rgba(255, 255, 255, 1);
  8471. border:none;
  8472. border-top:0px;
  8473. border-bottom:0px;
  8474. border-radius:0px;
  8475. border-top-left-radius:0px;
  8476. border-top-right-radius:0px;
  8477. border-bottom-right-radius:0px;
  8478. border-bottom-left-radius:0px;
  8479. -moz-box-shadow:none;
  8480. -webkit-box-shadow:none;
  8481. box-shadow:none;
  8482. }
  8483. #u37436 {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:482px;
  8487. top:234px;
  8488. width:375px;
  8489. height:180px;
  8490. display:flex;
  8491. }
  8492. #u37436 .text {
  8493. position:absolute;
  8494. align-self:center;
  8495. padding:2px 2px 2px 2px;
  8496. box-sizing:border-box;
  8497. width:100%;
  8498. }
  8499. #u37436_text {
  8500. border-width:0px;
  8501. word-wrap:break-word;
  8502. text-transform:none;
  8503. visibility:hidden;
  8504. }
  8505. #u37437_div {
  8506. border-width:0px;
  8507. position:absolute;
  8508. left:0px;
  8509. top:0px;
  8510. width:150px;
  8511. height:150px;
  8512. background:inherit;
  8513. background-color:rgba(255, 255, 255, 0);
  8514. border:none;
  8515. border-left:0px;
  8516. border-top:0px;
  8517. border-right:0px;
  8518. border-radius:0px;
  8519. border-bottom-right-radius:0px;
  8520. border-bottom-left-radius:0px;
  8521. -moz-box-shadow:none;
  8522. -webkit-box-shadow:none;
  8523. box-shadow:none;
  8524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8525. font-weight:400;
  8526. font-style:normal;
  8527. font-size:12px;
  8528. line-height:25px;
  8529. }
  8530. #u37437 {
  8531. border-width:0px;
  8532. position:absolute;
  8533. left:506px;
  8534. top:248px;
  8535. width:150px;
  8536. height:150px;
  8537. display:flex;
  8538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8539. font-weight:400;
  8540. font-style:normal;
  8541. font-size:12px;
  8542. line-height:25px;
  8543. }
  8544. #u37437 .text {
  8545. position:absolute;
  8546. align-self:flex-start;
  8547. padding:0px 0px 0px 0px;
  8548. box-sizing:border-box;
  8549. width:100%;
  8550. }
  8551. #u37437_text {
  8552. border-width:0px;
  8553. white-space:nowrap;
  8554. text-transform:none;
  8555. }
  8556. #u37438 {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:0px;
  8560. top:0px;
  8561. width:0px;
  8562. height:0px;
  8563. }
  8564. #u37439_div {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:0px;
  8568. top:0px;
  8569. width:375px;
  8570. height:356px;
  8571. background:inherit;
  8572. background-color:rgba(255, 255, 255, 1);
  8573. border:none;
  8574. border-left:0px;
  8575. border-right:0px;
  8576. border-radius:0px;
  8577. border-top-left-radius:0px;
  8578. border-top-right-radius:0px;
  8579. border-bottom-right-radius:0px;
  8580. border-bottom-left-radius:0px;
  8581. -moz-box-shadow:none;
  8582. -webkit-box-shadow:none;
  8583. box-shadow:none;
  8584. }
  8585. #u37439 {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:935px;
  8589. top:423px;
  8590. width:375px;
  8591. height:356px;
  8592. display:flex;
  8593. }
  8594. #u37439 .text {
  8595. position:absolute;
  8596. align-self:center;
  8597. padding:2px 2px 2px 2px;
  8598. box-sizing:border-box;
  8599. width:100%;
  8600. }
  8601. #u37439_text {
  8602. border-width:0px;
  8603. word-wrap:break-word;
  8604. text-transform:none;
  8605. visibility:hidden;
  8606. }
  8607. #u37440_div {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:0px;
  8611. top:0px;
  8612. width:57px;
  8613. height:30px;
  8614. background:inherit;
  8615. background-color:rgba(255, 255, 255, 0);
  8616. border:none;
  8617. border-left:0px;
  8618. border-top:0px;
  8619. border-right:0px;
  8620. border-radius:0px;
  8621. border-bottom-right-radius:0px;
  8622. border-bottom-left-radius:0px;
  8623. -moz-box-shadow:none;
  8624. -webkit-box-shadow:none;
  8625. box-shadow:none;
  8626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8627. font-weight:400;
  8628. font-style:normal;
  8629. font-size:14px;
  8630. line-height:30px;
  8631. }
  8632. #u37440 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:959px;
  8636. top:433px;
  8637. width:57px;
  8638. height:30px;
  8639. display:flex;
  8640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8641. font-weight:400;
  8642. font-style:normal;
  8643. font-size:14px;
  8644. line-height:30px;
  8645. }
  8646. #u37440 .text {
  8647. position:absolute;
  8648. align-self:flex-start;
  8649. padding:0px 0px 0px 0px;
  8650. box-sizing:border-box;
  8651. width:100%;
  8652. }
  8653. #u37440_text {
  8654. border-width:0px;
  8655. white-space:nowrap;
  8656. text-transform:none;
  8657. }
  8658. #u37441_div {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:0px;
  8662. top:0px;
  8663. width:181px;
  8664. height:30px;
  8665. background:inherit;
  8666. background-color:rgba(255, 255, 255, 0);
  8667. border:none;
  8668. border-left:0px;
  8669. border-top:0px;
  8670. border-right:0px;
  8671. border-radius:0px;
  8672. border-bottom-right-radius:0px;
  8673. border-bottom-left-radius:0px;
  8674. -moz-box-shadow:none;
  8675. -webkit-box-shadow:none;
  8676. box-shadow:none;
  8677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:12px;
  8681. line-height:30px;
  8682. }
  8683. #u37441 {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:959px;
  8687. top:463px;
  8688. width:181px;
  8689. height:30px;
  8690. display:flex;
  8691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8692. font-weight:400;
  8693. font-style:normal;
  8694. font-size:12px;
  8695. line-height:30px;
  8696. }
  8697. #u37441 .text {
  8698. position:absolute;
  8699. align-self:flex-start;
  8700. padding:0px 0px 0px 0px;
  8701. box-sizing:border-box;
  8702. width:100%;
  8703. }
  8704. #u37441_text {
  8705. border-width:0px;
  8706. white-space:nowrap;
  8707. text-transform:none;
  8708. }
  8709. #u37442_div {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:0px;
  8713. top:0px;
  8714. width:167px;
  8715. height:30px;
  8716. background:inherit;
  8717. background-color:rgba(255, 255, 255, 0);
  8718. border:none;
  8719. border-left:0px;
  8720. border-top:0px;
  8721. border-right:0px;
  8722. border-radius:0px;
  8723. border-bottom-right-radius:0px;
  8724. border-bottom-left-radius:0px;
  8725. -moz-box-shadow:none;
  8726. -webkit-box-shadow:none;
  8727. box-shadow:none;
  8728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8729. font-weight:400;
  8730. font-style:normal;
  8731. font-size:12px;
  8732. line-height:30px;
  8733. }
  8734. #u37442 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:959px;
  8738. top:493px;
  8739. width:167px;
  8740. height:30px;
  8741. display:flex;
  8742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8743. font-weight:400;
  8744. font-style:normal;
  8745. font-size:12px;
  8746. line-height:30px;
  8747. }
  8748. #u37442 .text {
  8749. position:absolute;
  8750. align-self:flex-start;
  8751. padding:0px 0px 0px 0px;
  8752. box-sizing:border-box;
  8753. width:100%;
  8754. }
  8755. #u37442_text {
  8756. border-width:0px;
  8757. white-space:nowrap;
  8758. text-transform:none;
  8759. }
  8760. #u37443_img {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:375px;
  8766. height:215px;
  8767. }
  8768. #u37443 {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:935px;
  8772. top:564px;
  8773. width:375px;
  8774. height:215px;
  8775. display:flex;
  8776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8777. font-weight:400;
  8778. font-style:normal;
  8779. }
  8780. #u37443 .text {
  8781. position:absolute;
  8782. align-self:center;
  8783. padding:2px 2px 2px 2px;
  8784. box-sizing:border-box;
  8785. width:100%;
  8786. }
  8787. #u37443_text {
  8788. border-width:0px;
  8789. word-wrap:break-word;
  8790. text-transform:none;
  8791. }
  8792. #u37444_div {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:0px;
  8796. top:0px;
  8797. width:167px;
  8798. height:30px;
  8799. background:inherit;
  8800. background-color:rgba(255, 255, 255, 0);
  8801. border:none;
  8802. border-left:0px;
  8803. border-top:0px;
  8804. border-right:0px;
  8805. border-radius:0px;
  8806. border-bottom-right-radius:0px;
  8807. border-bottom-left-radius:0px;
  8808. -moz-box-shadow:none;
  8809. -webkit-box-shadow:none;
  8810. box-shadow:none;
  8811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8812. font-weight:400;
  8813. font-style:normal;
  8814. font-size:12px;
  8815. line-height:30px;
  8816. }
  8817. #u37444 {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:959px;
  8821. top:523px;
  8822. width:167px;
  8823. height:30px;
  8824. display:flex;
  8825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8826. font-weight:400;
  8827. font-style:normal;
  8828. font-size:12px;
  8829. line-height:30px;
  8830. }
  8831. #u37444 .text {
  8832. position:absolute;
  8833. align-self:flex-start;
  8834. padding:0px 0px 0px 0px;
  8835. box-sizing:border-box;
  8836. width:100%;
  8837. }
  8838. #u37444_text {
  8839. border-width:0px;
  8840. white-space:nowrap;
  8841. text-transform:none;
  8842. }
  8843. #u37445_div {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:133px;
  8849. height:30px;
  8850. background:inherit;
  8851. background-color:rgba(255, 255, 255, 0);
  8852. border:none;
  8853. border-left:0px;
  8854. border-top:0px;
  8855. border-right:0px;
  8856. border-radius:0px;
  8857. border-bottom-right-radius:0px;
  8858. border-bottom-left-radius:0px;
  8859. -moz-box-shadow:none;
  8860. -webkit-box-shadow:none;
  8861. box-shadow:none;
  8862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8863. font-weight:400;
  8864. font-style:normal;
  8865. font-size:12px;
  8866. color:#0089FE;
  8867. line-height:30px;
  8868. }
  8869. #u37445 {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:1163px;
  8873. top:433px;
  8874. width:133px;
  8875. height:30px;
  8876. display:flex;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:12px;
  8881. color:#0089FE;
  8882. line-height:30px;
  8883. }
  8884. #u37445 .text {
  8885. position:absolute;
  8886. align-self:flex-start;
  8887. padding:0px 0px 0px 0px;
  8888. box-sizing:border-box;
  8889. width:100%;
  8890. }
  8891. #u37445_text {
  8892. border-width:0px;
  8893. white-space:nowrap;
  8894. text-transform:none;
  8895. }
  8896. #u37446 {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:0px;
  8900. top:0px;
  8901. width:0px;
  8902. height:0px;
  8903. }
  8904. #u37447_div {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:375px;
  8910. height:180px;
  8911. background:inherit;
  8912. background-color:rgba(255, 255, 255, 1);
  8913. border:none;
  8914. border-top:0px;
  8915. border-bottom:0px;
  8916. border-radius:0px;
  8917. border-top-left-radius:0px;
  8918. border-top-right-radius:0px;
  8919. border-bottom-right-radius:0px;
  8920. border-bottom-left-radius:0px;
  8921. -moz-box-shadow:none;
  8922. -webkit-box-shadow:none;
  8923. box-shadow:none;
  8924. }
  8925. #u37447 {
  8926. border-width:0px;
  8927. position:absolute;
  8928. left:935px;
  8929. top:234px;
  8930. width:375px;
  8931. height:180px;
  8932. display:flex;
  8933. }
  8934. #u37447 .text {
  8935. position:absolute;
  8936. align-self:center;
  8937. padding:2px 2px 2px 2px;
  8938. box-sizing:border-box;
  8939. width:100%;
  8940. }
  8941. #u37447_text {
  8942. border-width:0px;
  8943. word-wrap:break-word;
  8944. text-transform:none;
  8945. visibility:hidden;
  8946. }
  8947. #u37448_div {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:150px;
  8953. height:150px;
  8954. background:inherit;
  8955. background-color:rgba(255, 255, 255, 0);
  8956. border:none;
  8957. border-left:0px;
  8958. border-top:0px;
  8959. border-right:0px;
  8960. border-radius:0px;
  8961. border-bottom-right-radius:0px;
  8962. border-bottom-left-radius:0px;
  8963. -moz-box-shadow:none;
  8964. -webkit-box-shadow:none;
  8965. box-shadow:none;
  8966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8967. font-weight:400;
  8968. font-style:normal;
  8969. font-size:12px;
  8970. line-height:25px;
  8971. }
  8972. #u37448 {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:959px;
  8976. top:248px;
  8977. width:150px;
  8978. height:150px;
  8979. display:flex;
  8980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8981. font-weight:400;
  8982. font-style:normal;
  8983. font-size:12px;
  8984. line-height:25px;
  8985. }
  8986. #u37448 .text {
  8987. position:absolute;
  8988. align-self:flex-start;
  8989. padding:0px 0px 0px 0px;
  8990. box-sizing:border-box;
  8991. width:100%;
  8992. }
  8993. #u37448_text {
  8994. border-width:0px;
  8995. white-space:nowrap;
  8996. text-transform:none;
  8997. }
  8998. #u37449 {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:0px;
  9002. top:0px;
  9003. width:0px;
  9004. height:0px;
  9005. }
  9006. #u37450_div {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:0px;
  9010. top:0px;
  9011. width:375px;
  9012. height:60px;
  9013. background:inherit;
  9014. background-color:rgba(255, 255, 255, 1);
  9015. box-sizing:border-box;
  9016. border-width:1px;
  9017. border-style:solid;
  9018. border-color:rgba(242, 242, 242, 1);
  9019. border-radius:20px;
  9020. border-top-left-radius:0px;
  9021. border-top-right-radius:0px;
  9022. -moz-box-shadow:none;
  9023. -webkit-box-shadow:none;
  9024. box-shadow:none;
  9025. }
  9026. #u37450 {
  9027. border-width:0px;
  9028. position:absolute;
  9029. left:935px;
  9030. top:779px;
  9031. width:375px;
  9032. height:60px;
  9033. display:flex;
  9034. }
  9035. #u37450 .text {
  9036. position:absolute;
  9037. align-self:center;
  9038. padding:2px 2px 2px 2px;
  9039. box-sizing:border-box;
  9040. width:100%;
  9041. }
  9042. #u37450_text {
  9043. border-width:0px;
  9044. word-wrap:break-word;
  9045. text-transform:none;
  9046. visibility:hidden;
  9047. }
  9048. #u37451_div {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:0px;
  9052. top:0px;
  9053. width:342px;
  9054. height:40px;
  9055. background:inherit;
  9056. background-color:rgba(255, 255, 255, 1);
  9057. box-sizing:border-box;
  9058. border-width:1px;
  9059. border-style:solid;
  9060. border-color:rgba(121, 121, 121, 1);
  9061. border-radius:63px;
  9062. -moz-box-shadow:none;
  9063. -webkit-box-shadow:none;
  9064. box-shadow:none;
  9065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:14px;
  9069. color:#555555;
  9070. }
  9071. #u37451 {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:954px;
  9075. top:789px;
  9076. width:342px;
  9077. height:40px;
  9078. display:flex;
  9079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9080. font-weight:400;
  9081. font-style:normal;
  9082. font-size:14px;
  9083. color:#555555;
  9084. }
  9085. #u37451 .text {
  9086. position:absolute;
  9087. align-self:center;
  9088. padding:2px 2px 2px 2px;
  9089. box-sizing:border-box;
  9090. width:100%;
  9091. }
  9092. #u37451_text {
  9093. border-width:0px;
  9094. word-wrap:break-word;
  9095. text-transform:none;
  9096. }
  9097. #u37453_img {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:0px;
  9101. top:0px;
  9102. width:433px;
  9103. height:865px;
  9104. }
  9105. #u37453 {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:1369px;
  9109. top:0px;
  9110. width:433px;
  9111. height:865px;
  9112. display:flex;
  9113. }
  9114. #u37453 .text {
  9115. position:absolute;
  9116. align-self:center;
  9117. padding:2px 2px 2px 2px;
  9118. box-sizing:border-box;
  9119. width:100%;
  9120. }
  9121. #u37453_text {
  9122. border-width:0px;
  9123. word-wrap:break-word;
  9124. text-transform:none;
  9125. visibility:hidden;
  9126. }
  9127. #u37454_div {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:0px;
  9131. top:0px;
  9132. width:375px;
  9133. height:40px;
  9134. background:inherit;
  9135. background-color:rgba(255, 255, 255, 1);
  9136. border:none;
  9137. border-left:0px;
  9138. border-top:0px;
  9139. border-right:0px;
  9140. border-radius:0px;
  9141. border-bottom-right-radius:0px;
  9142. border-bottom-left-radius:0px;
  9143. -moz-box-shadow:none;
  9144. -webkit-box-shadow:none;
  9145. box-shadow:none;
  9146. }
  9147. #u37454 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:1398px;
  9151. top:67px;
  9152. width:375px;
  9153. height:40px;
  9154. display:flex;
  9155. }
  9156. #u37454 .text {
  9157. position:absolute;
  9158. align-self:center;
  9159. padding:2px 2px 2px 2px;
  9160. box-sizing:border-box;
  9161. width:100%;
  9162. }
  9163. #u37454_text {
  9164. border-width:0px;
  9165. word-wrap:break-word;
  9166. text-transform:none;
  9167. visibility:hidden;
  9168. }
  9169. #u37455 {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:0px;
  9173. top:0px;
  9174. width:0px;
  9175. height:0px;
  9176. }
  9177. #u37456_div {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:0px;
  9181. top:0px;
  9182. width:88px;
  9183. height:32px;
  9184. background:inherit;
  9185. background-color:rgba(255, 255, 255, 1);
  9186. box-sizing:border-box;
  9187. border-width:1px;
  9188. border-style:solid;
  9189. border-color:rgba(242, 242, 242, 1);
  9190. border-radius:33px;
  9191. -moz-box-shadow:none;
  9192. -webkit-box-shadow:none;
  9193. box-shadow:none;
  9194. }
  9195. #u37456 {
  9196. border-width:0px;
  9197. position:absolute;
  9198. left:1678px;
  9199. top:71px;
  9200. width:88px;
  9201. height:32px;
  9202. display:flex;
  9203. }
  9204. #u37456 .text {
  9205. position:absolute;
  9206. align-self:center;
  9207. padding:2px 2px 2px 2px;
  9208. box-sizing:border-box;
  9209. width:100%;
  9210. }
  9211. #u37456_text {
  9212. border-width:0px;
  9213. word-wrap:break-word;
  9214. text-transform:none;
  9215. visibility:hidden;
  9216. }
  9217. #u37457 {
  9218. border-width:0px;
  9219. position:absolute;
  9220. left:0px;
  9221. top:0px;
  9222. width:0px;
  9223. height:0px;
  9224. }
  9225. #u37458_img {
  9226. border-width:0px;
  9227. position:absolute;
  9228. left:0px;
  9229. top:0px;
  9230. width:18px;
  9231. height:18px;
  9232. }
  9233. #u37458 {
  9234. border-width:0px;
  9235. position:absolute;
  9236. left:1741px;
  9237. top:78px;
  9238. width:18px;
  9239. height:18px;
  9240. display:flex;
  9241. }
  9242. #u37458 .text {
  9243. position:absolute;
  9244. align-self:center;
  9245. padding:2px 2px 2px 2px;
  9246. box-sizing:border-box;
  9247. width:100%;
  9248. }
  9249. #u37458_text {
  9250. border-width:0px;
  9251. word-wrap:break-word;
  9252. text-transform:none;
  9253. visibility:hidden;
  9254. }
  9255. #u37459_img {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:0px;
  9259. top:0px;
  9260. width:6px;
  9261. height:6px;
  9262. }
  9263. #u37459 {
  9264. border-width:0px;
  9265. position:absolute;
  9266. left:1747px;
  9267. top:84px;
  9268. width:6px;
  9269. height:6px;
  9270. display:flex;
  9271. }
  9272. #u37459 .text {
  9273. position:absolute;
  9274. align-self:center;
  9275. padding:2px 2px 2px 2px;
  9276. box-sizing:border-box;
  9277. width:100%;
  9278. }
  9279. #u37459_text {
  9280. border-width:0px;
  9281. word-wrap:break-word;
  9282. text-transform:none;
  9283. visibility:hidden;
  9284. }
  9285. #u37460 {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:0px;
  9289. top:0px;
  9290. width:0px;
  9291. height:0px;
  9292. }
  9293. #u37461_img {
  9294. border-width:0px;
  9295. position:absolute;
  9296. left:0px;
  9297. top:0px;
  9298. width:5px;
  9299. height:5px;
  9300. }
  9301. #u37461 {
  9302. border-width:0px;
  9303. position:absolute;
  9304. left:1692px;
  9305. top:85px;
  9306. width:5px;
  9307. height:5px;
  9308. display:flex;
  9309. }
  9310. #u37461 .text {
  9311. position:absolute;
  9312. align-self:center;
  9313. padding:2px 2px 2px 2px;
  9314. box-sizing:border-box;
  9315. width:100%;
  9316. }
  9317. #u37461_text {
  9318. border-width:0px;
  9319. word-wrap:break-word;
  9320. text-transform:none;
  9321. visibility:hidden;
  9322. }
  9323. #u37462_img {
  9324. border-width:0px;
  9325. position:absolute;
  9326. left:0px;
  9327. top:0px;
  9328. width:5px;
  9329. height:5px;
  9330. }
  9331. #u37462 {
  9332. border-width:0px;
  9333. position:absolute;
  9334. left:1708px;
  9335. top:85px;
  9336. width:5px;
  9337. height:5px;
  9338. display:flex;
  9339. }
  9340. #u37462 .text {
  9341. position:absolute;
  9342. align-self:center;
  9343. padding:2px 2px 2px 2px;
  9344. box-sizing:border-box;
  9345. width:100%;
  9346. }
  9347. #u37462_text {
  9348. border-width:0px;
  9349. word-wrap:break-word;
  9350. text-transform:none;
  9351. visibility:hidden;
  9352. }
  9353. #u37463_img {
  9354. border-width:0px;
  9355. position:absolute;
  9356. left:0px;
  9357. top:0px;
  9358. width:7px;
  9359. height:7px;
  9360. }
  9361. #u37463 {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:1699px;
  9365. top:84px;
  9366. width:7px;
  9367. height:7px;
  9368. display:flex;
  9369. }
  9370. #u37463 .text {
  9371. position:absolute;
  9372. align-self:center;
  9373. padding:2px 2px 2px 2px;
  9374. box-sizing:border-box;
  9375. width:100%;
  9376. }
  9377. #u37463_text {
  9378. border-width:0px;
  9379. word-wrap:break-word;
  9380. text-transform:none;
  9381. visibility:hidden;
  9382. }
  9383. #u37464_img {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:0px;
  9387. top:0px;
  9388. width:19px;
  9389. height:2px;
  9390. }
  9391. #u37464 {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:1716px;
  9395. top:87px;
  9396. width:18px;
  9397. height:1px;
  9398. display:flex;
  9399. -webkit-transform:rotate(90deg);
  9400. -moz-transform:rotate(90deg);
  9401. -ms-transform:rotate(90deg);
  9402. transform:rotate(90deg);
  9403. }
  9404. #u37464 .text {
  9405. position:absolute;
  9406. align-self:center;
  9407. padding:2px 2px 2px 2px;
  9408. box-sizing:border-box;
  9409. width:100%;
  9410. }
  9411. #u37464_text {
  9412. border-width:0px;
  9413. word-wrap:break-word;
  9414. text-transform:none;
  9415. visibility:hidden;
  9416. }
  9417. #u37465_img {
  9418. border-width:0px;
  9419. position:absolute;
  9420. left:0px;
  9421. top:0px;
  9422. width:375px;
  9423. height:44px;
  9424. }
  9425. #u37465 {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:1398px;
  9429. top:24px;
  9430. width:375px;
  9431. height:44px;
  9432. display:flex;
  9433. }
  9434. #u37465 .text {
  9435. position:absolute;
  9436. align-self:center;
  9437. padding:2px 2px 2px 2px;
  9438. box-sizing:border-box;
  9439. width:100%;
  9440. }
  9441. #u37465_text {
  9442. border-width:0px;
  9443. word-wrap:break-word;
  9444. text-transform:none;
  9445. visibility:hidden;
  9446. }
  9447. #u37466_div {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:0px;
  9451. top:0px;
  9452. width:375px;
  9453. height:50px;
  9454. background:inherit;
  9455. background-color:rgba(255, 255, 255, 1);
  9456. box-sizing:border-box;
  9457. border-width:1px;
  9458. border-style:solid;
  9459. border-color:rgba(242, 242, 242, 1);
  9460. border-radius:26px;
  9461. border-top-left-radius:0px;
  9462. border-top-right-radius:0px;
  9463. -moz-box-shadow:none;
  9464. -webkit-box-shadow:none;
  9465. box-shadow:none;
  9466. }
  9467. #u37466 {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:1398px;
  9471. top:788px;
  9472. width:375px;
  9473. height:50px;
  9474. display:flex;
  9475. }
  9476. #u37466 .text {
  9477. position:absolute;
  9478. align-self:center;
  9479. padding:2px 2px 2px 2px;
  9480. box-sizing:border-box;
  9481. width:100%;
  9482. }
  9483. #u37466_text {
  9484. border-width:0px;
  9485. word-wrap:break-word;
  9486. text-transform:none;
  9487. visibility:hidden;
  9488. }
  9489. #u37467 {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:0px;
  9493. top:0px;
  9494. width:0px;
  9495. height:0px;
  9496. }
  9497. #u37468_img {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:0px;
  9501. top:0px;
  9502. width:24px;
  9503. height:24px;
  9504. }
  9505. #u37468 {
  9506. border-width:0px;
  9507. position:absolute;
  9508. left:1438px;
  9509. top:792px;
  9510. width:24px;
  9511. height:24px;
  9512. display:flex;
  9513. font-size:8px;
  9514. }
  9515. #u37468 .text {
  9516. position:absolute;
  9517. align-self:center;
  9518. padding:2px 2px 2px 2px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u37468_text {
  9523. border-width:0px;
  9524. word-wrap:break-word;
  9525. text-transform:none;
  9526. }
  9527. #u37469_div {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:0px;
  9531. top:0px;
  9532. width:25px;
  9533. height:17px;
  9534. background:inherit;
  9535. background-color:rgba(255, 255, 255, 0);
  9536. border:none;
  9537. border-radius:0px;
  9538. -moz-box-shadow:none;
  9539. -webkit-box-shadow:none;
  9540. box-shadow:none;
  9541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9542. font-weight:400;
  9543. font-style:normal;
  9544. font-size:12px;
  9545. }
  9546. #u37469 {
  9547. border-width:0px;
  9548. position:absolute;
  9549. left:1438px;
  9550. top:817px;
  9551. width:25px;
  9552. height:17px;
  9553. display:flex;
  9554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9555. font-weight:400;
  9556. font-style:normal;
  9557. font-size:12px;
  9558. }
  9559. #u37469 .text {
  9560. position:absolute;
  9561. align-self:flex-start;
  9562. padding:0px 0px 0px 0px;
  9563. box-sizing:border-box;
  9564. width:100%;
  9565. }
  9566. #u37469_text {
  9567. border-width:0px;
  9568. white-space:nowrap;
  9569. text-transform:none;
  9570. }
  9571. #u37470 {
  9572. border-width:0px;
  9573. position:absolute;
  9574. left:0px;
  9575. top:0px;
  9576. width:0px;
  9577. height:0px;
  9578. }
  9579. #u37471_img {
  9580. border-width:0px;
  9581. position:absolute;
  9582. left:0px;
  9583. top:0px;
  9584. width:24px;
  9585. height:24px;
  9586. }
  9587. #u37471 {
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:1708px;
  9591. top:794px;
  9592. width:24px;
  9593. height:24px;
  9594. display:flex;
  9595. font-size:8px;
  9596. }
  9597. #u37471 .text {
  9598. position:absolute;
  9599. align-self:center;
  9600. padding:2px 2px 2px 2px;
  9601. box-sizing:border-box;
  9602. width:100%;
  9603. }
  9604. #u37471_text {
  9605. border-width:0px;
  9606. word-wrap:break-word;
  9607. text-transform:none;
  9608. }
  9609. #u37472_div {
  9610. border-width:0px;
  9611. position:absolute;
  9612. left:0px;
  9613. top:0px;
  9614. width:25px;
  9615. height:17px;
  9616. background:inherit;
  9617. background-color:rgba(255, 255, 255, 0);
  9618. border:none;
  9619. border-radius:0px;
  9620. -moz-box-shadow:none;
  9621. -webkit-box-shadow:none;
  9622. box-shadow:none;
  9623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9624. font-weight:400;
  9625. font-style:normal;
  9626. font-size:12px;
  9627. }
  9628. #u37472 {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:1708px;
  9632. top:819px;
  9633. width:25px;
  9634. height:17px;
  9635. display:flex;
  9636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9637. font-weight:400;
  9638. font-style:normal;
  9639. font-size:12px;
  9640. }
  9641. #u37472 .text {
  9642. position:absolute;
  9643. align-self:flex-start;
  9644. padding:0px 0px 0px 0px;
  9645. box-sizing:border-box;
  9646. width:100%;
  9647. }
  9648. #u37472_text {
  9649. border-width:0px;
  9650. white-space:nowrap;
  9651. text-transform:none;
  9652. }
  9653. #u37473_div {
  9654. border-width:0px;
  9655. position:absolute;
  9656. left:0px;
  9657. top:0px;
  9658. width:375px;
  9659. height:681px;
  9660. background:inherit;
  9661. background-color:rgba(242, 242, 242, 0.462745098039216);
  9662. border:none;
  9663. border-radius:0px;
  9664. -moz-box-shadow:none;
  9665. -webkit-box-shadow:none;
  9666. box-shadow:none;
  9667. }
  9668. #u37473 {
  9669. border-width:0px;
  9670. position:absolute;
  9671. left:1398px;
  9672. top:107px;
  9673. width:375px;
  9674. height:681px;
  9675. display:flex;
  9676. }
  9677. #u37473 .text {
  9678. position:absolute;
  9679. align-self:center;
  9680. padding:2px 2px 2px 2px;
  9681. box-sizing:border-box;
  9682. width:100%;
  9683. }
  9684. #u37473_text {
  9685. border-width:0px;
  9686. word-wrap:break-word;
  9687. text-transform:none;
  9688. visibility:hidden;
  9689. }
  9690. #u37474 {
  9691. border-width:0px;
  9692. position:absolute;
  9693. left:0px;
  9694. top:0px;
  9695. width:0px;
  9696. height:0px;
  9697. }
  9698. #u37475_img {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:0px;
  9702. top:0px;
  9703. width:24px;
  9704. height:24px;
  9705. }
  9706. #u37475 {
  9707. border-width:0px;
  9708. position:absolute;
  9709. left:1620px;
  9710. top:792px;
  9711. width:24px;
  9712. height:24px;
  9713. display:flex;
  9714. font-size:8px;
  9715. }
  9716. #u37475 .text {
  9717. position:absolute;
  9718. align-self:center;
  9719. padding:2px 2px 2px 2px;
  9720. box-sizing:border-box;
  9721. width:100%;
  9722. }
  9723. #u37475_text {
  9724. border-width:0px;
  9725. word-wrap:break-word;
  9726. text-transform:none;
  9727. }
  9728. #u37476_div {
  9729. border-width:0px;
  9730. position:absolute;
  9731. left:0px;
  9732. top:0px;
  9733. width:37px;
  9734. height:17px;
  9735. background:inherit;
  9736. background-color:rgba(255, 255, 255, 0);
  9737. border:none;
  9738. border-radius:0px;
  9739. -moz-box-shadow:none;
  9740. -webkit-box-shadow:none;
  9741. box-shadow:none;
  9742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9743. font-weight:400;
  9744. font-style:normal;
  9745. font-size:12px;
  9746. }
  9747. #u37476 {
  9748. border-width:0px;
  9749. position:absolute;
  9750. left:1614px;
  9751. top:817px;
  9752. width:37px;
  9753. height:17px;
  9754. display:flex;
  9755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9756. font-weight:400;
  9757. font-style:normal;
  9758. font-size:12px;
  9759. }
  9760. #u37476 .text {
  9761. position:absolute;
  9762. align-self:flex-start;
  9763. padding:0px 0px 0px 0px;
  9764. box-sizing:border-box;
  9765. width:100%;
  9766. }
  9767. #u37476_text {
  9768. border-width:0px;
  9769. white-space:nowrap;
  9770. text-transform:none;
  9771. }
  9772. #u37477 {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:0px;
  9776. top:0px;
  9777. width:0px;
  9778. height:0px;
  9779. }
  9780. #u37478_img {
  9781. border-width:0px;
  9782. position:absolute;
  9783. left:0px;
  9784. top:0px;
  9785. width:24px;
  9786. height:24px;
  9787. }
  9788. #u37478 {
  9789. border-width:0px;
  9790. position:absolute;
  9791. left:1526px;
  9792. top:792px;
  9793. width:24px;
  9794. height:24px;
  9795. display:flex;
  9796. font-size:8px;
  9797. }
  9798. #u37478 .text {
  9799. position:absolute;
  9800. align-self:center;
  9801. padding:2px 2px 2px 2px;
  9802. box-sizing:border-box;
  9803. width:100%;
  9804. }
  9805. #u37478_text {
  9806. border-width:0px;
  9807. word-wrap:break-word;
  9808. text-transform:none;
  9809. }
  9810. #u37479_div {
  9811. border-width:0px;
  9812. position:absolute;
  9813. left:0px;
  9814. top:0px;
  9815. width:37px;
  9816. height:17px;
  9817. background:inherit;
  9818. background-color:rgba(255, 255, 255, 0);
  9819. border:none;
  9820. border-radius:0px;
  9821. -moz-box-shadow:none;
  9822. -webkit-box-shadow:none;
  9823. box-shadow:none;
  9824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9825. font-weight:400;
  9826. font-style:normal;
  9827. font-size:12px;
  9828. }
  9829. #u37479 {
  9830. border-width:0px;
  9831. position:absolute;
  9832. left:1520px;
  9833. top:817px;
  9834. width:37px;
  9835. height:17px;
  9836. display:flex;
  9837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9838. font-weight:400;
  9839. font-style:normal;
  9840. font-size:12px;
  9841. }
  9842. #u37479 .text {
  9843. position:absolute;
  9844. align-self:flex-start;
  9845. padding:0px 0px 0px 0px;
  9846. box-sizing:border-box;
  9847. width:100%;
  9848. }
  9849. #u37479_text {
  9850. border-width:0px;
  9851. white-space:nowrap;
  9852. text-transform:none;
  9853. }
  9854. #u37480_div {
  9855. border-width:0px;
  9856. position:absolute;
  9857. left:0px;
  9858. top:0px;
  9859. width:375px;
  9860. height:732px;
  9861. background:inherit;
  9862. background-color:rgba(242, 242, 242, 0.996078431372549);
  9863. border:none;
  9864. border-top:0px;
  9865. border-radius:28px;
  9866. border-top-left-radius:0px;
  9867. border-top-right-radius:0px;
  9868. -moz-box-shadow:none;
  9869. -webkit-box-shadow:none;
  9870. box-shadow:none;
  9871. }
  9872. #u37480 {
  9873. border-width:0px;
  9874. position:absolute;
  9875. left:1398px;
  9876. top:107px;
  9877. width:375px;
  9878. height:732px;
  9879. display:flex;
  9880. }
  9881. #u37480 .text {
  9882. position:absolute;
  9883. align-self:center;
  9884. padding:2px 2px 2px 2px;
  9885. box-sizing:border-box;
  9886. width:100%;
  9887. }
  9888. #u37480_text {
  9889. border-width:0px;
  9890. word-wrap:break-word;
  9891. text-transform:none;
  9892. visibility:hidden;
  9893. }
  9894. #u37481_div {
  9895. border-width:0px;
  9896. position:absolute;
  9897. left:0px;
  9898. top:0px;
  9899. width:375px;
  9900. height:125px;
  9901. background:inherit;
  9902. background-color:rgba(255, 255, 255, 1);
  9903. border:none;
  9904. border-left:0px;
  9905. border-top:0px;
  9906. border-right:0px;
  9907. border-radius:0px;
  9908. border-bottom-right-radius:0px;
  9909. border-bottom-left-radius:0px;
  9910. -moz-box-shadow:none;
  9911. -webkit-box-shadow:none;
  9912. box-shadow:none;
  9913. }
  9914. #u37481 {
  9915. border-width:0px;
  9916. position:absolute;
  9917. left:1398px;
  9918. top:108px;
  9919. width:375px;
  9920. height:125px;
  9921. display:flex;
  9922. }
  9923. #u37481 .text {
  9924. position:absolute;
  9925. align-self:center;
  9926. padding:2px 2px 2px 2px;
  9927. box-sizing:border-box;
  9928. width:100%;
  9929. }
  9930. #u37481_text {
  9931. border-width:0px;
  9932. word-wrap:break-word;
  9933. text-transform:none;
  9934. visibility:hidden;
  9935. }
  9936. #u37482_div {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:0px;
  9940. top:0px;
  9941. width:43px;
  9942. height:20px;
  9943. background:inherit;
  9944. background-color:rgba(255, 255, 255, 0);
  9945. border:none;
  9946. border-radius:0px;
  9947. -moz-box-shadow:none;
  9948. -webkit-box-shadow:none;
  9949. box-shadow:none;
  9950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9951. font-weight:400;
  9952. font-style:normal;
  9953. color:#0089FE;
  9954. }
  9955. #u37482 {
  9956. border-width:0px;
  9957. position:absolute;
  9958. left:1711px;
  9959. top:124px;
  9960. width:43px;
  9961. height:20px;
  9962. display:flex;
  9963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9964. font-weight:400;
  9965. font-style:normal;
  9966. color:#0089FE;
  9967. }
  9968. #u37482 .text {
  9969. position:absolute;
  9970. align-self:flex-start;
  9971. padding:0px 0px 0px 0px;
  9972. box-sizing:border-box;
  9973. width:100%;
  9974. }
  9975. #u37482_text {
  9976. border-width:0px;
  9977. white-space:nowrap;
  9978. text-transform:none;
  9979. }
  9980. #u37483_div {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:0px;
  9984. top:0px;
  9985. width:124px;
  9986. height:30px;
  9987. background:inherit;
  9988. background-color:rgba(255, 255, 255, 0);
  9989. border:none;
  9990. border-left:0px;
  9991. border-top:0px;
  9992. border-right:0px;
  9993. border-radius:0px;
  9994. border-bottom-right-radius:0px;
  9995. border-bottom-left-radius:0px;
  9996. -moz-box-shadow:none;
  9997. -webkit-box-shadow:none;
  9998. box-shadow:none;
  9999. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10000. font-weight:500;
  10001. font-style:normal;
  10002. font-size:14px;
  10003. line-height:30px;
  10004. }
  10005. #u37483 {
  10006. border-width:0px;
  10007. position:absolute;
  10008. left:1411px;
  10009. top:118px;
  10010. width:124px;
  10011. height:30px;
  10012. display:flex;
  10013. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10014. font-weight:500;
  10015. font-style:normal;
  10016. font-size:14px;
  10017. line-height:30px;
  10018. }
  10019. #u37483 .text {
  10020. position:absolute;
  10021. align-self:flex-start;
  10022. padding:0px 0px 0px 0px;
  10023. box-sizing:border-box;
  10024. width:100%;
  10025. }
  10026. #u37483_text {
  10027. border-width:0px;
  10028. white-space:nowrap;
  10029. text-transform:none;
  10030. }
  10031. #u37484_div {
  10032. border-width:0px;
  10033. position:absolute;
  10034. left:0px;
  10035. top:0px;
  10036. width:167px;
  10037. height:75px;
  10038. background:inherit;
  10039. background-color:rgba(255, 255, 255, 0);
  10040. border:none;
  10041. border-left:0px;
  10042. border-top:0px;
  10043. border-right:0px;
  10044. border-radius:0px;
  10045. border-bottom-right-radius:0px;
  10046. border-bottom-left-radius:0px;
  10047. -moz-box-shadow:none;
  10048. -webkit-box-shadow:none;
  10049. box-shadow:none;
  10050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10051. font-weight:400;
  10052. font-style:normal;
  10053. font-size:12px;
  10054. line-height:25px;
  10055. }
  10056. #u37484 {
  10057. border-width:0px;
  10058. position:absolute;
  10059. left:1411px;
  10060. top:148px;
  10061. width:167px;
  10062. height:75px;
  10063. display:flex;
  10064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10065. font-weight:400;
  10066. font-style:normal;
  10067. font-size:12px;
  10068. line-height:25px;
  10069. }
  10070. #u37484 .text {
  10071. position:absolute;
  10072. align-self:flex-start;
  10073. padding:0px 0px 0px 0px;
  10074. box-sizing:border-box;
  10075. width:100%;
  10076. }
  10077. #u37484_text {
  10078. border-width:0px;
  10079. white-space:nowrap;
  10080. text-transform:none;
  10081. }
  10082. #u37485_div {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:0px;
  10086. top:0px;
  10087. width:375px;
  10088. height:41px;
  10089. background:inherit;
  10090. background-color:rgba(255, 255, 255, 1);
  10091. box-sizing:border-box;
  10092. border-width:1px;
  10093. border-style:solid;
  10094. border-color:rgba(215, 215, 215, 1);
  10095. border-left:0px;
  10096. border-top:0px;
  10097. border-right:0px;
  10098. border-radius:0px;
  10099. border-bottom-right-radius:0px;
  10100. border-bottom-left-radius:0px;
  10101. -moz-box-shadow:none;
  10102. -webkit-box-shadow:none;
  10103. box-shadow:none;
  10104. }
  10105. #u37485 {
  10106. border-width:0px;
  10107. position:absolute;
  10108. left:1398px;
  10109. top:67px;
  10110. width:375px;
  10111. height:41px;
  10112. display:flex;
  10113. }
  10114. #u37485 .text {
  10115. position:absolute;
  10116. align-self:center;
  10117. padding:2px 2px 2px 2px;
  10118. box-sizing:border-box;
  10119. width:100%;
  10120. }
  10121. #u37485_text {
  10122. border-width:0px;
  10123. word-wrap:break-word;
  10124. text-transform:none;
  10125. visibility:hidden;
  10126. }
  10127. #u37486 {
  10128. border-width:0px;
  10129. position:absolute;
  10130. left:0px;
  10131. top:0px;
  10132. width:0px;
  10133. height:0px;
  10134. }
  10135. #u37487_div {
  10136. border-width:0px;
  10137. position:absolute;
  10138. left:0px;
  10139. top:0px;
  10140. width:88px;
  10141. height:32px;
  10142. background:inherit;
  10143. background-color:rgba(255, 255, 255, 1);
  10144. box-sizing:border-box;
  10145. border-width:1px;
  10146. border-style:solid;
  10147. border-color:rgba(242, 242, 242, 1);
  10148. border-radius:33px;
  10149. -moz-box-shadow:none;
  10150. -webkit-box-shadow:none;
  10151. box-shadow:none;
  10152. }
  10153. #u37487 {
  10154. border-width:0px;
  10155. position:absolute;
  10156. left:1678px;
  10157. top:71px;
  10158. width:88px;
  10159. height:32px;
  10160. display:flex;
  10161. }
  10162. #u37487 .text {
  10163. position:absolute;
  10164. align-self:center;
  10165. padding:2px 2px 2px 2px;
  10166. box-sizing:border-box;
  10167. width:100%;
  10168. }
  10169. #u37487_text {
  10170. border-width:0px;
  10171. word-wrap:break-word;
  10172. text-transform:none;
  10173. visibility:hidden;
  10174. }
  10175. #u37488 {
  10176. border-width:0px;
  10177. position:absolute;
  10178. left:0px;
  10179. top:0px;
  10180. width:0px;
  10181. height:0px;
  10182. }
  10183. #u37489_img {
  10184. border-width:0px;
  10185. position:absolute;
  10186. left:0px;
  10187. top:0px;
  10188. width:18px;
  10189. height:18px;
  10190. }
  10191. #u37489 {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:1741px;
  10195. top:78px;
  10196. width:18px;
  10197. height:18px;
  10198. display:flex;
  10199. }
  10200. #u37489 .text {
  10201. position:absolute;
  10202. align-self:center;
  10203. padding:2px 2px 2px 2px;
  10204. box-sizing:border-box;
  10205. width:100%;
  10206. }
  10207. #u37489_text {
  10208. border-width:0px;
  10209. word-wrap:break-word;
  10210. text-transform:none;
  10211. visibility:hidden;
  10212. }
  10213. #u37490_img {
  10214. border-width:0px;
  10215. position:absolute;
  10216. left:0px;
  10217. top:0px;
  10218. width:6px;
  10219. height:6px;
  10220. }
  10221. #u37490 {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:1747px;
  10225. top:84px;
  10226. width:6px;
  10227. height:6px;
  10228. display:flex;
  10229. }
  10230. #u37490 .text {
  10231. position:absolute;
  10232. align-self:center;
  10233. padding:2px 2px 2px 2px;
  10234. box-sizing:border-box;
  10235. width:100%;
  10236. }
  10237. #u37490_text {
  10238. border-width:0px;
  10239. word-wrap:break-word;
  10240. text-transform:none;
  10241. visibility:hidden;
  10242. }
  10243. #u37491 {
  10244. border-width:0px;
  10245. position:absolute;
  10246. left:0px;
  10247. top:0px;
  10248. width:0px;
  10249. height:0px;
  10250. }
  10251. #u37492_img {
  10252. border-width:0px;
  10253. position:absolute;
  10254. left:0px;
  10255. top:0px;
  10256. width:5px;
  10257. height:5px;
  10258. }
  10259. #u37492 {
  10260. border-width:0px;
  10261. position:absolute;
  10262. left:1692px;
  10263. top:85px;
  10264. width:5px;
  10265. height:5px;
  10266. display:flex;
  10267. }
  10268. #u37492 .text {
  10269. position:absolute;
  10270. align-self:center;
  10271. padding:2px 2px 2px 2px;
  10272. box-sizing:border-box;
  10273. width:100%;
  10274. }
  10275. #u37492_text {
  10276. border-width:0px;
  10277. word-wrap:break-word;
  10278. text-transform:none;
  10279. visibility:hidden;
  10280. }
  10281. #u37493_img {
  10282. border-width:0px;
  10283. position:absolute;
  10284. left:0px;
  10285. top:0px;
  10286. width:5px;
  10287. height:5px;
  10288. }
  10289. #u37493 {
  10290. border-width:0px;
  10291. position:absolute;
  10292. left:1708px;
  10293. top:85px;
  10294. width:5px;
  10295. height:5px;
  10296. display:flex;
  10297. }
  10298. #u37493 .text {
  10299. position:absolute;
  10300. align-self:center;
  10301. padding:2px 2px 2px 2px;
  10302. box-sizing:border-box;
  10303. width:100%;
  10304. }
  10305. #u37493_text {
  10306. border-width:0px;
  10307. word-wrap:break-word;
  10308. text-transform:none;
  10309. visibility:hidden;
  10310. }
  10311. #u37494_img {
  10312. border-width:0px;
  10313. position:absolute;
  10314. left:0px;
  10315. top:0px;
  10316. width:7px;
  10317. height:7px;
  10318. }
  10319. #u37494 {
  10320. border-width:0px;
  10321. position:absolute;
  10322. left:1699px;
  10323. top:84px;
  10324. width:7px;
  10325. height:7px;
  10326. display:flex;
  10327. }
  10328. #u37494 .text {
  10329. position:absolute;
  10330. align-self:center;
  10331. padding:2px 2px 2px 2px;
  10332. box-sizing:border-box;
  10333. width:100%;
  10334. }
  10335. #u37494_text {
  10336. border-width:0px;
  10337. word-wrap:break-word;
  10338. text-transform:none;
  10339. visibility:hidden;
  10340. }
  10341. #u37495_img {
  10342. border-width:0px;
  10343. position:absolute;
  10344. left:0px;
  10345. top:0px;
  10346. width:19px;
  10347. height:2px;
  10348. }
  10349. #u37495 {
  10350. border-width:0px;
  10351. position:absolute;
  10352. left:1716px;
  10353. top:87px;
  10354. width:18px;
  10355. height:1px;
  10356. display:flex;
  10357. -webkit-transform:rotate(90deg);
  10358. -moz-transform:rotate(90deg);
  10359. -ms-transform:rotate(90deg);
  10360. transform:rotate(90deg);
  10361. }
  10362. #u37495 .text {
  10363. position:absolute;
  10364. align-self:center;
  10365. padding:2px 2px 2px 2px;
  10366. box-sizing:border-box;
  10367. width:100%;
  10368. }
  10369. #u37495_text {
  10370. border-width:0px;
  10371. word-wrap:break-word;
  10372. text-transform:none;
  10373. visibility:hidden;
  10374. }
  10375. #u37496_div {
  10376. border-width:0px;
  10377. position:absolute;
  10378. left:0px;
  10379. top:0px;
  10380. width:12px;
  10381. height:12px;
  10382. background:inherit;
  10383. background-color:rgba(255, 255, 255, 0);
  10384. box-sizing:border-box;
  10385. border-width:2px;
  10386. border-style:solid;
  10387. border-color:rgba(51, 51, 51, 1);
  10388. border-right:0px;
  10389. border-bottom:0px;
  10390. border-radius:0px;
  10391. border-top-right-radius:0px;
  10392. border-bottom-left-radius:0px;
  10393. -moz-box-shadow:none;
  10394. -webkit-box-shadow:none;
  10395. box-shadow:none;
  10396. }
  10397. #u37496 {
  10398. border-width:0px;
  10399. position:absolute;
  10400. left:1413px;
  10401. top:81px;
  10402. width:12px;
  10403. height:12px;
  10404. display:flex;
  10405. -webkit-transform:rotate(315deg);
  10406. -moz-transform:rotate(315deg);
  10407. -ms-transform:rotate(315deg);
  10408. transform:rotate(315deg);
  10409. }
  10410. #u37496 .text {
  10411. position:absolute;
  10412. align-self:center;
  10413. padding:2px 2px 2px 2px;
  10414. box-sizing:border-box;
  10415. width:100%;
  10416. }
  10417. #u37496_text {
  10418. border-width:0px;
  10419. word-wrap:break-word;
  10420. text-transform:none;
  10421. visibility:hidden;
  10422. }
  10423. #u37497_div {
  10424. border-width:0px;
  10425. position:absolute;
  10426. left:0px;
  10427. top:0px;
  10428. width:73px;
  10429. height:25px;
  10430. background:inherit;
  10431. background-color:rgba(255, 255, 255, 0);
  10432. border:none;
  10433. border-radius:0px;
  10434. -moz-box-shadow:none;
  10435. -webkit-box-shadow:none;
  10436. box-shadow:none;
  10437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10438. font-weight:400;
  10439. font-style:normal;
  10440. font-size:18px;
  10441. }
  10442. #u37497 {
  10443. border-width:0px;
  10444. position:absolute;
  10445. left:1433px;
  10446. top:75px;
  10447. width:73px;
  10448. height:25px;
  10449. display:flex;
  10450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10451. font-weight:400;
  10452. font-style:normal;
  10453. font-size:18px;
  10454. }
  10455. #u37497 .text {
  10456. position:absolute;
  10457. align-self:flex-start;
  10458. padding:0px 0px 0px 0px;
  10459. box-sizing:border-box;
  10460. width:100%;
  10461. }
  10462. #u37497_text {
  10463. border-width:0px;
  10464. white-space:nowrap;
  10465. text-transform:none;
  10466. }
  10467. #u37498 {
  10468. border-width:0px;
  10469. position:absolute;
  10470. left:0px;
  10471. top:0px;
  10472. width:0px;
  10473. height:0px;
  10474. }
  10475. #u37499_div {
  10476. border-width:0px;
  10477. position:absolute;
  10478. left:0px;
  10479. top:0px;
  10480. width:375px;
  10481. height:356px;
  10482. background:inherit;
  10483. background-color:rgba(255, 255, 255, 1);
  10484. border:none;
  10485. border-left:0px;
  10486. border-right:0px;
  10487. border-radius:0px;
  10488. border-top-left-radius:0px;
  10489. border-top-right-radius:0px;
  10490. border-bottom-right-radius:0px;
  10491. border-bottom-left-radius:0px;
  10492. -moz-box-shadow:none;
  10493. -webkit-box-shadow:none;
  10494. box-shadow:none;
  10495. }
  10496. #u37499 {
  10497. border-width:0px;
  10498. position:absolute;
  10499. left:1398px;
  10500. top:423px;
  10501. width:375px;
  10502. height:356px;
  10503. display:flex;
  10504. }
  10505. #u37499 .text {
  10506. position:absolute;
  10507. align-self:center;
  10508. padding:2px 2px 2px 2px;
  10509. box-sizing:border-box;
  10510. width:100%;
  10511. }
  10512. #u37499_text {
  10513. border-width:0px;
  10514. word-wrap:break-word;
  10515. text-transform:none;
  10516. visibility:hidden;
  10517. }
  10518. #u37500_div {
  10519. border-width:0px;
  10520. position:absolute;
  10521. left:0px;
  10522. top:0px;
  10523. width:57px;
  10524. height:30px;
  10525. background:inherit;
  10526. background-color:rgba(255, 255, 255, 0);
  10527. border:none;
  10528. border-left:0px;
  10529. border-top:0px;
  10530. border-right:0px;
  10531. border-radius:0px;
  10532. border-bottom-right-radius:0px;
  10533. border-bottom-left-radius:0px;
  10534. -moz-box-shadow:none;
  10535. -webkit-box-shadow:none;
  10536. box-shadow:none;
  10537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10538. font-weight:400;
  10539. font-style:normal;
  10540. font-size:14px;
  10541. line-height:30px;
  10542. }
  10543. #u37500 {
  10544. border-width:0px;
  10545. position:absolute;
  10546. left:1422px;
  10547. top:433px;
  10548. width:57px;
  10549. height:30px;
  10550. display:flex;
  10551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10552. font-weight:400;
  10553. font-style:normal;
  10554. font-size:14px;
  10555. line-height:30px;
  10556. }
  10557. #u37500 .text {
  10558. position:absolute;
  10559. align-self:flex-start;
  10560. padding:0px 0px 0px 0px;
  10561. box-sizing:border-box;
  10562. width:100%;
  10563. }
  10564. #u37500_text {
  10565. border-width:0px;
  10566. white-space:nowrap;
  10567. text-transform:none;
  10568. }
  10569. #u37501_div {
  10570. border-width:0px;
  10571. position:absolute;
  10572. left:0px;
  10573. top:0px;
  10574. width:181px;
  10575. height:30px;
  10576. background:inherit;
  10577. background-color:rgba(255, 255, 255, 0);
  10578. border:none;
  10579. border-left:0px;
  10580. border-top:0px;
  10581. border-right:0px;
  10582. border-radius:0px;
  10583. border-bottom-right-radius:0px;
  10584. border-bottom-left-radius:0px;
  10585. -moz-box-shadow:none;
  10586. -webkit-box-shadow:none;
  10587. box-shadow:none;
  10588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10589. font-weight:400;
  10590. font-style:normal;
  10591. font-size:12px;
  10592. line-height:30px;
  10593. }
  10594. #u37501 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:1422px;
  10598. top:463px;
  10599. width:181px;
  10600. height:30px;
  10601. display:flex;
  10602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10603. font-weight:400;
  10604. font-style:normal;
  10605. font-size:12px;
  10606. line-height:30px;
  10607. }
  10608. #u37501 .text {
  10609. position:absolute;
  10610. align-self:flex-start;
  10611. padding:0px 0px 0px 0px;
  10612. box-sizing:border-box;
  10613. width:100%;
  10614. }
  10615. #u37501_text {
  10616. border-width:0px;
  10617. white-space:nowrap;
  10618. text-transform:none;
  10619. }
  10620. #u37502_div {
  10621. border-width:0px;
  10622. position:absolute;
  10623. left:0px;
  10624. top:0px;
  10625. width:167px;
  10626. height:30px;
  10627. background:inherit;
  10628. background-color:rgba(255, 255, 255, 0);
  10629. border:none;
  10630. border-left:0px;
  10631. border-top:0px;
  10632. border-right:0px;
  10633. border-radius:0px;
  10634. border-bottom-right-radius:0px;
  10635. border-bottom-left-radius:0px;
  10636. -moz-box-shadow:none;
  10637. -webkit-box-shadow:none;
  10638. box-shadow:none;
  10639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10640. font-weight:400;
  10641. font-style:normal;
  10642. font-size:12px;
  10643. line-height:30px;
  10644. }
  10645. #u37502 {
  10646. border-width:0px;
  10647. position:absolute;
  10648. left:1422px;
  10649. top:493px;
  10650. width:167px;
  10651. height:30px;
  10652. display:flex;
  10653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10654. font-weight:400;
  10655. font-style:normal;
  10656. font-size:12px;
  10657. line-height:30px;
  10658. }
  10659. #u37502 .text {
  10660. position:absolute;
  10661. align-self:flex-start;
  10662. padding:0px 0px 0px 0px;
  10663. box-sizing:border-box;
  10664. width:100%;
  10665. }
  10666. #u37502_text {
  10667. border-width:0px;
  10668. white-space:nowrap;
  10669. text-transform:none;
  10670. }
  10671. #u37503_img {
  10672. border-width:0px;
  10673. position:absolute;
  10674. left:0px;
  10675. top:0px;
  10676. width:375px;
  10677. height:215px;
  10678. }
  10679. #u37503 {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:1398px;
  10683. top:564px;
  10684. width:375px;
  10685. height:215px;
  10686. display:flex;
  10687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10688. font-weight:400;
  10689. font-style:normal;
  10690. }
  10691. #u37503 .text {
  10692. position:absolute;
  10693. align-self:center;
  10694. padding:2px 2px 2px 2px;
  10695. box-sizing:border-box;
  10696. width:100%;
  10697. }
  10698. #u37503_text {
  10699. border-width:0px;
  10700. word-wrap:break-word;
  10701. text-transform:none;
  10702. }
  10703. #u37504_div {
  10704. border-width:0px;
  10705. position:absolute;
  10706. left:0px;
  10707. top:0px;
  10708. width:167px;
  10709. height:30px;
  10710. background:inherit;
  10711. background-color:rgba(255, 255, 255, 0);
  10712. border:none;
  10713. border-left:0px;
  10714. border-top:0px;
  10715. border-right:0px;
  10716. border-radius:0px;
  10717. border-bottom-right-radius:0px;
  10718. border-bottom-left-radius:0px;
  10719. -moz-box-shadow:none;
  10720. -webkit-box-shadow:none;
  10721. box-shadow:none;
  10722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10723. font-weight:400;
  10724. font-style:normal;
  10725. font-size:12px;
  10726. line-height:30px;
  10727. }
  10728. #u37504 {
  10729. border-width:0px;
  10730. position:absolute;
  10731. left:1422px;
  10732. top:523px;
  10733. width:167px;
  10734. height:30px;
  10735. display:flex;
  10736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10737. font-weight:400;
  10738. font-style:normal;
  10739. font-size:12px;
  10740. line-height:30px;
  10741. }
  10742. #u37504 .text {
  10743. position:absolute;
  10744. align-self:flex-start;
  10745. padding:0px 0px 0px 0px;
  10746. box-sizing:border-box;
  10747. width:100%;
  10748. }
  10749. #u37504_text {
  10750. border-width:0px;
  10751. white-space:nowrap;
  10752. text-transform:none;
  10753. }
  10754. #u37505_div {
  10755. border-width:0px;
  10756. position:absolute;
  10757. left:0px;
  10758. top:0px;
  10759. width:92px;
  10760. height:30px;
  10761. background:inherit;
  10762. background-color:rgba(255, 255, 255, 0);
  10763. border:none;
  10764. border-left:0px;
  10765. border-top:0px;
  10766. border-right:0px;
  10767. border-radius:0px;
  10768. border-bottom-right-radius:0px;
  10769. border-bottom-left-radius:0px;
  10770. -moz-box-shadow:none;
  10771. -webkit-box-shadow:none;
  10772. box-shadow:none;
  10773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10774. font-weight:400;
  10775. font-style:normal;
  10776. font-size:12px;
  10777. color:#0089FE;
  10778. line-height:30px;
  10779. }
  10780. #u37505 {
  10781. border-width:0px;
  10782. position:absolute;
  10783. left:1667px;
  10784. top:433px;
  10785. width:92px;
  10786. height:30px;
  10787. display:flex;
  10788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10789. font-weight:400;
  10790. font-style:normal;
  10791. font-size:12px;
  10792. color:#0089FE;
  10793. line-height:30px;
  10794. }
  10795. #u37505 .text {
  10796. position:absolute;
  10797. align-self:flex-start;
  10798. padding:0px 0px 0px 0px;
  10799. box-sizing:border-box;
  10800. width:100%;
  10801. }
  10802. #u37505_text {
  10803. border-width:0px;
  10804. white-space:nowrap;
  10805. text-transform:none;
  10806. }
  10807. #u37506 {
  10808. border-width:0px;
  10809. position:absolute;
  10810. left:0px;
  10811. top:0px;
  10812. width:0px;
  10813. height:0px;
  10814. }
  10815. #u37507_div {
  10816. border-width:0px;
  10817. position:absolute;
  10818. left:0px;
  10819. top:0px;
  10820. width:375px;
  10821. height:180px;
  10822. background:inherit;
  10823. background-color:rgba(255, 255, 255, 1);
  10824. border:none;
  10825. border-top:0px;
  10826. border-bottom:0px;
  10827. border-radius:0px;
  10828. border-top-left-radius:0px;
  10829. border-top-right-radius:0px;
  10830. border-bottom-right-radius:0px;
  10831. border-bottom-left-radius:0px;
  10832. -moz-box-shadow:none;
  10833. -webkit-box-shadow:none;
  10834. box-shadow:none;
  10835. }
  10836. #u37507 {
  10837. border-width:0px;
  10838. position:absolute;
  10839. left:1398px;
  10840. top:234px;
  10841. width:375px;
  10842. height:180px;
  10843. display:flex;
  10844. }
  10845. #u37507 .text {
  10846. position:absolute;
  10847. align-self:center;
  10848. padding:2px 2px 2px 2px;
  10849. box-sizing:border-box;
  10850. width:100%;
  10851. }
  10852. #u37507_text {
  10853. border-width:0px;
  10854. word-wrap:break-word;
  10855. text-transform:none;
  10856. visibility:hidden;
  10857. }
  10858. #u37508_div {
  10859. border-width:0px;
  10860. position:absolute;
  10861. left:0px;
  10862. top:0px;
  10863. width:150px;
  10864. height:150px;
  10865. background:inherit;
  10866. background-color:rgba(255, 255, 255, 0);
  10867. border:none;
  10868. border-left:0px;
  10869. border-top:0px;
  10870. border-right:0px;
  10871. border-radius:0px;
  10872. border-bottom-right-radius:0px;
  10873. border-bottom-left-radius:0px;
  10874. -moz-box-shadow:none;
  10875. -webkit-box-shadow:none;
  10876. box-shadow:none;
  10877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10878. font-weight:400;
  10879. font-style:normal;
  10880. font-size:12px;
  10881. line-height:25px;
  10882. }
  10883. #u37508 {
  10884. border-width:0px;
  10885. position:absolute;
  10886. left:1422px;
  10887. top:248px;
  10888. width:150px;
  10889. height:150px;
  10890. display:flex;
  10891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10892. font-weight:400;
  10893. font-style:normal;
  10894. font-size:12px;
  10895. line-height:25px;
  10896. }
  10897. #u37508 .text {
  10898. position:absolute;
  10899. align-self:flex-start;
  10900. padding:0px 0px 0px 0px;
  10901. box-sizing:border-box;
  10902. width:100%;
  10903. }
  10904. #u37508_text {
  10905. border-width:0px;
  10906. white-space:nowrap;
  10907. text-transform:none;
  10908. }
  10909. #u37510_img {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:0px;
  10913. top:0px;
  10914. width:433px;
  10915. height:865px;
  10916. }
  10917. #u37510 {
  10918. border-width:0px;
  10919. position:absolute;
  10920. left:1832px;
  10921. top:0px;
  10922. width:433px;
  10923. height:865px;
  10924. display:flex;
  10925. }
  10926. #u37510 .text {
  10927. position:absolute;
  10928. align-self:center;
  10929. padding:2px 2px 2px 2px;
  10930. box-sizing:border-box;
  10931. width:100%;
  10932. }
  10933. #u37510_text {
  10934. border-width:0px;
  10935. word-wrap:break-word;
  10936. text-transform:none;
  10937. visibility:hidden;
  10938. }
  10939. #u37511_div {
  10940. border-width:0px;
  10941. position:absolute;
  10942. left:0px;
  10943. top:0px;
  10944. width:375px;
  10945. height:40px;
  10946. background:inherit;
  10947. background-color:rgba(255, 255, 255, 1);
  10948. border:none;
  10949. border-left:0px;
  10950. border-top:0px;
  10951. border-right:0px;
  10952. border-radius:0px;
  10953. border-bottom-right-radius:0px;
  10954. border-bottom-left-radius:0px;
  10955. -moz-box-shadow:none;
  10956. -webkit-box-shadow:none;
  10957. box-shadow:none;
  10958. }
  10959. #u37511 {
  10960. border-width:0px;
  10961. position:absolute;
  10962. left:1861px;
  10963. top:67px;
  10964. width:375px;
  10965. height:40px;
  10966. display:flex;
  10967. }
  10968. #u37511 .text {
  10969. position:absolute;
  10970. align-self:center;
  10971. padding:2px 2px 2px 2px;
  10972. box-sizing:border-box;
  10973. width:100%;
  10974. }
  10975. #u37511_text {
  10976. border-width:0px;
  10977. word-wrap:break-word;
  10978. text-transform:none;
  10979. visibility:hidden;
  10980. }
  10981. #u37512 {
  10982. border-width:0px;
  10983. position:absolute;
  10984. left:0px;
  10985. top:0px;
  10986. width:0px;
  10987. height:0px;
  10988. }
  10989. #u37513_div {
  10990. border-width:0px;
  10991. position:absolute;
  10992. left:0px;
  10993. top:0px;
  10994. width:88px;
  10995. height:32px;
  10996. background:inherit;
  10997. background-color:rgba(255, 255, 255, 1);
  10998. box-sizing:border-box;
  10999. border-width:1px;
  11000. border-style:solid;
  11001. border-color:rgba(242, 242, 242, 1);
  11002. border-radius:33px;
  11003. -moz-box-shadow:none;
  11004. -webkit-box-shadow:none;
  11005. box-shadow:none;
  11006. }
  11007. #u37513 {
  11008. border-width:0px;
  11009. position:absolute;
  11010. left:2141px;
  11011. top:71px;
  11012. width:88px;
  11013. height:32px;
  11014. display:flex;
  11015. }
  11016. #u37513 .text {
  11017. position:absolute;
  11018. align-self:center;
  11019. padding:2px 2px 2px 2px;
  11020. box-sizing:border-box;
  11021. width:100%;
  11022. }
  11023. #u37513_text {
  11024. border-width:0px;
  11025. word-wrap:break-word;
  11026. text-transform:none;
  11027. visibility:hidden;
  11028. }
  11029. #u37514 {
  11030. border-width:0px;
  11031. position:absolute;
  11032. left:0px;
  11033. top:0px;
  11034. width:0px;
  11035. height:0px;
  11036. }
  11037. #u37515_img {
  11038. border-width:0px;
  11039. position:absolute;
  11040. left:0px;
  11041. top:0px;
  11042. width:18px;
  11043. height:18px;
  11044. }
  11045. #u37515 {
  11046. border-width:0px;
  11047. position:absolute;
  11048. left:2204px;
  11049. top:78px;
  11050. width:18px;
  11051. height:18px;
  11052. display:flex;
  11053. }
  11054. #u37515 .text {
  11055. position:absolute;
  11056. align-self:center;
  11057. padding:2px 2px 2px 2px;
  11058. box-sizing:border-box;
  11059. width:100%;
  11060. }
  11061. #u37515_text {
  11062. border-width:0px;
  11063. word-wrap:break-word;
  11064. text-transform:none;
  11065. visibility:hidden;
  11066. }
  11067. #u37516_img {
  11068. border-width:0px;
  11069. position:absolute;
  11070. left:0px;
  11071. top:0px;
  11072. width:6px;
  11073. height:6px;
  11074. }
  11075. #u37516 {
  11076. border-width:0px;
  11077. position:absolute;
  11078. left:2210px;
  11079. top:84px;
  11080. width:6px;
  11081. height:6px;
  11082. display:flex;
  11083. }
  11084. #u37516 .text {
  11085. position:absolute;
  11086. align-self:center;
  11087. padding:2px 2px 2px 2px;
  11088. box-sizing:border-box;
  11089. width:100%;
  11090. }
  11091. #u37516_text {
  11092. border-width:0px;
  11093. word-wrap:break-word;
  11094. text-transform:none;
  11095. visibility:hidden;
  11096. }
  11097. #u37517 {
  11098. border-width:0px;
  11099. position:absolute;
  11100. left:0px;
  11101. top:0px;
  11102. width:0px;
  11103. height:0px;
  11104. }
  11105. #u37518_img {
  11106. border-width:0px;
  11107. position:absolute;
  11108. left:0px;
  11109. top:0px;
  11110. width:5px;
  11111. height:5px;
  11112. }
  11113. #u37518 {
  11114. border-width:0px;
  11115. position:absolute;
  11116. left:2155px;
  11117. top:85px;
  11118. width:5px;
  11119. height:5px;
  11120. display:flex;
  11121. }
  11122. #u37518 .text {
  11123. position:absolute;
  11124. align-self:center;
  11125. padding:2px 2px 2px 2px;
  11126. box-sizing:border-box;
  11127. width:100%;
  11128. }
  11129. #u37518_text {
  11130. border-width:0px;
  11131. word-wrap:break-word;
  11132. text-transform:none;
  11133. visibility:hidden;
  11134. }
  11135. #u37519_img {
  11136. border-width:0px;
  11137. position:absolute;
  11138. left:0px;
  11139. top:0px;
  11140. width:5px;
  11141. height:5px;
  11142. }
  11143. #u37519 {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:2171px;
  11147. top:85px;
  11148. width:5px;
  11149. height:5px;
  11150. display:flex;
  11151. }
  11152. #u37519 .text {
  11153. position:absolute;
  11154. align-self:center;
  11155. padding:2px 2px 2px 2px;
  11156. box-sizing:border-box;
  11157. width:100%;
  11158. }
  11159. #u37519_text {
  11160. border-width:0px;
  11161. word-wrap:break-word;
  11162. text-transform:none;
  11163. visibility:hidden;
  11164. }
  11165. #u37520_img {
  11166. border-width:0px;
  11167. position:absolute;
  11168. left:0px;
  11169. top:0px;
  11170. width:7px;
  11171. height:7px;
  11172. }
  11173. #u37520 {
  11174. border-width:0px;
  11175. position:absolute;
  11176. left:2162px;
  11177. top:84px;
  11178. width:7px;
  11179. height:7px;
  11180. display:flex;
  11181. }
  11182. #u37520 .text {
  11183. position:absolute;
  11184. align-self:center;
  11185. padding:2px 2px 2px 2px;
  11186. box-sizing:border-box;
  11187. width:100%;
  11188. }
  11189. #u37520_text {
  11190. border-width:0px;
  11191. word-wrap:break-word;
  11192. text-transform:none;
  11193. visibility:hidden;
  11194. }
  11195. #u37521_img {
  11196. border-width:0px;
  11197. position:absolute;
  11198. left:0px;
  11199. top:0px;
  11200. width:19px;
  11201. height:2px;
  11202. }
  11203. #u37521 {
  11204. border-width:0px;
  11205. position:absolute;
  11206. left:2179px;
  11207. top:87px;
  11208. width:18px;
  11209. height:1px;
  11210. display:flex;
  11211. -webkit-transform:rotate(90deg);
  11212. -moz-transform:rotate(90deg);
  11213. -ms-transform:rotate(90deg);
  11214. transform:rotate(90deg);
  11215. }
  11216. #u37521 .text {
  11217. position:absolute;
  11218. align-self:center;
  11219. padding:2px 2px 2px 2px;
  11220. box-sizing:border-box;
  11221. width:100%;
  11222. }
  11223. #u37521_text {
  11224. border-width:0px;
  11225. word-wrap:break-word;
  11226. text-transform:none;
  11227. visibility:hidden;
  11228. }
  11229. #u37522_img {
  11230. border-width:0px;
  11231. position:absolute;
  11232. left:0px;
  11233. top:0px;
  11234. width:375px;
  11235. height:44px;
  11236. }
  11237. #u37522 {
  11238. border-width:0px;
  11239. position:absolute;
  11240. left:1861px;
  11241. top:24px;
  11242. width:375px;
  11243. height:44px;
  11244. display:flex;
  11245. }
  11246. #u37522 .text {
  11247. position:absolute;
  11248. align-self:center;
  11249. padding:2px 2px 2px 2px;
  11250. box-sizing:border-box;
  11251. width:100%;
  11252. }
  11253. #u37522_text {
  11254. border-width:0px;
  11255. word-wrap:break-word;
  11256. text-transform:none;
  11257. visibility:hidden;
  11258. }
  11259. #u37523_div {
  11260. border-width:0px;
  11261. position:absolute;
  11262. left:0px;
  11263. top:0px;
  11264. width:375px;
  11265. height:50px;
  11266. background:inherit;
  11267. background-color:rgba(255, 255, 255, 1);
  11268. box-sizing:border-box;
  11269. border-width:1px;
  11270. border-style:solid;
  11271. border-color:rgba(242, 242, 242, 1);
  11272. border-radius:26px;
  11273. border-top-left-radius:0px;
  11274. border-top-right-radius:0px;
  11275. -moz-box-shadow:none;
  11276. -webkit-box-shadow:none;
  11277. box-shadow:none;
  11278. }
  11279. #u37523 {
  11280. border-width:0px;
  11281. position:absolute;
  11282. left:1861px;
  11283. top:788px;
  11284. width:375px;
  11285. height:50px;
  11286. display:flex;
  11287. }
  11288. #u37523 .text {
  11289. position:absolute;
  11290. align-self:center;
  11291. padding:2px 2px 2px 2px;
  11292. box-sizing:border-box;
  11293. width:100%;
  11294. }
  11295. #u37523_text {
  11296. border-width:0px;
  11297. word-wrap:break-word;
  11298. text-transform:none;
  11299. visibility:hidden;
  11300. }
  11301. #u37524 {
  11302. border-width:0px;
  11303. position:absolute;
  11304. left:0px;
  11305. top:0px;
  11306. width:0px;
  11307. height:0px;
  11308. }
  11309. #u37525_img {
  11310. border-width:0px;
  11311. position:absolute;
  11312. left:0px;
  11313. top:0px;
  11314. width:24px;
  11315. height:24px;
  11316. }
  11317. #u37525 {
  11318. border-width:0px;
  11319. position:absolute;
  11320. left:1901px;
  11321. top:792px;
  11322. width:24px;
  11323. height:24px;
  11324. display:flex;
  11325. font-size:8px;
  11326. }
  11327. #u37525 .text {
  11328. position:absolute;
  11329. align-self:center;
  11330. padding:2px 2px 2px 2px;
  11331. box-sizing:border-box;
  11332. width:100%;
  11333. }
  11334. #u37525_text {
  11335. border-width:0px;
  11336. word-wrap:break-word;
  11337. text-transform:none;
  11338. }
  11339. #u37526_div {
  11340. border-width:0px;
  11341. position:absolute;
  11342. left:0px;
  11343. top:0px;
  11344. width:25px;
  11345. height:17px;
  11346. background:inherit;
  11347. background-color:rgba(255, 255, 255, 0);
  11348. border:none;
  11349. border-radius:0px;
  11350. -moz-box-shadow:none;
  11351. -webkit-box-shadow:none;
  11352. box-shadow:none;
  11353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11354. font-weight:400;
  11355. font-style:normal;
  11356. font-size:12px;
  11357. }
  11358. #u37526 {
  11359. border-width:0px;
  11360. position:absolute;
  11361. left:1901px;
  11362. top:817px;
  11363. width:25px;
  11364. height:17px;
  11365. display:flex;
  11366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11367. font-weight:400;
  11368. font-style:normal;
  11369. font-size:12px;
  11370. }
  11371. #u37526 .text {
  11372. position:absolute;
  11373. align-self:flex-start;
  11374. padding:0px 0px 0px 0px;
  11375. box-sizing:border-box;
  11376. width:100%;
  11377. }
  11378. #u37526_text {
  11379. border-width:0px;
  11380. white-space:nowrap;
  11381. text-transform:none;
  11382. }
  11383. #u37527 {
  11384. border-width:0px;
  11385. position:absolute;
  11386. left:0px;
  11387. top:0px;
  11388. width:0px;
  11389. height:0px;
  11390. }
  11391. #u37528_img {
  11392. border-width:0px;
  11393. position:absolute;
  11394. left:0px;
  11395. top:0px;
  11396. width:24px;
  11397. height:24px;
  11398. }
  11399. #u37528 {
  11400. border-width:0px;
  11401. position:absolute;
  11402. left:2171px;
  11403. top:794px;
  11404. width:24px;
  11405. height:24px;
  11406. display:flex;
  11407. font-size:8px;
  11408. }
  11409. #u37528 .text {
  11410. position:absolute;
  11411. align-self:center;
  11412. padding:2px 2px 2px 2px;
  11413. box-sizing:border-box;
  11414. width:100%;
  11415. }
  11416. #u37528_text {
  11417. border-width:0px;
  11418. word-wrap:break-word;
  11419. text-transform:none;
  11420. }
  11421. #u37529_div {
  11422. border-width:0px;
  11423. position:absolute;
  11424. left:0px;
  11425. top:0px;
  11426. width:25px;
  11427. height:17px;
  11428. background:inherit;
  11429. background-color:rgba(255, 255, 255, 0);
  11430. border:none;
  11431. border-radius:0px;
  11432. -moz-box-shadow:none;
  11433. -webkit-box-shadow:none;
  11434. box-shadow:none;
  11435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11436. font-weight:400;
  11437. font-style:normal;
  11438. font-size:12px;
  11439. }
  11440. #u37529 {
  11441. border-width:0px;
  11442. position:absolute;
  11443. left:2171px;
  11444. top:819px;
  11445. width:25px;
  11446. height:17px;
  11447. display:flex;
  11448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11449. font-weight:400;
  11450. font-style:normal;
  11451. font-size:12px;
  11452. }
  11453. #u37529 .text {
  11454. position:absolute;
  11455. align-self:flex-start;
  11456. padding:0px 0px 0px 0px;
  11457. box-sizing:border-box;
  11458. width:100%;
  11459. }
  11460. #u37529_text {
  11461. border-width:0px;
  11462. white-space:nowrap;
  11463. text-transform:none;
  11464. }
  11465. #u37530_div {
  11466. border-width:0px;
  11467. position:absolute;
  11468. left:0px;
  11469. top:0px;
  11470. width:375px;
  11471. height:681px;
  11472. background:inherit;
  11473. background-color:rgba(242, 242, 242, 0.462745098039216);
  11474. border:none;
  11475. border-radius:0px;
  11476. -moz-box-shadow:none;
  11477. -webkit-box-shadow:none;
  11478. box-shadow:none;
  11479. }
  11480. #u37530 {
  11481. border-width:0px;
  11482. position:absolute;
  11483. left:1861px;
  11484. top:107px;
  11485. width:375px;
  11486. height:681px;
  11487. display:flex;
  11488. }
  11489. #u37530 .text {
  11490. position:absolute;
  11491. align-self:center;
  11492. padding:2px 2px 2px 2px;
  11493. box-sizing:border-box;
  11494. width:100%;
  11495. }
  11496. #u37530_text {
  11497. border-width:0px;
  11498. word-wrap:break-word;
  11499. text-transform:none;
  11500. visibility:hidden;
  11501. }
  11502. #u37531 {
  11503. border-width:0px;
  11504. position:absolute;
  11505. left:0px;
  11506. top:0px;
  11507. width:0px;
  11508. height:0px;
  11509. }
  11510. #u37532_img {
  11511. border-width:0px;
  11512. position:absolute;
  11513. left:0px;
  11514. top:0px;
  11515. width:24px;
  11516. height:24px;
  11517. }
  11518. #u37532 {
  11519. border-width:0px;
  11520. position:absolute;
  11521. left:2083px;
  11522. top:792px;
  11523. width:24px;
  11524. height:24px;
  11525. display:flex;
  11526. font-size:8px;
  11527. }
  11528. #u37532 .text {
  11529. position:absolute;
  11530. align-self:center;
  11531. padding:2px 2px 2px 2px;
  11532. box-sizing:border-box;
  11533. width:100%;
  11534. }
  11535. #u37532_text {
  11536. border-width:0px;
  11537. word-wrap:break-word;
  11538. text-transform:none;
  11539. }
  11540. #u37533_div {
  11541. border-width:0px;
  11542. position:absolute;
  11543. left:0px;
  11544. top:0px;
  11545. width:37px;
  11546. height:17px;
  11547. background:inherit;
  11548. background-color:rgba(255, 255, 255, 0);
  11549. border:none;
  11550. border-radius:0px;
  11551. -moz-box-shadow:none;
  11552. -webkit-box-shadow:none;
  11553. box-shadow:none;
  11554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11555. font-weight:400;
  11556. font-style:normal;
  11557. font-size:12px;
  11558. }
  11559. #u37533 {
  11560. border-width:0px;
  11561. position:absolute;
  11562. left:2077px;
  11563. top:817px;
  11564. width:37px;
  11565. height:17px;
  11566. display:flex;
  11567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11568. font-weight:400;
  11569. font-style:normal;
  11570. font-size:12px;
  11571. }
  11572. #u37533 .text {
  11573. position:absolute;
  11574. align-self:flex-start;
  11575. padding:0px 0px 0px 0px;
  11576. box-sizing:border-box;
  11577. width:100%;
  11578. }
  11579. #u37533_text {
  11580. border-width:0px;
  11581. white-space:nowrap;
  11582. text-transform:none;
  11583. }
  11584. #u37534 {
  11585. border-width:0px;
  11586. position:absolute;
  11587. left:0px;
  11588. top:0px;
  11589. width:0px;
  11590. height:0px;
  11591. }
  11592. #u37535_img {
  11593. border-width:0px;
  11594. position:absolute;
  11595. left:0px;
  11596. top:0px;
  11597. width:24px;
  11598. height:24px;
  11599. }
  11600. #u37535 {
  11601. border-width:0px;
  11602. position:absolute;
  11603. left:1989px;
  11604. top:792px;
  11605. width:24px;
  11606. height:24px;
  11607. display:flex;
  11608. font-size:8px;
  11609. }
  11610. #u37535 .text {
  11611. position:absolute;
  11612. align-self:center;
  11613. padding:2px 2px 2px 2px;
  11614. box-sizing:border-box;
  11615. width:100%;
  11616. }
  11617. #u37535_text {
  11618. border-width:0px;
  11619. word-wrap:break-word;
  11620. text-transform:none;
  11621. }
  11622. #u37536_div {
  11623. border-width:0px;
  11624. position:absolute;
  11625. left:0px;
  11626. top:0px;
  11627. width:37px;
  11628. height:17px;
  11629. background:inherit;
  11630. background-color:rgba(255, 255, 255, 0);
  11631. border:none;
  11632. border-radius:0px;
  11633. -moz-box-shadow:none;
  11634. -webkit-box-shadow:none;
  11635. box-shadow:none;
  11636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11637. font-weight:400;
  11638. font-style:normal;
  11639. font-size:12px;
  11640. }
  11641. #u37536 {
  11642. border-width:0px;
  11643. position:absolute;
  11644. left:1983px;
  11645. top:817px;
  11646. width:37px;
  11647. height:17px;
  11648. display:flex;
  11649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11650. font-weight:400;
  11651. font-style:normal;
  11652. font-size:12px;
  11653. }
  11654. #u37536 .text {
  11655. position:absolute;
  11656. align-self:flex-start;
  11657. padding:0px 0px 0px 0px;
  11658. box-sizing:border-box;
  11659. width:100%;
  11660. }
  11661. #u37536_text {
  11662. border-width:0px;
  11663. white-space:nowrap;
  11664. text-transform:none;
  11665. }
  11666. #u37537_div {
  11667. border-width:0px;
  11668. position:absolute;
  11669. left:0px;
  11670. top:0px;
  11671. width:375px;
  11672. height:732px;
  11673. background:inherit;
  11674. background-color:rgba(242, 242, 242, 0.996078431372549);
  11675. border:none;
  11676. border-top:0px;
  11677. border-radius:28px;
  11678. border-top-left-radius:0px;
  11679. border-top-right-radius:0px;
  11680. -moz-box-shadow:none;
  11681. -webkit-box-shadow:none;
  11682. box-shadow:none;
  11683. }
  11684. #u37537 {
  11685. border-width:0px;
  11686. position:absolute;
  11687. left:1861px;
  11688. top:107px;
  11689. width:375px;
  11690. height:732px;
  11691. display:flex;
  11692. }
  11693. #u37537 .text {
  11694. position:absolute;
  11695. align-self:center;
  11696. padding:2px 2px 2px 2px;
  11697. box-sizing:border-box;
  11698. width:100%;
  11699. }
  11700. #u37537_text {
  11701. border-width:0px;
  11702. word-wrap:break-word;
  11703. text-transform:none;
  11704. visibility:hidden;
  11705. }
  11706. #u37538_div {
  11707. border-width:0px;
  11708. position:absolute;
  11709. left:0px;
  11710. top:0px;
  11711. width:375px;
  11712. height:125px;
  11713. background:inherit;
  11714. background-color:rgba(255, 255, 255, 1);
  11715. border:none;
  11716. border-left:0px;
  11717. border-top:0px;
  11718. border-right:0px;
  11719. border-radius:0px;
  11720. border-bottom-right-radius:0px;
  11721. border-bottom-left-radius:0px;
  11722. -moz-box-shadow:none;
  11723. -webkit-box-shadow:none;
  11724. box-shadow:none;
  11725. }
  11726. #u37538 {
  11727. border-width:0px;
  11728. position:absolute;
  11729. left:1861px;
  11730. top:108px;
  11731. width:375px;
  11732. height:125px;
  11733. display:flex;
  11734. }
  11735. #u37538 .text {
  11736. position:absolute;
  11737. align-self:center;
  11738. padding:2px 2px 2px 2px;
  11739. box-sizing:border-box;
  11740. width:100%;
  11741. }
  11742. #u37538_text {
  11743. border-width:0px;
  11744. word-wrap:break-word;
  11745. text-transform:none;
  11746. visibility:hidden;
  11747. }
  11748. #u37539_div {
  11749. border-width:0px;
  11750. position:absolute;
  11751. left:0px;
  11752. top:0px;
  11753. width:43px;
  11754. height:20px;
  11755. background:inherit;
  11756. background-color:rgba(255, 255, 255, 0);
  11757. border:none;
  11758. border-radius:0px;
  11759. -moz-box-shadow:none;
  11760. -webkit-box-shadow:none;
  11761. box-shadow:none;
  11762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11763. font-weight:400;
  11764. font-style:normal;
  11765. color:#0089FE;
  11766. }
  11767. #u37539 {
  11768. border-width:0px;
  11769. position:absolute;
  11770. left:2174px;
  11771. top:124px;
  11772. width:43px;
  11773. height:20px;
  11774. display:flex;
  11775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11776. font-weight:400;
  11777. font-style:normal;
  11778. color:#0089FE;
  11779. }
  11780. #u37539 .text {
  11781. position:absolute;
  11782. align-self:flex-start;
  11783. padding:0px 0px 0px 0px;
  11784. box-sizing:border-box;
  11785. width:100%;
  11786. }
  11787. #u37539_text {
  11788. border-width:0px;
  11789. white-space:nowrap;
  11790. text-transform:none;
  11791. }
  11792. #u37540_div {
  11793. border-width:0px;
  11794. position:absolute;
  11795. left:0px;
  11796. top:0px;
  11797. width:124px;
  11798. height:30px;
  11799. background:inherit;
  11800. background-color:rgba(255, 255, 255, 0);
  11801. border:none;
  11802. border-left:0px;
  11803. border-top:0px;
  11804. border-right:0px;
  11805. border-radius:0px;
  11806. border-bottom-right-radius:0px;
  11807. border-bottom-left-radius:0px;
  11808. -moz-box-shadow:none;
  11809. -webkit-box-shadow:none;
  11810. box-shadow:none;
  11811. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11812. font-weight:500;
  11813. font-style:normal;
  11814. font-size:14px;
  11815. line-height:30px;
  11816. }
  11817. #u37540 {
  11818. border-width:0px;
  11819. position:absolute;
  11820. left:1874px;
  11821. top:118px;
  11822. width:124px;
  11823. height:30px;
  11824. display:flex;
  11825. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11826. font-weight:500;
  11827. font-style:normal;
  11828. font-size:14px;
  11829. line-height:30px;
  11830. }
  11831. #u37540 .text {
  11832. position:absolute;
  11833. align-self:flex-start;
  11834. padding:0px 0px 0px 0px;
  11835. box-sizing:border-box;
  11836. width:100%;
  11837. }
  11838. #u37540_text {
  11839. border-width:0px;
  11840. white-space:nowrap;
  11841. text-transform:none;
  11842. }
  11843. #u37541_div {
  11844. border-width:0px;
  11845. position:absolute;
  11846. left:0px;
  11847. top:0px;
  11848. width:167px;
  11849. height:75px;
  11850. background:inherit;
  11851. background-color:rgba(255, 255, 255, 0);
  11852. border:none;
  11853. border-left:0px;
  11854. border-top:0px;
  11855. border-right:0px;
  11856. border-radius:0px;
  11857. border-bottom-right-radius:0px;
  11858. border-bottom-left-radius:0px;
  11859. -moz-box-shadow:none;
  11860. -webkit-box-shadow:none;
  11861. box-shadow:none;
  11862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11863. font-weight:400;
  11864. font-style:normal;
  11865. font-size:12px;
  11866. line-height:25px;
  11867. }
  11868. #u37541 {
  11869. border-width:0px;
  11870. position:absolute;
  11871. left:1874px;
  11872. top:148px;
  11873. width:167px;
  11874. height:75px;
  11875. display:flex;
  11876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11877. font-weight:400;
  11878. font-style:normal;
  11879. font-size:12px;
  11880. line-height:25px;
  11881. }
  11882. #u37541 .text {
  11883. position:absolute;
  11884. align-self:flex-start;
  11885. padding:0px 0px 0px 0px;
  11886. box-sizing:border-box;
  11887. width:100%;
  11888. }
  11889. #u37541_text {
  11890. border-width:0px;
  11891. white-space:nowrap;
  11892. text-transform:none;
  11893. }
  11894. #u37542_div {
  11895. border-width:0px;
  11896. position:absolute;
  11897. left:0px;
  11898. top:0px;
  11899. width:375px;
  11900. height:41px;
  11901. background:inherit;
  11902. background-color:rgba(255, 255, 255, 1);
  11903. box-sizing:border-box;
  11904. border-width:1px;
  11905. border-style:solid;
  11906. border-color:rgba(215, 215, 215, 1);
  11907. border-left:0px;
  11908. border-top:0px;
  11909. border-right:0px;
  11910. border-radius:0px;
  11911. border-bottom-right-radius:0px;
  11912. border-bottom-left-radius:0px;
  11913. -moz-box-shadow:none;
  11914. -webkit-box-shadow:none;
  11915. box-shadow:none;
  11916. }
  11917. #u37542 {
  11918. border-width:0px;
  11919. position:absolute;
  11920. left:1861px;
  11921. top:67px;
  11922. width:375px;
  11923. height:41px;
  11924. display:flex;
  11925. }
  11926. #u37542 .text {
  11927. position:absolute;
  11928. align-self:center;
  11929. padding:2px 2px 2px 2px;
  11930. box-sizing:border-box;
  11931. width:100%;
  11932. }
  11933. #u37542_text {
  11934. border-width:0px;
  11935. word-wrap:break-word;
  11936. text-transform:none;
  11937. visibility:hidden;
  11938. }
  11939. #u37543 {
  11940. border-width:0px;
  11941. position:absolute;
  11942. left:0px;
  11943. top:0px;
  11944. width:0px;
  11945. height:0px;
  11946. }
  11947. #u37544_div {
  11948. border-width:0px;
  11949. position:absolute;
  11950. left:0px;
  11951. top:0px;
  11952. width:88px;
  11953. height:32px;
  11954. background:inherit;
  11955. background-color:rgba(255, 255, 255, 1);
  11956. box-sizing:border-box;
  11957. border-width:1px;
  11958. border-style:solid;
  11959. border-color:rgba(242, 242, 242, 1);
  11960. border-radius:33px;
  11961. -moz-box-shadow:none;
  11962. -webkit-box-shadow:none;
  11963. box-shadow:none;
  11964. }
  11965. #u37544 {
  11966. border-width:0px;
  11967. position:absolute;
  11968. left:2141px;
  11969. top:71px;
  11970. width:88px;
  11971. height:32px;
  11972. display:flex;
  11973. }
  11974. #u37544 .text {
  11975. position:absolute;
  11976. align-self:center;
  11977. padding:2px 2px 2px 2px;
  11978. box-sizing:border-box;
  11979. width:100%;
  11980. }
  11981. #u37544_text {
  11982. border-width:0px;
  11983. word-wrap:break-word;
  11984. text-transform:none;
  11985. visibility:hidden;
  11986. }
  11987. #u37545 {
  11988. border-width:0px;
  11989. position:absolute;
  11990. left:0px;
  11991. top:0px;
  11992. width:0px;
  11993. height:0px;
  11994. }
  11995. #u37546_img {
  11996. border-width:0px;
  11997. position:absolute;
  11998. left:0px;
  11999. top:0px;
  12000. width:18px;
  12001. height:18px;
  12002. }
  12003. #u37546 {
  12004. border-width:0px;
  12005. position:absolute;
  12006. left:2204px;
  12007. top:78px;
  12008. width:18px;
  12009. height:18px;
  12010. display:flex;
  12011. }
  12012. #u37546 .text {
  12013. position:absolute;
  12014. align-self:center;
  12015. padding:2px 2px 2px 2px;
  12016. box-sizing:border-box;
  12017. width:100%;
  12018. }
  12019. #u37546_text {
  12020. border-width:0px;
  12021. word-wrap:break-word;
  12022. text-transform:none;
  12023. visibility:hidden;
  12024. }
  12025. #u37547_img {
  12026. border-width:0px;
  12027. position:absolute;
  12028. left:0px;
  12029. top:0px;
  12030. width:6px;
  12031. height:6px;
  12032. }
  12033. #u37547 {
  12034. border-width:0px;
  12035. position:absolute;
  12036. left:2210px;
  12037. top:84px;
  12038. width:6px;
  12039. height:6px;
  12040. display:flex;
  12041. }
  12042. #u37547 .text {
  12043. position:absolute;
  12044. align-self:center;
  12045. padding:2px 2px 2px 2px;
  12046. box-sizing:border-box;
  12047. width:100%;
  12048. }
  12049. #u37547_text {
  12050. border-width:0px;
  12051. word-wrap:break-word;
  12052. text-transform:none;
  12053. visibility:hidden;
  12054. }
  12055. #u37548 {
  12056. border-width:0px;
  12057. position:absolute;
  12058. left:0px;
  12059. top:0px;
  12060. width:0px;
  12061. height:0px;
  12062. }
  12063. #u37549_img {
  12064. border-width:0px;
  12065. position:absolute;
  12066. left:0px;
  12067. top:0px;
  12068. width:5px;
  12069. height:5px;
  12070. }
  12071. #u37549 {
  12072. border-width:0px;
  12073. position:absolute;
  12074. left:2155px;
  12075. top:85px;
  12076. width:5px;
  12077. height:5px;
  12078. display:flex;
  12079. }
  12080. #u37549 .text {
  12081. position:absolute;
  12082. align-self:center;
  12083. padding:2px 2px 2px 2px;
  12084. box-sizing:border-box;
  12085. width:100%;
  12086. }
  12087. #u37549_text {
  12088. border-width:0px;
  12089. word-wrap:break-word;
  12090. text-transform:none;
  12091. visibility:hidden;
  12092. }
  12093. #u37550_img {
  12094. border-width:0px;
  12095. position:absolute;
  12096. left:0px;
  12097. top:0px;
  12098. width:5px;
  12099. height:5px;
  12100. }
  12101. #u37550 {
  12102. border-width:0px;
  12103. position:absolute;
  12104. left:2171px;
  12105. top:85px;
  12106. width:5px;
  12107. height:5px;
  12108. display:flex;
  12109. }
  12110. #u37550 .text {
  12111. position:absolute;
  12112. align-self:center;
  12113. padding:2px 2px 2px 2px;
  12114. box-sizing:border-box;
  12115. width:100%;
  12116. }
  12117. #u37550_text {
  12118. border-width:0px;
  12119. word-wrap:break-word;
  12120. text-transform:none;
  12121. visibility:hidden;
  12122. }
  12123. #u37551_img {
  12124. border-width:0px;
  12125. position:absolute;
  12126. left:0px;
  12127. top:0px;
  12128. width:7px;
  12129. height:7px;
  12130. }
  12131. #u37551 {
  12132. border-width:0px;
  12133. position:absolute;
  12134. left:2162px;
  12135. top:84px;
  12136. width:7px;
  12137. height:7px;
  12138. display:flex;
  12139. }
  12140. #u37551 .text {
  12141. position:absolute;
  12142. align-self:center;
  12143. padding:2px 2px 2px 2px;
  12144. box-sizing:border-box;
  12145. width:100%;
  12146. }
  12147. #u37551_text {
  12148. border-width:0px;
  12149. word-wrap:break-word;
  12150. text-transform:none;
  12151. visibility:hidden;
  12152. }
  12153. #u37552_img {
  12154. border-width:0px;
  12155. position:absolute;
  12156. left:0px;
  12157. top:0px;
  12158. width:19px;
  12159. height:2px;
  12160. }
  12161. #u37552 {
  12162. border-width:0px;
  12163. position:absolute;
  12164. left:2179px;
  12165. top:87px;
  12166. width:18px;
  12167. height:1px;
  12168. display:flex;
  12169. -webkit-transform:rotate(90deg);
  12170. -moz-transform:rotate(90deg);
  12171. -ms-transform:rotate(90deg);
  12172. transform:rotate(90deg);
  12173. }
  12174. #u37552 .text {
  12175. position:absolute;
  12176. align-self:center;
  12177. padding:2px 2px 2px 2px;
  12178. box-sizing:border-box;
  12179. width:100%;
  12180. }
  12181. #u37552_text {
  12182. border-width:0px;
  12183. word-wrap:break-word;
  12184. text-transform:none;
  12185. visibility:hidden;
  12186. }
  12187. #u37553_div {
  12188. border-width:0px;
  12189. position:absolute;
  12190. left:0px;
  12191. top:0px;
  12192. width:12px;
  12193. height:12px;
  12194. background:inherit;
  12195. background-color:rgba(255, 255, 255, 0);
  12196. box-sizing:border-box;
  12197. border-width:2px;
  12198. border-style:solid;
  12199. border-color:rgba(51, 51, 51, 1);
  12200. border-right:0px;
  12201. border-bottom:0px;
  12202. border-radius:0px;
  12203. border-top-right-radius:0px;
  12204. border-bottom-left-radius:0px;
  12205. -moz-box-shadow:none;
  12206. -webkit-box-shadow:none;
  12207. box-shadow:none;
  12208. }
  12209. #u37553 {
  12210. border-width:0px;
  12211. position:absolute;
  12212. left:1876px;
  12213. top:81px;
  12214. width:12px;
  12215. height:12px;
  12216. display:flex;
  12217. -webkit-transform:rotate(315deg);
  12218. -moz-transform:rotate(315deg);
  12219. -ms-transform:rotate(315deg);
  12220. transform:rotate(315deg);
  12221. }
  12222. #u37553 .text {
  12223. position:absolute;
  12224. align-self:center;
  12225. padding:2px 2px 2px 2px;
  12226. box-sizing:border-box;
  12227. width:100%;
  12228. }
  12229. #u37553_text {
  12230. border-width:0px;
  12231. word-wrap:break-word;
  12232. text-transform:none;
  12233. visibility:hidden;
  12234. }
  12235. #u37554_div {
  12236. border-width:0px;
  12237. position:absolute;
  12238. left:0px;
  12239. top:0px;
  12240. width:73px;
  12241. height:25px;
  12242. background:inherit;
  12243. background-color:rgba(255, 255, 255, 0);
  12244. border:none;
  12245. border-radius:0px;
  12246. -moz-box-shadow:none;
  12247. -webkit-box-shadow:none;
  12248. box-shadow:none;
  12249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12250. font-weight:400;
  12251. font-style:normal;
  12252. font-size:18px;
  12253. }
  12254. #u37554 {
  12255. border-width:0px;
  12256. position:absolute;
  12257. left:1896px;
  12258. top:75px;
  12259. width:73px;
  12260. height:25px;
  12261. display:flex;
  12262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12263. font-weight:400;
  12264. font-style:normal;
  12265. font-size:18px;
  12266. }
  12267. #u37554 .text {
  12268. position:absolute;
  12269. align-self:flex-start;
  12270. padding:0px 0px 0px 0px;
  12271. box-sizing:border-box;
  12272. width:100%;
  12273. }
  12274. #u37554_text {
  12275. border-width:0px;
  12276. white-space:nowrap;
  12277. text-transform:none;
  12278. }
  12279. #u37555 {
  12280. border-width:0px;
  12281. position:absolute;
  12282. left:0px;
  12283. top:0px;
  12284. width:0px;
  12285. height:0px;
  12286. }
  12287. #u37556_div {
  12288. border-width:0px;
  12289. position:absolute;
  12290. left:0px;
  12291. top:0px;
  12292. width:375px;
  12293. height:356px;
  12294. background:inherit;
  12295. background-color:rgba(255, 255, 255, 1);
  12296. border:none;
  12297. border-left:0px;
  12298. border-right:0px;
  12299. border-radius:0px;
  12300. border-top-left-radius:0px;
  12301. border-top-right-radius:0px;
  12302. border-bottom-right-radius:0px;
  12303. border-bottom-left-radius:0px;
  12304. -moz-box-shadow:none;
  12305. -webkit-box-shadow:none;
  12306. box-shadow:none;
  12307. }
  12308. #u37556 {
  12309. border-width:0px;
  12310. position:absolute;
  12311. left:1861px;
  12312. top:423px;
  12313. width:375px;
  12314. height:356px;
  12315. display:flex;
  12316. }
  12317. #u37556 .text {
  12318. position:absolute;
  12319. align-self:center;
  12320. padding:2px 2px 2px 2px;
  12321. box-sizing:border-box;
  12322. width:100%;
  12323. }
  12324. #u37556_text {
  12325. border-width:0px;
  12326. word-wrap:break-word;
  12327. text-transform:none;
  12328. visibility:hidden;
  12329. }
  12330. #u37557_div {
  12331. border-width:0px;
  12332. position:absolute;
  12333. left:0px;
  12334. top:0px;
  12335. width:57px;
  12336. height:30px;
  12337. background:inherit;
  12338. background-color:rgba(255, 255, 255, 0);
  12339. border:none;
  12340. border-left:0px;
  12341. border-top:0px;
  12342. border-right:0px;
  12343. border-radius:0px;
  12344. border-bottom-right-radius:0px;
  12345. border-bottom-left-radius:0px;
  12346. -moz-box-shadow:none;
  12347. -webkit-box-shadow:none;
  12348. box-shadow:none;
  12349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12350. font-weight:400;
  12351. font-style:normal;
  12352. font-size:14px;
  12353. line-height:30px;
  12354. }
  12355. #u37557 {
  12356. border-width:0px;
  12357. position:absolute;
  12358. left:1885px;
  12359. top:433px;
  12360. width:57px;
  12361. height:30px;
  12362. display:flex;
  12363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12364. font-weight:400;
  12365. font-style:normal;
  12366. font-size:14px;
  12367. line-height:30px;
  12368. }
  12369. #u37557 .text {
  12370. position:absolute;
  12371. align-self:flex-start;
  12372. padding:0px 0px 0px 0px;
  12373. box-sizing:border-box;
  12374. width:100%;
  12375. }
  12376. #u37557_text {
  12377. border-width:0px;
  12378. white-space:nowrap;
  12379. text-transform:none;
  12380. }
  12381. #u37558_div {
  12382. border-width:0px;
  12383. position:absolute;
  12384. left:0px;
  12385. top:0px;
  12386. width:181px;
  12387. height:30px;
  12388. background:inherit;
  12389. background-color:rgba(255, 255, 255, 0);
  12390. border:none;
  12391. border-left:0px;
  12392. border-top:0px;
  12393. border-right:0px;
  12394. border-radius:0px;
  12395. border-bottom-right-radius:0px;
  12396. border-bottom-left-radius:0px;
  12397. -moz-box-shadow:none;
  12398. -webkit-box-shadow:none;
  12399. box-shadow:none;
  12400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12401. font-weight:400;
  12402. font-style:normal;
  12403. font-size:12px;
  12404. line-height:30px;
  12405. }
  12406. #u37558 {
  12407. border-width:0px;
  12408. position:absolute;
  12409. left:1885px;
  12410. top:463px;
  12411. width:181px;
  12412. height:30px;
  12413. display:flex;
  12414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12415. font-weight:400;
  12416. font-style:normal;
  12417. font-size:12px;
  12418. line-height:30px;
  12419. }
  12420. #u37558 .text {
  12421. position:absolute;
  12422. align-self:flex-start;
  12423. padding:0px 0px 0px 0px;
  12424. box-sizing:border-box;
  12425. width:100%;
  12426. }
  12427. #u37558_text {
  12428. border-width:0px;
  12429. white-space:nowrap;
  12430. text-transform:none;
  12431. }
  12432. #u37559_div {
  12433. border-width:0px;
  12434. position:absolute;
  12435. left:0px;
  12436. top:0px;
  12437. width:167px;
  12438. height:30px;
  12439. background:inherit;
  12440. background-color:rgba(255, 255, 255, 0);
  12441. border:none;
  12442. border-left:0px;
  12443. border-top:0px;
  12444. border-right:0px;
  12445. border-radius:0px;
  12446. border-bottom-right-radius:0px;
  12447. border-bottom-left-radius:0px;
  12448. -moz-box-shadow:none;
  12449. -webkit-box-shadow:none;
  12450. box-shadow:none;
  12451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12452. font-weight:400;
  12453. font-style:normal;
  12454. font-size:12px;
  12455. line-height:30px;
  12456. }
  12457. #u37559 {
  12458. border-width:0px;
  12459. position:absolute;
  12460. left:1885px;
  12461. top:493px;
  12462. width:167px;
  12463. height:30px;
  12464. display:flex;
  12465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12466. font-weight:400;
  12467. font-style:normal;
  12468. font-size:12px;
  12469. line-height:30px;
  12470. }
  12471. #u37559 .text {
  12472. position:absolute;
  12473. align-self:flex-start;
  12474. padding:0px 0px 0px 0px;
  12475. box-sizing:border-box;
  12476. width:100%;
  12477. }
  12478. #u37559_text {
  12479. border-width:0px;
  12480. white-space:nowrap;
  12481. text-transform:none;
  12482. }
  12483. #u37560_img {
  12484. border-width:0px;
  12485. position:absolute;
  12486. left:0px;
  12487. top:0px;
  12488. width:375px;
  12489. height:215px;
  12490. }
  12491. #u37560 {
  12492. border-width:0px;
  12493. position:absolute;
  12494. left:1861px;
  12495. top:564px;
  12496. width:375px;
  12497. height:215px;
  12498. display:flex;
  12499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12500. font-weight:400;
  12501. font-style:normal;
  12502. }
  12503. #u37560 .text {
  12504. position:absolute;
  12505. align-self:center;
  12506. padding:2px 2px 2px 2px;
  12507. box-sizing:border-box;
  12508. width:100%;
  12509. }
  12510. #u37560_text {
  12511. border-width:0px;
  12512. word-wrap:break-word;
  12513. text-transform:none;
  12514. }
  12515. #u37561_div {
  12516. border-width:0px;
  12517. position:absolute;
  12518. left:0px;
  12519. top:0px;
  12520. width:167px;
  12521. height:30px;
  12522. background:inherit;
  12523. background-color:rgba(255, 255, 255, 0);
  12524. border:none;
  12525. border-left:0px;
  12526. border-top:0px;
  12527. border-right:0px;
  12528. border-radius:0px;
  12529. border-bottom-right-radius:0px;
  12530. border-bottom-left-radius:0px;
  12531. -moz-box-shadow:none;
  12532. -webkit-box-shadow:none;
  12533. box-shadow:none;
  12534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12535. font-weight:400;
  12536. font-style:normal;
  12537. font-size:12px;
  12538. line-height:30px;
  12539. }
  12540. #u37561 {
  12541. border-width:0px;
  12542. position:absolute;
  12543. left:1885px;
  12544. top:523px;
  12545. width:167px;
  12546. height:30px;
  12547. display:flex;
  12548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12549. font-weight:400;
  12550. font-style:normal;
  12551. font-size:12px;
  12552. line-height:30px;
  12553. }
  12554. #u37561 .text {
  12555. position:absolute;
  12556. align-self:flex-start;
  12557. padding:0px 0px 0px 0px;
  12558. box-sizing:border-box;
  12559. width:100%;
  12560. }
  12561. #u37561_text {
  12562. border-width:0px;
  12563. white-space:nowrap;
  12564. text-transform:none;
  12565. }
  12566. #u37562_div {
  12567. border-width:0px;
  12568. position:absolute;
  12569. left:0px;
  12570. top:0px;
  12571. width:92px;
  12572. height:30px;
  12573. background:inherit;
  12574. background-color:rgba(255, 255, 255, 0);
  12575. border:none;
  12576. border-left:0px;
  12577. border-top:0px;
  12578. border-right:0px;
  12579. border-radius:0px;
  12580. border-bottom-right-radius:0px;
  12581. border-bottom-left-radius:0px;
  12582. -moz-box-shadow:none;
  12583. -webkit-box-shadow:none;
  12584. box-shadow:none;
  12585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12586. font-weight:400;
  12587. font-style:normal;
  12588. font-size:12px;
  12589. color:#0089FE;
  12590. line-height:30px;
  12591. }
  12592. #u37562 {
  12593. border-width:0px;
  12594. position:absolute;
  12595. left:2130px;
  12596. top:433px;
  12597. width:92px;
  12598. height:30px;
  12599. display:flex;
  12600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12601. font-weight:400;
  12602. font-style:normal;
  12603. font-size:12px;
  12604. color:#0089FE;
  12605. line-height:30px;
  12606. }
  12607. #u37562 .text {
  12608. position:absolute;
  12609. align-self:flex-start;
  12610. padding:0px 0px 0px 0px;
  12611. box-sizing:border-box;
  12612. width:100%;
  12613. }
  12614. #u37562_text {
  12615. border-width:0px;
  12616. white-space:nowrap;
  12617. text-transform:none;
  12618. }
  12619. #u37563 {
  12620. border-width:0px;
  12621. position:absolute;
  12622. left:0px;
  12623. top:0px;
  12624. width:0px;
  12625. height:0px;
  12626. }
  12627. #u37564_div {
  12628. border-width:0px;
  12629. position:absolute;
  12630. left:0px;
  12631. top:0px;
  12632. width:375px;
  12633. height:180px;
  12634. background:inherit;
  12635. background-color:rgba(255, 255, 255, 1);
  12636. border:none;
  12637. border-top:0px;
  12638. border-bottom:0px;
  12639. border-radius:0px;
  12640. border-top-left-radius:0px;
  12641. border-top-right-radius:0px;
  12642. border-bottom-right-radius:0px;
  12643. border-bottom-left-radius:0px;
  12644. -moz-box-shadow:none;
  12645. -webkit-box-shadow:none;
  12646. box-shadow:none;
  12647. }
  12648. #u37564 {
  12649. border-width:0px;
  12650. position:absolute;
  12651. left:1861px;
  12652. top:234px;
  12653. width:375px;
  12654. height:180px;
  12655. display:flex;
  12656. }
  12657. #u37564 .text {
  12658. position:absolute;
  12659. align-self:center;
  12660. padding:2px 2px 2px 2px;
  12661. box-sizing:border-box;
  12662. width:100%;
  12663. }
  12664. #u37564_text {
  12665. border-width:0px;
  12666. word-wrap:break-word;
  12667. text-transform:none;
  12668. visibility:hidden;
  12669. }
  12670. #u37565_div {
  12671. border-width:0px;
  12672. position:absolute;
  12673. left:0px;
  12674. top:0px;
  12675. width:150px;
  12676. height:150px;
  12677. background:inherit;
  12678. background-color:rgba(255, 255, 255, 0);
  12679. border:none;
  12680. border-left:0px;
  12681. border-top:0px;
  12682. border-right:0px;
  12683. border-radius:0px;
  12684. border-bottom-right-radius:0px;
  12685. border-bottom-left-radius:0px;
  12686. -moz-box-shadow:none;
  12687. -webkit-box-shadow:none;
  12688. box-shadow:none;
  12689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12690. font-weight:400;
  12691. font-style:normal;
  12692. font-size:12px;
  12693. line-height:25px;
  12694. }
  12695. #u37565 {
  12696. border-width:0px;
  12697. position:absolute;
  12698. left:1885px;
  12699. top:248px;
  12700. width:150px;
  12701. height:150px;
  12702. display:flex;
  12703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12704. font-weight:400;
  12705. font-style:normal;
  12706. font-size:12px;
  12707. line-height:25px;
  12708. }
  12709. #u37565 .text {
  12710. position:absolute;
  12711. align-self:flex-start;
  12712. padding:0px 0px 0px 0px;
  12713. box-sizing:border-box;
  12714. width:100%;
  12715. }
  12716. #u37565_text {
  12717. border-width:0px;
  12718. white-space:nowrap;
  12719. text-transform:none;
  12720. }
  12721. #u37566_div {
  12722. border-width:0px;
  12723. position:absolute;
  12724. left:0px;
  12725. top:0px;
  12726. width:73px;
  12727. height:25px;
  12728. background:inherit;
  12729. background-color:rgba(255, 255, 255, 0);
  12730. border:none;
  12731. border-left:0px;
  12732. border-top:0px;
  12733. border-right:0px;
  12734. border-radius:0px;
  12735. border-bottom-right-radius:0px;
  12736. border-bottom-left-radius:0px;
  12737. -moz-box-shadow:none;
  12738. -webkit-box-shadow:none;
  12739. box-shadow:none;
  12740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12741. font-weight:400;
  12742. font-style:normal;
  12743. font-size:12px;
  12744. color:#D9001B;
  12745. line-height:25px;
  12746. }
  12747. #u37566 {
  12748. border-width:0px;
  12749. position:absolute;
  12750. left:2144px;
  12751. top:146px;
  12752. width:73px;
  12753. height:25px;
  12754. display:flex;
  12755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12756. font-weight:400;
  12757. font-style:normal;
  12758. font-size:12px;
  12759. color:#D9001B;
  12760. line-height:25px;
  12761. }
  12762. #u37566 .text {
  12763. position:absolute;
  12764. align-self:flex-start;
  12765. padding:0px 0px 0px 0px;
  12766. box-sizing:border-box;
  12767. width:100%;
  12768. }
  12769. #u37566_text {
  12770. border-width:0px;
  12771. white-space:nowrap;
  12772. text-transform:none;
  12773. }
  12774. #u37567 {
  12775. border-width:0px;
  12776. position:absolute;
  12777. left:0px;
  12778. top:0px;
  12779. width:0px;
  12780. height:0px;
  12781. }
  12782. #u37568_div {
  12783. border-width:0px;
  12784. position:absolute;
  12785. left:0px;
  12786. top:0px;
  12787. width:375px;
  12788. height:180px;
  12789. background:inherit;
  12790. background-color:rgba(255, 255, 255, 1);
  12791. border:none;
  12792. border-top:0px;
  12793. border-bottom:0px;
  12794. border-radius:0px;
  12795. border-top-left-radius:0px;
  12796. border-top-right-radius:0px;
  12797. border-bottom-right-radius:0px;
  12798. border-bottom-left-radius:0px;
  12799. -moz-box-shadow:none;
  12800. -webkit-box-shadow:none;
  12801. box-shadow:none;
  12802. }
  12803. #u37568 {
  12804. border-width:0px;
  12805. position:absolute;
  12806. left:2324px;
  12807. top:234px;
  12808. width:375px;
  12809. height:180px;
  12810. display:flex;
  12811. }
  12812. #u37568 .text {
  12813. position:absolute;
  12814. align-self:center;
  12815. padding:2px 2px 2px 2px;
  12816. box-sizing:border-box;
  12817. width:100%;
  12818. }
  12819. #u37568_text {
  12820. border-width:0px;
  12821. word-wrap:break-word;
  12822. text-transform:none;
  12823. visibility:hidden;
  12824. }
  12825. #u37569_div {
  12826. border-width:0px;
  12827. position:absolute;
  12828. left:0px;
  12829. top:0px;
  12830. width:150px;
  12831. height:150px;
  12832. background:inherit;
  12833. background-color:rgba(255, 255, 255, 0);
  12834. border:none;
  12835. border-left:0px;
  12836. border-top:0px;
  12837. border-right:0px;
  12838. border-radius:0px;
  12839. border-bottom-right-radius:0px;
  12840. border-bottom-left-radius:0px;
  12841. -moz-box-shadow:none;
  12842. -webkit-box-shadow:none;
  12843. box-shadow:none;
  12844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12845. font-weight:400;
  12846. font-style:normal;
  12847. font-size:12px;
  12848. line-height:25px;
  12849. }
  12850. #u37569 {
  12851. border-width:0px;
  12852. position:absolute;
  12853. left:2348px;
  12854. top:248px;
  12855. width:150px;
  12856. height:150px;
  12857. display:flex;
  12858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12859. font-weight:400;
  12860. font-style:normal;
  12861. font-size:12px;
  12862. line-height:25px;
  12863. }
  12864. #u37569 .text {
  12865. position:absolute;
  12866. align-self:flex-start;
  12867. padding:0px 0px 0px 0px;
  12868. box-sizing:border-box;
  12869. width:100%;
  12870. }
  12871. #u37569_text {
  12872. border-width:0px;
  12873. white-space:nowrap;
  12874. text-transform:none;
  12875. }
  12876. #u37570 {
  12877. border-width:0px;
  12878. position:absolute;
  12879. left:0px;
  12880. top:0px;
  12881. width:0px;
  12882. height:0px;
  12883. }
  12884. #u37571_div {
  12885. border-width:0px;
  12886. position:absolute;
  12887. left:0px;
  12888. top:0px;
  12889. width:375px;
  12890. height:180px;
  12891. background:inherit;
  12892. background-color:rgba(255, 255, 255, 1);
  12893. border:none;
  12894. border-top:0px;
  12895. border-bottom:0px;
  12896. border-radius:0px;
  12897. border-top-left-radius:0px;
  12898. border-top-right-radius:0px;
  12899. border-bottom-right-radius:0px;
  12900. border-bottom-left-radius:0px;
  12901. -moz-box-shadow:none;
  12902. -webkit-box-shadow:none;
  12903. box-shadow:none;
  12904. }
  12905. #u37571 {
  12906. border-width:0px;
  12907. position:absolute;
  12908. left:2787px;
  12909. top:234px;
  12910. width:375px;
  12911. height:180px;
  12912. display:flex;
  12913. }
  12914. #u37571 .text {
  12915. position:absolute;
  12916. align-self:center;
  12917. padding:2px 2px 2px 2px;
  12918. box-sizing:border-box;
  12919. width:100%;
  12920. }
  12921. #u37571_text {
  12922. border-width:0px;
  12923. word-wrap:break-word;
  12924. text-transform:none;
  12925. visibility:hidden;
  12926. }
  12927. #u37572_div {
  12928. border-width:0px;
  12929. position:absolute;
  12930. left:0px;
  12931. top:0px;
  12932. width:150px;
  12933. height:150px;
  12934. background:inherit;
  12935. background-color:rgba(255, 255, 255, 0);
  12936. border:none;
  12937. border-left:0px;
  12938. border-top:0px;
  12939. border-right:0px;
  12940. border-radius:0px;
  12941. border-bottom-right-radius:0px;
  12942. border-bottom-left-radius:0px;
  12943. -moz-box-shadow:none;
  12944. -webkit-box-shadow:none;
  12945. box-shadow:none;
  12946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12947. font-weight:400;
  12948. font-style:normal;
  12949. font-size:12px;
  12950. line-height:25px;
  12951. }
  12952. #u37572 {
  12953. border-width:0px;
  12954. position:absolute;
  12955. left:2811px;
  12956. top:248px;
  12957. width:150px;
  12958. height:150px;
  12959. display:flex;
  12960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12961. font-weight:400;
  12962. font-style:normal;
  12963. font-size:12px;
  12964. line-height:25px;
  12965. }
  12966. #u37572 .text {
  12967. position:absolute;
  12968. align-self:flex-start;
  12969. padding:0px 0px 0px 0px;
  12970. box-sizing:border-box;
  12971. width:100%;
  12972. }
  12973. #u37572_text {
  12974. border-width:0px;
  12975. white-space:nowrap;
  12976. text-transform:none;
  12977. }
  12978. #u37573 {
  12979. border-width:0px;
  12980. position:absolute;
  12981. left:0px;
  12982. top:0px;
  12983. width:0px;
  12984. height:0px;
  12985. }
  12986. #u37574_div {
  12987. border-width:0px;
  12988. position:absolute;
  12989. left:0px;
  12990. top:0px;
  12991. width:375px;
  12992. height:60px;
  12993. background:inherit;
  12994. background-color:rgba(255, 255, 255, 1);
  12995. box-sizing:border-box;
  12996. border-width:1px;
  12997. border-style:solid;
  12998. border-color:rgba(242, 242, 242, 1);
  12999. border-radius:20px;
  13000. border-top-left-radius:0px;
  13001. border-top-right-radius:0px;
  13002. -moz-box-shadow:none;
  13003. -webkit-box-shadow:none;
  13004. box-shadow:none;
  13005. }
  13006. #u37574 {
  13007. border-width:0px;
  13008. position:absolute;
  13009. left:1398px;
  13010. top:779px;
  13011. width:375px;
  13012. height:60px;
  13013. display:flex;
  13014. }
  13015. #u37574 .text {
  13016. position:absolute;
  13017. align-self:center;
  13018. padding:2px 2px 2px 2px;
  13019. box-sizing:border-box;
  13020. width:100%;
  13021. }
  13022. #u37574_text {
  13023. border-width:0px;
  13024. word-wrap:break-word;
  13025. text-transform:none;
  13026. visibility:hidden;
  13027. }
  13028. #u37575_div {
  13029. border-width:0px;
  13030. position:absolute;
  13031. left:0px;
  13032. top:0px;
  13033. width:345px;
  13034. height:40px;
  13035. background:inherit;
  13036. background-color:rgba(255, 255, 255, 1);
  13037. box-sizing:border-box;
  13038. border-width:1px;
  13039. border-style:solid;
  13040. border-color:rgba(121, 121, 121, 1);
  13041. border-radius:63px;
  13042. -moz-box-shadow:none;
  13043. -webkit-box-shadow:none;
  13044. box-shadow:none;
  13045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13046. font-weight:400;
  13047. font-style:normal;
  13048. font-size:14px;
  13049. color:#555555;
  13050. }
  13051. #u37575 {
  13052. border-width:0px;
  13053. position:absolute;
  13054. left:1409px;
  13055. top:789px;
  13056. width:345px;
  13057. height:40px;
  13058. display:flex;
  13059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13060. font-weight:400;
  13061. font-style:normal;
  13062. font-size:14px;
  13063. color:#555555;
  13064. }
  13065. #u37575 .text {
  13066. position:absolute;
  13067. align-self:center;
  13068. padding:2px 2px 2px 2px;
  13069. box-sizing:border-box;
  13070. width:100%;
  13071. }
  13072. #u37575_text {
  13073. border-width:0px;
  13074. word-wrap:break-word;
  13075. text-transform:none;
  13076. }
  13077. #u37576 {
  13078. border-width:0px;
  13079. position:absolute;
  13080. left:0px;
  13081. top:0px;
  13082. width:0px;
  13083. height:0px;
  13084. }
  13085. #u37577_div {
  13086. border-width:0px;
  13087. position:absolute;
  13088. left:0px;
  13089. top:0px;
  13090. width:375px;
  13091. height:60px;
  13092. background:inherit;
  13093. background-color:rgba(255, 255, 255, 1);
  13094. box-sizing:border-box;
  13095. border-width:1px;
  13096. border-style:solid;
  13097. border-color:rgba(242, 242, 242, 1);
  13098. border-radius:20px;
  13099. border-top-left-radius:0px;
  13100. border-top-right-radius:0px;
  13101. -moz-box-shadow:none;
  13102. -webkit-box-shadow:none;
  13103. box-shadow:none;
  13104. }
  13105. #u37577 {
  13106. border-width:0px;
  13107. position:absolute;
  13108. left:1861px;
  13109. top:779px;
  13110. width:375px;
  13111. height:60px;
  13112. display:flex;
  13113. }
  13114. #u37577 .text {
  13115. position:absolute;
  13116. align-self:center;
  13117. padding:2px 2px 2px 2px;
  13118. box-sizing:border-box;
  13119. width:100%;
  13120. }
  13121. #u37577_text {
  13122. border-width:0px;
  13123. word-wrap:break-word;
  13124. text-transform:none;
  13125. visibility:hidden;
  13126. }
  13127. #u37578_div {
  13128. border-width:0px;
  13129. position:absolute;
  13130. left:0px;
  13131. top:0px;
  13132. width:345px;
  13133. height:40px;
  13134. background:inherit;
  13135. background-color:rgba(255, 255, 255, 1);
  13136. box-sizing:border-box;
  13137. border-width:1px;
  13138. border-style:solid;
  13139. border-color:rgba(121, 121, 121, 1);
  13140. border-radius:63px;
  13141. -moz-box-shadow:none;
  13142. -webkit-box-shadow:none;
  13143. box-shadow:none;
  13144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13145. font-weight:400;
  13146. font-style:normal;
  13147. font-size:14px;
  13148. color:#555555;
  13149. }
  13150. #u37578 {
  13151. border-width:0px;
  13152. position:absolute;
  13153. left:1872px;
  13154. top:789px;
  13155. width:345px;
  13156. height:40px;
  13157. display:flex;
  13158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13159. font-weight:400;
  13160. font-style:normal;
  13161. font-size:14px;
  13162. color:#555555;
  13163. }
  13164. #u37578 .text {
  13165. position:absolute;
  13166. align-self:center;
  13167. padding:2px 2px 2px 2px;
  13168. box-sizing:border-box;
  13169. width:100%;
  13170. }
  13171. #u37578_text {
  13172. border-width:0px;
  13173. word-wrap:break-word;
  13174. text-transform:none;
  13175. }