styles.css 166 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2255px;
  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. #u38685_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u38685 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1364px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u38685 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u38685_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u38686_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u38686 {
  73. border-width:0px;
  74. position:absolute;
  75. left:1393px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u38686 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u38686_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u38687 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u38688_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u38688 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1673px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u38688 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u38688_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u38689 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u38690_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u38690 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1736px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u38690 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u38690_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u38691_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u38691 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1742px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u38691 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u38691_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u38692 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u38693_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u38693 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1687px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u38693 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u38693_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u38694_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u38694 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1703px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u38694 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u38694_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u38695_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u38695 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1694px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u38695 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u38695_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u38696_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u38696 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1711px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u38696 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u38696_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u38697_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u38697 {
  351. border-width:0px;
  352. position:absolute;
  353. left:1393px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u38697 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u38697_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u38698_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u38698 {
  393. border-width:0px;
  394. position:absolute;
  395. left:1393px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u38698 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u38698_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u38699 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u38700_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u38700 {
  431. border-width:0px;
  432. position:absolute;
  433. left:1433px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u38700 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u38700_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u38701_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u38701 {
  472. border-width:0px;
  473. position:absolute;
  474. left:1433px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u38701 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u38701_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u38702 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u38703_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u38703 {
  513. border-width:0px;
  514. position:absolute;
  515. left:1703px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u38703 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u38703_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u38704_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u38704 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1703px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u38704 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u38704_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u38705_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u38705 {
  594. border-width:0px;
  595. position:absolute;
  596. left:1393px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u38705 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u38705_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u38706 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u38707_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u38707 {
  632. border-width:0px;
  633. position:absolute;
  634. left:1615px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u38707 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u38707_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u38708_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u38708 {
  673. border-width:0px;
  674. position:absolute;
  675. left:1609px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u38708 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u38708_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u38709 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u38710_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u38710 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1521px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u38710 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u38710_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u38711_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u38711 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1515px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u38711 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u38711_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u38712_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u38712 {
  798. border-width:0px;
  799. position:absolute;
  800. left:1393px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u38712 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u38712_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u38713_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:57px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. font-size:14px;
  842. line-height:30px;
  843. }
  844. #u38713 {
  845. border-width:0px;
  846. position:absolute;
  847. left:1545px;
  848. top:73px;
  849. width:57px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  853. font-weight:500;
  854. font-style:normal;
  855. font-size:14px;
  856. line-height:30px;
  857. }
  858. #u38713 .text {
  859. position:absolute;
  860. align-self:flex-start;
  861. padding:0px 0px 0px 0px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u38713_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u38714 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u38715_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u38715 {
  887. border-width:0px;
  888. position:absolute;
  889. left:1406px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u38715 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u38715_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u38716_div {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:375px;
  914. height:115px;
  915. background:inherit;
  916. background-color:rgba(255, 255, 255, 1);
  917. border:none;
  918. border-left:0px;
  919. border-top:0px;
  920. border-right:0px;
  921. border-radius:0px;
  922. border-bottom-right-radius:0px;
  923. border-bottom-left-radius:0px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. }
  928. #u38716 {
  929. border-width:0px;
  930. position:absolute;
  931. left:1393px;
  932. top:115px;
  933. width:375px;
  934. height:115px;
  935. display:flex;
  936. }
  937. #u38716 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u38716_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u38717_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:40px;
  956. height:40px;
  957. }
  958. #u38717 {
  959. border-width:0px;
  960. position:absolute;
  961. left:1410px;
  962. top:141px;
  963. width:40px;
  964. height:40px;
  965. display:flex;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. }
  970. #u38717 .text {
  971. position:absolute;
  972. align-self:center;
  973. padding:2px 2px 2px 2px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u38717_text {
  978. border-width:0px;
  979. word-wrap:break-word;
  980. text-transform:none;
  981. }
  982. #u38718_div {
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:33px;
  988. height:30px;
  989. background:inherit;
  990. background-color:rgba(255, 255, 255, 0);
  991. border:none;
  992. border-left:0px;
  993. border-top:0px;
  994. border-right:0px;
  995. border-radius:0px;
  996. border-bottom-right-radius:0px;
  997. border-bottom-left-radius:0px;
  998. -moz-box-shadow:none;
  999. -webkit-box-shadow:none;
  1000. box-shadow:none;
  1001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1002. font-weight:400;
  1003. font-style:normal;
  1004. font-size:16px;
  1005. line-height:30px;
  1006. }
  1007. #u38718 {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:1470px;
  1011. top:136px;
  1012. width:33px;
  1013. height:30px;
  1014. display:flex;
  1015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1016. font-weight:400;
  1017. font-style:normal;
  1018. font-size:16px;
  1019. line-height:30px;
  1020. }
  1021. #u38718 .text {
  1022. position:absolute;
  1023. align-self:flex-start;
  1024. padding:0px 0px 0px 0px;
  1025. box-sizing:border-box;
  1026. width:100%;
  1027. }
  1028. #u38718_text {
  1029. border-width:0px;
  1030. white-space:nowrap;
  1031. text-transform:none;
  1032. }
  1033. #u38719_div {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:65px;
  1039. height:25px;
  1040. background:inherit;
  1041. background-color:rgba(255, 255, 255, 0);
  1042. border:none;
  1043. border-left:0px;
  1044. border-top:0px;
  1045. border-right:0px;
  1046. border-radius:0px;
  1047. border-bottom-right-radius:0px;
  1048. border-bottom-left-radius:0px;
  1049. -moz-box-shadow:none;
  1050. -webkit-box-shadow:none;
  1051. box-shadow:none;
  1052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1053. font-weight:400;
  1054. font-style:normal;
  1055. font-size:10px;
  1056. color:#7F7F7F;
  1057. line-height:25px;
  1058. }
  1059. #u38719 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:1470px;
  1063. top:166px;
  1064. width:65px;
  1065. height:25px;
  1066. display:flex;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:10px;
  1071. color:#7F7F7F;
  1072. line-height:25px;
  1073. }
  1074. #u38719 .text {
  1075. position:absolute;
  1076. align-self:flex-start;
  1077. padding:0px 0px 0px 0px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u38719_text {
  1082. border-width:0px;
  1083. white-space:nowrap;
  1084. text-transform:none;
  1085. }
  1086. #u38720_div {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:161px;
  1092. height:25px;
  1093. background:inherit;
  1094. background-color:rgba(255, 255, 255, 0);
  1095. border:none;
  1096. border-left:0px;
  1097. border-top:0px;
  1098. border-right:0px;
  1099. border-radius:0px;
  1100. border-bottom-right-radius:0px;
  1101. border-bottom-left-radius:0px;
  1102. -moz-box-shadow:none;
  1103. -webkit-box-shadow:none;
  1104. box-shadow:none;
  1105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1106. font-weight:400;
  1107. font-style:normal;
  1108. font-size:10px;
  1109. color:#F59A23;
  1110. line-height:25px;
  1111. }
  1112. #u38720 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1470px;
  1116. top:191px;
  1117. width:161px;
  1118. height:25px;
  1119. display:flex;
  1120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1121. font-weight:400;
  1122. font-style:normal;
  1123. font-size:10px;
  1124. color:#F59A23;
  1125. line-height:25px;
  1126. }
  1127. #u38720 .text {
  1128. position:absolute;
  1129. align-self:flex-start;
  1130. padding:0px 0px 0px 0px;
  1131. box-sizing:border-box;
  1132. width:100%;
  1133. }
  1134. #u38720_text {
  1135. border-width:0px;
  1136. white-space:nowrap;
  1137. text-transform:none;
  1138. }
  1139. #u38721 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:0px;
  1143. top:0px;
  1144. width:0px;
  1145. height:0px;
  1146. }
  1147. #u38722_div {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:375px;
  1153. height:80px;
  1154. background:inherit;
  1155. background-color:rgba(255, 255, 255, 1);
  1156. border:none;
  1157. border-left:0px;
  1158. border-top:0px;
  1159. border-right:0px;
  1160. border-radius:0px;
  1161. border-bottom-right-radius:0px;
  1162. border-bottom-left-radius:0px;
  1163. -moz-box-shadow:none;
  1164. -webkit-box-shadow:none;
  1165. box-shadow:none;
  1166. }
  1167. #u38722 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:1393px;
  1171. top:312px;
  1172. width:375px;
  1173. height:80px;
  1174. display:flex;
  1175. }
  1176. #u38722 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u38722_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. visibility:hidden;
  1188. }
  1189. #u38723_div {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:177px;
  1195. height:30px;
  1196. background:inherit;
  1197. background-color:rgba(255, 255, 255, 0);
  1198. border:none;
  1199. border-left:0px;
  1200. border-top:0px;
  1201. border-right:0px;
  1202. border-radius:0px;
  1203. border-bottom-right-radius:0px;
  1204. border-bottom-left-radius:0px;
  1205. -moz-box-shadow:none;
  1206. -webkit-box-shadow:none;
  1207. box-shadow:none;
  1208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1209. font-weight:400;
  1210. font-style:normal;
  1211. font-size:16px;
  1212. line-height:30px;
  1213. }
  1214. #u38723 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:1470px;
  1218. top:351px;
  1219. width:177px;
  1220. height:30px;
  1221. display:flex;
  1222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1223. font-weight:400;
  1224. font-style:normal;
  1225. font-size:16px;
  1226. line-height:30px;
  1227. }
  1228. #u38723 .text {
  1229. position:absolute;
  1230. align-self:flex-start;
  1231. padding:0px 0px 0px 0px;
  1232. box-sizing:border-box;
  1233. width:100%;
  1234. }
  1235. #u38723_text {
  1236. border-width:0px;
  1237. white-space:nowrap;
  1238. text-transform:none;
  1239. }
  1240. #u38724_div {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:49px;
  1246. height:25px;
  1247. background:inherit;
  1248. background-color:rgba(255, 255, 255, 0);
  1249. border:none;
  1250. border-left:0px;
  1251. border-top:0px;
  1252. border-right:0px;
  1253. border-radius:0px;
  1254. border-bottom-right-radius:0px;
  1255. border-bottom-left-radius:0px;
  1256. -moz-box-shadow:none;
  1257. -webkit-box-shadow:none;
  1258. box-shadow:none;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:12px;
  1263. color:#7F7F7F;
  1264. line-height:25px;
  1265. }
  1266. #u38724 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:1470px;
  1270. top:326px;
  1271. width:49px;
  1272. height:25px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:12px;
  1278. color:#7F7F7F;
  1279. line-height:25px;
  1280. }
  1281. #u38724 .text {
  1282. position:absolute;
  1283. align-self:flex-start;
  1284. padding:0px 0px 0px 0px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u38724_text {
  1289. border-width:0px;
  1290. white-space:nowrap;
  1291. text-transform:none;
  1292. }
  1293. #u38725 {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:0px;
  1299. height:0px;
  1300. }
  1301. #u38726_div {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:0px;
  1305. top:0px;
  1306. width:375px;
  1307. height:80px;
  1308. background:inherit;
  1309. background-color:rgba(255, 255, 255, 1);
  1310. border:none;
  1311. border-left:0px;
  1312. border-top:0px;
  1313. border-right:0px;
  1314. border-radius:0px;
  1315. border-bottom-right-radius:0px;
  1316. border-bottom-left-radius:0px;
  1317. -moz-box-shadow:none;
  1318. -webkit-box-shadow:none;
  1319. box-shadow:none;
  1320. }
  1321. #u38726 {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:1393px;
  1325. top:393px;
  1326. width:375px;
  1327. height:80px;
  1328. display:flex;
  1329. }
  1330. #u38726 .text {
  1331. position:absolute;
  1332. align-self:center;
  1333. padding:2px 2px 2px 2px;
  1334. box-sizing:border-box;
  1335. width:100%;
  1336. }
  1337. #u38726_text {
  1338. border-width:0px;
  1339. word-wrap:break-word;
  1340. text-transform:none;
  1341. visibility:hidden;
  1342. }
  1343. #u38727_div {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:33px;
  1349. height:30px;
  1350. background:inherit;
  1351. background-color:rgba(255, 255, 255, 0);
  1352. border:none;
  1353. border-left:0px;
  1354. border-top:0px;
  1355. border-right:0px;
  1356. border-radius:0px;
  1357. border-bottom-right-radius:0px;
  1358. border-bottom-left-radius:0px;
  1359. -moz-box-shadow:none;
  1360. -webkit-box-shadow:none;
  1361. box-shadow:none;
  1362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1363. font-weight:400;
  1364. font-style:normal;
  1365. font-size:16px;
  1366. line-height:30px;
  1367. }
  1368. #u38727 {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:1470px;
  1372. top:432px;
  1373. width:33px;
  1374. height:30px;
  1375. display:flex;
  1376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1377. font-weight:400;
  1378. font-style:normal;
  1379. font-size:16px;
  1380. line-height:30px;
  1381. }
  1382. #u38727 .text {
  1383. position:absolute;
  1384. align-self:flex-start;
  1385. padding:0px 0px 0px 0px;
  1386. box-sizing:border-box;
  1387. width:100%;
  1388. }
  1389. #u38727_text {
  1390. border-width:0px;
  1391. white-space:nowrap;
  1392. text-transform:none;
  1393. }
  1394. #u38728_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:73px;
  1400. height:25px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-left:0px;
  1405. border-top:0px;
  1406. border-right:0px;
  1407. border-radius:0px;
  1408. border-bottom-right-radius:0px;
  1409. border-bottom-left-radius:0px;
  1410. -moz-box-shadow:none;
  1411. -webkit-box-shadow:none;
  1412. box-shadow:none;
  1413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1414. font-weight:400;
  1415. font-style:normal;
  1416. font-size:12px;
  1417. color:#7F7F7F;
  1418. line-height:25px;
  1419. }
  1420. #u38728 {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:1470px;
  1424. top:407px;
  1425. width:73px;
  1426. height:25px;
  1427. display:flex;
  1428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1429. font-weight:400;
  1430. font-style:normal;
  1431. font-size:12px;
  1432. color:#7F7F7F;
  1433. line-height:25px;
  1434. }
  1435. #u38728 .text {
  1436. position:absolute;
  1437. align-self:flex-start;
  1438. padding:0px 0px 0px 0px;
  1439. box-sizing:border-box;
  1440. width:100%;
  1441. }
  1442. #u38728_text {
  1443. border-width:0px;
  1444. white-space:nowrap;
  1445. text-transform:none;
  1446. }
  1447. #u38729 {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:0px;
  1453. height:0px;
  1454. }
  1455. #u38730_div {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:375px;
  1461. height:80px;
  1462. background:inherit;
  1463. background-color:rgba(255, 255, 255, 1);
  1464. border:none;
  1465. border-left:0px;
  1466. border-top:0px;
  1467. border-right:0px;
  1468. border-radius:0px;
  1469. border-bottom-right-radius:0px;
  1470. border-bottom-left-radius:0px;
  1471. -moz-box-shadow:none;
  1472. -webkit-box-shadow:none;
  1473. box-shadow:none;
  1474. }
  1475. #u38730 {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:1393px;
  1479. top:474px;
  1480. width:375px;
  1481. height:80px;
  1482. display:flex;
  1483. }
  1484. #u38730 .text {
  1485. position:absolute;
  1486. align-self:center;
  1487. padding:2px 2px 2px 2px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u38730_text {
  1492. border-width:0px;
  1493. word-wrap:break-word;
  1494. text-transform:none;
  1495. visibility:hidden;
  1496. }
  1497. #u38731_div {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:129px;
  1503. height:30px;
  1504. background:inherit;
  1505. background-color:rgba(255, 255, 255, 0);
  1506. border:none;
  1507. border-left:0px;
  1508. border-top:0px;
  1509. border-right:0px;
  1510. border-radius:0px;
  1511. border-bottom-right-radius:0px;
  1512. border-bottom-left-radius:0px;
  1513. -moz-box-shadow:none;
  1514. -webkit-box-shadow:none;
  1515. box-shadow:none;
  1516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1517. font-weight:400;
  1518. font-style:normal;
  1519. font-size:16px;
  1520. line-height:30px;
  1521. }
  1522. #u38731 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:1470px;
  1526. top:513px;
  1527. width:129px;
  1528. height:30px;
  1529. display:flex;
  1530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1531. font-weight:400;
  1532. font-style:normal;
  1533. font-size:16px;
  1534. line-height:30px;
  1535. }
  1536. #u38731 .text {
  1537. position:absolute;
  1538. align-self:flex-start;
  1539. padding:0px 0px 0px 0px;
  1540. box-sizing:border-box;
  1541. width:100%;
  1542. }
  1543. #u38731_text {
  1544. border-width:0px;
  1545. white-space:nowrap;
  1546. text-transform:none;
  1547. }
  1548. #u38732_div {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:73px;
  1554. height:25px;
  1555. background:inherit;
  1556. background-color:rgba(255, 255, 255, 0);
  1557. border:none;
  1558. border-left:0px;
  1559. border-top:0px;
  1560. border-right:0px;
  1561. border-radius:0px;
  1562. border-bottom-right-radius:0px;
  1563. border-bottom-left-radius:0px;
  1564. -moz-box-shadow:none;
  1565. -webkit-box-shadow:none;
  1566. box-shadow:none;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:12px;
  1571. color:#7F7F7F;
  1572. line-height:25px;
  1573. }
  1574. #u38732 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:1470px;
  1578. top:488px;
  1579. width:73px;
  1580. height:25px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:12px;
  1586. color:#7F7F7F;
  1587. line-height:25px;
  1588. }
  1589. #u38732 .text {
  1590. position:absolute;
  1591. align-self:flex-start;
  1592. padding:0px 0px 0px 0px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u38732_text {
  1597. border-width:0px;
  1598. white-space:nowrap;
  1599. text-transform:none;
  1600. }
  1601. #u38733 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:0px;
  1607. height:0px;
  1608. }
  1609. #u38734_div {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:0px;
  1613. top:0px;
  1614. width:375px;
  1615. height:90px;
  1616. background:inherit;
  1617. background-color:rgba(255, 255, 255, 1);
  1618. border:none;
  1619. border-left:0px;
  1620. border-top:0px;
  1621. border-right:0px;
  1622. border-radius:0px;
  1623. border-bottom-right-radius:0px;
  1624. border-bottom-left-radius:0px;
  1625. -moz-box-shadow:none;
  1626. -webkit-box-shadow:none;
  1627. box-shadow:none;
  1628. }
  1629. #u38734 {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:1393px;
  1633. top:717px;
  1634. width:375px;
  1635. height:90px;
  1636. display:flex;
  1637. }
  1638. #u38734 .text {
  1639. position:absolute;
  1640. align-self:center;
  1641. padding:2px 2px 2px 2px;
  1642. box-sizing:border-box;
  1643. width:100%;
  1644. }
  1645. #u38734_text {
  1646. border-width:0px;
  1647. word-wrap:break-word;
  1648. text-transform:none;
  1649. visibility:hidden;
  1650. }
  1651. #u38735_div {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:129px;
  1657. height:60px;
  1658. background:inherit;
  1659. background-color:rgba(255, 255, 255, 0);
  1660. border:none;
  1661. border-left:0px;
  1662. border-top:0px;
  1663. border-right:0px;
  1664. border-radius:0px;
  1665. border-bottom-right-radius:0px;
  1666. border-bottom-left-radius:0px;
  1667. -moz-box-shadow:none;
  1668. -webkit-box-shadow:none;
  1669. box-shadow:none;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:16px;
  1674. line-height:30px;
  1675. }
  1676. #u38735 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:1470px;
  1680. top:732px;
  1681. width:129px;
  1682. height:60px;
  1683. display:flex;
  1684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:16px;
  1688. line-height:30px;
  1689. }
  1690. #u38735 .text {
  1691. position:absolute;
  1692. align-self:flex-start;
  1693. padding:0px 0px 0px 0px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u38735_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u38736_div {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:68px;
  1708. height:30px;
  1709. background:inherit;
  1710. background-color:rgba(242, 242, 242, 1);
  1711. border:none;
  1712. border-radius:40px;
  1713. -moz-box-shadow:none;
  1714. -webkit-box-shadow:none;
  1715. box-shadow:none;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:12px;
  1720. color:#7F7F7F;
  1721. }
  1722. #u38736 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:1678px;
  1726. top:136px;
  1727. width:68px;
  1728. height:30px;
  1729. display:flex;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:12px;
  1734. color:#7F7F7F;
  1735. }
  1736. #u38736 .text {
  1737. position:absolute;
  1738. align-self:center;
  1739. padding:2px 2px 2px 2px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u38736_text {
  1744. border-width:0px;
  1745. word-wrap:break-word;
  1746. text-transform:none;
  1747. }
  1748. #u38738_img {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:433px;
  1754. height:865px;
  1755. }
  1756. #u38738 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:1822px;
  1760. top:0px;
  1761. width:433px;
  1762. height:865px;
  1763. display:flex;
  1764. }
  1765. #u38738 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 2px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u38738_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. visibility:hidden;
  1777. }
  1778. #u38739_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:375px;
  1784. height:40px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 1);
  1787. box-sizing:border-box;
  1788. border-width:1px;
  1789. border-style:solid;
  1790. border-color:rgba(215, 215, 215, 1);
  1791. border-left:0px;
  1792. border-top:0px;
  1793. border-right:0px;
  1794. border-radius:0px;
  1795. border-bottom-right-radius:0px;
  1796. border-bottom-left-radius:0px;
  1797. -moz-box-shadow:none;
  1798. -webkit-box-shadow:none;
  1799. box-shadow:none;
  1800. }
  1801. #u38739 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:1851px;
  1805. top:67px;
  1806. width:375px;
  1807. height:40px;
  1808. display:flex;
  1809. }
  1810. #u38739 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u38739_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. visibility:hidden;
  1822. }
  1823. #u38740 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:0px;
  1829. height:0px;
  1830. }
  1831. #u38741_div {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:88px;
  1837. height:32px;
  1838. background:inherit;
  1839. background-color:rgba(255, 255, 255, 1);
  1840. box-sizing:border-box;
  1841. border-width:1px;
  1842. border-style:solid;
  1843. border-color:rgba(242, 242, 242, 1);
  1844. border-radius:33px;
  1845. -moz-box-shadow:none;
  1846. -webkit-box-shadow:none;
  1847. box-shadow:none;
  1848. }
  1849. #u38741 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:2131px;
  1853. top:71px;
  1854. width:88px;
  1855. height:32px;
  1856. display:flex;
  1857. }
  1858. #u38741 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 2px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u38741_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. visibility:hidden;
  1870. }
  1871. #u38742 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:0px;
  1877. height:0px;
  1878. }
  1879. #u38743_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:18px;
  1885. height:18px;
  1886. }
  1887. #u38743 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:2194px;
  1891. top:78px;
  1892. width:18px;
  1893. height:18px;
  1894. display:flex;
  1895. }
  1896. #u38743 .text {
  1897. position:absolute;
  1898. align-self:center;
  1899. padding:2px 2px 2px 2px;
  1900. box-sizing:border-box;
  1901. width:100%;
  1902. }
  1903. #u38743_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. visibility:hidden;
  1908. }
  1909. #u38744_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:6px;
  1915. height:6px;
  1916. }
  1917. #u38744 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:2200px;
  1921. top:84px;
  1922. width:6px;
  1923. height:6px;
  1924. display:flex;
  1925. }
  1926. #u38744 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 2px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u38744_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. visibility:hidden;
  1938. }
  1939. #u38745 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:0px;
  1945. height:0px;
  1946. }
  1947. #u38746_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:5px;
  1953. height:5px;
  1954. }
  1955. #u38746 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:2145px;
  1959. top:85px;
  1960. width:5px;
  1961. height:5px;
  1962. display:flex;
  1963. }
  1964. #u38746 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:2px 2px 2px 2px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u38746_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. visibility:hidden;
  1976. }
  1977. #u38747_img {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:5px;
  1983. height:5px;
  1984. }
  1985. #u38747 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:2161px;
  1989. top:85px;
  1990. width:5px;
  1991. height:5px;
  1992. display:flex;
  1993. }
  1994. #u38747 .text {
  1995. position:absolute;
  1996. align-self:center;
  1997. padding:2px 2px 2px 2px;
  1998. box-sizing:border-box;
  1999. width:100%;
  2000. }
  2001. #u38747_text {
  2002. border-width:0px;
  2003. word-wrap:break-word;
  2004. text-transform:none;
  2005. visibility:hidden;
  2006. }
  2007. #u38748_img {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:7px;
  2013. height:7px;
  2014. }
  2015. #u38748 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:2152px;
  2019. top:84px;
  2020. width:7px;
  2021. height:7px;
  2022. display:flex;
  2023. }
  2024. #u38748 .text {
  2025. position:absolute;
  2026. align-self:center;
  2027. padding:2px 2px 2px 2px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u38748_text {
  2032. border-width:0px;
  2033. word-wrap:break-word;
  2034. text-transform:none;
  2035. visibility:hidden;
  2036. }
  2037. #u38749_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:19px;
  2043. height:2px;
  2044. }
  2045. #u38749 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:2169px;
  2049. top:87px;
  2050. width:18px;
  2051. height:1px;
  2052. display:flex;
  2053. -webkit-transform:rotate(90deg);
  2054. -moz-transform:rotate(90deg);
  2055. -ms-transform:rotate(90deg);
  2056. transform:rotate(90deg);
  2057. }
  2058. #u38749 .text {
  2059. position:absolute;
  2060. align-self:center;
  2061. padding:2px 2px 2px 2px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u38749_text {
  2066. border-width:0px;
  2067. word-wrap:break-word;
  2068. text-transform:none;
  2069. visibility:hidden;
  2070. }
  2071. #u38750_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:375px;
  2077. height:44px;
  2078. }
  2079. #u38750 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:1851px;
  2083. top:24px;
  2084. width:375px;
  2085. height:44px;
  2086. display:flex;
  2087. }
  2088. #u38750 .text {
  2089. position:absolute;
  2090. align-self:center;
  2091. padding:2px 2px 2px 2px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u38750_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. visibility:hidden;
  2100. }
  2101. #u38751_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:375px;
  2107. height:50px;
  2108. background:inherit;
  2109. background-color:rgba(255, 255, 255, 1);
  2110. box-sizing:border-box;
  2111. border-width:1px;
  2112. border-style:solid;
  2113. border-color:rgba(242, 242, 242, 1);
  2114. border-radius:26px;
  2115. border-top-left-radius:0px;
  2116. border-top-right-radius:0px;
  2117. -moz-box-shadow:none;
  2118. -webkit-box-shadow:none;
  2119. box-shadow:none;
  2120. }
  2121. #u38751 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:1851px;
  2125. top:788px;
  2126. width:375px;
  2127. height:50px;
  2128. display:flex;
  2129. }
  2130. #u38751 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 2px 2px 2px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u38751_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u38752 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:0px;
  2149. height:0px;
  2150. }
  2151. #u38753_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:24px;
  2157. height:24px;
  2158. }
  2159. #u38753 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:1891px;
  2163. top:792px;
  2164. width:24px;
  2165. height:24px;
  2166. display:flex;
  2167. font-size:8px;
  2168. }
  2169. #u38753 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 2px 2px 2px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u38753_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. }
  2181. #u38754_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:25px;
  2187. height:17px;
  2188. background:inherit;
  2189. background-color:rgba(255, 255, 255, 0);
  2190. border:none;
  2191. border-radius:0px;
  2192. -moz-box-shadow:none;
  2193. -webkit-box-shadow:none;
  2194. box-shadow:none;
  2195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:12px;
  2199. }
  2200. #u38754 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:1891px;
  2204. top:817px;
  2205. width:25px;
  2206. height:17px;
  2207. display:flex;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:12px;
  2212. }
  2213. #u38754 .text {
  2214. position:absolute;
  2215. align-self:flex-start;
  2216. padding:0px 0px 0px 0px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u38754_text {
  2221. border-width:0px;
  2222. white-space:nowrap;
  2223. text-transform:none;
  2224. }
  2225. #u38755 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:0px;
  2231. height:0px;
  2232. }
  2233. #u38756_img {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:24px;
  2239. height:24px;
  2240. }
  2241. #u38756 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:2161px;
  2245. top:794px;
  2246. width:24px;
  2247. height:24px;
  2248. display:flex;
  2249. font-size:8px;
  2250. }
  2251. #u38756 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u38756_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. }
  2263. #u38757_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:25px;
  2269. height:17px;
  2270. background:inherit;
  2271. background-color:rgba(255, 255, 255, 0);
  2272. border:none;
  2273. border-radius:0px;
  2274. -moz-box-shadow:none;
  2275. -webkit-box-shadow:none;
  2276. box-shadow:none;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. }
  2282. #u38757 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:2161px;
  2286. top:819px;
  2287. width:25px;
  2288. height:17px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. }
  2295. #u38757 .text {
  2296. position:absolute;
  2297. align-self:flex-start;
  2298. padding:0px 0px 0px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u38757_text {
  2303. border-width:0px;
  2304. white-space:nowrap;
  2305. text-transform:none;
  2306. }
  2307. #u38758_div {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:375px;
  2313. height:681px;
  2314. background:inherit;
  2315. background-color:rgba(242, 242, 242, 0.462745098039216);
  2316. border:none;
  2317. border-radius:0px;
  2318. -moz-box-shadow:none;
  2319. -webkit-box-shadow:none;
  2320. box-shadow:none;
  2321. }
  2322. #u38758 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:1851px;
  2326. top:107px;
  2327. width:375px;
  2328. height:681px;
  2329. display:flex;
  2330. }
  2331. #u38758 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 2px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u38758_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. visibility:hidden;
  2343. }
  2344. #u38759 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:0px;
  2350. height:0px;
  2351. }
  2352. #u38760_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:24px;
  2358. height:24px;
  2359. }
  2360. #u38760 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:2073px;
  2364. top:792px;
  2365. width:24px;
  2366. height:24px;
  2367. display:flex;
  2368. font-size:8px;
  2369. }
  2370. #u38760 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u38760_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. }
  2382. #u38761_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:37px;
  2388. height:17px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 0);
  2391. border:none;
  2392. border-radius:0px;
  2393. -moz-box-shadow:none;
  2394. -webkit-box-shadow:none;
  2395. box-shadow:none;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. }
  2401. #u38761 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:2067px;
  2405. top:817px;
  2406. width:37px;
  2407. height:17px;
  2408. display:flex;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:12px;
  2413. }
  2414. #u38761 .text {
  2415. position:absolute;
  2416. align-self:flex-start;
  2417. padding:0px 0px 0px 0px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u38761_text {
  2422. border-width:0px;
  2423. white-space:nowrap;
  2424. text-transform:none;
  2425. }
  2426. #u38762 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:0px;
  2432. height:0px;
  2433. }
  2434. #u38763_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:24px;
  2440. height:24px;
  2441. }
  2442. #u38763 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:1979px;
  2446. top:792px;
  2447. width:24px;
  2448. height:24px;
  2449. display:flex;
  2450. font-size:8px;
  2451. }
  2452. #u38763 .text {
  2453. position:absolute;
  2454. align-self:center;
  2455. padding:2px 2px 2px 2px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u38763_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. }
  2464. #u38764_div {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:37px;
  2470. height:17px;
  2471. background:inherit;
  2472. background-color:rgba(255, 255, 255, 0);
  2473. border:none;
  2474. border-radius:0px;
  2475. -moz-box-shadow:none;
  2476. -webkit-box-shadow:none;
  2477. box-shadow:none;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. }
  2483. #u38764 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:1973px;
  2487. top:817px;
  2488. width:37px;
  2489. height:17px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:12px;
  2495. }
  2496. #u38764 .text {
  2497. position:absolute;
  2498. align-self:flex-start;
  2499. padding:0px 0px 0px 0px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u38764_text {
  2504. border-width:0px;
  2505. white-space:nowrap;
  2506. text-transform:none;
  2507. }
  2508. #u38765_div {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:375px;
  2514. height:735px;
  2515. background:inherit;
  2516. background-color:rgba(242, 242, 242, 1);
  2517. border:none;
  2518. border-top:0px;
  2519. border-radius:25px;
  2520. border-top-left-radius:0px;
  2521. border-top-right-radius:0px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. }
  2526. #u38765 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:1851px;
  2530. top:105px;
  2531. width:375px;
  2532. height:735px;
  2533. display:flex;
  2534. }
  2535. #u38765 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u38765_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. visibility:hidden;
  2547. }
  2548. #u38766_div {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:57px;
  2554. height:30px;
  2555. background:inherit;
  2556. background-color:rgba(255, 255, 255, 0);
  2557. border:none;
  2558. border-left:0px;
  2559. border-top:0px;
  2560. border-right:0px;
  2561. border-radius:0px;
  2562. border-bottom-right-radius:0px;
  2563. border-bottom-left-radius:0px;
  2564. -moz-box-shadow:none;
  2565. -webkit-box-shadow:none;
  2566. box-shadow:none;
  2567. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2568. font-weight:500;
  2569. font-style:normal;
  2570. font-size:14px;
  2571. line-height:30px;
  2572. }
  2573. #u38766 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:2003px;
  2577. top:73px;
  2578. width:57px;
  2579. height:30px;
  2580. display:flex;
  2581. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2582. font-weight:500;
  2583. font-style:normal;
  2584. font-size:14px;
  2585. line-height:30px;
  2586. }
  2587. #u38766 .text {
  2588. position:absolute;
  2589. align-self:flex-start;
  2590. padding:0px 0px 0px 0px;
  2591. box-sizing:border-box;
  2592. width:100%;
  2593. }
  2594. #u38766_text {
  2595. border-width:0px;
  2596. white-space:nowrap;
  2597. text-transform:none;
  2598. }
  2599. #u38767 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:0px;
  2605. height:0px;
  2606. }
  2607. #u38768_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:11px;
  2613. height:18px;
  2614. }
  2615. #u38768 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:1864px;
  2619. top:79px;
  2620. width:11px;
  2621. height:18px;
  2622. display:flex;
  2623. }
  2624. #u38768 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 2px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u38768_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. visibility:hidden;
  2636. }
  2637. #u38769_div {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:375px;
  2643. height:115px;
  2644. background:inherit;
  2645. background-color:rgba(255, 255, 255, 1);
  2646. border:none;
  2647. border-left:0px;
  2648. border-top:0px;
  2649. border-right:0px;
  2650. border-radius:0px;
  2651. border-bottom-right-radius:0px;
  2652. border-bottom-left-radius:0px;
  2653. -moz-box-shadow:none;
  2654. -webkit-box-shadow:none;
  2655. box-shadow:none;
  2656. }
  2657. #u38769 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:1851px;
  2661. top:115px;
  2662. width:375px;
  2663. height:115px;
  2664. display:flex;
  2665. }
  2666. #u38769 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 2px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u38769_text {
  2674. border-width:0px;
  2675. word-wrap:break-word;
  2676. text-transform:none;
  2677. visibility:hidden;
  2678. }
  2679. #u38770_img {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:40px;
  2685. height:40px;
  2686. }
  2687. #u38770 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:1868px;
  2691. top:141px;
  2692. width:40px;
  2693. height:40px;
  2694. display:flex;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. }
  2699. #u38770 .text {
  2700. position:absolute;
  2701. align-self:center;
  2702. padding:2px 2px 2px 2px;
  2703. box-sizing:border-box;
  2704. width:100%;
  2705. }
  2706. #u38770_text {
  2707. border-width:0px;
  2708. word-wrap:break-word;
  2709. text-transform:none;
  2710. }
  2711. #u38771_div {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:33px;
  2717. height:30px;
  2718. background:inherit;
  2719. background-color:rgba(255, 255, 255, 0);
  2720. border:none;
  2721. border-left:0px;
  2722. border-top:0px;
  2723. border-right:0px;
  2724. border-radius:0px;
  2725. border-bottom-right-radius:0px;
  2726. border-bottom-left-radius:0px;
  2727. -moz-box-shadow:none;
  2728. -webkit-box-shadow:none;
  2729. box-shadow:none;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:16px;
  2734. line-height:30px;
  2735. }
  2736. #u38771 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:1928px;
  2740. top:136px;
  2741. width:33px;
  2742. height:30px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:16px;
  2748. line-height:30px;
  2749. }
  2750. #u38771 .text {
  2751. position:absolute;
  2752. align-self:flex-start;
  2753. padding:0px 0px 0px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u38771_text {
  2758. border-width:0px;
  2759. white-space:nowrap;
  2760. text-transform:none;
  2761. }
  2762. #u38772_div {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:65px;
  2768. height:25px;
  2769. background:inherit;
  2770. background-color:rgba(255, 255, 255, 0);
  2771. border:none;
  2772. border-left:0px;
  2773. border-top:0px;
  2774. border-right:0px;
  2775. border-radius:0px;
  2776. border-bottom-right-radius:0px;
  2777. border-bottom-left-radius:0px;
  2778. -moz-box-shadow:none;
  2779. -webkit-box-shadow:none;
  2780. box-shadow:none;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:10px;
  2785. color:#7F7F7F;
  2786. line-height:25px;
  2787. }
  2788. #u38772 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:1928px;
  2792. top:166px;
  2793. width:65px;
  2794. height:25px;
  2795. display:flex;
  2796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:10px;
  2800. color:#7F7F7F;
  2801. line-height:25px;
  2802. }
  2803. #u38772 .text {
  2804. position:absolute;
  2805. align-self:flex-start;
  2806. padding:0px 0px 0px 0px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u38772_text {
  2811. border-width:0px;
  2812. white-space:nowrap;
  2813. text-transform:none;
  2814. }
  2815. #u38773_div {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:161px;
  2821. height:25px;
  2822. background:inherit;
  2823. background-color:rgba(255, 255, 255, 0);
  2824. border:none;
  2825. border-left:0px;
  2826. border-top:0px;
  2827. border-right:0px;
  2828. border-radius:0px;
  2829. border-bottom-right-radius:0px;
  2830. border-bottom-left-radius:0px;
  2831. -moz-box-shadow:none;
  2832. -webkit-box-shadow:none;
  2833. box-shadow:none;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:10px;
  2838. color:#F59A23;
  2839. line-height:25px;
  2840. }
  2841. #u38773 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:1928px;
  2845. top:191px;
  2846. width:161px;
  2847. height:25px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:10px;
  2853. color:#F59A23;
  2854. line-height:25px;
  2855. }
  2856. #u38773 .text {
  2857. position:absolute;
  2858. align-self:flex-start;
  2859. padding:0px 0px 0px 0px;
  2860. box-sizing:border-box;
  2861. width:100%;
  2862. }
  2863. #u38773_text {
  2864. border-width:0px;
  2865. white-space:nowrap;
  2866. text-transform:none;
  2867. }
  2868. #u38774_div {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:144px;
  2874. height:40px;
  2875. background:inherit;
  2876. background-color:rgba(24, 144, 255, 1);
  2877. border:none;
  2878. border-radius:40px;
  2879. -moz-box-shadow:none;
  2880. -webkit-box-shadow:none;
  2881. box-shadow:none;
  2882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2883. font-weight:400;
  2884. font-style:normal;
  2885. font-size:14px;
  2886. color:#FFFFFF;
  2887. }
  2888. #u38774 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:2049px;
  2892. top:788px;
  2893. width:144px;
  2894. height:40px;
  2895. display:flex;
  2896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. font-size:14px;
  2900. color:#FFFFFF;
  2901. }
  2902. #u38774 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:2px 2px 2px 2px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u38774_text {
  2910. border-width:0px;
  2911. word-wrap:break-word;
  2912. text-transform:none;
  2913. }
  2914. #u38775_div {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:144px;
  2920. height:40px;
  2921. background:inherit;
  2922. background-color:rgba(255, 255, 255, 1);
  2923. box-sizing:border-box;
  2924. border-width:1px;
  2925. border-style:solid;
  2926. border-color:rgba(127, 127, 127, 1);
  2927. border-radius:40px;
  2928. -moz-box-shadow:none;
  2929. -webkit-box-shadow:none;
  2930. box-shadow:none;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:14px;
  2935. }
  2936. #u38775 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:1885px;
  2940. top:788px;
  2941. width:144px;
  2942. height:40px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:14px;
  2948. }
  2949. #u38775 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 2px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u38775_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. }
  2961. #u38777_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:433px;
  2967. height:865px;
  2968. }
  2969. #u38777 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:433px;
  2975. height:865px;
  2976. display:flex;
  2977. }
  2978. #u38777 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 2px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u38777_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. visibility:hidden;
  2990. }
  2991. #u38778_div {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:375px;
  2997. height:40px;
  2998. background:inherit;
  2999. background-color:rgba(255, 255, 255, 1);
  3000. box-sizing:border-box;
  3001. border-width:1px;
  3002. border-style:solid;
  3003. border-color:rgba(215, 215, 215, 1);
  3004. border-left:0px;
  3005. border-top:0px;
  3006. border-right:0px;
  3007. border-radius:0px;
  3008. border-bottom-right-radius:0px;
  3009. border-bottom-left-radius:0px;
  3010. -moz-box-shadow:none;
  3011. -webkit-box-shadow:none;
  3012. box-shadow:none;
  3013. }
  3014. #u38778 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:29px;
  3018. top:67px;
  3019. width:375px;
  3020. height:40px;
  3021. display:flex;
  3022. }
  3023. #u38778 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 2px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u38778_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u38779 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:0px;
  3042. height:0px;
  3043. }
  3044. #u38780_div {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:88px;
  3050. height:32px;
  3051. background:inherit;
  3052. background-color:rgba(255, 255, 255, 1);
  3053. box-sizing:border-box;
  3054. border-width:1px;
  3055. border-style:solid;
  3056. border-color:rgba(242, 242, 242, 1);
  3057. border-radius:33px;
  3058. -moz-box-shadow:none;
  3059. -webkit-box-shadow:none;
  3060. box-shadow:none;
  3061. }
  3062. #u38780 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:309px;
  3066. top:71px;
  3067. width:88px;
  3068. height:32px;
  3069. display:flex;
  3070. }
  3071. #u38780 .text {
  3072. position:absolute;
  3073. align-self:center;
  3074. padding:2px 2px 2px 2px;
  3075. box-sizing:border-box;
  3076. width:100%;
  3077. }
  3078. #u38780_text {
  3079. border-width:0px;
  3080. word-wrap:break-word;
  3081. text-transform:none;
  3082. visibility:hidden;
  3083. }
  3084. #u38781 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:0px;
  3090. height:0px;
  3091. }
  3092. #u38782_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:18px;
  3098. height:18px;
  3099. }
  3100. #u38782 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:372px;
  3104. top:78px;
  3105. width:18px;
  3106. height:18px;
  3107. display:flex;
  3108. }
  3109. #u38782 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 2px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u38782_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. visibility:hidden;
  3121. }
  3122. #u38783_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:6px;
  3128. height:6px;
  3129. }
  3130. #u38783 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:378px;
  3134. top:84px;
  3135. width:6px;
  3136. height:6px;
  3137. display:flex;
  3138. }
  3139. #u38783 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 2px 2px 2px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u38783_text {
  3147. border-width:0px;
  3148. word-wrap:break-word;
  3149. text-transform:none;
  3150. visibility:hidden;
  3151. }
  3152. #u38784 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:0px;
  3158. height:0px;
  3159. }
  3160. #u38785_img {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:5px;
  3166. height:5px;
  3167. }
  3168. #u38785 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:323px;
  3172. top:85px;
  3173. width:5px;
  3174. height:5px;
  3175. display:flex;
  3176. }
  3177. #u38785 .text {
  3178. position:absolute;
  3179. align-self:center;
  3180. padding:2px 2px 2px 2px;
  3181. box-sizing:border-box;
  3182. width:100%;
  3183. }
  3184. #u38785_text {
  3185. border-width:0px;
  3186. word-wrap:break-word;
  3187. text-transform:none;
  3188. visibility:hidden;
  3189. }
  3190. #u38786_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:5px;
  3196. height:5px;
  3197. }
  3198. #u38786 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:339px;
  3202. top:85px;
  3203. width:5px;
  3204. height:5px;
  3205. display:flex;
  3206. }
  3207. #u38786 .text {
  3208. position:absolute;
  3209. align-self:center;
  3210. padding:2px 2px 2px 2px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u38786_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. visibility:hidden;
  3219. }
  3220. #u38787_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:7px;
  3226. height:7px;
  3227. }
  3228. #u38787 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:330px;
  3232. top:84px;
  3233. width:7px;
  3234. height:7px;
  3235. display:flex;
  3236. }
  3237. #u38787 .text {
  3238. position:absolute;
  3239. align-self:center;
  3240. padding:2px 2px 2px 2px;
  3241. box-sizing:border-box;
  3242. width:100%;
  3243. }
  3244. #u38787_text {
  3245. border-width:0px;
  3246. word-wrap:break-word;
  3247. text-transform:none;
  3248. visibility:hidden;
  3249. }
  3250. #u38788_img {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:19px;
  3256. height:2px;
  3257. }
  3258. #u38788 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:347px;
  3262. top:87px;
  3263. width:18px;
  3264. height:1px;
  3265. display:flex;
  3266. -webkit-transform:rotate(90deg);
  3267. -moz-transform:rotate(90deg);
  3268. -ms-transform:rotate(90deg);
  3269. transform:rotate(90deg);
  3270. }
  3271. #u38788 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 2px 2px 2px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u38788_text {
  3279. border-width:0px;
  3280. word-wrap:break-word;
  3281. text-transform:none;
  3282. visibility:hidden;
  3283. }
  3284. #u38789_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:375px;
  3290. height:44px;
  3291. }
  3292. #u38789 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:29px;
  3296. top:24px;
  3297. width:375px;
  3298. height:44px;
  3299. display:flex;
  3300. }
  3301. #u38789 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 2px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u38789_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u38790_div {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:375px;
  3320. height:50px;
  3321. background:inherit;
  3322. background-color:rgba(255, 255, 255, 1);
  3323. box-sizing:border-box;
  3324. border-width:1px;
  3325. border-style:solid;
  3326. border-color:rgba(242, 242, 242, 1);
  3327. border-radius:26px;
  3328. border-top-left-radius:0px;
  3329. border-top-right-radius:0px;
  3330. -moz-box-shadow:none;
  3331. -webkit-box-shadow:none;
  3332. box-shadow:none;
  3333. }
  3334. #u38790 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:29px;
  3338. top:788px;
  3339. width:375px;
  3340. height:50px;
  3341. display:flex;
  3342. }
  3343. #u38790 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 2px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u38790_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. visibility:hidden;
  3355. }
  3356. #u38791 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:0px;
  3362. height:0px;
  3363. }
  3364. #u38792_img {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:24px;
  3370. height:24px;
  3371. }
  3372. #u38792 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:69px;
  3376. top:792px;
  3377. width:24px;
  3378. height:24px;
  3379. display:flex;
  3380. font-size:8px;
  3381. }
  3382. #u38792 .text {
  3383. position:absolute;
  3384. align-self:center;
  3385. padding:2px 2px 2px 2px;
  3386. box-sizing:border-box;
  3387. width:100%;
  3388. }
  3389. #u38792_text {
  3390. border-width:0px;
  3391. word-wrap:break-word;
  3392. text-transform:none;
  3393. }
  3394. #u38793_div {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:25px;
  3400. height:17px;
  3401. background:inherit;
  3402. background-color:rgba(255, 255, 255, 0);
  3403. border:none;
  3404. border-radius:0px;
  3405. -moz-box-shadow:none;
  3406. -webkit-box-shadow:none;
  3407. box-shadow:none;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:12px;
  3412. }
  3413. #u38793 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:69px;
  3417. top:817px;
  3418. width:25px;
  3419. height:17px;
  3420. display:flex;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:12px;
  3425. }
  3426. #u38793 .text {
  3427. position:absolute;
  3428. align-self:flex-start;
  3429. padding:0px 0px 0px 0px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u38793_text {
  3434. border-width:0px;
  3435. white-space:nowrap;
  3436. text-transform:none;
  3437. }
  3438. #u38794 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:0px;
  3444. height:0px;
  3445. }
  3446. #u38795_img {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:24px;
  3452. height:24px;
  3453. }
  3454. #u38795 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:339px;
  3458. top:794px;
  3459. width:24px;
  3460. height:24px;
  3461. display:flex;
  3462. font-size:8px;
  3463. }
  3464. #u38795 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 2px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u38795_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. }
  3476. #u38796_div {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:25px;
  3482. height:17px;
  3483. background:inherit;
  3484. background-color:rgba(255, 255, 255, 0);
  3485. border:none;
  3486. border-radius:0px;
  3487. -moz-box-shadow:none;
  3488. -webkit-box-shadow:none;
  3489. box-shadow:none;
  3490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:12px;
  3494. }
  3495. #u38796 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:339px;
  3499. top:819px;
  3500. width:25px;
  3501. height:17px;
  3502. display:flex;
  3503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3504. font-weight:400;
  3505. font-style:normal;
  3506. font-size:12px;
  3507. }
  3508. #u38796 .text {
  3509. position:absolute;
  3510. align-self:flex-start;
  3511. padding:0px 0px 0px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u38796_text {
  3516. border-width:0px;
  3517. white-space:nowrap;
  3518. text-transform:none;
  3519. }
  3520. #u38797_div {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:375px;
  3526. height:681px;
  3527. background:inherit;
  3528. background-color:rgba(242, 242, 242, 0.462745098039216);
  3529. border:none;
  3530. border-radius:0px;
  3531. -moz-box-shadow:none;
  3532. -webkit-box-shadow:none;
  3533. box-shadow:none;
  3534. }
  3535. #u38797 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:29px;
  3539. top:107px;
  3540. width:375px;
  3541. height:681px;
  3542. display:flex;
  3543. }
  3544. #u38797 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 2px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u38797_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. visibility:hidden;
  3556. }
  3557. #u38798 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:0px;
  3563. height:0px;
  3564. }
  3565. #u38799_img {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:24px;
  3571. height:24px;
  3572. }
  3573. #u38799 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:251px;
  3577. top:792px;
  3578. width:24px;
  3579. height:24px;
  3580. display:flex;
  3581. font-size:8px;
  3582. }
  3583. #u38799 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 2px 2px 2px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u38799_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. }
  3595. #u38800_div {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:37px;
  3601. height:17px;
  3602. background:inherit;
  3603. background-color:rgba(255, 255, 255, 0);
  3604. border:none;
  3605. border-radius:0px;
  3606. -moz-box-shadow:none;
  3607. -webkit-box-shadow:none;
  3608. box-shadow:none;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. }
  3614. #u38800 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:245px;
  3618. top:817px;
  3619. width:37px;
  3620. height:17px;
  3621. display:flex;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:12px;
  3626. }
  3627. #u38800 .text {
  3628. position:absolute;
  3629. align-self:flex-start;
  3630. padding:0px 0px 0px 0px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u38800_text {
  3635. border-width:0px;
  3636. white-space:nowrap;
  3637. text-transform:none;
  3638. }
  3639. #u38801 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:0px;
  3645. height:0px;
  3646. }
  3647. #u38802_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:24px;
  3653. height:24px;
  3654. }
  3655. #u38802 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:157px;
  3659. top:792px;
  3660. width:24px;
  3661. height:24px;
  3662. display:flex;
  3663. font-size:8px;
  3664. }
  3665. #u38802 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 2px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u38802_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. }
  3677. #u38803_div {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:37px;
  3683. height:17px;
  3684. background:inherit;
  3685. background-color:rgba(255, 255, 255, 0);
  3686. border:none;
  3687. border-radius:0px;
  3688. -moz-box-shadow:none;
  3689. -webkit-box-shadow:none;
  3690. box-shadow:none;
  3691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:12px;
  3695. }
  3696. #u38803 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:151px;
  3700. top:817px;
  3701. width:37px;
  3702. height:17px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. }
  3709. #u38803 .text {
  3710. position:absolute;
  3711. align-self:flex-start;
  3712. padding:0px 0px 0px 0px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u38803_text {
  3717. border-width:0px;
  3718. white-space:nowrap;
  3719. text-transform:none;
  3720. }
  3721. #u38804_div {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:375px;
  3727. height:735px;
  3728. background:inherit;
  3729. background-color:rgba(242, 242, 242, 1);
  3730. border:none;
  3731. border-top:0px;
  3732. border-radius:25px;
  3733. border-top-left-radius:0px;
  3734. border-top-right-radius:0px;
  3735. -moz-box-shadow:none;
  3736. -webkit-box-shadow:none;
  3737. box-shadow:none;
  3738. }
  3739. #u38804 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:29px;
  3743. top:105px;
  3744. width:375px;
  3745. height:735px;
  3746. display:flex;
  3747. }
  3748. #u38804 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 2px 2px 2px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u38804_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u38805_div {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:99px;
  3767. height:30px;
  3768. background:inherit;
  3769. background-color:rgba(255, 255, 255, 0);
  3770. border:none;
  3771. border-left:0px;
  3772. border-top:0px;
  3773. border-right:0px;
  3774. border-radius:0px;
  3775. border-bottom-right-radius:0px;
  3776. border-bottom-left-radius:0px;
  3777. -moz-box-shadow:none;
  3778. -webkit-box-shadow:none;
  3779. box-shadow:none;
  3780. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3781. font-weight:500;
  3782. font-style:normal;
  3783. font-size:14px;
  3784. line-height:30px;
  3785. }
  3786. #u38805 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:167px;
  3790. top:73px;
  3791. width:99px;
  3792. height:30px;
  3793. display:flex;
  3794. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3795. font-weight:500;
  3796. font-style:normal;
  3797. font-size:14px;
  3798. line-height:30px;
  3799. }
  3800. #u38805 .text {
  3801. position:absolute;
  3802. align-self:flex-start;
  3803. padding:0px 0px 0px 0px;
  3804. box-sizing:border-box;
  3805. width:100%;
  3806. }
  3807. #u38805_text {
  3808. border-width:0px;
  3809. white-space:nowrap;
  3810. text-transform:none;
  3811. }
  3812. #u38806 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:0px;
  3818. height:0px;
  3819. }
  3820. #u38807_img {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:11px;
  3826. height:18px;
  3827. }
  3828. #u38807 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:42px;
  3832. top:79px;
  3833. width:11px;
  3834. height:18px;
  3835. display:flex;
  3836. }
  3837. #u38807 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 2px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u38807_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u38808 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:0px;
  3856. height:0px;
  3857. }
  3858. #u38809_div {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:375px;
  3864. height:40px;
  3865. background:inherit;
  3866. background-color:rgba(255, 255, 255, 1);
  3867. border:none;
  3868. border-radius:0px;
  3869. -moz-box-shadow:none;
  3870. -webkit-box-shadow:none;
  3871. box-shadow:none;
  3872. }
  3873. #u38809 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:29px;
  3877. top:105px;
  3878. width:375px;
  3879. height:40px;
  3880. display:flex;
  3881. }
  3882. #u38809 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 2px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u38809_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u38810_div {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:43px;
  3901. height:40px;
  3902. background:inherit;
  3903. background-color:rgba(255, 255, 255, 0);
  3904. border:none;
  3905. border-left:0px;
  3906. border-top:0px;
  3907. border-right:0px;
  3908. border-radius:0px;
  3909. border-bottom-right-radius:0px;
  3910. border-bottom-left-radius:0px;
  3911. -moz-box-shadow:none;
  3912. -webkit-box-shadow:none;
  3913. box-shadow:none;
  3914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:14px;
  3918. line-height:30px;
  3919. }
  3920. #u38810 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:305px;
  3924. top:105px;
  3925. width:43px;
  3926. height:40px;
  3927. display:flex;
  3928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:14px;
  3932. line-height:30px;
  3933. }
  3934. #u38810 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:0px 0px 0px 0px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u38810_text {
  3942. border-width:0px;
  3943. white-space:nowrap;
  3944. text-transform:none;
  3945. }
  3946. #u38811_div {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:43px;
  3952. height:40px;
  3953. background:inherit;
  3954. background-color:rgba(255, 255, 255, 0);
  3955. border:none;
  3956. border-left:0px;
  3957. border-top:0px;
  3958. border-right:0px;
  3959. border-radius:0px;
  3960. border-bottom-right-radius:0px;
  3961. border-bottom-left-radius:0px;
  3962. -moz-box-shadow:none;
  3963. -webkit-box-shadow:none;
  3964. box-shadow:none;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:14px;
  3969. line-height:30px;
  3970. }
  3971. #u38811 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:200px;
  3975. top:105px;
  3976. width:43px;
  3977. height:40px;
  3978. display:flex;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:14px;
  3983. line-height:30px;
  3984. }
  3985. #u38811 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:0px 0px 0px 0px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u38811_text {
  3993. border-width:0px;
  3994. white-space:nowrap;
  3995. text-transform:none;
  3996. }
  3997. #u38812_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:43px;
  4003. height:40px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 0);
  4006. box-sizing:border-box;
  4007. border-width:2px;
  4008. border-style:solid;
  4009. border-color:rgba(51, 51, 51, 1);
  4010. border-left:0px;
  4011. border-top:0px;
  4012. border-right:0px;
  4013. border-radius:0px;
  4014. border-bottom-right-radius:0px;
  4015. border-bottom-left-radius:0px;
  4016. -moz-box-shadow:none;
  4017. -webkit-box-shadow:none;
  4018. box-shadow:none;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:14px;
  4023. line-height:40px;
  4024. }
  4025. #u38812 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:85px;
  4029. top:105px;
  4030. width:43px;
  4031. height:40px;
  4032. display:flex;
  4033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:14px;
  4037. line-height:40px;
  4038. }
  4039. #u38812 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:0px 0px 0px 0px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u38812_text {
  4047. border-width:0px;
  4048. white-space:nowrap;
  4049. text-transform:none;
  4050. }
  4051. #u38814_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:433px;
  4057. height:865px;
  4058. }
  4059. #u38814 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:453px;
  4063. top:0px;
  4064. width:433px;
  4065. height:865px;
  4066. display:flex;
  4067. }
  4068. #u38814 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 2px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u38814_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u38815_div {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:375px;
  4087. height:40px;
  4088. background:inherit;
  4089. background-color:rgba(255, 255, 255, 1);
  4090. box-sizing:border-box;
  4091. border-width:1px;
  4092. border-style:solid;
  4093. border-color:rgba(215, 215, 215, 1);
  4094. border-left:0px;
  4095. border-top:0px;
  4096. border-right:0px;
  4097. border-radius:0px;
  4098. border-bottom-right-radius:0px;
  4099. border-bottom-left-radius:0px;
  4100. -moz-box-shadow:none;
  4101. -webkit-box-shadow:none;
  4102. box-shadow:none;
  4103. }
  4104. #u38815 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:482px;
  4108. top:67px;
  4109. width:375px;
  4110. height:40px;
  4111. display:flex;
  4112. }
  4113. #u38815 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 2px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u38815_text {
  4121. border-width:0px;
  4122. word-wrap:break-word;
  4123. text-transform:none;
  4124. visibility:hidden;
  4125. }
  4126. #u38816 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:0px;
  4132. height:0px;
  4133. }
  4134. #u38817_div {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:88px;
  4140. height:32px;
  4141. background:inherit;
  4142. background-color:rgba(255, 255, 255, 1);
  4143. box-sizing:border-box;
  4144. border-width:1px;
  4145. border-style:solid;
  4146. border-color:rgba(242, 242, 242, 1);
  4147. border-radius:33px;
  4148. -moz-box-shadow:none;
  4149. -webkit-box-shadow:none;
  4150. box-shadow:none;
  4151. }
  4152. #u38817 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:762px;
  4156. top:71px;
  4157. width:88px;
  4158. height:32px;
  4159. display:flex;
  4160. }
  4161. #u38817 .text {
  4162. position:absolute;
  4163. align-self:center;
  4164. padding:2px 2px 2px 2px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u38817_text {
  4169. border-width:0px;
  4170. word-wrap:break-word;
  4171. text-transform:none;
  4172. visibility:hidden;
  4173. }
  4174. #u38818 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:0px;
  4180. height:0px;
  4181. }
  4182. #u38819_img {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:18px;
  4188. height:18px;
  4189. }
  4190. #u38819 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:825px;
  4194. top:78px;
  4195. width:18px;
  4196. height:18px;
  4197. display:flex;
  4198. }
  4199. #u38819 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:2px 2px 2px 2px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u38819_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. visibility:hidden;
  4211. }
  4212. #u38820_img {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:6px;
  4218. height:6px;
  4219. }
  4220. #u38820 {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:831px;
  4224. top:84px;
  4225. width:6px;
  4226. height:6px;
  4227. display:flex;
  4228. }
  4229. #u38820 .text {
  4230. position:absolute;
  4231. align-self:center;
  4232. padding:2px 2px 2px 2px;
  4233. box-sizing:border-box;
  4234. width:100%;
  4235. }
  4236. #u38820_text {
  4237. border-width:0px;
  4238. word-wrap:break-word;
  4239. text-transform:none;
  4240. visibility:hidden;
  4241. }
  4242. #u38821 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:0px;
  4248. height:0px;
  4249. }
  4250. #u38822_img {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:5px;
  4256. height:5px;
  4257. }
  4258. #u38822 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:776px;
  4262. top:85px;
  4263. width:5px;
  4264. height:5px;
  4265. display:flex;
  4266. }
  4267. #u38822 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 2px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u38822_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. visibility:hidden;
  4279. }
  4280. #u38823_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:5px;
  4286. height:5px;
  4287. }
  4288. #u38823 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:792px;
  4292. top:85px;
  4293. width:5px;
  4294. height:5px;
  4295. display:flex;
  4296. }
  4297. #u38823 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 2px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u38823_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. visibility:hidden;
  4309. }
  4310. #u38824_img {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:7px;
  4316. height:7px;
  4317. }
  4318. #u38824 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:783px;
  4322. top:84px;
  4323. width:7px;
  4324. height:7px;
  4325. display:flex;
  4326. }
  4327. #u38824 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u38824_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u38825_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:19px;
  4346. height:2px;
  4347. }
  4348. #u38825 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:800px;
  4352. top:87px;
  4353. width:18px;
  4354. height:1px;
  4355. display:flex;
  4356. -webkit-transform:rotate(90deg);
  4357. -moz-transform:rotate(90deg);
  4358. -ms-transform:rotate(90deg);
  4359. transform:rotate(90deg);
  4360. }
  4361. #u38825 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 2px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u38825_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. visibility:hidden;
  4373. }
  4374. #u38826_img {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:375px;
  4380. height:44px;
  4381. }
  4382. #u38826 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:482px;
  4386. top:24px;
  4387. width:375px;
  4388. height:44px;
  4389. display:flex;
  4390. }
  4391. #u38826 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 2px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u38826_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u38827_div {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:375px;
  4410. height:50px;
  4411. background:inherit;
  4412. background-color:rgba(255, 255, 255, 1);
  4413. box-sizing:border-box;
  4414. border-width:1px;
  4415. border-style:solid;
  4416. border-color:rgba(242, 242, 242, 1);
  4417. border-radius:26px;
  4418. border-top-left-radius:0px;
  4419. border-top-right-radius:0px;
  4420. -moz-box-shadow:none;
  4421. -webkit-box-shadow:none;
  4422. box-shadow:none;
  4423. }
  4424. #u38827 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:482px;
  4428. top:788px;
  4429. width:375px;
  4430. height:50px;
  4431. display:flex;
  4432. }
  4433. #u38827 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 2px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u38827_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u38828 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:0px;
  4452. height:0px;
  4453. }
  4454. #u38829_img {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:24px;
  4460. height:24px;
  4461. }
  4462. #u38829 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:522px;
  4466. top:792px;
  4467. width:24px;
  4468. height:24px;
  4469. display:flex;
  4470. font-size:8px;
  4471. }
  4472. #u38829 .text {
  4473. position:absolute;
  4474. align-self:center;
  4475. padding:2px 2px 2px 2px;
  4476. box-sizing:border-box;
  4477. width:100%;
  4478. }
  4479. #u38829_text {
  4480. border-width:0px;
  4481. word-wrap:break-word;
  4482. text-transform:none;
  4483. }
  4484. #u38830_div {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:25px;
  4490. height:17px;
  4491. background:inherit;
  4492. background-color:rgba(255, 255, 255, 0);
  4493. border:none;
  4494. border-radius:0px;
  4495. -moz-box-shadow:none;
  4496. -webkit-box-shadow:none;
  4497. box-shadow:none;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. }
  4503. #u38830 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:522px;
  4507. top:817px;
  4508. width:25px;
  4509. height:17px;
  4510. display:flex;
  4511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. font-size:12px;
  4515. }
  4516. #u38830 .text {
  4517. position:absolute;
  4518. align-self:flex-start;
  4519. padding:0px 0px 0px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u38830_text {
  4524. border-width:0px;
  4525. white-space:nowrap;
  4526. text-transform:none;
  4527. }
  4528. #u38831 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:0px;
  4534. height:0px;
  4535. }
  4536. #u38832_img {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:24px;
  4542. height:24px;
  4543. }
  4544. #u38832 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:792px;
  4548. top:794px;
  4549. width:24px;
  4550. height:24px;
  4551. display:flex;
  4552. font-size:8px;
  4553. }
  4554. #u38832 .text {
  4555. position:absolute;
  4556. align-self:center;
  4557. padding:2px 2px 2px 2px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u38832_text {
  4562. border-width:0px;
  4563. word-wrap:break-word;
  4564. text-transform:none;
  4565. }
  4566. #u38833_div {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:25px;
  4572. height:17px;
  4573. background:inherit;
  4574. background-color:rgba(255, 255, 255, 0);
  4575. border:none;
  4576. border-radius:0px;
  4577. -moz-box-shadow:none;
  4578. -webkit-box-shadow:none;
  4579. box-shadow:none;
  4580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:12px;
  4584. }
  4585. #u38833 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:792px;
  4589. top:819px;
  4590. width:25px;
  4591. height:17px;
  4592. display:flex;
  4593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. }
  4598. #u38833 .text {
  4599. position:absolute;
  4600. align-self:flex-start;
  4601. padding:0px 0px 0px 0px;
  4602. box-sizing:border-box;
  4603. width:100%;
  4604. }
  4605. #u38833_text {
  4606. border-width:0px;
  4607. white-space:nowrap;
  4608. text-transform:none;
  4609. }
  4610. #u38834_div {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:375px;
  4616. height:681px;
  4617. background:inherit;
  4618. background-color:rgba(242, 242, 242, 0.462745098039216);
  4619. border:none;
  4620. border-radius:0px;
  4621. -moz-box-shadow:none;
  4622. -webkit-box-shadow:none;
  4623. box-shadow:none;
  4624. }
  4625. #u38834 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:482px;
  4629. top:107px;
  4630. width:375px;
  4631. height:681px;
  4632. display:flex;
  4633. }
  4634. #u38834 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 2px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u38834_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. visibility:hidden;
  4646. }
  4647. #u38835 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:0px;
  4653. height:0px;
  4654. }
  4655. #u38836_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:24px;
  4661. height:24px;
  4662. }
  4663. #u38836 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:704px;
  4667. top:792px;
  4668. width:24px;
  4669. height:24px;
  4670. display:flex;
  4671. font-size:8px;
  4672. }
  4673. #u38836 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:2px 2px 2px 2px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u38836_text {
  4681. border-width:0px;
  4682. word-wrap:break-word;
  4683. text-transform:none;
  4684. }
  4685. #u38837_div {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:37px;
  4691. height:17px;
  4692. background:inherit;
  4693. background-color:rgba(255, 255, 255, 0);
  4694. border:none;
  4695. border-radius:0px;
  4696. -moz-box-shadow:none;
  4697. -webkit-box-shadow:none;
  4698. box-shadow:none;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:12px;
  4703. }
  4704. #u38837 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:698px;
  4708. top:817px;
  4709. width:37px;
  4710. height:17px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:12px;
  4716. }
  4717. #u38837 .text {
  4718. position:absolute;
  4719. align-self:flex-start;
  4720. padding:0px 0px 0px 0px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u38837_text {
  4725. border-width:0px;
  4726. white-space:nowrap;
  4727. text-transform:none;
  4728. }
  4729. #u38838 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:0px;
  4735. height:0px;
  4736. }
  4737. #u38839_img {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:24px;
  4743. height:24px;
  4744. }
  4745. #u38839 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:610px;
  4749. top:792px;
  4750. width:24px;
  4751. height:24px;
  4752. display:flex;
  4753. font-size:8px;
  4754. }
  4755. #u38839 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 2px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u38839_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. }
  4767. #u38840_div {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:37px;
  4773. height:17px;
  4774. background:inherit;
  4775. background-color:rgba(255, 255, 255, 0);
  4776. border:none;
  4777. border-radius:0px;
  4778. -moz-box-shadow:none;
  4779. -webkit-box-shadow:none;
  4780. box-shadow:none;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:12px;
  4785. }
  4786. #u38840 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:604px;
  4790. top:817px;
  4791. width:37px;
  4792. height:17px;
  4793. display:flex;
  4794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:12px;
  4798. }
  4799. #u38840 .text {
  4800. position:absolute;
  4801. align-self:flex-start;
  4802. padding:0px 0px 0px 0px;
  4803. box-sizing:border-box;
  4804. width:100%;
  4805. }
  4806. #u38840_text {
  4807. border-width:0px;
  4808. white-space:nowrap;
  4809. text-transform:none;
  4810. }
  4811. #u38841_div {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:375px;
  4817. height:735px;
  4818. background:inherit;
  4819. background-color:rgba(242, 242, 242, 1);
  4820. border:none;
  4821. border-top:0px;
  4822. border-radius:25px;
  4823. border-top-left-radius:0px;
  4824. border-top-right-radius:0px;
  4825. -moz-box-shadow:none;
  4826. -webkit-box-shadow:none;
  4827. box-shadow:none;
  4828. }
  4829. #u38841 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:482px;
  4833. top:105px;
  4834. width:375px;
  4835. height:735px;
  4836. display:flex;
  4837. }
  4838. #u38841 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u38841_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u38842 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:0px;
  4857. height:0px;
  4858. }
  4859. #u38843_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:11px;
  4865. height:18px;
  4866. }
  4867. #u38843 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:495px;
  4871. top:79px;
  4872. width:11px;
  4873. height:18px;
  4874. display:flex;
  4875. }
  4876. #u38843 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:2px 2px 2px 2px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u38843_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. visibility:hidden;
  4888. }
  4889. #u38844 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:0px;
  4895. height:0px;
  4896. }
  4897. #u38845_div {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:375px;
  4903. height:200px;
  4904. background:inherit;
  4905. background-color:rgba(255, 255, 255, 1);
  4906. border:none;
  4907. border-left:0px;
  4908. border-top:0px;
  4909. border-right:0px;
  4910. border-radius:0px;
  4911. border-bottom-right-radius:0px;
  4912. border-bottom-left-radius:0px;
  4913. -moz-box-shadow:none;
  4914. -webkit-box-shadow:none;
  4915. box-shadow:none;
  4916. }
  4917. #u38845 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:482px;
  4921. top:155px;
  4922. width:375px;
  4923. height:200px;
  4924. display:flex;
  4925. }
  4926. #u38845 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 2px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u38845_text {
  4934. border-width:0px;
  4935. word-wrap:break-word;
  4936. text-transform:none;
  4937. visibility:hidden;
  4938. }
  4939. #u38846_div {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:181px;
  4945. height:80px;
  4946. background:inherit;
  4947. background-color:rgba(255, 255, 255, 0);
  4948. border:none;
  4949. border-left:0px;
  4950. border-top:0px;
  4951. border-right:0px;
  4952. border-radius:0px;
  4953. border-bottom-right-radius:0px;
  4954. border-bottom-left-radius:0px;
  4955. -moz-box-shadow:none;
  4956. -webkit-box-shadow:none;
  4957. box-shadow:none;
  4958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:12px;
  4962. color:#7F7F7F;
  4963. line-height:20px;
  4964. }
  4965. #u38846 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:499px;
  4969. top:219px;
  4970. width:181px;
  4971. height:80px;
  4972. display:flex;
  4973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. font-size:12px;
  4977. color:#7F7F7F;
  4978. line-height:20px;
  4979. }
  4980. #u38846 .text {
  4981. position:absolute;
  4982. align-self:flex-start;
  4983. padding:0px 0px 0px 0px;
  4984. box-sizing:border-box;
  4985. width:100%;
  4986. }
  4987. #u38846_text {
  4988. border-width:0px;
  4989. white-space:nowrap;
  4990. text-transform:none;
  4991. }
  4992. #u38847_img {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:40px;
  4998. height:40px;
  4999. }
  5000. #u38847 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:499px;
  5004. top:171px;
  5005. width:40px;
  5006. height:40px;
  5007. display:flex;
  5008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. }
  5012. #u38847 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:2px 2px 2px 2px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u38847_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. }
  5024. #u38848_div {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:33px;
  5030. height:30px;
  5031. background:inherit;
  5032. background-color:rgba(255, 255, 255, 0);
  5033. border:none;
  5034. border-left:0px;
  5035. border-top:0px;
  5036. border-right:0px;
  5037. border-radius:0px;
  5038. border-bottom-right-radius:0px;
  5039. border-bottom-left-radius:0px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:16px;
  5047. line-height:30px;
  5048. }
  5049. #u38848 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:559px;
  5053. top:176px;
  5054. width:33px;
  5055. height:30px;
  5056. display:flex;
  5057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:16px;
  5061. line-height:30px;
  5062. }
  5063. #u38848 .text {
  5064. position:absolute;
  5065. align-self:flex-start;
  5066. padding:0px 0px 0px 0px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u38848_text {
  5071. border-width:0px;
  5072. white-space:nowrap;
  5073. text-transform:none;
  5074. }
  5075. #u38849_div {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:85px;
  5081. height:30px;
  5082. background:inherit;
  5083. background-color:rgba(242, 242, 242, 1);
  5084. border:none;
  5085. border-radius:40px;
  5086. -moz-box-shadow:none;
  5087. -webkit-box-shadow:none;
  5088. box-shadow:none;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:12px;
  5093. color:#AAAAAA;
  5094. }
  5095. #u38849 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:762px;
  5099. top:315px;
  5100. width:85px;
  5101. height:30px;
  5102. display:flex;
  5103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:12px;
  5107. color:#AAAAAA;
  5108. }
  5109. #u38849 .text {
  5110. position:absolute;
  5111. align-self:center;
  5112. padding:2px 2px 2px 2px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u38849_text {
  5117. border-width:0px;
  5118. word-wrap:break-word;
  5119. text-transform:none;
  5120. }
  5121. #u38850 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:0px;
  5127. height:0px;
  5128. }
  5129. #u38851_div {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:375px;
  5135. height:40px;
  5136. background:inherit;
  5137. background-color:rgba(255, 255, 255, 1);
  5138. border:none;
  5139. border-radius:0px;
  5140. -moz-box-shadow:none;
  5141. -webkit-box-shadow:none;
  5142. box-shadow:none;
  5143. }
  5144. #u38851 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:482px;
  5148. top:105px;
  5149. width:375px;
  5150. height:40px;
  5151. display:flex;
  5152. }
  5153. #u38851 .text {
  5154. position:absolute;
  5155. align-self:center;
  5156. padding:2px 2px 2px 2px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u38851_text {
  5161. border-width:0px;
  5162. word-wrap:break-word;
  5163. text-transform:none;
  5164. visibility:hidden;
  5165. }
  5166. #u38852_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:43px;
  5172. height:40px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. box-sizing:border-box;
  5176. border-width:2px;
  5177. border-style:solid;
  5178. border-color:rgba(51, 51, 51, 1);
  5179. border-left:0px;
  5180. border-top:0px;
  5181. border-right:0px;
  5182. border-radius:0px;
  5183. border-bottom-right-radius:0px;
  5184. border-bottom-left-radius:0px;
  5185. -moz-box-shadow:none;
  5186. -webkit-box-shadow:none;
  5187. box-shadow:none;
  5188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. line-height:30px;
  5193. }
  5194. #u38852 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:758px;
  5198. top:105px;
  5199. width:43px;
  5200. height:40px;
  5201. display:flex;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:14px;
  5206. line-height:30px;
  5207. }
  5208. #u38852 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:0px 0px 0px 0px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u38852_text {
  5216. border-width:0px;
  5217. white-space:nowrap;
  5218. text-transform:none;
  5219. }
  5220. #u38853_div {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:43px;
  5226. height:40px;
  5227. background:inherit;
  5228. background-color:rgba(255, 255, 255, 0);
  5229. box-sizing:border-box;
  5230. border-width:2px;
  5231. border-style:solid;
  5232. border-color:rgba(51, 51, 51, 1);
  5233. border-left:0px;
  5234. border-top:0px;
  5235. border-right:0px;
  5236. border-radius:0px;
  5237. border-bottom-right-radius:0px;
  5238. border-bottom-left-radius:0px;
  5239. -moz-box-shadow:none;
  5240. -webkit-box-shadow:none;
  5241. box-shadow:none;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. font-size:14px;
  5246. line-height:30px;
  5247. }
  5248. #u38853 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:653px;
  5252. top:105px;
  5253. width:43px;
  5254. height:40px;
  5255. display:flex;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:14px;
  5260. line-height:30px;
  5261. }
  5262. #u38853 .text {
  5263. position:absolute;
  5264. align-self:center;
  5265. padding:0px 0px 0px 0px;
  5266. box-sizing:border-box;
  5267. width:100%;
  5268. }
  5269. #u38853_text {
  5270. border-width:0px;
  5271. white-space:nowrap;
  5272. text-transform:none;
  5273. }
  5274. #u38854_div {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:52px;
  5280. height:40px;
  5281. background:inherit;
  5282. background-color:rgba(255, 255, 255, 0);
  5283. border:none;
  5284. border-left:0px;
  5285. border-top:0px;
  5286. border-right:0px;
  5287. border-radius:0px;
  5288. border-bottom-right-radius:0px;
  5289. border-bottom-left-radius:0px;
  5290. -moz-box-shadow:none;
  5291. -webkit-box-shadow:none;
  5292. box-shadow:none;
  5293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5294. font-weight:400;
  5295. font-style:normal;
  5296. font-size:14px;
  5297. line-height:30px;
  5298. }
  5299. #u38854 {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:538px;
  5303. top:105px;
  5304. width:52px;
  5305. height:40px;
  5306. display:flex;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:14px;
  5311. line-height:30px;
  5312. }
  5313. #u38854 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:0px 0px 0px 0px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u38854_text {
  5321. border-width:0px;
  5322. word-wrap:break-word;
  5323. text-transform:none;
  5324. }
  5325. #u38855 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:0px;
  5331. height:0px;
  5332. }
  5333. #u38856_div {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:375px;
  5339. height:200px;
  5340. background:inherit;
  5341. background-color:rgba(255, 255, 255, 1);
  5342. border:none;
  5343. border-left:0px;
  5344. border-top:0px;
  5345. border-right:0px;
  5346. border-radius:0px;
  5347. border-bottom-right-radius:0px;
  5348. border-bottom-left-radius:0px;
  5349. -moz-box-shadow:none;
  5350. -webkit-box-shadow:none;
  5351. box-shadow:none;
  5352. }
  5353. #u38856 {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:29px;
  5357. top:366px;
  5358. width:375px;
  5359. height:200px;
  5360. display:flex;
  5361. }
  5362. #u38856 .text {
  5363. position:absolute;
  5364. align-self:center;
  5365. padding:2px 2px 2px 2px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u38856_text {
  5370. border-width:0px;
  5371. word-wrap:break-word;
  5372. text-transform:none;
  5373. visibility:hidden;
  5374. }
  5375. #u38857_div {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:181px;
  5381. height:80px;
  5382. background:inherit;
  5383. background-color:rgba(255, 255, 255, 0);
  5384. border:none;
  5385. border-left:0px;
  5386. border-top:0px;
  5387. border-right:0px;
  5388. border-radius:0px;
  5389. border-bottom-right-radius:0px;
  5390. border-bottom-left-radius:0px;
  5391. -moz-box-shadow:none;
  5392. -webkit-box-shadow:none;
  5393. box-shadow:none;
  5394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5395. font-weight:400;
  5396. font-style:normal;
  5397. font-size:12px;
  5398. color:#7F7F7F;
  5399. line-height:20px;
  5400. }
  5401. #u38857 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:46px;
  5405. top:436px;
  5406. width:181px;
  5407. height:80px;
  5408. display:flex;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:12px;
  5413. color:#7F7F7F;
  5414. line-height:20px;
  5415. }
  5416. #u38857 .text {
  5417. position:absolute;
  5418. align-self:flex-start;
  5419. padding:0px 0px 0px 0px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u38857_text {
  5424. border-width:0px;
  5425. white-space:nowrap;
  5426. text-transform:none;
  5427. }
  5428. #u38858_img {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:40px;
  5434. height:40px;
  5435. }
  5436. #u38858 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:46px;
  5440. top:382px;
  5441. width:40px;
  5442. height:40px;
  5443. display:flex;
  5444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. }
  5448. #u38858 .text {
  5449. position:absolute;
  5450. align-self:center;
  5451. padding:2px 2px 2px 2px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u38858_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. }
  5460. #u38859_div {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:33px;
  5466. height:30px;
  5467. background:inherit;
  5468. background-color:rgba(255, 255, 255, 0);
  5469. border:none;
  5470. border-left:0px;
  5471. border-top:0px;
  5472. border-right:0px;
  5473. border-radius:0px;
  5474. border-bottom-right-radius:0px;
  5475. border-bottom-left-radius:0px;
  5476. -moz-box-shadow:none;
  5477. -webkit-box-shadow:none;
  5478. box-shadow:none;
  5479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:16px;
  5483. line-height:30px;
  5484. }
  5485. #u38859 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:106px;
  5489. top:387px;
  5490. width:33px;
  5491. height:30px;
  5492. display:flex;
  5493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5494. font-weight:400;
  5495. font-style:normal;
  5496. font-size:16px;
  5497. line-height:30px;
  5498. }
  5499. #u38859 .text {
  5500. position:absolute;
  5501. align-self:flex-start;
  5502. padding:0px 0px 0px 0px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u38859_text {
  5507. border-width:0px;
  5508. white-space:nowrap;
  5509. text-transform:none;
  5510. }
  5511. #u38860_div {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:79px;
  5517. height:30px;
  5518. background:inherit;
  5519. background-color:rgba(255, 255, 255, 1);
  5520. box-sizing:border-box;
  5521. border-width:1px;
  5522. border-style:solid;
  5523. border-color:rgba(127, 127, 127, 1);
  5524. border-radius:40px;
  5525. -moz-box-shadow:none;
  5526. -webkit-box-shadow:none;
  5527. box-shadow:none;
  5528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:12px;
  5532. }
  5533. #u38860 {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:305px;
  5537. top:526px;
  5538. width:79px;
  5539. height:30px;
  5540. display:flex;
  5541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5542. font-weight:400;
  5543. font-style:normal;
  5544. font-size:12px;
  5545. }
  5546. #u38860 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 2px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u38860_text {
  5554. border-width:0px;
  5555. word-wrap:break-word;
  5556. text-transform:none;
  5557. }
  5558. #u38861_div {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:161px;
  5564. height:25px;
  5565. background:inherit;
  5566. background-color:rgba(255, 255, 255, 0);
  5567. border:none;
  5568. border-left:0px;
  5569. border-top:0px;
  5570. border-right:0px;
  5571. border-radius:0px;
  5572. border-bottom-right-radius:0px;
  5573. border-bottom-left-radius:0px;
  5574. -moz-box-shadow:none;
  5575. -webkit-box-shadow:none;
  5576. box-shadow:none;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:10px;
  5581. color:#F59A23;
  5582. line-height:25px;
  5583. }
  5584. #u38861 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:106px;
  5588. top:411px;
  5589. width:161px;
  5590. height:25px;
  5591. display:flex;
  5592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:10px;
  5596. color:#F59A23;
  5597. line-height:25px;
  5598. }
  5599. #u38861 .text {
  5600. position:absolute;
  5601. align-self:flex-start;
  5602. padding:0px 0px 0px 0px;
  5603. box-sizing:border-box;
  5604. width:100%;
  5605. }
  5606. #u38861_text {
  5607. border-width:0px;
  5608. white-space:nowrap;
  5609. text-transform:none;
  5610. }
  5611. #u38863_img {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:433px;
  5617. height:865px;
  5618. }
  5619. #u38863 {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:911px;
  5623. top:0px;
  5624. width:433px;
  5625. height:865px;
  5626. display:flex;
  5627. }
  5628. #u38863 .text {
  5629. position:absolute;
  5630. align-self:center;
  5631. padding:2px 2px 2px 2px;
  5632. box-sizing:border-box;
  5633. width:100%;
  5634. }
  5635. #u38863_text {
  5636. border-width:0px;
  5637. word-wrap:break-word;
  5638. text-transform:none;
  5639. visibility:hidden;
  5640. }
  5641. #u38864_div {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:375px;
  5647. height:40px;
  5648. background:inherit;
  5649. background-color:rgba(255, 255, 255, 1);
  5650. box-sizing:border-box;
  5651. border-width:1px;
  5652. border-style:solid;
  5653. border-color:rgba(215, 215, 215, 1);
  5654. border-left:0px;
  5655. border-top:0px;
  5656. border-right:0px;
  5657. border-radius:0px;
  5658. border-bottom-right-radius:0px;
  5659. border-bottom-left-radius:0px;
  5660. -moz-box-shadow:none;
  5661. -webkit-box-shadow:none;
  5662. box-shadow:none;
  5663. }
  5664. #u38864 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:940px;
  5668. top:67px;
  5669. width:375px;
  5670. height:40px;
  5671. display:flex;
  5672. }
  5673. #u38864 .text {
  5674. position:absolute;
  5675. align-self:center;
  5676. padding:2px 2px 2px 2px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u38864_text {
  5681. border-width:0px;
  5682. word-wrap:break-word;
  5683. text-transform:none;
  5684. visibility:hidden;
  5685. }
  5686. #u38865 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:0px;
  5692. height:0px;
  5693. }
  5694. #u38866_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:88px;
  5700. height:32px;
  5701. background:inherit;
  5702. background-color:rgba(255, 255, 255, 1);
  5703. box-sizing:border-box;
  5704. border-width:1px;
  5705. border-style:solid;
  5706. border-color:rgba(242, 242, 242, 1);
  5707. border-radius:33px;
  5708. -moz-box-shadow:none;
  5709. -webkit-box-shadow:none;
  5710. box-shadow:none;
  5711. }
  5712. #u38866 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:1220px;
  5716. top:71px;
  5717. width:88px;
  5718. height:32px;
  5719. display:flex;
  5720. }
  5721. #u38866 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 2px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u38866_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u38867 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:0px;
  5740. height:0px;
  5741. }
  5742. #u38868_img {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:18px;
  5748. height:18px;
  5749. }
  5750. #u38868 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:1283px;
  5754. top:78px;
  5755. width:18px;
  5756. height:18px;
  5757. display:flex;
  5758. }
  5759. #u38868 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 2px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u38868_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u38869_img {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:6px;
  5778. height:6px;
  5779. }
  5780. #u38869 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:1289px;
  5784. top:84px;
  5785. width:6px;
  5786. height:6px;
  5787. display:flex;
  5788. }
  5789. #u38869 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:2px 2px 2px 2px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u38869_text {
  5797. border-width:0px;
  5798. word-wrap:break-word;
  5799. text-transform:none;
  5800. visibility:hidden;
  5801. }
  5802. #u38870 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:0px;
  5808. height:0px;
  5809. }
  5810. #u38871_img {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:5px;
  5816. height:5px;
  5817. }
  5818. #u38871 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:1234px;
  5822. top:85px;
  5823. width:5px;
  5824. height:5px;
  5825. display:flex;
  5826. }
  5827. #u38871 .text {
  5828. position:absolute;
  5829. align-self:center;
  5830. padding:2px 2px 2px 2px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u38871_text {
  5835. border-width:0px;
  5836. word-wrap:break-word;
  5837. text-transform:none;
  5838. visibility:hidden;
  5839. }
  5840. #u38872_img {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:5px;
  5846. height:5px;
  5847. }
  5848. #u38872 {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:1250px;
  5852. top:85px;
  5853. width:5px;
  5854. height:5px;
  5855. display:flex;
  5856. }
  5857. #u38872 .text {
  5858. position:absolute;
  5859. align-self:center;
  5860. padding:2px 2px 2px 2px;
  5861. box-sizing:border-box;
  5862. width:100%;
  5863. }
  5864. #u38872_text {
  5865. border-width:0px;
  5866. word-wrap:break-word;
  5867. text-transform:none;
  5868. visibility:hidden;
  5869. }
  5870. #u38873_img {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:7px;
  5876. height:7px;
  5877. }
  5878. #u38873 {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:1241px;
  5882. top:84px;
  5883. width:7px;
  5884. height:7px;
  5885. display:flex;
  5886. }
  5887. #u38873 .text {
  5888. position:absolute;
  5889. align-self:center;
  5890. padding:2px 2px 2px 2px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u38873_text {
  5895. border-width:0px;
  5896. word-wrap:break-word;
  5897. text-transform:none;
  5898. visibility:hidden;
  5899. }
  5900. #u38874_img {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:19px;
  5906. height:2px;
  5907. }
  5908. #u38874 {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:1258px;
  5912. top:87px;
  5913. width:18px;
  5914. height:1px;
  5915. display:flex;
  5916. -webkit-transform:rotate(90deg);
  5917. -moz-transform:rotate(90deg);
  5918. -ms-transform:rotate(90deg);
  5919. transform:rotate(90deg);
  5920. }
  5921. #u38874 .text {
  5922. position:absolute;
  5923. align-self:center;
  5924. padding:2px 2px 2px 2px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u38874_text {
  5929. border-width:0px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. visibility:hidden;
  5933. }
  5934. #u38875_img {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:375px;
  5940. height:44px;
  5941. }
  5942. #u38875 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:940px;
  5946. top:24px;
  5947. width:375px;
  5948. height:44px;
  5949. display:flex;
  5950. }
  5951. #u38875 .text {
  5952. position:absolute;
  5953. align-self:center;
  5954. padding:2px 2px 2px 2px;
  5955. box-sizing:border-box;
  5956. width:100%;
  5957. }
  5958. #u38875_text {
  5959. border-width:0px;
  5960. word-wrap:break-word;
  5961. text-transform:none;
  5962. visibility:hidden;
  5963. }
  5964. #u38876_div {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:375px;
  5970. height:50px;
  5971. background:inherit;
  5972. background-color:rgba(255, 255, 255, 1);
  5973. box-sizing:border-box;
  5974. border-width:1px;
  5975. border-style:solid;
  5976. border-color:rgba(242, 242, 242, 1);
  5977. border-radius:26px;
  5978. border-top-left-radius:0px;
  5979. border-top-right-radius:0px;
  5980. -moz-box-shadow:none;
  5981. -webkit-box-shadow:none;
  5982. box-shadow:none;
  5983. }
  5984. #u38876 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:940px;
  5988. top:788px;
  5989. width:375px;
  5990. height:50px;
  5991. display:flex;
  5992. }
  5993. #u38876 .text {
  5994. position:absolute;
  5995. align-self:center;
  5996. padding:2px 2px 2px 2px;
  5997. box-sizing:border-box;
  5998. width:100%;
  5999. }
  6000. #u38876_text {
  6001. border-width:0px;
  6002. word-wrap:break-word;
  6003. text-transform:none;
  6004. visibility:hidden;
  6005. }
  6006. #u38877 {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:0px;
  6012. height:0px;
  6013. }
  6014. #u38878_img {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:24px;
  6020. height:24px;
  6021. }
  6022. #u38878 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:980px;
  6026. top:792px;
  6027. width:24px;
  6028. height:24px;
  6029. display:flex;
  6030. font-size:8px;
  6031. }
  6032. #u38878 .text {
  6033. position:absolute;
  6034. align-self:center;
  6035. padding:2px 2px 2px 2px;
  6036. box-sizing:border-box;
  6037. width:100%;
  6038. }
  6039. #u38878_text {
  6040. border-width:0px;
  6041. word-wrap:break-word;
  6042. text-transform:none;
  6043. }
  6044. #u38879_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:25px;
  6050. height:17px;
  6051. background:inherit;
  6052. background-color:rgba(255, 255, 255, 0);
  6053. border:none;
  6054. border-radius:0px;
  6055. -moz-box-shadow:none;
  6056. -webkit-box-shadow:none;
  6057. box-shadow:none;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:12px;
  6062. }
  6063. #u38879 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:980px;
  6067. top:817px;
  6068. width:25px;
  6069. height:17px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:12px;
  6075. }
  6076. #u38879 .text {
  6077. position:absolute;
  6078. align-self:flex-start;
  6079. padding:0px 0px 0px 0px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u38879_text {
  6084. border-width:0px;
  6085. white-space:nowrap;
  6086. text-transform:none;
  6087. }
  6088. #u38880 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:0px;
  6094. height:0px;
  6095. }
  6096. #u38881_img {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:24px;
  6102. height:24px;
  6103. }
  6104. #u38881 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:1250px;
  6108. top:794px;
  6109. width:24px;
  6110. height:24px;
  6111. display:flex;
  6112. font-size:8px;
  6113. }
  6114. #u38881 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u38881_text {
  6122. border-width:0px;
  6123. word-wrap:break-word;
  6124. text-transform:none;
  6125. }
  6126. #u38882_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:25px;
  6132. height:17px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 0);
  6135. border:none;
  6136. border-radius:0px;
  6137. -moz-box-shadow:none;
  6138. -webkit-box-shadow:none;
  6139. box-shadow:none;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:12px;
  6144. }
  6145. #u38882 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:1250px;
  6149. top:819px;
  6150. width:25px;
  6151. height:17px;
  6152. display:flex;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:12px;
  6157. }
  6158. #u38882 .text {
  6159. position:absolute;
  6160. align-self:flex-start;
  6161. padding:0px 0px 0px 0px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u38882_text {
  6166. border-width:0px;
  6167. white-space:nowrap;
  6168. text-transform:none;
  6169. }
  6170. #u38883_div {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:375px;
  6176. height:681px;
  6177. background:inherit;
  6178. background-color:rgba(242, 242, 242, 0.462745098039216);
  6179. border:none;
  6180. border-radius:0px;
  6181. -moz-box-shadow:none;
  6182. -webkit-box-shadow:none;
  6183. box-shadow:none;
  6184. }
  6185. #u38883 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:940px;
  6189. top:107px;
  6190. width:375px;
  6191. height:681px;
  6192. display:flex;
  6193. }
  6194. #u38883 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 2px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u38883_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. visibility:hidden;
  6206. }
  6207. #u38884 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:0px;
  6213. height:0px;
  6214. }
  6215. #u38885_img {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:24px;
  6221. height:24px;
  6222. }
  6223. #u38885 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:1162px;
  6227. top:792px;
  6228. width:24px;
  6229. height:24px;
  6230. display:flex;
  6231. font-size:8px;
  6232. }
  6233. #u38885 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:2px 2px 2px 2px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u38885_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. }
  6245. #u38886_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:37px;
  6251. height:17px;
  6252. background:inherit;
  6253. background-color:rgba(255, 255, 255, 0);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:12px;
  6263. }
  6264. #u38886 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:1156px;
  6268. top:817px;
  6269. width:37px;
  6270. height:17px;
  6271. display:flex;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:12px;
  6276. }
  6277. #u38886 .text {
  6278. position:absolute;
  6279. align-self:flex-start;
  6280. padding:0px 0px 0px 0px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u38886_text {
  6285. border-width:0px;
  6286. white-space:nowrap;
  6287. text-transform:none;
  6288. }
  6289. #u38887 {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:0px;
  6295. height:0px;
  6296. }
  6297. #u38888_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:24px;
  6303. height:24px;
  6304. }
  6305. #u38888 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:1068px;
  6309. top:792px;
  6310. width:24px;
  6311. height:24px;
  6312. display:flex;
  6313. font-size:8px;
  6314. }
  6315. #u38888 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 2px 2px 2px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u38888_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. }
  6327. #u38889_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:37px;
  6333. height:17px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. border:none;
  6337. border-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:12px;
  6345. }
  6346. #u38889 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:1062px;
  6350. top:817px;
  6351. width:37px;
  6352. height:17px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. }
  6359. #u38889 .text {
  6360. position:absolute;
  6361. align-self:flex-start;
  6362. padding:0px 0px 0px 0px;
  6363. box-sizing:border-box;
  6364. width:100%;
  6365. }
  6366. #u38889_text {
  6367. border-width:0px;
  6368. white-space:nowrap;
  6369. text-transform:none;
  6370. }
  6371. #u38890_div {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:375px;
  6377. height:735px;
  6378. background:inherit;
  6379. background-color:rgba(242, 242, 242, 1);
  6380. border:none;
  6381. border-top:0px;
  6382. border-radius:25px;
  6383. border-top-left-radius:0px;
  6384. border-top-right-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. }
  6389. #u38890 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:940px;
  6393. top:105px;
  6394. width:375px;
  6395. height:735px;
  6396. display:flex;
  6397. }
  6398. #u38890 .text {
  6399. position:absolute;
  6400. align-self:center;
  6401. padding:2px 2px 2px 2px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u38890_text {
  6406. border-width:0px;
  6407. word-wrap:break-word;
  6408. text-transform:none;
  6409. visibility:hidden;
  6410. }
  6411. #u38891 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:0px;
  6417. height:0px;
  6418. }
  6419. #u38892_img {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:11px;
  6425. height:18px;
  6426. }
  6427. #u38892 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:953px;
  6431. top:79px;
  6432. width:11px;
  6433. height:18px;
  6434. display:flex;
  6435. }
  6436. #u38892 .text {
  6437. position:absolute;
  6438. align-self:center;
  6439. padding:2px 2px 2px 2px;
  6440. box-sizing:border-box;
  6441. width:100%;
  6442. }
  6443. #u38892_text {
  6444. border-width:0px;
  6445. word-wrap:break-word;
  6446. text-transform:none;
  6447. visibility:hidden;
  6448. }
  6449. #u38893 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:0px;
  6455. height:0px;
  6456. }
  6457. #u38894_div {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:0px;
  6461. top:0px;
  6462. width:375px;
  6463. height:40px;
  6464. background:inherit;
  6465. background-color:rgba(255, 255, 255, 1);
  6466. border:none;
  6467. border-radius:0px;
  6468. -moz-box-shadow:none;
  6469. -webkit-box-shadow:none;
  6470. box-shadow:none;
  6471. }
  6472. #u38894 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:940px;
  6476. top:105px;
  6477. width:375px;
  6478. height:40px;
  6479. display:flex;
  6480. }
  6481. #u38894 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:2px 2px 2px 2px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u38894_text {
  6489. border-width:0px;
  6490. word-wrap:break-word;
  6491. text-transform:none;
  6492. visibility:hidden;
  6493. }
  6494. #u38895_div {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:43px;
  6500. height:40px;
  6501. background:inherit;
  6502. background-color:rgba(255, 255, 255, 0);
  6503. box-sizing:border-box;
  6504. border-width:2px;
  6505. border-style:solid;
  6506. border-color:rgba(51, 51, 51, 1);
  6507. border-left:0px;
  6508. border-top:0px;
  6509. border-right:0px;
  6510. border-radius:0px;
  6511. border-bottom-right-radius:0px;
  6512. border-bottom-left-radius:0px;
  6513. -moz-box-shadow:none;
  6514. -webkit-box-shadow:none;
  6515. box-shadow:none;
  6516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:14px;
  6520. line-height:30px;
  6521. }
  6522. #u38895 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:1216px;
  6526. top:105px;
  6527. width:43px;
  6528. height:40px;
  6529. display:flex;
  6530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:14px;
  6534. line-height:30px;
  6535. }
  6536. #u38895 .text {
  6537. position:absolute;
  6538. align-self:center;
  6539. padding:0px 0px 0px 0px;
  6540. box-sizing:border-box;
  6541. width:100%;
  6542. }
  6543. #u38895_text {
  6544. border-width:0px;
  6545. white-space:nowrap;
  6546. text-transform:none;
  6547. }
  6548. #u38896_div {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:43px;
  6554. height:40px;
  6555. background:inherit;
  6556. background-color:rgba(255, 255, 255, 0);
  6557. border:none;
  6558. border-left:0px;
  6559. border-top:0px;
  6560. border-right:0px;
  6561. border-radius:0px;
  6562. border-bottom-right-radius:0px;
  6563. border-bottom-left-radius:0px;
  6564. -moz-box-shadow:none;
  6565. -webkit-box-shadow:none;
  6566. box-shadow:none;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:14px;
  6571. line-height:30px;
  6572. }
  6573. #u38896 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:1111px;
  6577. top:105px;
  6578. width:43px;
  6579. height:40px;
  6580. display:flex;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:14px;
  6585. line-height:30px;
  6586. }
  6587. #u38896 .text {
  6588. position:absolute;
  6589. align-self:center;
  6590. padding:0px 0px 0px 0px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u38896_text {
  6595. border-width:0px;
  6596. white-space:nowrap;
  6597. text-transform:none;
  6598. }
  6599. #u38897_div {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:52px;
  6605. height:40px;
  6606. background:inherit;
  6607. background-color:rgba(255, 255, 255, 0);
  6608. border:none;
  6609. border-left:0px;
  6610. border-top:0px;
  6611. border-right:0px;
  6612. border-radius:0px;
  6613. border-bottom-right-radius:0px;
  6614. border-bottom-left-radius:0px;
  6615. -moz-box-shadow:none;
  6616. -webkit-box-shadow:none;
  6617. box-shadow:none;
  6618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6619. font-weight:400;
  6620. font-style:normal;
  6621. font-size:14px;
  6622. line-height:30px;
  6623. }
  6624. #u38897 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:996px;
  6628. top:105px;
  6629. width:52px;
  6630. height:40px;
  6631. display:flex;
  6632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:14px;
  6636. line-height:30px;
  6637. }
  6638. #u38897 .text {
  6639. position:absolute;
  6640. align-self:center;
  6641. padding:0px 0px 0px 0px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u38897_text {
  6646. border-width:0px;
  6647. word-wrap:break-word;
  6648. text-transform:none;
  6649. }
  6650. #u38898 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:0px;
  6656. height:0px;
  6657. }
  6658. #u38899_div {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:375px;
  6664. height:200px;
  6665. background:inherit;
  6666. background-color:rgba(255, 255, 255, 1);
  6667. border:none;
  6668. border-left:0px;
  6669. border-top:0px;
  6670. border-right:0px;
  6671. border-radius:0px;
  6672. border-bottom-right-radius:0px;
  6673. border-bottom-left-radius:0px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. }
  6678. #u38899 {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:29px;
  6682. top:155px;
  6683. width:375px;
  6684. height:200px;
  6685. display:flex;
  6686. }
  6687. #u38899 .text {
  6688. position:absolute;
  6689. align-self:center;
  6690. padding:2px 2px 2px 2px;
  6691. box-sizing:border-box;
  6692. width:100%;
  6693. }
  6694. #u38899_text {
  6695. border-width:0px;
  6696. word-wrap:break-word;
  6697. text-transform:none;
  6698. visibility:hidden;
  6699. }
  6700. #u38900_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:181px;
  6706. height:80px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 0);
  6709. border:none;
  6710. border-left:0px;
  6711. border-top:0px;
  6712. border-right:0px;
  6713. border-radius:0px;
  6714. border-bottom-right-radius:0px;
  6715. border-bottom-left-radius:0px;
  6716. -moz-box-shadow:none;
  6717. -webkit-box-shadow:none;
  6718. box-shadow:none;
  6719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6720. font-weight:400;
  6721. font-style:normal;
  6722. font-size:12px;
  6723. color:#7F7F7F;
  6724. line-height:20px;
  6725. }
  6726. #u38900 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:46px;
  6730. top:221px;
  6731. width:181px;
  6732. height:80px;
  6733. display:flex;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:12px;
  6738. color:#7F7F7F;
  6739. line-height:20px;
  6740. }
  6741. #u38900 .text {
  6742. position:absolute;
  6743. align-self:flex-start;
  6744. padding:0px 0px 0px 0px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u38900_text {
  6749. border-width:0px;
  6750. white-space:nowrap;
  6751. text-transform:none;
  6752. }
  6753. #u38901_img {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:40px;
  6759. height:40px;
  6760. }
  6761. #u38901 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:46px;
  6765. top:171px;
  6766. width:40px;
  6767. height:40px;
  6768. display:flex;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. }
  6773. #u38901 .text {
  6774. position:absolute;
  6775. align-self:center;
  6776. padding:2px 2px 2px 2px;
  6777. box-sizing:border-box;
  6778. width:100%;
  6779. }
  6780. #u38901_text {
  6781. border-width:0px;
  6782. word-wrap:break-word;
  6783. text-transform:none;
  6784. }
  6785. #u38902_div {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:0px;
  6789. top:0px;
  6790. width:33px;
  6791. height:30px;
  6792. background:inherit;
  6793. background-color:rgba(255, 255, 255, 0);
  6794. border:none;
  6795. border-left:0px;
  6796. border-top:0px;
  6797. border-right:0px;
  6798. border-radius:0px;
  6799. border-bottom-right-radius:0px;
  6800. border-bottom-left-radius:0px;
  6801. -moz-box-shadow:none;
  6802. -webkit-box-shadow:none;
  6803. box-shadow:none;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:16px;
  6808. line-height:30px;
  6809. }
  6810. #u38902 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:106px;
  6814. top:170px;
  6815. width:33px;
  6816. height:30px;
  6817. display:flex;
  6818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:16px;
  6822. line-height:30px;
  6823. }
  6824. #u38902 .text {
  6825. position:absolute;
  6826. align-self:flex-start;
  6827. padding:0px 0px 0px 0px;
  6828. box-sizing:border-box;
  6829. width:100%;
  6830. }
  6831. #u38902_text {
  6832. border-width:0px;
  6833. white-space:nowrap;
  6834. text-transform:none;
  6835. }
  6836. #u38903_div {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:161px;
  6842. height:25px;
  6843. background:inherit;
  6844. background-color:rgba(255, 255, 255, 0);
  6845. border:none;
  6846. border-left:0px;
  6847. border-top:0px;
  6848. border-right:0px;
  6849. border-radius:0px;
  6850. border-bottom-right-radius:0px;
  6851. border-bottom-left-radius:0px;
  6852. -moz-box-shadow:none;
  6853. -webkit-box-shadow:none;
  6854. box-shadow:none;
  6855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:10px;
  6859. color:#F59A23;
  6860. line-height:25px;
  6861. }
  6862. #u38903 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:106px;
  6866. top:196px;
  6867. width:161px;
  6868. height:25px;
  6869. display:flex;
  6870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6871. font-weight:400;
  6872. font-style:normal;
  6873. font-size:10px;
  6874. color:#F59A23;
  6875. line-height:25px;
  6876. }
  6877. #u38903 .text {
  6878. position:absolute;
  6879. align-self:flex-start;
  6880. padding:0px 0px 0px 0px;
  6881. box-sizing:border-box;
  6882. width:100%;
  6883. }
  6884. #u38903_text {
  6885. border-width:0px;
  6886. white-space:nowrap;
  6887. text-transform:none;
  6888. }
  6889. #u38904_div {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:0px;
  6893. top:0px;
  6894. width:58px;
  6895. height:30px;
  6896. background:inherit;
  6897. background-color:rgba(24, 144, 255, 1);
  6898. border:none;
  6899. border-radius:40px;
  6900. -moz-box-shadow:none;
  6901. -webkit-box-shadow:none;
  6902. box-shadow:none;
  6903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6904. font-weight:400;
  6905. font-style:normal;
  6906. font-size:12px;
  6907. color:#FFFFFF;
  6908. }
  6909. #u38904 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:332px;
  6913. top:315px;
  6914. width:58px;
  6915. height:30px;
  6916. display:flex;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:12px;
  6921. color:#FFFFFF;
  6922. }
  6923. #u38904 .text {
  6924. position:absolute;
  6925. align-self:center;
  6926. padding:2px 2px 2px 2px;
  6927. box-sizing:border-box;
  6928. width:100%;
  6929. }
  6930. #u38904_text {
  6931. border-width:0px;
  6932. word-wrap:break-word;
  6933. text-transform:none;
  6934. }
  6935. #u38905_div {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:58px;
  6941. height:30px;
  6942. background:inherit;
  6943. background-color:rgba(255, 255, 255, 1);
  6944. box-sizing:border-box;
  6945. border-width:1px;
  6946. border-style:solid;
  6947. border-color:rgba(127, 127, 127, 1);
  6948. border-radius:40px;
  6949. -moz-box-shadow:none;
  6950. -webkit-box-shadow:none;
  6951. box-shadow:none;
  6952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. font-size:12px;
  6956. }
  6957. #u38905 {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:264px;
  6961. top:315px;
  6962. width:58px;
  6963. height:30px;
  6964. display:flex;
  6965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. font-size:12px;
  6969. }
  6970. #u38905 .text {
  6971. position:absolute;
  6972. align-self:center;
  6973. padding:2px 2px 2px 2px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u38905_text {
  6978. border-width:0px;
  6979. word-wrap:break-word;
  6980. text-transform:none;
  6981. }
  6982. #u38906_div {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:0px;
  6986. top:0px;
  6987. width:99px;
  6988. height:30px;
  6989. background:inherit;
  6990. background-color:rgba(255, 255, 255, 0);
  6991. border:none;
  6992. border-radius:0px;
  6993. -moz-box-shadow:none;
  6994. -webkit-box-shadow:none;
  6995. box-shadow:none;
  6996. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6997. font-weight:500;
  6998. font-style:normal;
  6999. font-size:14px;
  7000. line-height:30px;
  7001. }
  7002. #u38906 {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:620px;
  7006. top:73px;
  7007. width:99px;
  7008. height:30px;
  7009. display:flex;
  7010. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7011. font-weight:500;
  7012. font-style:normal;
  7013. font-size:14px;
  7014. line-height:30px;
  7015. }
  7016. #u38906 .text {
  7017. position:absolute;
  7018. align-self:flex-start;
  7019. padding:0px 0px 0px 0px;
  7020. box-sizing:border-box;
  7021. width:100%;
  7022. }
  7023. #u38906_text {
  7024. border-width:0px;
  7025. white-space:nowrap;
  7026. text-transform:none;
  7027. }
  7028. #u38907_div {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:99px;
  7034. height:30px;
  7035. background:inherit;
  7036. background-color:rgba(255, 255, 255, 0);
  7037. border:none;
  7038. border-radius:0px;
  7039. -moz-box-shadow:none;
  7040. -webkit-box-shadow:none;
  7041. box-shadow:none;
  7042. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7043. font-weight:500;
  7044. font-style:normal;
  7045. font-size:14px;
  7046. line-height:30px;
  7047. }
  7048. #u38907 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:1083px;
  7052. top:73px;
  7053. width:99px;
  7054. height:30px;
  7055. display:flex;
  7056. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7057. font-weight:500;
  7058. font-style:normal;
  7059. font-size:14px;
  7060. line-height:30px;
  7061. }
  7062. #u38907 .text {
  7063. position:absolute;
  7064. align-self:flex-start;
  7065. padding:0px 0px 0px 0px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u38907_text {
  7070. border-width:0px;
  7071. white-space:nowrap;
  7072. text-transform:none;
  7073. }
  7074. #u38908 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:0px;
  7079. width:0px;
  7080. height:0px;
  7081. }
  7082. #u38909_div {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:375px;
  7088. height:80px;
  7089. background:inherit;
  7090. background-color:rgba(255, 255, 255, 1);
  7091. border:none;
  7092. border-left:0px;
  7093. border-top:0px;
  7094. border-right:0px;
  7095. border-radius:0px;
  7096. border-bottom-right-radius:0px;
  7097. border-bottom-left-radius:0px;
  7098. -moz-box-shadow:none;
  7099. -webkit-box-shadow:none;
  7100. box-shadow:none;
  7101. }
  7102. #u38909 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:1393px;
  7106. top:231px;
  7107. width:375px;
  7108. height:80px;
  7109. display:flex;
  7110. }
  7111. #u38909 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u38909_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u38910_div {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:33px;
  7130. height:30px;
  7131. background:inherit;
  7132. background-color:rgba(255, 255, 255, 0);
  7133. border:none;
  7134. border-left:0px;
  7135. border-top:0px;
  7136. border-right:0px;
  7137. border-radius:0px;
  7138. border-bottom-right-radius:0px;
  7139. border-bottom-left-radius:0px;
  7140. -moz-box-shadow:none;
  7141. -webkit-box-shadow:none;
  7142. box-shadow:none;
  7143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7144. font-weight:400;
  7145. font-style:normal;
  7146. font-size:16px;
  7147. line-height:30px;
  7148. }
  7149. #u38910 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:1470px;
  7153. top:265px;
  7154. width:33px;
  7155. height:30px;
  7156. display:flex;
  7157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:16px;
  7161. line-height:30px;
  7162. }
  7163. #u38910 .text {
  7164. position:absolute;
  7165. align-self:flex-start;
  7166. padding:0px 0px 0px 0px;
  7167. box-sizing:border-box;
  7168. width:100%;
  7169. }
  7170. #u38910_text {
  7171. border-width:0px;
  7172. white-space:nowrap;
  7173. text-transform:none;
  7174. }
  7175. #u38911_div {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:0px;
  7179. top:0px;
  7180. width:49px;
  7181. height:25px;
  7182. background:inherit;
  7183. background-color:rgba(255, 255, 255, 0);
  7184. border:none;
  7185. border-left:0px;
  7186. border-top:0px;
  7187. border-right:0px;
  7188. border-radius:0px;
  7189. border-bottom-right-radius:0px;
  7190. border-bottom-left-radius:0px;
  7191. -moz-box-shadow:none;
  7192. -webkit-box-shadow:none;
  7193. box-shadow:none;
  7194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:12px;
  7198. color:#7F7F7F;
  7199. line-height:25px;
  7200. }
  7201. #u38911 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:1470px;
  7205. top:240px;
  7206. width:49px;
  7207. height:25px;
  7208. display:flex;
  7209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:12px;
  7213. color:#7F7F7F;
  7214. line-height:25px;
  7215. }
  7216. #u38911 .text {
  7217. position:absolute;
  7218. align-self:flex-start;
  7219. padding:0px 0px 0px 0px;
  7220. box-sizing:border-box;
  7221. width:100%;
  7222. }
  7223. #u38911_text {
  7224. border-width:0px;
  7225. white-space:nowrap;
  7226. text-transform:none;
  7227. }
  7228. #u38912 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:0px;
  7234. height:0px;
  7235. }
  7236. #u38913_div {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:0px;
  7240. top:0px;
  7241. width:300px;
  7242. height:149px;
  7243. background:inherit;
  7244. background-color:rgba(255, 255, 255, 1);
  7245. border:none;
  7246. border-radius:10px;
  7247. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7248. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7249. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7250. }
  7251. #u38913 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:505px;
  7255. top:431px;
  7256. width:300px;
  7257. height:149px;
  7258. display:flex;
  7259. }
  7260. #u38913 .text {
  7261. position:absolute;
  7262. align-self:center;
  7263. padding:2px 2px 2px 2px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u38913_text {
  7268. border-width:0px;
  7269. word-wrap:break-word;
  7270. text-transform:none;
  7271. visibility:hidden;
  7272. }
  7273. #u38914_div {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:253px;
  7279. height:30px;
  7280. background:inherit;
  7281. background-color:rgba(255, 255, 255, 0);
  7282. border:none;
  7283. border-left:0px;
  7284. border-top:0px;
  7285. border-right:0px;
  7286. border-radius:0px;
  7287. border-bottom-right-radius:0px;
  7288. border-bottom-left-radius:0px;
  7289. -moz-box-shadow:none;
  7290. -webkit-box-shadow:none;
  7291. box-shadow:none;
  7292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. font-size:18px;
  7296. text-align:center;
  7297. line-height:30px;
  7298. }
  7299. #u38914 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:528px;
  7303. top:465px;
  7304. width:253px;
  7305. height:30px;
  7306. display:flex;
  7307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:18px;
  7311. text-align:center;
  7312. line-height:30px;
  7313. }
  7314. #u38914 .text {
  7315. position:absolute;
  7316. align-self:flex-start;
  7317. padding:0px 0px 0px 0px;
  7318. box-sizing:border-box;
  7319. width:100%;
  7320. }
  7321. #u38914_text {
  7322. border-width:0px;
  7323. white-space:nowrap;
  7324. text-transform:none;
  7325. }
  7326. #u38915_img {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:301px;
  7332. height:2px;
  7333. }
  7334. #u38915 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:505px;
  7338. top:531px;
  7339. width:300px;
  7340. height:1px;
  7341. display:flex;
  7342. }
  7343. #u38915 .text {
  7344. position:absolute;
  7345. align-self:center;
  7346. padding:2px 2px 2px 2px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u38915_text {
  7351. border-width:0px;
  7352. word-wrap:break-word;
  7353. text-transform:none;
  7354. visibility:hidden;
  7355. }
  7356. #u38916_div {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:41px;
  7362. height:30px;
  7363. background:inherit;
  7364. background-color:rgba(255, 255, 255, 0);
  7365. border:none;
  7366. border-left:0px;
  7367. border-top:0px;
  7368. border-right:0px;
  7369. border-radius:0px;
  7370. border-bottom-right-radius:0px;
  7371. border-bottom-left-radius:0px;
  7372. -moz-box-shadow:none;
  7373. -webkit-box-shadow:none;
  7374. box-shadow:none;
  7375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7376. font-weight:400;
  7377. font-style:normal;
  7378. font-size:18px;
  7379. color:#1890FF;
  7380. text-align:center;
  7381. line-height:30px;
  7382. }
  7383. #u38916 {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:721px;
  7387. top:541px;
  7388. width:41px;
  7389. height:30px;
  7390. display:flex;
  7391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:18px;
  7395. color:#1890FF;
  7396. text-align:center;
  7397. line-height:30px;
  7398. }
  7399. #u38916 .text {
  7400. position:absolute;
  7401. align-self:flex-start;
  7402. padding:0px 0px 0px 0px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u38916_text {
  7407. border-width:0px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. }
  7411. #u38917_div {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:41px;
  7417. height:30px;
  7418. background:inherit;
  7419. background-color:rgba(255, 255, 255, 0);
  7420. border:none;
  7421. border-left:0px;
  7422. border-top:0px;
  7423. border-right:0px;
  7424. border-radius:0px;
  7425. border-bottom-right-radius:0px;
  7426. border-bottom-left-radius:0px;
  7427. -moz-box-shadow:none;
  7428. -webkit-box-shadow:none;
  7429. box-shadow:none;
  7430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:18px;
  7434. color:#1890FF;
  7435. text-align:center;
  7436. line-height:30px;
  7437. }
  7438. #u38917 {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:551px;
  7442. top:541px;
  7443. width:41px;
  7444. height:30px;
  7445. display:flex;
  7446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. font-size:18px;
  7450. color:#1890FF;
  7451. text-align:center;
  7452. line-height:30px;
  7453. }
  7454. #u38917 .text {
  7455. position:absolute;
  7456. align-self:flex-start;
  7457. padding:0px 0px 0px 0px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u38917_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. }
  7466. #u38918_img {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:2px;
  7472. height:49px;
  7473. }
  7474. #u38918 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:654px;
  7478. top:532px;
  7479. width:1px;
  7480. height:48px;
  7481. display:flex;
  7482. }
  7483. #u38918 .text {
  7484. position:absolute;
  7485. align-self:center;
  7486. padding:2px 2px 2px 2px;
  7487. box-sizing:border-box;
  7488. width:100%;
  7489. }
  7490. #u38918_text {
  7491. border-width:0px;
  7492. word-wrap:break-word;
  7493. text-transform:none;
  7494. visibility:hidden;
  7495. }
  7496. #u38919 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:0px;
  7502. height:0px;
  7503. }
  7504. #u38920_div {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:300px;
  7510. height:149px;
  7511. background:inherit;
  7512. background-color:rgba(255, 255, 255, 1);
  7513. border:none;
  7514. border-radius:10px;
  7515. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7516. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7517. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7518. }
  7519. #u38920 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:505px;
  7523. top:595px;
  7524. width:300px;
  7525. height:149px;
  7526. display:flex;
  7527. }
  7528. #u38920 .text {
  7529. position:absolute;
  7530. align-self:center;
  7531. padding:2px 2px 2px 2px;
  7532. box-sizing:border-box;
  7533. width:100%;
  7534. }
  7535. #u38920_text {
  7536. border-width:0px;
  7537. word-wrap:break-word;
  7538. text-transform:none;
  7539. visibility:hidden;
  7540. }
  7541. #u38921_div {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:253px;
  7547. height:30px;
  7548. background:inherit;
  7549. background-color:rgba(255, 255, 255, 0);
  7550. border:none;
  7551. border-left:0px;
  7552. border-top:0px;
  7553. border-right:0px;
  7554. border-radius:0px;
  7555. border-bottom-right-radius:0px;
  7556. border-bottom-left-radius:0px;
  7557. -moz-box-shadow:none;
  7558. -webkit-box-shadow:none;
  7559. box-shadow:none;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:18px;
  7564. text-align:center;
  7565. line-height:30px;
  7566. }
  7567. #u38921 {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:528px;
  7571. top:629px;
  7572. width:253px;
  7573. height:30px;
  7574. display:flex;
  7575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7576. font-weight:400;
  7577. font-style:normal;
  7578. font-size:18px;
  7579. text-align:center;
  7580. line-height:30px;
  7581. }
  7582. #u38921 .text {
  7583. position:absolute;
  7584. align-self:flex-start;
  7585. padding:0px 0px 0px 0px;
  7586. box-sizing:border-box;
  7587. width:100%;
  7588. }
  7589. #u38921_text {
  7590. border-width:0px;
  7591. white-space:nowrap;
  7592. text-transform:none;
  7593. }
  7594. #u38922_img {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:0px;
  7598. top:0px;
  7599. width:301px;
  7600. height:2px;
  7601. }
  7602. #u38922 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:505px;
  7606. top:695px;
  7607. width:300px;
  7608. height:1px;
  7609. display:flex;
  7610. }
  7611. #u38922 .text {
  7612. position:absolute;
  7613. align-self:center;
  7614. padding:2px 2px 2px 2px;
  7615. box-sizing:border-box;
  7616. width:100%;
  7617. }
  7618. #u38922_text {
  7619. border-width:0px;
  7620. word-wrap:break-word;
  7621. text-transform:none;
  7622. visibility:hidden;
  7623. }
  7624. #u38923_div {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:41px;
  7630. height:30px;
  7631. background:inherit;
  7632. background-color:rgba(255, 255, 255, 0);
  7633. border:none;
  7634. border-left:0px;
  7635. border-top:0px;
  7636. border-right:0px;
  7637. border-radius:0px;
  7638. border-bottom-right-radius:0px;
  7639. border-bottom-left-radius:0px;
  7640. -moz-box-shadow:none;
  7641. -webkit-box-shadow:none;
  7642. box-shadow:none;
  7643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:18px;
  7647. color:#1890FF;
  7648. text-align:center;
  7649. line-height:30px;
  7650. }
  7651. #u38923 {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:721px;
  7655. top:705px;
  7656. width:41px;
  7657. height:30px;
  7658. display:flex;
  7659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7660. font-weight:400;
  7661. font-style:normal;
  7662. font-size:18px;
  7663. color:#1890FF;
  7664. text-align:center;
  7665. line-height:30px;
  7666. }
  7667. #u38923 .text {
  7668. position:absolute;
  7669. align-self:flex-start;
  7670. padding:0px 0px 0px 0px;
  7671. box-sizing:border-box;
  7672. width:100%;
  7673. }
  7674. #u38923_text {
  7675. border-width:0px;
  7676. word-wrap:break-word;
  7677. text-transform:none;
  7678. }
  7679. #u38924_div {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:41px;
  7685. height:30px;
  7686. background:inherit;
  7687. background-color:rgba(255, 255, 255, 0);
  7688. border:none;
  7689. border-left:0px;
  7690. border-top:0px;
  7691. border-right:0px;
  7692. border-radius:0px;
  7693. border-bottom-right-radius:0px;
  7694. border-bottom-left-radius:0px;
  7695. -moz-box-shadow:none;
  7696. -webkit-box-shadow:none;
  7697. box-shadow:none;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:18px;
  7702. color:#1890FF;
  7703. text-align:center;
  7704. line-height:30px;
  7705. }
  7706. #u38924 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:551px;
  7710. top:705px;
  7711. width:41px;
  7712. height:30px;
  7713. display:flex;
  7714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7715. font-weight:400;
  7716. font-style:normal;
  7717. font-size:18px;
  7718. color:#1890FF;
  7719. text-align:center;
  7720. line-height:30px;
  7721. }
  7722. #u38924 .text {
  7723. position:absolute;
  7724. align-self:flex-start;
  7725. padding:0px 0px 0px 0px;
  7726. box-sizing:border-box;
  7727. width:100%;
  7728. }
  7729. #u38924_text {
  7730. border-width:0px;
  7731. word-wrap:break-word;
  7732. text-transform:none;
  7733. }
  7734. #u38925_img {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:2px;
  7740. height:49px;
  7741. }
  7742. #u38925 {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:654px;
  7746. top:696px;
  7747. width:1px;
  7748. height:48px;
  7749. display:flex;
  7750. }
  7751. #u38925 .text {
  7752. position:absolute;
  7753. align-self:center;
  7754. padding:2px 2px 2px 2px;
  7755. box-sizing:border-box;
  7756. width:100%;
  7757. }
  7758. #u38925_text {
  7759. border-width:0px;
  7760. word-wrap:break-word;
  7761. text-transform:none;
  7762. visibility:hidden;
  7763. }
  7764. #u38926_div {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:0px;
  7768. top:0px;
  7769. width:333px;
  7770. height:75px;
  7771. background:inherit;
  7772. background-color:rgba(255, 255, 255, 0);
  7773. border:none;
  7774. border-left:0px;
  7775. border-top:0px;
  7776. border-right:0px;
  7777. border-radius:0px;
  7778. border-bottom-right-radius:0px;
  7779. border-bottom-left-radius:0px;
  7780. -moz-box-shadow:none;
  7781. -webkit-box-shadow:none;
  7782. box-shadow:none;
  7783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7784. font-weight:400;
  7785. font-style:normal;
  7786. font-size:12px;
  7787. color:#D9001B;
  7788. line-height:25px;
  7789. }
  7790. #u38926 {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:50px;
  7794. top:595px;
  7795. width:333px;
  7796. height:75px;
  7797. display:flex;
  7798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7799. font-weight:400;
  7800. font-style:normal;
  7801. font-size:12px;
  7802. color:#D9001B;
  7803. line-height:25px;
  7804. }
  7805. #u38926 .text {
  7806. position:absolute;
  7807. align-self:flex-start;
  7808. padding:0px 0px 0px 0px;
  7809. box-sizing:border-box;
  7810. width:100%;
  7811. }
  7812. #u38926_text {
  7813. border-width:0px;
  7814. word-wrap:break-word;
  7815. text-transform:none;
  7816. }
  7817. #u38927 {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:0px;
  7821. top:0px;
  7822. width:0px;
  7823. height:0px;
  7824. }
  7825. #u38928_div {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:0px;
  7829. top:0px;
  7830. width:375px;
  7831. height:200px;
  7832. background:inherit;
  7833. background-color:rgba(255, 255, 255, 1);
  7834. border:none;
  7835. border-left:0px;
  7836. border-top:0px;
  7837. border-right:0px;
  7838. border-radius:0px;
  7839. border-bottom-right-radius:0px;
  7840. border-bottom-left-radius:0px;
  7841. -moz-box-shadow:none;
  7842. -webkit-box-shadow:none;
  7843. box-shadow:none;
  7844. }
  7845. #u38928 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:940px;
  7849. top:155px;
  7850. width:375px;
  7851. height:200px;
  7852. display:flex;
  7853. }
  7854. #u38928 .text {
  7855. position:absolute;
  7856. align-self:center;
  7857. padding:2px 2px 2px 2px;
  7858. box-sizing:border-box;
  7859. width:100%;
  7860. }
  7861. #u38928_text {
  7862. border-width:0px;
  7863. word-wrap:break-word;
  7864. text-transform:none;
  7865. visibility:hidden;
  7866. }
  7867. #u38929_div {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:0px;
  7871. top:0px;
  7872. width:181px;
  7873. height:80px;
  7874. background:inherit;
  7875. background-color:rgba(255, 255, 255, 0);
  7876. border:none;
  7877. border-left:0px;
  7878. border-top:0px;
  7879. border-right:0px;
  7880. border-radius:0px;
  7881. border-bottom-right-radius:0px;
  7882. border-bottom-left-radius:0px;
  7883. -moz-box-shadow:none;
  7884. -webkit-box-shadow:none;
  7885. box-shadow:none;
  7886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:12px;
  7890. color:#7F7F7F;
  7891. line-height:20px;
  7892. }
  7893. #u38929 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:957px;
  7897. top:219px;
  7898. width:181px;
  7899. height:80px;
  7900. display:flex;
  7901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:12px;
  7905. color:#7F7F7F;
  7906. line-height:20px;
  7907. }
  7908. #u38929 .text {
  7909. position:absolute;
  7910. align-self:flex-start;
  7911. padding:0px 0px 0px 0px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u38929_text {
  7916. border-width:0px;
  7917. white-space:nowrap;
  7918. text-transform:none;
  7919. }
  7920. #u38930_img {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:40px;
  7926. height:40px;
  7927. }
  7928. #u38930 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:957px;
  7932. top:171px;
  7933. width:40px;
  7934. height:40px;
  7935. display:flex;
  7936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. }
  7940. #u38930 .text {
  7941. position:absolute;
  7942. align-self:center;
  7943. padding:2px 2px 2px 2px;
  7944. box-sizing:border-box;
  7945. width:100%;
  7946. }
  7947. #u38930_text {
  7948. border-width:0px;
  7949. word-wrap:break-word;
  7950. text-transform:none;
  7951. }
  7952. #u38931_div {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:33px;
  7958. height:30px;
  7959. background:inherit;
  7960. background-color:rgba(255, 255, 255, 0);
  7961. border:none;
  7962. border-left:0px;
  7963. border-top:0px;
  7964. border-right:0px;
  7965. border-radius:0px;
  7966. border-bottom-right-radius:0px;
  7967. border-bottom-left-radius:0px;
  7968. -moz-box-shadow:none;
  7969. -webkit-box-shadow:none;
  7970. box-shadow:none;
  7971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:16px;
  7975. line-height:30px;
  7976. }
  7977. #u38931 {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:1017px;
  7981. top:176px;
  7982. width:33px;
  7983. height:30px;
  7984. display:flex;
  7985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:16px;
  7989. line-height:30px;
  7990. }
  7991. #u38931 .text {
  7992. position:absolute;
  7993. align-self:flex-start;
  7994. padding:0px 0px 0px 0px;
  7995. box-sizing:border-box;
  7996. width:100%;
  7997. }
  7998. #u38931_text {
  7999. border-width:0px;
  8000. white-space:nowrap;
  8001. text-transform:none;
  8002. }
  8003. #u38932_div {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:0px;
  8007. top:0px;
  8008. width:85px;
  8009. height:30px;
  8010. background:inherit;
  8011. background-color:rgba(242, 242, 242, 1);
  8012. border:none;
  8013. border-radius:40px;
  8014. -moz-box-shadow:none;
  8015. -webkit-box-shadow:none;
  8016. box-shadow:none;
  8017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8018. font-weight:400;
  8019. font-style:normal;
  8020. font-size:12px;
  8021. color:#AAAAAA;
  8022. }
  8023. #u38932 {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:1220px;
  8027. top:315px;
  8028. width:85px;
  8029. height:30px;
  8030. display:flex;
  8031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:12px;
  8035. color:#AAAAAA;
  8036. }
  8037. #u38932 .text {
  8038. position:absolute;
  8039. align-self:center;
  8040. padding:2px 2px 2px 2px;
  8041. box-sizing:border-box;
  8042. width:100%;
  8043. }
  8044. #u38932_text {
  8045. border-width:0px;
  8046. word-wrap:break-word;
  8047. text-transform:none;
  8048. }
  8049. #u38933 {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:0px;
  8055. height:0px;
  8056. }
  8057. #u38934_div {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:375px;
  8063. height:80px;
  8064. background:inherit;
  8065. background-color:rgba(255, 255, 255, 1);
  8066. border:none;
  8067. border-left:0px;
  8068. border-top:0px;
  8069. border-right:0px;
  8070. border-radius:0px;
  8071. border-bottom-right-radius:0px;
  8072. border-bottom-left-radius:0px;
  8073. -moz-box-shadow:none;
  8074. -webkit-box-shadow:none;
  8075. box-shadow:none;
  8076. }
  8077. #u38934 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:1393px;
  8081. top:555px;
  8082. width:375px;
  8083. height:80px;
  8084. display:flex;
  8085. }
  8086. #u38934 .text {
  8087. position:absolute;
  8088. align-self:center;
  8089. padding:2px 2px 2px 2px;
  8090. box-sizing:border-box;
  8091. width:100%;
  8092. }
  8093. #u38934_text {
  8094. border-width:0px;
  8095. word-wrap:break-word;
  8096. text-transform:none;
  8097. visibility:hidden;
  8098. }
  8099. #u38935_div {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:0px;
  8103. top:0px;
  8104. width:129px;
  8105. height:30px;
  8106. background:inherit;
  8107. background-color:rgba(255, 255, 255, 0);
  8108. border:none;
  8109. border-left:0px;
  8110. border-top:0px;
  8111. border-right:0px;
  8112. border-radius:0px;
  8113. border-bottom-right-radius:0px;
  8114. border-bottom-left-radius:0px;
  8115. -moz-box-shadow:none;
  8116. -webkit-box-shadow:none;
  8117. box-shadow:none;
  8118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:16px;
  8122. line-height:30px;
  8123. }
  8124. #u38935 {
  8125. border-width:0px;
  8126. position:absolute;
  8127. left:1470px;
  8128. top:594px;
  8129. width:129px;
  8130. height:30px;
  8131. display:flex;
  8132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8133. font-weight:400;
  8134. font-style:normal;
  8135. font-size:16px;
  8136. line-height:30px;
  8137. }
  8138. #u38935 .text {
  8139. position:absolute;
  8140. align-self:flex-start;
  8141. padding:0px 0px 0px 0px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u38935_text {
  8146. border-width:0px;
  8147. white-space:nowrap;
  8148. text-transform:none;
  8149. }
  8150. #u38936_div {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:73px;
  8156. height:25px;
  8157. background:inherit;
  8158. background-color:rgba(255, 255, 255, 0);
  8159. border:none;
  8160. border-left:0px;
  8161. border-top:0px;
  8162. border-right:0px;
  8163. border-radius:0px;
  8164. border-bottom-right-radius:0px;
  8165. border-bottom-left-radius:0px;
  8166. -moz-box-shadow:none;
  8167. -webkit-box-shadow:none;
  8168. box-shadow:none;
  8169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8170. font-weight:400;
  8171. font-style:normal;
  8172. font-size:12px;
  8173. color:#7F7F7F;
  8174. line-height:25px;
  8175. }
  8176. #u38936 {
  8177. border-width:0px;
  8178. position:absolute;
  8179. left:1470px;
  8180. top:569px;
  8181. width:73px;
  8182. height:25px;
  8183. display:flex;
  8184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8185. font-weight:400;
  8186. font-style:normal;
  8187. font-size:12px;
  8188. color:#7F7F7F;
  8189. line-height:25px;
  8190. }
  8191. #u38936 .text {
  8192. position:absolute;
  8193. align-self:flex-start;
  8194. padding:0px 0px 0px 0px;
  8195. box-sizing:border-box;
  8196. width:100%;
  8197. }
  8198. #u38936_text {
  8199. border-width:0px;
  8200. white-space:nowrap;
  8201. text-transform:none;
  8202. }
  8203. #u38937 {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:0px;
  8207. top:0px;
  8208. width:0px;
  8209. height:0px;
  8210. }
  8211. #u38938_div {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:375px;
  8217. height:80px;
  8218. background:inherit;
  8219. background-color:rgba(255, 255, 255, 1);
  8220. border:none;
  8221. border-left:0px;
  8222. border-top:0px;
  8223. border-right:0px;
  8224. border-radius:0px;
  8225. border-bottom-right-radius:0px;
  8226. border-bottom-left-radius:0px;
  8227. -moz-box-shadow:none;
  8228. -webkit-box-shadow:none;
  8229. box-shadow:none;
  8230. }
  8231. #u38938 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:1851px;
  8235. top:312px;
  8236. width:375px;
  8237. height:80px;
  8238. display:flex;
  8239. }
  8240. #u38938 .text {
  8241. position:absolute;
  8242. align-self:center;
  8243. padding:2px 2px 2px 2px;
  8244. box-sizing:border-box;
  8245. width:100%;
  8246. }
  8247. #u38938_text {
  8248. border-width:0px;
  8249. word-wrap:break-word;
  8250. text-transform:none;
  8251. visibility:hidden;
  8252. }
  8253. #u38939_div {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:0px;
  8257. top:0px;
  8258. width:177px;
  8259. height:30px;
  8260. background:inherit;
  8261. background-color:rgba(255, 255, 255, 0);
  8262. border:none;
  8263. border-left:0px;
  8264. border-top:0px;
  8265. border-right:0px;
  8266. border-radius:0px;
  8267. border-bottom-right-radius:0px;
  8268. border-bottom-left-radius:0px;
  8269. -moz-box-shadow:none;
  8270. -webkit-box-shadow:none;
  8271. box-shadow:none;
  8272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8273. font-weight:400;
  8274. font-style:normal;
  8275. font-size:16px;
  8276. line-height:30px;
  8277. }
  8278. #u38939 {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:1928px;
  8282. top:351px;
  8283. width:177px;
  8284. height:30px;
  8285. display:flex;
  8286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8287. font-weight:400;
  8288. font-style:normal;
  8289. font-size:16px;
  8290. line-height:30px;
  8291. }
  8292. #u38939 .text {
  8293. position:absolute;
  8294. align-self:flex-start;
  8295. padding:0px 0px 0px 0px;
  8296. box-sizing:border-box;
  8297. width:100%;
  8298. }
  8299. #u38939_text {
  8300. border-width:0px;
  8301. white-space:nowrap;
  8302. text-transform:none;
  8303. }
  8304. #u38940_div {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:49px;
  8310. height:25px;
  8311. background:inherit;
  8312. background-color:rgba(255, 255, 255, 0);
  8313. border:none;
  8314. border-left:0px;
  8315. border-top:0px;
  8316. border-right:0px;
  8317. border-radius:0px;
  8318. border-bottom-right-radius:0px;
  8319. border-bottom-left-radius:0px;
  8320. -moz-box-shadow:none;
  8321. -webkit-box-shadow:none;
  8322. box-shadow:none;
  8323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8324. font-weight:400;
  8325. font-style:normal;
  8326. font-size:12px;
  8327. color:#7F7F7F;
  8328. line-height:25px;
  8329. }
  8330. #u38940 {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:1928px;
  8334. top:326px;
  8335. width:49px;
  8336. height:25px;
  8337. display:flex;
  8338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8339. font-weight:400;
  8340. font-style:normal;
  8341. font-size:12px;
  8342. color:#7F7F7F;
  8343. line-height:25px;
  8344. }
  8345. #u38940 .text {
  8346. position:absolute;
  8347. align-self:flex-start;
  8348. padding:0px 0px 0px 0px;
  8349. box-sizing:border-box;
  8350. width:100%;
  8351. }
  8352. #u38940_text {
  8353. border-width:0px;
  8354. white-space:nowrap;
  8355. text-transform:none;
  8356. }
  8357. #u38941 {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:0px;
  8361. top:0px;
  8362. width:0px;
  8363. height:0px;
  8364. }
  8365. #u38942_div {
  8366. border-width:0px;
  8367. position:absolute;
  8368. left:0px;
  8369. top:0px;
  8370. width:375px;
  8371. height:80px;
  8372. background:inherit;
  8373. background-color:rgba(255, 255, 255, 1);
  8374. border:none;
  8375. border-left:0px;
  8376. border-top:0px;
  8377. border-right:0px;
  8378. border-radius:0px;
  8379. border-bottom-right-radius:0px;
  8380. border-bottom-left-radius:0px;
  8381. -moz-box-shadow:none;
  8382. -webkit-box-shadow:none;
  8383. box-shadow:none;
  8384. }
  8385. #u38942 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:1851px;
  8389. top:393px;
  8390. width:375px;
  8391. height:80px;
  8392. display:flex;
  8393. }
  8394. #u38942 .text {
  8395. position:absolute;
  8396. align-self:center;
  8397. padding:2px 2px 2px 2px;
  8398. box-sizing:border-box;
  8399. width:100%;
  8400. }
  8401. #u38942_text {
  8402. border-width:0px;
  8403. word-wrap:break-word;
  8404. text-transform:none;
  8405. visibility:hidden;
  8406. }
  8407. #u38943_div {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:0px;
  8411. top:0px;
  8412. width:33px;
  8413. height:30px;
  8414. background:inherit;
  8415. background-color:rgba(255, 255, 255, 0);
  8416. border:none;
  8417. border-left:0px;
  8418. border-top:0px;
  8419. border-right:0px;
  8420. border-radius:0px;
  8421. border-bottom-right-radius:0px;
  8422. border-bottom-left-radius:0px;
  8423. -moz-box-shadow:none;
  8424. -webkit-box-shadow:none;
  8425. box-shadow:none;
  8426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8427. font-weight:400;
  8428. font-style:normal;
  8429. font-size:16px;
  8430. line-height:30px;
  8431. }
  8432. #u38943 {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:1928px;
  8436. top:432px;
  8437. width:33px;
  8438. height:30px;
  8439. display:flex;
  8440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8441. font-weight:400;
  8442. font-style:normal;
  8443. font-size:16px;
  8444. line-height:30px;
  8445. }
  8446. #u38943 .text {
  8447. position:absolute;
  8448. align-self:flex-start;
  8449. padding:0px 0px 0px 0px;
  8450. box-sizing:border-box;
  8451. width:100%;
  8452. }
  8453. #u38943_text {
  8454. border-width:0px;
  8455. white-space:nowrap;
  8456. text-transform:none;
  8457. }
  8458. #u38944_div {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:0px;
  8462. top:0px;
  8463. width:73px;
  8464. height:25px;
  8465. background:inherit;
  8466. background-color:rgba(255, 255, 255, 0);
  8467. border:none;
  8468. border-left:0px;
  8469. border-top:0px;
  8470. border-right:0px;
  8471. border-radius:0px;
  8472. border-bottom-right-radius:0px;
  8473. border-bottom-left-radius:0px;
  8474. -moz-box-shadow:none;
  8475. -webkit-box-shadow:none;
  8476. box-shadow:none;
  8477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8478. font-weight:400;
  8479. font-style:normal;
  8480. font-size:12px;
  8481. color:#7F7F7F;
  8482. line-height:25px;
  8483. }
  8484. #u38944 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:1928px;
  8488. top:407px;
  8489. width:73px;
  8490. height:25px;
  8491. display:flex;
  8492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8493. font-weight:400;
  8494. font-style:normal;
  8495. font-size:12px;
  8496. color:#7F7F7F;
  8497. line-height:25px;
  8498. }
  8499. #u38944 .text {
  8500. position:absolute;
  8501. align-self:flex-start;
  8502. padding:0px 0px 0px 0px;
  8503. box-sizing:border-box;
  8504. width:100%;
  8505. }
  8506. #u38944_text {
  8507. border-width:0px;
  8508. white-space:nowrap;
  8509. text-transform:none;
  8510. }
  8511. #u38945 {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:0px;
  8515. top:0px;
  8516. width:0px;
  8517. height:0px;
  8518. }
  8519. #u38946_div {
  8520. border-width:0px;
  8521. position:absolute;
  8522. left:0px;
  8523. top:0px;
  8524. width:375px;
  8525. height:80px;
  8526. background:inherit;
  8527. background-color:rgba(255, 255, 255, 1);
  8528. border:none;
  8529. border-left:0px;
  8530. border-top:0px;
  8531. border-right:0px;
  8532. border-radius:0px;
  8533. border-bottom-right-radius:0px;
  8534. border-bottom-left-radius:0px;
  8535. -moz-box-shadow:none;
  8536. -webkit-box-shadow:none;
  8537. box-shadow:none;
  8538. }
  8539. #u38946 {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:1851px;
  8543. top:474px;
  8544. width:375px;
  8545. height:80px;
  8546. display:flex;
  8547. }
  8548. #u38946 .text {
  8549. position:absolute;
  8550. align-self:center;
  8551. padding:2px 2px 2px 2px;
  8552. box-sizing:border-box;
  8553. width:100%;
  8554. }
  8555. #u38946_text {
  8556. border-width:0px;
  8557. word-wrap:break-word;
  8558. text-transform:none;
  8559. visibility:hidden;
  8560. }
  8561. #u38947_div {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:0px;
  8565. top:0px;
  8566. width:129px;
  8567. height:30px;
  8568. background:inherit;
  8569. background-color:rgba(255, 255, 255, 0);
  8570. border:none;
  8571. border-left:0px;
  8572. border-top:0px;
  8573. border-right:0px;
  8574. border-radius:0px;
  8575. border-bottom-right-radius:0px;
  8576. border-bottom-left-radius:0px;
  8577. -moz-box-shadow:none;
  8578. -webkit-box-shadow:none;
  8579. box-shadow:none;
  8580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8581. font-weight:400;
  8582. font-style:normal;
  8583. font-size:16px;
  8584. line-height:30px;
  8585. }
  8586. #u38947 {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:1928px;
  8590. top:513px;
  8591. width:129px;
  8592. height:30px;
  8593. display:flex;
  8594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. font-size:16px;
  8598. line-height:30px;
  8599. }
  8600. #u38947 .text {
  8601. position:absolute;
  8602. align-self:flex-start;
  8603. padding:0px 0px 0px 0px;
  8604. box-sizing:border-box;
  8605. width:100%;
  8606. }
  8607. #u38947_text {
  8608. border-width:0px;
  8609. white-space:nowrap;
  8610. text-transform:none;
  8611. }
  8612. #u38948_div {
  8613. border-width:0px;
  8614. position:absolute;
  8615. left:0px;
  8616. top:0px;
  8617. width:73px;
  8618. height:25px;
  8619. background:inherit;
  8620. background-color:rgba(255, 255, 255, 0);
  8621. border:none;
  8622. border-left:0px;
  8623. border-top:0px;
  8624. border-right:0px;
  8625. border-radius:0px;
  8626. border-bottom-right-radius:0px;
  8627. border-bottom-left-radius:0px;
  8628. -moz-box-shadow:none;
  8629. -webkit-box-shadow:none;
  8630. box-shadow:none;
  8631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8632. font-weight:400;
  8633. font-style:normal;
  8634. font-size:12px;
  8635. color:#7F7F7F;
  8636. line-height:25px;
  8637. }
  8638. #u38948 {
  8639. border-width:0px;
  8640. position:absolute;
  8641. left:1928px;
  8642. top:488px;
  8643. width:73px;
  8644. height:25px;
  8645. display:flex;
  8646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8647. font-weight:400;
  8648. font-style:normal;
  8649. font-size:12px;
  8650. color:#7F7F7F;
  8651. line-height:25px;
  8652. }
  8653. #u38948 .text {
  8654. position:absolute;
  8655. align-self:flex-start;
  8656. padding:0px 0px 0px 0px;
  8657. box-sizing:border-box;
  8658. width:100%;
  8659. }
  8660. #u38948_text {
  8661. border-width:0px;
  8662. white-space:nowrap;
  8663. text-transform:none;
  8664. }
  8665. #u38949_div {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:0px;
  8669. top:0px;
  8670. width:375px;
  8671. height:60px;
  8672. background:inherit;
  8673. background-color:rgba(255, 255, 255, 1);
  8674. border:none;
  8675. border-left:0px;
  8676. border-top:0px;
  8677. border-right:0px;
  8678. border-radius:0px;
  8679. border-bottom-right-radius:0px;
  8680. border-bottom-left-radius:0px;
  8681. -moz-box-shadow:none;
  8682. -webkit-box-shadow:none;
  8683. box-shadow:none;
  8684. }
  8685. #u38949 {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:1851px;
  8689. top:717px;
  8690. width:375px;
  8691. height:60px;
  8692. display:flex;
  8693. }
  8694. #u38949 .text {
  8695. position:absolute;
  8696. align-self:center;
  8697. padding:2px 2px 2px 2px;
  8698. box-sizing:border-box;
  8699. width:100%;
  8700. }
  8701. #u38949_text {
  8702. border-width:0px;
  8703. word-wrap:break-word;
  8704. text-transform:none;
  8705. visibility:hidden;
  8706. }
  8707. #u38950 {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:0px;
  8713. height:0px;
  8714. }
  8715. #u38951_div {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:0px;
  8719. top:0px;
  8720. width:375px;
  8721. height:80px;
  8722. background:inherit;
  8723. background-color:rgba(255, 255, 255, 1);
  8724. border:none;
  8725. border-left:0px;
  8726. border-top:0px;
  8727. border-right:0px;
  8728. border-radius:0px;
  8729. border-bottom-right-radius:0px;
  8730. border-bottom-left-radius:0px;
  8731. -moz-box-shadow:none;
  8732. -webkit-box-shadow:none;
  8733. box-shadow:none;
  8734. }
  8735. #u38951 {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:1851px;
  8739. top:231px;
  8740. width:375px;
  8741. height:80px;
  8742. display:flex;
  8743. }
  8744. #u38951 .text {
  8745. position:absolute;
  8746. align-self:center;
  8747. padding:2px 2px 2px 2px;
  8748. box-sizing:border-box;
  8749. width:100%;
  8750. }
  8751. #u38951_text {
  8752. border-width:0px;
  8753. word-wrap:break-word;
  8754. text-transform:none;
  8755. visibility:hidden;
  8756. }
  8757. #u38952_div {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:0px;
  8761. top:0px;
  8762. width:33px;
  8763. height:30px;
  8764. background:inherit;
  8765. background-color:rgba(255, 255, 255, 0);
  8766. border:none;
  8767. border-left:0px;
  8768. border-top:0px;
  8769. border-right:0px;
  8770. border-radius:0px;
  8771. border-bottom-right-radius:0px;
  8772. border-bottom-left-radius:0px;
  8773. -moz-box-shadow:none;
  8774. -webkit-box-shadow:none;
  8775. box-shadow:none;
  8776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8777. font-weight:400;
  8778. font-style:normal;
  8779. font-size:16px;
  8780. line-height:30px;
  8781. }
  8782. #u38952 {
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:1928px;
  8786. top:265px;
  8787. width:33px;
  8788. height:30px;
  8789. display:flex;
  8790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8791. font-weight:400;
  8792. font-style:normal;
  8793. font-size:16px;
  8794. line-height:30px;
  8795. }
  8796. #u38952 .text {
  8797. position:absolute;
  8798. align-self:flex-start;
  8799. padding:0px 0px 0px 0px;
  8800. box-sizing:border-box;
  8801. width:100%;
  8802. }
  8803. #u38952_text {
  8804. border-width:0px;
  8805. white-space:nowrap;
  8806. text-transform:none;
  8807. }
  8808. #u38953_div {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:0px;
  8812. top:0px;
  8813. width:49px;
  8814. height:25px;
  8815. background:inherit;
  8816. background-color:rgba(255, 255, 255, 0);
  8817. border:none;
  8818. border-left:0px;
  8819. border-top:0px;
  8820. border-right:0px;
  8821. border-radius:0px;
  8822. border-bottom-right-radius:0px;
  8823. border-bottom-left-radius:0px;
  8824. -moz-box-shadow:none;
  8825. -webkit-box-shadow:none;
  8826. box-shadow:none;
  8827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8828. font-weight:400;
  8829. font-style:normal;
  8830. font-size:12px;
  8831. color:#7F7F7F;
  8832. line-height:25px;
  8833. }
  8834. #u38953 {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:1928px;
  8838. top:240px;
  8839. width:49px;
  8840. height:25px;
  8841. display:flex;
  8842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8843. font-weight:400;
  8844. font-style:normal;
  8845. font-size:12px;
  8846. color:#7F7F7F;
  8847. line-height:25px;
  8848. }
  8849. #u38953 .text {
  8850. position:absolute;
  8851. align-self:flex-start;
  8852. padding:0px 0px 0px 0px;
  8853. box-sizing:border-box;
  8854. width:100%;
  8855. }
  8856. #u38953_text {
  8857. border-width:0px;
  8858. white-space:nowrap;
  8859. text-transform:none;
  8860. }
  8861. #u38954 {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:0px;
  8867. height:0px;
  8868. }
  8869. #u38955_div {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:0px;
  8873. top:0px;
  8874. width:375px;
  8875. height:80px;
  8876. background:inherit;
  8877. background-color:rgba(255, 255, 255, 1);
  8878. border:none;
  8879. border-left:0px;
  8880. border-top:0px;
  8881. border-right:0px;
  8882. border-radius:0px;
  8883. border-bottom-right-radius:0px;
  8884. border-bottom-left-radius:0px;
  8885. -moz-box-shadow:none;
  8886. -webkit-box-shadow:none;
  8887. box-shadow:none;
  8888. }
  8889. #u38955 {
  8890. border-width:0px;
  8891. position:absolute;
  8892. left:1851px;
  8893. top:555px;
  8894. width:375px;
  8895. height:80px;
  8896. display:flex;
  8897. }
  8898. #u38955 .text {
  8899. position:absolute;
  8900. align-self:center;
  8901. padding:2px 2px 2px 2px;
  8902. box-sizing:border-box;
  8903. width:100%;
  8904. }
  8905. #u38955_text {
  8906. border-width:0px;
  8907. word-wrap:break-word;
  8908. text-transform:none;
  8909. visibility:hidden;
  8910. }
  8911. #u38956_div {
  8912. border-width:0px;
  8913. position:absolute;
  8914. left:0px;
  8915. top:0px;
  8916. width:129px;
  8917. height:30px;
  8918. background:inherit;
  8919. background-color:rgba(255, 255, 255, 0);
  8920. border:none;
  8921. border-left:0px;
  8922. border-top:0px;
  8923. border-right:0px;
  8924. border-radius:0px;
  8925. border-bottom-right-radius:0px;
  8926. border-bottom-left-radius:0px;
  8927. -moz-box-shadow:none;
  8928. -webkit-box-shadow:none;
  8929. box-shadow:none;
  8930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8931. font-weight:400;
  8932. font-style:normal;
  8933. font-size:16px;
  8934. line-height:30px;
  8935. }
  8936. #u38956 {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:1928px;
  8940. top:594px;
  8941. width:129px;
  8942. height:30px;
  8943. display:flex;
  8944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8945. font-weight:400;
  8946. font-style:normal;
  8947. font-size:16px;
  8948. line-height:30px;
  8949. }
  8950. #u38956 .text {
  8951. position:absolute;
  8952. align-self:flex-start;
  8953. padding:0px 0px 0px 0px;
  8954. box-sizing:border-box;
  8955. width:100%;
  8956. }
  8957. #u38956_text {
  8958. border-width:0px;
  8959. white-space:nowrap;
  8960. text-transform:none;
  8961. }
  8962. #u38957_div {
  8963. border-width:0px;
  8964. position:absolute;
  8965. left:0px;
  8966. top:0px;
  8967. width:73px;
  8968. height:25px;
  8969. background:inherit;
  8970. background-color:rgba(255, 255, 255, 0);
  8971. border:none;
  8972. border-left:0px;
  8973. border-top:0px;
  8974. border-right:0px;
  8975. border-radius:0px;
  8976. border-bottom-right-radius:0px;
  8977. border-bottom-left-radius:0px;
  8978. -moz-box-shadow:none;
  8979. -webkit-box-shadow:none;
  8980. box-shadow:none;
  8981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8982. font-weight:400;
  8983. font-style:normal;
  8984. font-size:12px;
  8985. color:#7F7F7F;
  8986. line-height:25px;
  8987. }
  8988. #u38957 {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:1928px;
  8992. top:569px;
  8993. width:73px;
  8994. height:25px;
  8995. display:flex;
  8996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8997. font-weight:400;
  8998. font-style:normal;
  8999. font-size:12px;
  9000. color:#7F7F7F;
  9001. line-height:25px;
  9002. }
  9003. #u38957 .text {
  9004. position:absolute;
  9005. align-self:flex-start;
  9006. padding:0px 0px 0px 0px;
  9007. box-sizing:border-box;
  9008. width:100%;
  9009. }
  9010. #u38957_text {
  9011. border-width:0px;
  9012. white-space:nowrap;
  9013. text-transform:none;
  9014. }
  9015. #u38958_div {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:0px;
  9019. top:0px;
  9020. width:129px;
  9021. height:30px;
  9022. background:inherit;
  9023. background-color:rgba(255, 255, 255, 0);
  9024. border:none;
  9025. border-left:0px;
  9026. border-top:0px;
  9027. border-right:0px;
  9028. border-radius:0px;
  9029. border-bottom-right-radius:0px;
  9030. border-bottom-left-radius:0px;
  9031. -moz-box-shadow:none;
  9032. -webkit-box-shadow:none;
  9033. box-shadow:none;
  9034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9035. font-weight:400;
  9036. font-style:normal;
  9037. font-size:16px;
  9038. line-height:30px;
  9039. }
  9040. #u38958 {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:1928px;
  9044. top:732px;
  9045. width:129px;
  9046. height:30px;
  9047. display:flex;
  9048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9049. font-weight:400;
  9050. font-style:normal;
  9051. font-size:16px;
  9052. line-height:30px;
  9053. }
  9054. #u38958 .text {
  9055. position:absolute;
  9056. align-self:flex-start;
  9057. padding:0px 0px 0px 0px;
  9058. box-sizing:border-box;
  9059. width:100%;
  9060. }
  9061. #u38958_text {
  9062. border-width:0px;
  9063. white-space:nowrap;
  9064. text-transform:none;
  9065. }
  9066. #u38959 {
  9067. border-width:0px;
  9068. position:absolute;
  9069. left:0px;
  9070. top:0px;
  9071. width:0px;
  9072. height:0px;
  9073. }
  9074. #u38960_div {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:0px;
  9078. top:0px;
  9079. width:375px;
  9080. height:80px;
  9081. background:inherit;
  9082. background-color:rgba(255, 255, 255, 1);
  9083. border:none;
  9084. border-left:0px;
  9085. border-top:0px;
  9086. border-right:0px;
  9087. border-radius:0px;
  9088. border-bottom-right-radius:0px;
  9089. border-bottom-left-radius:0px;
  9090. -moz-box-shadow:none;
  9091. -webkit-box-shadow:none;
  9092. box-shadow:none;
  9093. }
  9094. #u38960 {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:1393px;
  9098. top:636px;
  9099. width:375px;
  9100. height:80px;
  9101. display:flex;
  9102. }
  9103. #u38960 .text {
  9104. position:absolute;
  9105. align-self:center;
  9106. padding:2px 2px 2px 2px;
  9107. box-sizing:border-box;
  9108. width:100%;
  9109. }
  9110. #u38960_text {
  9111. border-width:0px;
  9112. word-wrap:break-word;
  9113. text-transform:none;
  9114. visibility:hidden;
  9115. }
  9116. #u38961_div {
  9117. border-width:0px;
  9118. position:absolute;
  9119. left:0px;
  9120. top:0px;
  9121. width:49px;
  9122. height:30px;
  9123. background:inherit;
  9124. background-color:rgba(255, 255, 255, 0);
  9125. border:none;
  9126. border-left:0px;
  9127. border-top:0px;
  9128. border-right:0px;
  9129. border-radius:0px;
  9130. border-bottom-right-radius:0px;
  9131. border-bottom-left-radius:0px;
  9132. -moz-box-shadow:none;
  9133. -webkit-box-shadow:none;
  9134. box-shadow:none;
  9135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9136. font-weight:400;
  9137. font-style:normal;
  9138. font-size:16px;
  9139. line-height:30px;
  9140. }
  9141. #u38961 {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:1470px;
  9145. top:675px;
  9146. width:49px;
  9147. height:30px;
  9148. display:flex;
  9149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9150. font-weight:400;
  9151. font-style:normal;
  9152. font-size:16px;
  9153. line-height:30px;
  9154. }
  9155. #u38961 .text {
  9156. position:absolute;
  9157. align-self:flex-start;
  9158. padding:0px 0px 0px 0px;
  9159. box-sizing:border-box;
  9160. width:100%;
  9161. }
  9162. #u38961_text {
  9163. border-width:0px;
  9164. white-space:nowrap;
  9165. text-transform:none;
  9166. }
  9167. #u38962_div {
  9168. border-width:0px;
  9169. position:absolute;
  9170. left:0px;
  9171. top:0px;
  9172. width:49px;
  9173. height:25px;
  9174. background:inherit;
  9175. background-color:rgba(255, 255, 255, 0);
  9176. border:none;
  9177. border-left:0px;
  9178. border-top:0px;
  9179. border-right:0px;
  9180. border-radius:0px;
  9181. border-bottom-right-radius:0px;
  9182. border-bottom-left-radius:0px;
  9183. -moz-box-shadow:none;
  9184. -webkit-box-shadow:none;
  9185. box-shadow:none;
  9186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9187. font-weight:400;
  9188. font-style:normal;
  9189. font-size:12px;
  9190. color:#7F7F7F;
  9191. line-height:25px;
  9192. }
  9193. #u38962 {
  9194. border-width:0px;
  9195. position:absolute;
  9196. left:1470px;
  9197. top:650px;
  9198. width:49px;
  9199. height:25px;
  9200. display:flex;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9202. font-weight:400;
  9203. font-style:normal;
  9204. font-size:12px;
  9205. color:#7F7F7F;
  9206. line-height:25px;
  9207. }
  9208. #u38962 .text {
  9209. position:absolute;
  9210. align-self:flex-start;
  9211. padding:0px 0px 0px 0px;
  9212. box-sizing:border-box;
  9213. width:100%;
  9214. }
  9215. #u38962_text {
  9216. border-width:0px;
  9217. white-space:nowrap;
  9218. text-transform:none;
  9219. }
  9220. #u38963 {
  9221. border-width:0px;
  9222. position:absolute;
  9223. left:0px;
  9224. top:0px;
  9225. width:0px;
  9226. height:0px;
  9227. }
  9228. #u38964_div {
  9229. border-width:0px;
  9230. position:absolute;
  9231. left:0px;
  9232. top:0px;
  9233. width:375px;
  9234. height:80px;
  9235. background:inherit;
  9236. background-color:rgba(255, 255, 255, 1);
  9237. border:none;
  9238. border-left:0px;
  9239. border-top:0px;
  9240. border-right:0px;
  9241. border-radius:0px;
  9242. border-bottom-right-radius:0px;
  9243. border-bottom-left-radius:0px;
  9244. -moz-box-shadow:none;
  9245. -webkit-box-shadow:none;
  9246. box-shadow:none;
  9247. }
  9248. #u38964 {
  9249. border-width:0px;
  9250. position:absolute;
  9251. left:1851px;
  9252. top:636px;
  9253. width:375px;
  9254. height:80px;
  9255. display:flex;
  9256. }
  9257. #u38964 .text {
  9258. position:absolute;
  9259. align-self:center;
  9260. padding:2px 2px 2px 2px;
  9261. box-sizing:border-box;
  9262. width:100%;
  9263. }
  9264. #u38964_text {
  9265. border-width:0px;
  9266. word-wrap:break-word;
  9267. text-transform:none;
  9268. visibility:hidden;
  9269. }
  9270. #u38965_div {
  9271. border-width:0px;
  9272. position:absolute;
  9273. left:0px;
  9274. top:0px;
  9275. width:49px;
  9276. height:30px;
  9277. background:inherit;
  9278. background-color:rgba(255, 255, 255, 0);
  9279. border:none;
  9280. border-left:0px;
  9281. border-top:0px;
  9282. border-right:0px;
  9283. border-radius:0px;
  9284. border-bottom-right-radius:0px;
  9285. border-bottom-left-radius:0px;
  9286. -moz-box-shadow:none;
  9287. -webkit-box-shadow:none;
  9288. box-shadow:none;
  9289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9290. font-weight:400;
  9291. font-style:normal;
  9292. font-size:16px;
  9293. line-height:30px;
  9294. }
  9295. #u38965 {
  9296. border-width:0px;
  9297. position:absolute;
  9298. left:1928px;
  9299. top:675px;
  9300. width:49px;
  9301. height:30px;
  9302. display:flex;
  9303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9304. font-weight:400;
  9305. font-style:normal;
  9306. font-size:16px;
  9307. line-height:30px;
  9308. }
  9309. #u38965 .text {
  9310. position:absolute;
  9311. align-self:flex-start;
  9312. padding:0px 0px 0px 0px;
  9313. box-sizing:border-box;
  9314. width:100%;
  9315. }
  9316. #u38965_text {
  9317. border-width:0px;
  9318. white-space:nowrap;
  9319. text-transform:none;
  9320. }
  9321. #u38966_div {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:0px;
  9325. top:0px;
  9326. width:49px;
  9327. height:25px;
  9328. background:inherit;
  9329. background-color:rgba(255, 255, 255, 0);
  9330. border:none;
  9331. border-left:0px;
  9332. border-top:0px;
  9333. border-right:0px;
  9334. border-radius:0px;
  9335. border-bottom-right-radius:0px;
  9336. border-bottom-left-radius:0px;
  9337. -moz-box-shadow:none;
  9338. -webkit-box-shadow:none;
  9339. box-shadow:none;
  9340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9341. font-weight:400;
  9342. font-style:normal;
  9343. font-size:12px;
  9344. color:#7F7F7F;
  9345. line-height:25px;
  9346. }
  9347. #u38966 {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:1928px;
  9351. top:650px;
  9352. width:49px;
  9353. height:25px;
  9354. display:flex;
  9355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9356. font-weight:400;
  9357. font-style:normal;
  9358. font-size:12px;
  9359. color:#7F7F7F;
  9360. line-height:25px;
  9361. }
  9362. #u38966 .text {
  9363. position:absolute;
  9364. align-self:flex-start;
  9365. padding:0px 0px 0px 0px;
  9366. box-sizing:border-box;
  9367. width:100%;
  9368. }
  9369. #u38966_text {
  9370. border-width:0px;
  9371. white-space:nowrap;
  9372. text-transform:none;
  9373. }