styles.css 109 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1341px;
  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. #u164785_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u164785 {
  28. border-width:0px;
  29. position:absolute;
  30. left:453px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u164785 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u164785_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u164786_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. #u164786 {
  73. border-width:0px;
  74. position:absolute;
  75. left:482px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u164786 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u164786_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u164787 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u164788_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. #u164788 {
  121. border-width:0px;
  122. position:absolute;
  123. left:762px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u164788 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u164788_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u164789 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u164790_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u164790 {
  159. border-width:0px;
  160. position:absolute;
  161. left:825px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u164790 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u164790_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u164791_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u164791 {
  189. border-width:0px;
  190. position:absolute;
  191. left:831px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u164791 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u164791_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u164792 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u164793_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u164793 {
  227. border-width:0px;
  228. position:absolute;
  229. left:776px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u164793 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u164793_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u164794_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u164794 {
  257. border-width:0px;
  258. position:absolute;
  259. left:792px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u164794 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u164794_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u164795_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u164795 {
  287. border-width:0px;
  288. position:absolute;
  289. left:783px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u164795 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u164795_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u164796_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u164796 {
  317. border-width:0px;
  318. position:absolute;
  319. left:800px;
  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. #u164796 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u164796_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u164797_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u164797 {
  351. border-width:0px;
  352. position:absolute;
  353. left:482px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u164797 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u164797_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u164798_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. #u164798 {
  393. border-width:0px;
  394. position:absolute;
  395. left:482px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u164798 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u164798_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u164799 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u164800_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u164800 {
  431. border-width:0px;
  432. position:absolute;
  433. left:522px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u164800 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u164800_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u164801_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. #u164801 {
  472. border-width:0px;
  473. position:absolute;
  474. left:522px;
  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. #u164801 .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. #u164801_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u164802 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u164803_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u164803 {
  513. border-width:0px;
  514. position:absolute;
  515. left:792px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u164803 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u164803_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u164804_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. #u164804 {
  554. border-width:0px;
  555. position:absolute;
  556. left:792px;
  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. #u164804 .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. #u164804_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u164805_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. #u164805 {
  594. border-width:0px;
  595. position:absolute;
  596. left:482px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u164805 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u164805_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u164806 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u164807_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u164807 {
  632. border-width:0px;
  633. position:absolute;
  634. left:704px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u164807 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u164807_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u164808_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. #u164808 {
  673. border-width:0px;
  674. position:absolute;
  675. left:698px;
  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. #u164808 .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. #u164808_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u164809 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u164810_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u164810 {
  714. border-width:0px;
  715. position:absolute;
  716. left:610px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u164810 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u164810_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u164811_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. #u164811 {
  755. border-width:0px;
  756. position:absolute;
  757. left:604px;
  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. #u164811 .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. #u164811_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u164812_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. #u164812 {
  798. border-width:0px;
  799. position:absolute;
  800. left:482px;
  801. top:104px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u164812 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u164812_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u164813 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u164814_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:11px;
  833. height:18px;
  834. }
  835. #u164814 {
  836. border-width:0px;
  837. position:absolute;
  838. left:493px;
  839. top:79px;
  840. width:11px;
  841. height:18px;
  842. display:flex;
  843. }
  844. #u164814 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u164814_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u164815_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:375px;
  863. height:300px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0.996078431372549);
  866. border:none;
  867. border-radius:0px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. }
  872. #u164815 {
  873. border-width:0px;
  874. position:absolute;
  875. left:482px;
  876. top:106px;
  877. width:375px;
  878. height:300px;
  879. display:flex;
  880. }
  881. #u164815 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u164815_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u164816_div {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:339px;
  900. height:40px;
  901. background:inherit;
  902. background-color:rgba(41, 143, 255, 1);
  903. box-sizing:border-box;
  904. border-width:1px;
  905. border-style:solid;
  906. border-color:rgba(0, 137, 254, 1);
  907. border-radius:35px;
  908. -moz-box-shadow:none;
  909. -webkit-box-shadow:none;
  910. box-shadow:none;
  911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  912. font-weight:400;
  913. font-style:normal;
  914. font-size:14px;
  915. color:#FFFFFF;
  916. text-align:center;
  917. }
  918. #u164816 {
  919. border-width:0px;
  920. position:absolute;
  921. left:499px;
  922. top:299px;
  923. width:339px;
  924. height:40px;
  925. display:flex;
  926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  927. font-weight:400;
  928. font-style:normal;
  929. font-size:14px;
  930. color:#FFFFFF;
  931. text-align:center;
  932. }
  933. #u164816 .text {
  934. position:absolute;
  935. align-self:center;
  936. padding:2px 2px 2px 2px;
  937. box-sizing:border-box;
  938. width:100%;
  939. }
  940. #u164816_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. }
  945. #u164817 {
  946. border-width:0px;
  947. position:absolute;
  948. left:0px;
  949. top:0px;
  950. width:0px;
  951. height:0px;
  952. }
  953. #u164818_div {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:339px;
  959. height:59px;
  960. background:inherit;
  961. background-color:rgba(255, 255, 255, 0.996078431372549);
  962. border:none;
  963. border-radius:4px;
  964. -moz-box-shadow:none;
  965. -webkit-box-shadow:none;
  966. box-shadow:none;
  967. }
  968. #u164818 {
  969. border-width:0px;
  970. position:absolute;
  971. left:499px;
  972. top:428px;
  973. width:339px;
  974. height:59px;
  975. display:flex;
  976. }
  977. #u164818 .text {
  978. position:absolute;
  979. align-self:center;
  980. padding:2px 2px 2px 2px;
  981. box-sizing:border-box;
  982. width:100%;
  983. }
  984. #u164818_text {
  985. border-width:0px;
  986. word-wrap:break-word;
  987. text-transform:none;
  988. visibility:hidden;
  989. }
  990. #u164819_div {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:0px;
  995. width:99px;
  996. height:20px;
  997. background:inherit;
  998. background-color:rgba(255, 255, 255, 0);
  999. border:none;
  1000. border-left:0px;
  1001. border-top:0px;
  1002. border-right:0px;
  1003. border-radius:0px;
  1004. border-bottom-right-radius:0px;
  1005. border-bottom-left-radius:0px;
  1006. -moz-box-shadow:none;
  1007. -webkit-box-shadow:none;
  1008. box-shadow:none;
  1009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1010. font-weight:400;
  1011. font-style:normal;
  1012. font-size:14px;
  1013. }
  1014. #u164819 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:519px;
  1018. top:448px;
  1019. width:99px;
  1020. height:20px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:14px;
  1026. }
  1027. #u164819 .text {
  1028. position:absolute;
  1029. align-self:flex-start;
  1030. padding:0px 0px 0px 0px;
  1031. box-sizing:border-box;
  1032. width:100%;
  1033. }
  1034. #u164819_text {
  1035. border-width:0px;
  1036. white-space:nowrap;
  1037. text-transform:none;
  1038. }
  1039. #u164820_img {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:6px;
  1045. height:10px;
  1046. }
  1047. #u164820 {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:822px;
  1051. top:453px;
  1052. width:6px;
  1053. height:10px;
  1054. display:flex;
  1055. -webkit-transform:rotate(180deg);
  1056. -moz-transform:rotate(180deg);
  1057. -ms-transform:rotate(180deg);
  1058. transform:rotate(180deg);
  1059. }
  1060. #u164820 .text {
  1061. position:absolute;
  1062. align-self:center;
  1063. padding:2px 2px 2px 2px;
  1064. box-sizing:border-box;
  1065. width:100%;
  1066. }
  1067. #u164820_text {
  1068. border-width:0px;
  1069. word-wrap:break-word;
  1070. text-transform:none;
  1071. visibility:hidden;
  1072. }
  1073. #u164821 {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:0px;
  1077. top:0px;
  1078. width:0px;
  1079. height:0px;
  1080. }
  1081. #u164822_div {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:0px;
  1085. top:0px;
  1086. width:339px;
  1087. height:160px;
  1088. background:inherit;
  1089. background-color:rgba(51, 51, 51, 1);
  1090. border:none;
  1091. border-radius:4px;
  1092. -moz-box-shadow:none;
  1093. -webkit-box-shadow:none;
  1094. box-shadow:none;
  1095. }
  1096. #u164822 {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:499px;
  1100. top:119px;
  1101. width:339px;
  1102. height:160px;
  1103. display:flex;
  1104. }
  1105. #u164822 .text {
  1106. position:absolute;
  1107. align-self:center;
  1108. padding:2px 2px 2px 2px;
  1109. box-sizing:border-box;
  1110. width:100%;
  1111. }
  1112. #u164822_text {
  1113. border-width:0px;
  1114. word-wrap:break-word;
  1115. text-transform:none;
  1116. visibility:hidden;
  1117. }
  1118. #u164823_div {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:0px;
  1122. top:0px;
  1123. width:126px;
  1124. height:40px;
  1125. background:inherit;
  1126. background-color:rgba(255, 255, 255, 0);
  1127. border:none;
  1128. border-left:0px;
  1129. border-top:0px;
  1130. border-right:0px;
  1131. border-radius:0px;
  1132. border-bottom-right-radius:0px;
  1133. border-bottom-left-radius:0px;
  1134. -moz-box-shadow:none;
  1135. -webkit-box-shadow:none;
  1136. box-shadow:none;
  1137. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1138. font-weight:500;
  1139. font-style:normal;
  1140. font-size:28px;
  1141. color:#F59A23;
  1142. }
  1143. #u164823 {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:517px;
  1147. top:194px;
  1148. width:126px;
  1149. height:40px;
  1150. display:flex;
  1151. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1152. font-weight:500;
  1153. font-style:normal;
  1154. font-size:28px;
  1155. color:#F59A23;
  1156. }
  1157. #u164823 .text {
  1158. position:absolute;
  1159. align-self:flex-start;
  1160. padding:0px 0px 0px 0px;
  1161. box-sizing:border-box;
  1162. width:100%;
  1163. }
  1164. #u164823_text {
  1165. border-width:0px;
  1166. white-space:nowrap;
  1167. text-transform:none;
  1168. }
  1169. #u164824 {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:0px;
  1175. height:0px;
  1176. }
  1177. #u164825_div {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:191px;
  1183. height:30px;
  1184. background:inherit;
  1185. background-color:rgba(255, 255, 255, 0);
  1186. border:none;
  1187. border-left:0px;
  1188. border-top:0px;
  1189. border-right:0px;
  1190. border-radius:0px;
  1191. border-bottom-right-radius:0px;
  1192. border-bottom-left-radius:0px;
  1193. -moz-box-shadow:none;
  1194. -webkit-box-shadow:none;
  1195. box-shadow:none;
  1196. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1197. font-weight:650;
  1198. font-style:normal;
  1199. font-size:14px;
  1200. color:#FFFFFF;
  1201. line-height:30px;
  1202. }
  1203. #u164825 {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:517px;
  1207. top:134px;
  1208. width:191px;
  1209. height:30px;
  1210. display:flex;
  1211. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1212. font-weight:650;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. color:#FFFFFF;
  1216. line-height:30px;
  1217. }
  1218. #u164825 .text {
  1219. position:absolute;
  1220. align-self:center;
  1221. padding:0px 0px 0px 0px;
  1222. box-sizing:border-box;
  1223. width:100%;
  1224. }
  1225. #u164825_text {
  1226. border-width:0px;
  1227. white-space:nowrap;
  1228. text-transform:none;
  1229. }
  1230. #u164826_div {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:61px;
  1236. height:30px;
  1237. background:inherit;
  1238. background-color:rgba(255, 255, 255, 0);
  1239. border:none;
  1240. border-left:0px;
  1241. border-top:0px;
  1242. border-right:0px;
  1243. border-radius:0px;
  1244. border-bottom-right-radius:0px;
  1245. border-bottom-left-radius:0px;
  1246. -moz-box-shadow:none;
  1247. -webkit-box-shadow:none;
  1248. box-shadow:none;
  1249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1250. font-weight:400;
  1251. font-style:normal;
  1252. font-size:12px;
  1253. color:#7F7F7F;
  1254. line-height:30px;
  1255. }
  1256. #u164826 {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:517px;
  1260. top:234px;
  1261. width:61px;
  1262. height:30px;
  1263. display:flex;
  1264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1265. font-weight:400;
  1266. font-style:normal;
  1267. font-size:12px;
  1268. color:#7F7F7F;
  1269. line-height:30px;
  1270. }
  1271. #u164826 .text {
  1272. position:absolute;
  1273. align-self:center;
  1274. padding:0px 0px 0px 0px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u164826_text {
  1279. border-width:0px;
  1280. white-space:nowrap;
  1281. text-transform:none;
  1282. }
  1283. #u164827_div {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:0px;
  1287. top:0px;
  1288. width:126px;
  1289. height:30px;
  1290. background:inherit;
  1291. background-color:rgba(255, 255, 255, 0);
  1292. border:none;
  1293. border-left:0px;
  1294. border-top:0px;
  1295. border-right:0px;
  1296. border-radius:0px;
  1297. border-bottom-right-radius:0px;
  1298. border-bottom-left-radius:0px;
  1299. -moz-box-shadow:none;
  1300. -webkit-box-shadow:none;
  1301. box-shadow:none;
  1302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1303. font-weight:400;
  1304. font-style:normal;
  1305. font-size:12px;
  1306. color:#7F7F7F;
  1307. line-height:30px;
  1308. }
  1309. #u164827 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:517px;
  1313. top:164px;
  1314. width:126px;
  1315. height:30px;
  1316. display:flex;
  1317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1318. font-weight:400;
  1319. font-style:normal;
  1320. font-size:12px;
  1321. color:#7F7F7F;
  1322. line-height:30px;
  1323. }
  1324. #u164827 .text {
  1325. position:absolute;
  1326. align-self:center;
  1327. padding:0px 0px 0px 0px;
  1328. box-sizing:border-box;
  1329. width:100%;
  1330. }
  1331. #u164827_text {
  1332. border-width:0px;
  1333. white-space:nowrap;
  1334. text-transform:none;
  1335. }
  1336. #u164828_img {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:59px;
  1342. height:61px;
  1343. }
  1344. #u164828 {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:738px;
  1348. top:173px;
  1349. width:59px;
  1350. height:61px;
  1351. display:flex;
  1352. }
  1353. #u164828 .text {
  1354. position:absolute;
  1355. align-self:center;
  1356. padding:2px 2px 2px 2px;
  1357. box-sizing:border-box;
  1358. width:100%;
  1359. }
  1360. #u164828_text {
  1361. border-width:0px;
  1362. word-wrap:break-word;
  1363. text-transform:none;
  1364. visibility:hidden;
  1365. }
  1366. #u164829_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:65px;
  1372. height:24px;
  1373. }
  1374. #u164829 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:773px;
  1378. top:119px;
  1379. width:65px;
  1380. height:24px;
  1381. display:flex;
  1382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1383. font-weight:400;
  1384. font-style:normal;
  1385. font-size:12px;
  1386. color:#FFFFFF;
  1387. }
  1388. #u164829 .text {
  1389. position:absolute;
  1390. align-self:center;
  1391. padding:2px 2px 2px 2px;
  1392. box-sizing:border-box;
  1393. width:100%;
  1394. }
  1395. #u164829_text {
  1396. border-width:0px;
  1397. word-wrap:break-word;
  1398. text-transform:none;
  1399. }
  1400. #u164830_div {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:71px;
  1406. height:30px;
  1407. background:inherit;
  1408. background-color:rgba(255, 255, 255, 0);
  1409. border:none;
  1410. border-left:0px;
  1411. border-top:0px;
  1412. border-right:0px;
  1413. border-radius:0px;
  1414. border-bottom-right-radius:0px;
  1415. border-bottom-left-radius:0px;
  1416. -moz-box-shadow:none;
  1417. -webkit-box-shadow:none;
  1418. box-shadow:none;
  1419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1420. font-weight:500;
  1421. font-style:normal;
  1422. font-size:14px;
  1423. line-height:30px;
  1424. }
  1425. #u164830 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:633px;
  1429. top:73px;
  1430. width:71px;
  1431. height:30px;
  1432. display:flex;
  1433. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1434. font-weight:500;
  1435. font-style:normal;
  1436. font-size:14px;
  1437. line-height:30px;
  1438. }
  1439. #u164830 .text {
  1440. position:absolute;
  1441. align-self:flex-start;
  1442. padding:0px 0px 0px 0px;
  1443. box-sizing:border-box;
  1444. width:100%;
  1445. }
  1446. #u164830_text {
  1447. border-width:0px;
  1448. white-space:nowrap;
  1449. text-transform:none;
  1450. }
  1451. #u164831 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:0px;
  1455. top:0px;
  1456. width:0px;
  1457. height:0px;
  1458. }
  1459. #u164833_img {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:433px;
  1465. height:865px;
  1466. }
  1467. #u164833 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:908px;
  1471. top:0px;
  1472. width:433px;
  1473. height:865px;
  1474. display:flex;
  1475. }
  1476. #u164833 .text {
  1477. position:absolute;
  1478. align-self:center;
  1479. padding:2px 2px 2px 2px;
  1480. box-sizing:border-box;
  1481. width:100%;
  1482. }
  1483. #u164833_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u164834_div {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:0px;
  1493. top:0px;
  1494. width:375px;
  1495. height:40px;
  1496. background:inherit;
  1497. background-color:rgba(255, 255, 255, 1);
  1498. box-sizing:border-box;
  1499. border-width:1px;
  1500. border-style:solid;
  1501. border-color:rgba(215, 215, 215, 1);
  1502. border-left:0px;
  1503. border-top:0px;
  1504. border-right:0px;
  1505. border-radius:0px;
  1506. border-bottom-right-radius:0px;
  1507. border-bottom-left-radius:0px;
  1508. -moz-box-shadow:none;
  1509. -webkit-box-shadow:none;
  1510. box-shadow:none;
  1511. }
  1512. #u164834 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:937px;
  1516. top:67px;
  1517. width:375px;
  1518. height:40px;
  1519. display:flex;
  1520. }
  1521. #u164834 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:2px 2px 2px 2px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u164834_text {
  1529. border-width:0px;
  1530. word-wrap:break-word;
  1531. text-transform:none;
  1532. visibility:hidden;
  1533. }
  1534. #u164835 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:0px;
  1540. height:0px;
  1541. }
  1542. #u164836_div {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:0px;
  1547. width:88px;
  1548. height:32px;
  1549. background:inherit;
  1550. background-color:rgba(255, 255, 255, 1);
  1551. box-sizing:border-box;
  1552. border-width:1px;
  1553. border-style:solid;
  1554. border-color:rgba(242, 242, 242, 1);
  1555. border-radius:33px;
  1556. -moz-box-shadow:none;
  1557. -webkit-box-shadow:none;
  1558. box-shadow:none;
  1559. }
  1560. #u164836 {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:1217px;
  1564. top:71px;
  1565. width:88px;
  1566. height:32px;
  1567. display:flex;
  1568. }
  1569. #u164836 .text {
  1570. position:absolute;
  1571. align-self:center;
  1572. padding:2px 2px 2px 2px;
  1573. box-sizing:border-box;
  1574. width:100%;
  1575. }
  1576. #u164836_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u164837 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u164838_img {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:18px;
  1596. height:18px;
  1597. }
  1598. #u164838 {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:1280px;
  1602. top:78px;
  1603. width:18px;
  1604. height:18px;
  1605. display:flex;
  1606. }
  1607. #u164838 .text {
  1608. position:absolute;
  1609. align-self:center;
  1610. padding:2px 2px 2px 2px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u164838_text {
  1615. border-width:0px;
  1616. word-wrap:break-word;
  1617. text-transform:none;
  1618. visibility:hidden;
  1619. }
  1620. #u164839_img {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:6px;
  1626. height:6px;
  1627. }
  1628. #u164839 {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:1286px;
  1632. top:84px;
  1633. width:6px;
  1634. height:6px;
  1635. display:flex;
  1636. }
  1637. #u164839 .text {
  1638. position:absolute;
  1639. align-self:center;
  1640. padding:2px 2px 2px 2px;
  1641. box-sizing:border-box;
  1642. width:100%;
  1643. }
  1644. #u164839_text {
  1645. border-width:0px;
  1646. word-wrap:break-word;
  1647. text-transform:none;
  1648. visibility:hidden;
  1649. }
  1650. #u164840 {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:0px;
  1656. height:0px;
  1657. }
  1658. #u164841_img {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:5px;
  1664. height:5px;
  1665. }
  1666. #u164841 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:1231px;
  1670. top:85px;
  1671. width:5px;
  1672. height:5px;
  1673. display:flex;
  1674. }
  1675. #u164841 .text {
  1676. position:absolute;
  1677. align-self:center;
  1678. padding:2px 2px 2px 2px;
  1679. box-sizing:border-box;
  1680. width:100%;
  1681. }
  1682. #u164841_text {
  1683. border-width:0px;
  1684. word-wrap:break-word;
  1685. text-transform:none;
  1686. visibility:hidden;
  1687. }
  1688. #u164842_img {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:5px;
  1694. height:5px;
  1695. }
  1696. #u164842 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:1247px;
  1700. top:85px;
  1701. width:5px;
  1702. height:5px;
  1703. display:flex;
  1704. }
  1705. #u164842 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 2px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u164842_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. visibility:hidden;
  1717. }
  1718. #u164843_img {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:0px;
  1722. top:0px;
  1723. width:7px;
  1724. height:7px;
  1725. }
  1726. #u164843 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:1238px;
  1730. top:84px;
  1731. width:7px;
  1732. height:7px;
  1733. display:flex;
  1734. }
  1735. #u164843 .text {
  1736. position:absolute;
  1737. align-self:center;
  1738. padding:2px 2px 2px 2px;
  1739. box-sizing:border-box;
  1740. width:100%;
  1741. }
  1742. #u164843_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. visibility:hidden;
  1747. }
  1748. #u164844_img {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:19px;
  1754. height:2px;
  1755. }
  1756. #u164844 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:1255px;
  1760. top:87px;
  1761. width:18px;
  1762. height:1px;
  1763. display:flex;
  1764. -webkit-transform:rotate(90deg);
  1765. -moz-transform:rotate(90deg);
  1766. -ms-transform:rotate(90deg);
  1767. transform:rotate(90deg);
  1768. }
  1769. #u164844 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 2px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u164844_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. visibility:hidden;
  1781. }
  1782. #u164845_img {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:375px;
  1788. height:44px;
  1789. }
  1790. #u164845 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:937px;
  1794. top:24px;
  1795. width:375px;
  1796. height:44px;
  1797. display:flex;
  1798. }
  1799. #u164845 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 2px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u164845_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. visibility:hidden;
  1811. }
  1812. #u164846_div {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:375px;
  1818. height:50px;
  1819. background:inherit;
  1820. background-color:rgba(255, 255, 255, 1);
  1821. box-sizing:border-box;
  1822. border-width:1px;
  1823. border-style:solid;
  1824. border-color:rgba(242, 242, 242, 1);
  1825. border-radius:26px;
  1826. border-top-left-radius:0px;
  1827. border-top-right-radius:0px;
  1828. -moz-box-shadow:none;
  1829. -webkit-box-shadow:none;
  1830. box-shadow:none;
  1831. }
  1832. #u164846 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:937px;
  1836. top:788px;
  1837. width:375px;
  1838. height:50px;
  1839. display:flex;
  1840. }
  1841. #u164846 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 2px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u164846_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. visibility:hidden;
  1853. }
  1854. #u164847 {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:0px;
  1860. height:0px;
  1861. }
  1862. #u164848_img {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:24px;
  1868. height:24px;
  1869. }
  1870. #u164848 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:977px;
  1874. top:792px;
  1875. width:24px;
  1876. height:24px;
  1877. display:flex;
  1878. font-size:8px;
  1879. }
  1880. #u164848 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u164848_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u164849_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:25px;
  1898. height:17px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 0);
  1901. border:none;
  1902. border-radius:0px;
  1903. -moz-box-shadow:none;
  1904. -webkit-box-shadow:none;
  1905. box-shadow:none;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:12px;
  1910. }
  1911. #u164849 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:977px;
  1915. top:817px;
  1916. width:25px;
  1917. height:17px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. }
  1924. #u164849 .text {
  1925. position:absolute;
  1926. align-self:flex-start;
  1927. padding:0px 0px 0px 0px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u164849_text {
  1932. border-width:0px;
  1933. white-space:nowrap;
  1934. text-transform:none;
  1935. }
  1936. #u164850 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:0px;
  1942. height:0px;
  1943. }
  1944. #u164851_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:24px;
  1950. height:24px;
  1951. }
  1952. #u164851 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:1247px;
  1956. top:794px;
  1957. width:24px;
  1958. height:24px;
  1959. display:flex;
  1960. font-size:8px;
  1961. }
  1962. #u164851 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u164851_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u164852_div {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:25px;
  1980. height:17px;
  1981. background:inherit;
  1982. background-color:rgba(255, 255, 255, 0);
  1983. border:none;
  1984. border-radius:0px;
  1985. -moz-box-shadow:none;
  1986. -webkit-box-shadow:none;
  1987. box-shadow:none;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:12px;
  1992. }
  1993. #u164852 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:1247px;
  1997. top:819px;
  1998. width:25px;
  1999. height:17px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. }
  2006. #u164852 .text {
  2007. position:absolute;
  2008. align-self:flex-start;
  2009. padding:0px 0px 0px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u164852_text {
  2014. border-width:0px;
  2015. white-space:nowrap;
  2016. text-transform:none;
  2017. }
  2018. #u164853_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:375px;
  2024. height:681px;
  2025. background:inherit;
  2026. background-color:rgba(242, 242, 242, 0.462745098039216);
  2027. border:none;
  2028. border-radius:0px;
  2029. -moz-box-shadow:none;
  2030. -webkit-box-shadow:none;
  2031. box-shadow:none;
  2032. }
  2033. #u164853 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:937px;
  2037. top:107px;
  2038. width:375px;
  2039. height:681px;
  2040. display:flex;
  2041. }
  2042. #u164853 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 2px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u164853_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. visibility:hidden;
  2054. }
  2055. #u164854 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:0px;
  2061. height:0px;
  2062. }
  2063. #u164855_img {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:24px;
  2069. height:24px;
  2070. }
  2071. #u164855 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:1159px;
  2075. top:792px;
  2076. width:24px;
  2077. height:24px;
  2078. display:flex;
  2079. font-size:8px;
  2080. }
  2081. #u164855 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:2px 2px 2px 2px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u164855_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. }
  2093. #u164856_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:37px;
  2099. height:17px;
  2100. background:inherit;
  2101. background-color:rgba(255, 255, 255, 0);
  2102. border:none;
  2103. border-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:12px;
  2111. }
  2112. #u164856 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:1153px;
  2116. top:817px;
  2117. width:37px;
  2118. height:17px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. }
  2125. #u164856 .text {
  2126. position:absolute;
  2127. align-self:flex-start;
  2128. padding:0px 0px 0px 0px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u164856_text {
  2133. border-width:0px;
  2134. white-space:nowrap;
  2135. text-transform:none;
  2136. }
  2137. #u164857 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. height:0px;
  2144. }
  2145. #u164858_img {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:24px;
  2151. height:24px;
  2152. }
  2153. #u164858 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:1065px;
  2157. top:792px;
  2158. width:24px;
  2159. height:24px;
  2160. display:flex;
  2161. font-size:8px;
  2162. }
  2163. #u164858 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u164858_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. }
  2175. #u164859_div {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:37px;
  2181. height:17px;
  2182. background:inherit;
  2183. background-color:rgba(255, 255, 255, 0);
  2184. border:none;
  2185. border-radius:0px;
  2186. -moz-box-shadow:none;
  2187. -webkit-box-shadow:none;
  2188. box-shadow:none;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. }
  2194. #u164859 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:1059px;
  2198. top:817px;
  2199. width:37px;
  2200. height:17px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:12px;
  2206. }
  2207. #u164859 .text {
  2208. position:absolute;
  2209. align-self:flex-start;
  2210. padding:0px 0px 0px 0px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u164859_text {
  2215. border-width:0px;
  2216. white-space:nowrap;
  2217. text-transform:none;
  2218. }
  2219. #u164860_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:375px;
  2225. height:735px;
  2226. background:inherit;
  2227. background-color:rgba(242, 242, 242, 1);
  2228. border:none;
  2229. border-top:0px;
  2230. border-radius:25px;
  2231. border-top-left-radius:0px;
  2232. border-top-right-radius:0px;
  2233. -moz-box-shadow:none;
  2234. -webkit-box-shadow:none;
  2235. box-shadow:none;
  2236. }
  2237. #u164860 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:937px;
  2241. top:104px;
  2242. width:375px;
  2243. height:735px;
  2244. display:flex;
  2245. }
  2246. #u164860 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 2px 2px 2px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u164860_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. visibility:hidden;
  2258. }
  2259. #u164861 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:0px;
  2265. height:0px;
  2266. }
  2267. #u164862_img {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:11px;
  2273. height:18px;
  2274. }
  2275. #u164862 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:948px;
  2279. top:79px;
  2280. width:11px;
  2281. height:18px;
  2282. display:flex;
  2283. }
  2284. #u164862 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 2px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u164862_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. visibility:hidden;
  2296. }
  2297. #u164863_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:71px;
  2303. height:30px;
  2304. background:inherit;
  2305. background-color:rgba(255, 255, 255, 0);
  2306. border:none;
  2307. border-left:0px;
  2308. border-top:0px;
  2309. border-right:0px;
  2310. border-radius:0px;
  2311. border-bottom-right-radius:0px;
  2312. border-bottom-left-radius:0px;
  2313. -moz-box-shadow:none;
  2314. -webkit-box-shadow:none;
  2315. box-shadow:none;
  2316. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2317. font-weight:500;
  2318. font-style:normal;
  2319. font-size:14px;
  2320. line-height:30px;
  2321. }
  2322. #u164863 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:1085px;
  2326. top:74px;
  2327. width:71px;
  2328. height:30px;
  2329. display:flex;
  2330. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2331. font-weight:500;
  2332. font-style:normal;
  2333. font-size:14px;
  2334. line-height:30px;
  2335. }
  2336. #u164863 .text {
  2337. position:absolute;
  2338. align-self:flex-start;
  2339. padding:0px 0px 0px 0px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u164863_text {
  2344. border-width:0px;
  2345. white-space:nowrap;
  2346. text-transform:none;
  2347. }
  2348. #u164864_div {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:374px;
  2354. height:505px;
  2355. background:inherit;
  2356. background-color:rgba(255, 255, 255, 1);
  2357. border:none;
  2358. border-radius:0px;
  2359. -moz-box-shadow:none;
  2360. -webkit-box-shadow:none;
  2361. box-shadow:none;
  2362. }
  2363. #u164864 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:937px;
  2367. top:104px;
  2368. width:374px;
  2369. height:505px;
  2370. display:flex;
  2371. }
  2372. #u164864 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 2px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u164864_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u164865_img {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:291px;
  2391. height:291px;
  2392. }
  2393. #u164865 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:974px;
  2397. top:152px;
  2398. width:291px;
  2399. height:291px;
  2400. display:flex;
  2401. }
  2402. #u164865 .text {
  2403. position:absolute;
  2404. align-self:center;
  2405. padding:2px 2px 2px 2px;
  2406. box-sizing:border-box;
  2407. width:100%;
  2408. }
  2409. #u164865_text {
  2410. border-width:0px;
  2411. word-wrap:break-word;
  2412. text-transform:none;
  2413. visibility:hidden;
  2414. }
  2415. #u164866_div {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:229px;
  2421. height:20px;
  2422. background:inherit;
  2423. background-color:rgba(255, 255, 255, 0);
  2424. border:none;
  2425. border-left:0px;
  2426. border-top:0px;
  2427. border-right:0px;
  2428. border-radius:0px;
  2429. border-bottom-right-radius:0px;
  2430. border-bottom-left-radius:0px;
  2431. -moz-box-shadow:none;
  2432. -webkit-box-shadow:none;
  2433. box-shadow:none;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:12px;
  2438. color:#1890FF;
  2439. text-align:center;
  2440. line-height:20px;
  2441. }
  2442. #u164866 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:1005px;
  2446. top:455px;
  2447. width:229px;
  2448. height:20px;
  2449. display:flex;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:12px;
  2454. color:#1890FF;
  2455. text-align:center;
  2456. line-height:20px;
  2457. }
  2458. #u164866 .text {
  2459. position:absolute;
  2460. align-self:center;
  2461. padding:0px 0px 0px 0px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u164866_text {
  2466. border-width:0px;
  2467. white-space:nowrap;
  2468. text-transform:none;
  2469. }
  2470. #u164867_div {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:332px;
  2476. height:180px;
  2477. background:inherit;
  2478. background-color:rgba(255, 255, 255, 0);
  2479. border:none;
  2480. border-left:0px;
  2481. border-top:0px;
  2482. border-right:0px;
  2483. border-radius:0px;
  2484. border-bottom-right-radius:0px;
  2485. border-bottom-left-radius:0px;
  2486. -moz-box-shadow:none;
  2487. -webkit-box-shadow:none;
  2488. box-shadow:none;
  2489. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2490. font-style:normal;
  2491. font-size:14px;
  2492. line-height:30px;
  2493. }
  2494. #u164867 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:954px;
  2498. top:619px;
  2499. width:332px;
  2500. height:180px;
  2501. display:flex;
  2502. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2503. font-style:normal;
  2504. font-size:14px;
  2505. line-height:30px;
  2506. }
  2507. #u164867 .text {
  2508. position:absolute;
  2509. align-self:flex-start;
  2510. padding:0px 0px 0px 0px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u164867_text {
  2515. border-width:0px;
  2516. word-wrap:break-word;
  2517. text-transform:none;
  2518. }
  2519. #u164868_div {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:169px;
  2525. height:30px;
  2526. background:inherit;
  2527. background-color:rgba(255, 255, 255, 0);
  2528. border:none;
  2529. border-left:0px;
  2530. border-top:0px;
  2531. border-right:0px;
  2532. border-radius:0px;
  2533. border-bottom-right-radius:0px;
  2534. border-bottom-left-radius:0px;
  2535. -moz-box-shadow:none;
  2536. -webkit-box-shadow:none;
  2537. box-shadow:none;
  2538. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2539. font-weight:650;
  2540. font-style:normal;
  2541. font-size:14px;
  2542. line-height:30px;
  2543. }
  2544. #u164868 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:1035px;
  2548. top:115px;
  2549. width:169px;
  2550. height:30px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2553. font-weight:650;
  2554. font-style:normal;
  2555. font-size:14px;
  2556. line-height:30px;
  2557. }
  2558. #u164868 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:0px 0px 0px 0px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u164868_text {
  2566. border-width:0px;
  2567. white-space:nowrap;
  2568. text-transform:none;
  2569. }
  2570. #u164869_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:243px;
  2576. height:40px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 1);
  2579. box-sizing:border-box;
  2580. border-width:1px;
  2581. border-style:solid;
  2582. border-color:rgba(0, 137, 254, 1);
  2583. border-radius:34px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:14px;
  2591. color:#0089FE;
  2592. }
  2593. #u164869 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:1000px;
  2597. top:499px;
  2598. width:243px;
  2599. height:40px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:14px;
  2605. color:#0089FE;
  2606. }
  2607. #u164869 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 2px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u164869_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. }
  2619. #u164870_div {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:243px;
  2625. height:40px;
  2626. background:inherit;
  2627. background-color:rgba(255, 255, 255, 1);
  2628. box-sizing:border-box;
  2629. border-width:1px;
  2630. border-style:solid;
  2631. border-color:rgba(245, 154, 35, 1);
  2632. border-radius:34px;
  2633. -moz-box-shadow:none;
  2634. -webkit-box-shadow:none;
  2635. box-shadow:none;
  2636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:14px;
  2640. color:#F59A23;
  2641. }
  2642. #u164870 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:1000px;
  2646. top:549px;
  2647. width:243px;
  2648. height:40px;
  2649. display:flex;
  2650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2651. font-weight:400;
  2652. font-style:normal;
  2653. font-size:14px;
  2654. color:#F59A23;
  2655. }
  2656. #u164870 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:2px 2px 2px 2px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u164870_text {
  2664. border-width:0px;
  2665. word-wrap:break-word;
  2666. text-transform:none;
  2667. }
  2668. #u164871_div {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:302px;
  2674. height:40px;
  2675. background:inherit;
  2676. background-color:rgba(242, 242, 242, 1);
  2677. border:none;
  2678. border-radius:34px;
  2679. -moz-box-shadow:none;
  2680. -webkit-box-shadow:none;
  2681. box-shadow:none;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:12px;
  2686. color:#298FFF;
  2687. }
  2688. #u164871 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:973px;
  2692. top:797px;
  2693. width:302px;
  2694. height:40px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. color:#298FFF;
  2701. }
  2702. #u164871 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 2px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u164871_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. }
  2714. #u164872_div {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:40px;
  2720. height:20px;
  2721. background:inherit;
  2722. background-color:rgba(255, 255, 255, 0.180392156862745);
  2723. border:none;
  2724. border-radius:11px;
  2725. -moz-box-shadow:none;
  2726. -webkit-box-shadow:none;
  2727. box-shadow:none;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:14px;
  2732. color:rgba(255, 255, 255, 0.552941176470588);
  2733. text-align:center;
  2734. }
  2735. #u164872 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:655px;
  2739. top:205px;
  2740. width:40px;
  2741. height:20px;
  2742. display:flex;
  2743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:14px;
  2747. color:rgba(255, 255, 255, 0.552941176470588);
  2748. text-align:center;
  2749. }
  2750. #u164872 .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. #u164872_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. }
  2762. #u164873 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:0px;
  2768. height:0px;
  2769. }
  2770. #u164875_img {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:433px;
  2776. height:865px;
  2777. }
  2778. #u164875 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:1667px;
  2782. top:0px;
  2783. width:433px;
  2784. height:865px;
  2785. display:flex;
  2786. }
  2787. #u164875 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 2px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u164875_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u164876_div {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:375px;
  2806. height:40px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 1);
  2809. box-sizing:border-box;
  2810. border-width:1px;
  2811. border-style:solid;
  2812. border-color:rgba(215, 215, 215, 1);
  2813. border-left:0px;
  2814. border-top:0px;
  2815. border-right:0px;
  2816. border-radius:0px;
  2817. border-bottom-right-radius:0px;
  2818. border-bottom-left-radius:0px;
  2819. -moz-box-shadow:none;
  2820. -webkit-box-shadow:none;
  2821. box-shadow:none;
  2822. }
  2823. #u164876 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:1696px;
  2827. top:67px;
  2828. width:375px;
  2829. height:40px;
  2830. display:flex;
  2831. }
  2832. #u164876 .text {
  2833. position:absolute;
  2834. align-self:center;
  2835. padding:2px 2px 2px 2px;
  2836. box-sizing:border-box;
  2837. width:100%;
  2838. }
  2839. #u164876_text {
  2840. border-width:0px;
  2841. word-wrap:break-word;
  2842. text-transform:none;
  2843. visibility:hidden;
  2844. }
  2845. #u164877 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:0px;
  2851. height:0px;
  2852. }
  2853. #u164878_div {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:88px;
  2859. height:32px;
  2860. background:inherit;
  2861. background-color:rgba(255, 255, 255, 1);
  2862. box-sizing:border-box;
  2863. border-width:1px;
  2864. border-style:solid;
  2865. border-color:rgba(242, 242, 242, 1);
  2866. border-radius:33px;
  2867. -moz-box-shadow:none;
  2868. -webkit-box-shadow:none;
  2869. box-shadow:none;
  2870. }
  2871. #u164878 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:1976px;
  2875. top:71px;
  2876. width:88px;
  2877. height:32px;
  2878. display:flex;
  2879. }
  2880. #u164878 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 2px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u164878_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. visibility:hidden;
  2892. }
  2893. #u164879 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:0px;
  2899. height:0px;
  2900. }
  2901. #u164880_img {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:18px;
  2907. height:18px;
  2908. }
  2909. #u164880 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:2039px;
  2913. top:78px;
  2914. width:18px;
  2915. height:18px;
  2916. display:flex;
  2917. }
  2918. #u164880 .text {
  2919. position:absolute;
  2920. align-self:center;
  2921. padding:2px 2px 2px 2px;
  2922. box-sizing:border-box;
  2923. width:100%;
  2924. }
  2925. #u164880_text {
  2926. border-width:0px;
  2927. word-wrap:break-word;
  2928. text-transform:none;
  2929. visibility:hidden;
  2930. }
  2931. #u164881_img {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:6px;
  2937. height:6px;
  2938. }
  2939. #u164881 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:2045px;
  2943. top:84px;
  2944. width:6px;
  2945. height:6px;
  2946. display:flex;
  2947. }
  2948. #u164881 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 2px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u164881_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u164882 {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:0px;
  2967. height:0px;
  2968. }
  2969. #u164883_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:5px;
  2975. height:5px;
  2976. }
  2977. #u164883 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:1990px;
  2981. top:85px;
  2982. width:5px;
  2983. height:5px;
  2984. display:flex;
  2985. }
  2986. #u164883 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 2px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u164883_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u164884_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:5px;
  3005. height:5px;
  3006. }
  3007. #u164884 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:2006px;
  3011. top:85px;
  3012. width:5px;
  3013. height:5px;
  3014. display:flex;
  3015. }
  3016. #u164884 .text {
  3017. position:absolute;
  3018. align-self:center;
  3019. padding:2px 2px 2px 2px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u164884_text {
  3024. border-width:0px;
  3025. word-wrap:break-word;
  3026. text-transform:none;
  3027. visibility:hidden;
  3028. }
  3029. #u164885_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:7px;
  3035. height:7px;
  3036. }
  3037. #u164885 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:1997px;
  3041. top:84px;
  3042. width:7px;
  3043. height:7px;
  3044. display:flex;
  3045. }
  3046. #u164885 .text {
  3047. position:absolute;
  3048. align-self:center;
  3049. padding:2px 2px 2px 2px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u164885_text {
  3054. border-width:0px;
  3055. word-wrap:break-word;
  3056. text-transform:none;
  3057. visibility:hidden;
  3058. }
  3059. #u164886_img {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:19px;
  3065. height:2px;
  3066. }
  3067. #u164886 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:2014px;
  3071. top:87px;
  3072. width:18px;
  3073. height:1px;
  3074. display:flex;
  3075. -webkit-transform:rotate(90deg);
  3076. -moz-transform:rotate(90deg);
  3077. -ms-transform:rotate(90deg);
  3078. transform:rotate(90deg);
  3079. }
  3080. #u164886 .text {
  3081. position:absolute;
  3082. align-self:center;
  3083. padding:2px 2px 2px 2px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u164886_text {
  3088. border-width:0px;
  3089. word-wrap:break-word;
  3090. text-transform:none;
  3091. visibility:hidden;
  3092. }
  3093. #u164887_img {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:375px;
  3099. height:44px;
  3100. }
  3101. #u164887 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:1696px;
  3105. top:24px;
  3106. width:375px;
  3107. height:44px;
  3108. display:flex;
  3109. }
  3110. #u164887 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:2px 2px 2px 2px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u164887_text {
  3118. border-width:0px;
  3119. word-wrap:break-word;
  3120. text-transform:none;
  3121. visibility:hidden;
  3122. }
  3123. #u164888_div {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:375px;
  3129. height:50px;
  3130. background:inherit;
  3131. background-color:rgba(255, 255, 255, 1);
  3132. box-sizing:border-box;
  3133. border-width:1px;
  3134. border-style:solid;
  3135. border-color:rgba(242, 242, 242, 1);
  3136. border-radius:26px;
  3137. border-top-left-radius:0px;
  3138. border-top-right-radius:0px;
  3139. -moz-box-shadow:none;
  3140. -webkit-box-shadow:none;
  3141. box-shadow:none;
  3142. }
  3143. #u164888 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:1696px;
  3147. top:788px;
  3148. width:375px;
  3149. height:50px;
  3150. display:flex;
  3151. }
  3152. #u164888 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 2px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u164888_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. visibility:hidden;
  3164. }
  3165. #u164889 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:0px;
  3171. height:0px;
  3172. }
  3173. #u164890_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:24px;
  3179. height:24px;
  3180. }
  3181. #u164890 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:1736px;
  3185. top:792px;
  3186. width:24px;
  3187. height:24px;
  3188. display:flex;
  3189. font-size:8px;
  3190. }
  3191. #u164890 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 2px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u164890_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. }
  3203. #u164891_div {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:25px;
  3209. height:17px;
  3210. background:inherit;
  3211. background-color:rgba(255, 255, 255, 0);
  3212. border:none;
  3213. border-radius:0px;
  3214. -moz-box-shadow:none;
  3215. -webkit-box-shadow:none;
  3216. box-shadow:none;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:12px;
  3221. }
  3222. #u164891 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:1736px;
  3226. top:817px;
  3227. width:25px;
  3228. height:17px;
  3229. display:flex;
  3230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. font-size:12px;
  3234. }
  3235. #u164891 .text {
  3236. position:absolute;
  3237. align-self:flex-start;
  3238. padding:0px 0px 0px 0px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u164891_text {
  3243. border-width:0px;
  3244. white-space:nowrap;
  3245. text-transform:none;
  3246. }
  3247. #u164892 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:0px;
  3253. height:0px;
  3254. }
  3255. #u164893_img {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:24px;
  3261. height:24px;
  3262. }
  3263. #u164893 {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:2006px;
  3267. top:794px;
  3268. width:24px;
  3269. height:24px;
  3270. display:flex;
  3271. font-size:8px;
  3272. }
  3273. #u164893 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 2px 2px 2px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u164893_text {
  3281. border-width:0px;
  3282. word-wrap:break-word;
  3283. text-transform:none;
  3284. }
  3285. #u164894_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:25px;
  3291. height:17px;
  3292. background:inherit;
  3293. background-color:rgba(255, 255, 255, 0);
  3294. border:none;
  3295. border-radius:0px;
  3296. -moz-box-shadow:none;
  3297. -webkit-box-shadow:none;
  3298. box-shadow:none;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:12px;
  3303. }
  3304. #u164894 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:2006px;
  3308. top:819px;
  3309. width:25px;
  3310. height:17px;
  3311. display:flex;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:12px;
  3316. }
  3317. #u164894 .text {
  3318. position:absolute;
  3319. align-self:flex-start;
  3320. padding:0px 0px 0px 0px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u164894_text {
  3325. border-width:0px;
  3326. white-space:nowrap;
  3327. text-transform:none;
  3328. }
  3329. #u164895_div {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:375px;
  3335. height:681px;
  3336. background:inherit;
  3337. background-color:rgba(242, 242, 242, 0.462745098039216);
  3338. border:none;
  3339. border-radius:0px;
  3340. -moz-box-shadow:none;
  3341. -webkit-box-shadow:none;
  3342. box-shadow:none;
  3343. }
  3344. #u164895 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:1696px;
  3348. top:107px;
  3349. width:375px;
  3350. height:681px;
  3351. display:flex;
  3352. }
  3353. #u164895 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 2px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u164895_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. visibility:hidden;
  3365. }
  3366. #u164896 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:0px;
  3372. height:0px;
  3373. }
  3374. #u164897_img {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:24px;
  3380. height:24px;
  3381. }
  3382. #u164897 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:1918px;
  3386. top:792px;
  3387. width:24px;
  3388. height:24px;
  3389. display:flex;
  3390. font-size:8px;
  3391. }
  3392. #u164897 .text {
  3393. position:absolute;
  3394. align-self:center;
  3395. padding:2px 2px 2px 2px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u164897_text {
  3400. border-width:0px;
  3401. word-wrap:break-word;
  3402. text-transform:none;
  3403. }
  3404. #u164898_div {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:37px;
  3410. height:17px;
  3411. background:inherit;
  3412. background-color:rgba(255, 255, 255, 0);
  3413. border:none;
  3414. border-radius:0px;
  3415. -moz-box-shadow:none;
  3416. -webkit-box-shadow:none;
  3417. box-shadow:none;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:12px;
  3422. }
  3423. #u164898 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:1912px;
  3427. top:817px;
  3428. width:37px;
  3429. height:17px;
  3430. display:flex;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:12px;
  3435. }
  3436. #u164898 .text {
  3437. position:absolute;
  3438. align-self:flex-start;
  3439. padding:0px 0px 0px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u164898_text {
  3444. border-width:0px;
  3445. white-space:nowrap;
  3446. text-transform:none;
  3447. }
  3448. #u164899 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:0px;
  3454. height:0px;
  3455. }
  3456. #u164900_img {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:0px;
  3460. top:0px;
  3461. width:24px;
  3462. height:24px;
  3463. }
  3464. #u164900 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:1824px;
  3468. top:792px;
  3469. width:24px;
  3470. height:24px;
  3471. display:flex;
  3472. font-size:8px;
  3473. }
  3474. #u164900 .text {
  3475. position:absolute;
  3476. align-self:center;
  3477. padding:2px 2px 2px 2px;
  3478. box-sizing:border-box;
  3479. width:100%;
  3480. }
  3481. #u164900_text {
  3482. border-width:0px;
  3483. word-wrap:break-word;
  3484. text-transform:none;
  3485. }
  3486. #u164901_div {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:37px;
  3492. height:17px;
  3493. background:inherit;
  3494. background-color:rgba(255, 255, 255, 0);
  3495. border:none;
  3496. border-radius:0px;
  3497. -moz-box-shadow:none;
  3498. -webkit-box-shadow:none;
  3499. box-shadow:none;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. }
  3505. #u164901 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:1818px;
  3509. top:817px;
  3510. width:37px;
  3511. height:17px;
  3512. display:flex;
  3513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:12px;
  3517. }
  3518. #u164901 .text {
  3519. position:absolute;
  3520. align-self:flex-start;
  3521. padding:0px 0px 0px 0px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u164901_text {
  3526. border-width:0px;
  3527. white-space:nowrap;
  3528. text-transform:none;
  3529. }
  3530. #u164902_div {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:375px;
  3536. height:890px;
  3537. background:inherit;
  3538. background-color:rgba(242, 242, 242, 1);
  3539. border:none;
  3540. border-top:0px;
  3541. border-radius:25px;
  3542. border-top-left-radius:0px;
  3543. border-top-right-radius:0px;
  3544. -moz-box-shadow:none;
  3545. -webkit-box-shadow:none;
  3546. box-shadow:none;
  3547. }
  3548. #u164902 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:1696px;
  3552. top:104px;
  3553. width:375px;
  3554. height:890px;
  3555. display:flex;
  3556. }
  3557. #u164902 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 2px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u164902_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. visibility:hidden;
  3569. }
  3570. #u164903 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:0px;
  3576. height:0px;
  3577. }
  3578. #u164904_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:11px;
  3584. height:18px;
  3585. }
  3586. #u164904 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:1707px;
  3590. top:79px;
  3591. width:11px;
  3592. height:18px;
  3593. display:flex;
  3594. }
  3595. #u164904 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 2px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u164904_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u164905_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:12px;
  3614. height:12px;
  3615. }
  3616. #u164905 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:2031px;
  3620. top:134px;
  3621. width:12px;
  3622. height:12px;
  3623. display:flex;
  3624. }
  3625. #u164905 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 2px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u164905_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. visibility:hidden;
  3637. }
  3638. #u164906_div {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:374px;
  3644. height:160px;
  3645. background:inherit;
  3646. background-color:rgba(51, 51, 51, 1);
  3647. border:none;
  3648. border-radius:0px;
  3649. -moz-box-shadow:none;
  3650. -webkit-box-shadow:none;
  3651. box-shadow:none;
  3652. }
  3653. #u164906 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:1696px;
  3657. top:104px;
  3658. width:374px;
  3659. height:160px;
  3660. display:flex;
  3661. }
  3662. #u164906 .text {
  3663. position:absolute;
  3664. align-self:center;
  3665. padding:2px 2px 2px 2px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u164906_text {
  3670. border-width:0px;
  3671. word-wrap:break-word;
  3672. text-transform:none;
  3673. visibility:hidden;
  3674. }
  3675. #u164907_div {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:126px;
  3681. height:40px;
  3682. background:inherit;
  3683. background-color:rgba(255, 255, 255, 0);
  3684. border:none;
  3685. border-left:0px;
  3686. border-top:0px;
  3687. border-right:0px;
  3688. border-radius:0px;
  3689. border-bottom-right-radius:0px;
  3690. border-bottom-left-radius:0px;
  3691. -moz-box-shadow:none;
  3692. -webkit-box-shadow:none;
  3693. box-shadow:none;
  3694. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3695. font-weight:500;
  3696. font-style:normal;
  3697. font-size:28px;
  3698. color:#F59A23;
  3699. }
  3700. #u164907 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:1714px;
  3704. top:179px;
  3705. width:126px;
  3706. height:40px;
  3707. display:flex;
  3708. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3709. font-weight:500;
  3710. font-style:normal;
  3711. font-size:28px;
  3712. color:#F59A23;
  3713. }
  3714. #u164907 .text {
  3715. position:absolute;
  3716. align-self:flex-start;
  3717. padding:0px 0px 0px 0px;
  3718. box-sizing:border-box;
  3719. width:100%;
  3720. }
  3721. #u164907_text {
  3722. border-width:0px;
  3723. white-space:nowrap;
  3724. text-transform:none;
  3725. }
  3726. #u164908 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:0px;
  3732. height:0px;
  3733. }
  3734. #u164909_div {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:191px;
  3740. height:30px;
  3741. background:inherit;
  3742. background-color:rgba(255, 255, 255, 0);
  3743. border:none;
  3744. border-left:0px;
  3745. border-top:0px;
  3746. border-right:0px;
  3747. border-radius:0px;
  3748. border-bottom-right-radius:0px;
  3749. border-bottom-left-radius:0px;
  3750. -moz-box-shadow:none;
  3751. -webkit-box-shadow:none;
  3752. box-shadow:none;
  3753. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3754. font-weight:650;
  3755. font-style:normal;
  3756. font-size:14px;
  3757. color:#FFFFFF;
  3758. line-height:30px;
  3759. }
  3760. #u164909 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:1714px;
  3764. top:119px;
  3765. width:191px;
  3766. height:30px;
  3767. display:flex;
  3768. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3769. font-weight:650;
  3770. font-style:normal;
  3771. font-size:14px;
  3772. color:#FFFFFF;
  3773. line-height:30px;
  3774. }
  3775. #u164909 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:0px 0px 0px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u164909_text {
  3783. border-width:0px;
  3784. white-space:nowrap;
  3785. text-transform:none;
  3786. }
  3787. #u164910_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:61px;
  3793. height:30px;
  3794. background:inherit;
  3795. background-color:rgba(255, 255, 255, 0);
  3796. border:none;
  3797. border-left:0px;
  3798. border-top:0px;
  3799. border-right:0px;
  3800. border-radius:0px;
  3801. border-bottom-right-radius:0px;
  3802. border-bottom-left-radius:0px;
  3803. -moz-box-shadow:none;
  3804. -webkit-box-shadow:none;
  3805. box-shadow:none;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:12px;
  3810. color:#7F7F7F;
  3811. line-height:30px;
  3812. }
  3813. #u164910 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:1714px;
  3817. top:219px;
  3818. width:61px;
  3819. height:30px;
  3820. display:flex;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. color:#7F7F7F;
  3826. line-height:30px;
  3827. }
  3828. #u164910 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:0px 0px 0px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u164910_text {
  3836. border-width:0px;
  3837. white-space:nowrap;
  3838. text-transform:none;
  3839. }
  3840. #u164911_div {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:126px;
  3846. height:30px;
  3847. background:inherit;
  3848. background-color:rgba(255, 255, 255, 0);
  3849. border:none;
  3850. border-left:0px;
  3851. border-top:0px;
  3852. border-right:0px;
  3853. border-radius:0px;
  3854. border-bottom-right-radius:0px;
  3855. border-bottom-left-radius:0px;
  3856. -moz-box-shadow:none;
  3857. -webkit-box-shadow:none;
  3858. box-shadow:none;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#7F7F7F;
  3864. line-height:30px;
  3865. }
  3866. #u164911 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:1714px;
  3870. top:149px;
  3871. width:126px;
  3872. height:30px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. color:#7F7F7F;
  3879. line-height:30px;
  3880. }
  3881. #u164911 .text {
  3882. position:absolute;
  3883. align-self:center;
  3884. padding:0px 0px 0px 0px;
  3885. box-sizing:border-box;
  3886. width:100%;
  3887. }
  3888. #u164911_text {
  3889. border-width:0px;
  3890. white-space:nowrap;
  3891. text-transform:none;
  3892. }
  3893. #u164912_img {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:65px;
  3899. height:24px;
  3900. }
  3901. #u164912 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:2005px;
  3905. top:104px;
  3906. width:65px;
  3907. height:24px;
  3908. display:flex;
  3909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3910. font-weight:400;
  3911. font-style:normal;
  3912. font-size:12px;
  3913. color:#FFFFFF;
  3914. }
  3915. #u164912 .text {
  3916. position:absolute;
  3917. align-self:center;
  3918. padding:2px 2px 2px 2px;
  3919. box-sizing:border-box;
  3920. width:100%;
  3921. }
  3922. #u164912_text {
  3923. border-width:0px;
  3924. word-wrap:break-word;
  3925. text-transform:none;
  3926. }
  3927. #u164913_div {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:0px;
  3931. top:0px;
  3932. width:99px;
  3933. height:30px;
  3934. background:inherit;
  3935. background-color:rgba(255, 255, 255, 0);
  3936. border:none;
  3937. border-left:0px;
  3938. border-top:0px;
  3939. border-right:0px;
  3940. border-radius:0px;
  3941. border-bottom-right-radius:0px;
  3942. border-bottom-left-radius:0px;
  3943. -moz-box-shadow:none;
  3944. -webkit-box-shadow:none;
  3945. box-shadow:none;
  3946. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3947. font-weight:500;
  3948. font-style:normal;
  3949. font-size:14px;
  3950. line-height:30px;
  3951. }
  3952. #u164913 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:1831px;
  3956. top:74px;
  3957. width:99px;
  3958. height:30px;
  3959. display:flex;
  3960. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3961. font-weight:500;
  3962. font-style:normal;
  3963. font-size:14px;
  3964. line-height:30px;
  3965. }
  3966. #u164913 .text {
  3967. position:absolute;
  3968. align-self:flex-start;
  3969. padding:0px 0px 0px 0px;
  3970. box-sizing:border-box;
  3971. width:100%;
  3972. }
  3973. #u164913_text {
  3974. border-width:0px;
  3975. white-space:nowrap;
  3976. text-transform:none;
  3977. }
  3978. #u164914_div {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:374px;
  3984. height:334px;
  3985. background:inherit;
  3986. background-color:rgba(255, 255, 255, 1);
  3987. border:none;
  3988. border-radius:0px;
  3989. -moz-box-shadow:none;
  3990. -webkit-box-shadow:none;
  3991. box-shadow:none;
  3992. }
  3993. #u164914 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:1696px;
  3997. top:264px;
  3998. width:374px;
  3999. height:334px;
  4000. display:flex;
  4001. }
  4002. #u164914 .text {
  4003. position:absolute;
  4004. align-self:center;
  4005. padding:2px 2px 2px 2px;
  4006. box-sizing:border-box;
  4007. width:100%;
  4008. }
  4009. #u164914_text {
  4010. border-width:0px;
  4011. word-wrap:break-word;
  4012. text-transform:none;
  4013. visibility:hidden;
  4014. }
  4015. #u164915_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:238px;
  4021. height:238px;
  4022. }
  4023. #u164915 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:1764px;
  4027. top:312px;
  4028. width:238px;
  4029. height:238px;
  4030. display:flex;
  4031. }
  4032. #u164915 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 2px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u164915_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. visibility:hidden;
  4044. }
  4045. #u164916_div {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:229px;
  4051. height:20px;
  4052. background:inherit;
  4053. background-color:rgba(255, 255, 255, 0);
  4054. border:none;
  4055. border-left:0px;
  4056. border-top:0px;
  4057. border-right:0px;
  4058. border-radius:0px;
  4059. border-bottom-right-radius:0px;
  4060. border-bottom-left-radius:0px;
  4061. -moz-box-shadow:none;
  4062. -webkit-box-shadow:none;
  4063. box-shadow:none;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:12px;
  4068. color:#1890FF;
  4069. text-align:center;
  4070. line-height:20px;
  4071. }
  4072. #u164916 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:1764px;
  4076. top:565px;
  4077. width:229px;
  4078. height:20px;
  4079. display:flex;
  4080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:12px;
  4084. color:#1890FF;
  4085. text-align:center;
  4086. line-height:20px;
  4087. }
  4088. #u164916 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:0px 0px 0px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u164916_text {
  4096. border-width:0px;
  4097. white-space:nowrap;
  4098. text-transform:none;
  4099. }
  4100. #u164917_div {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:332px;
  4106. height:180px;
  4107. background:inherit;
  4108. background-color:rgba(255, 255, 255, 0);
  4109. border:none;
  4110. border-left:0px;
  4111. border-top:0px;
  4112. border-right:0px;
  4113. border-radius:0px;
  4114. border-bottom-right-radius:0px;
  4115. border-bottom-left-radius:0px;
  4116. -moz-box-shadow:none;
  4117. -webkit-box-shadow:none;
  4118. box-shadow:none;
  4119. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4120. font-style:normal;
  4121. font-size:14px;
  4122. line-height:30px;
  4123. }
  4124. #u164917 {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:1713px;
  4128. top:739px;
  4129. width:332px;
  4130. height:180px;
  4131. display:flex;
  4132. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4133. font-style:normal;
  4134. font-size:14px;
  4135. line-height:30px;
  4136. }
  4137. #u164917 .text {
  4138. position:absolute;
  4139. align-self:flex-start;
  4140. padding:0px 0px 0px 0px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u164917_text {
  4145. border-width:0px;
  4146. word-wrap:break-word;
  4147. text-transform:none;
  4148. }
  4149. #u164918_div {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:169px;
  4155. height:30px;
  4156. background:inherit;
  4157. background-color:rgba(255, 255, 255, 0);
  4158. border:none;
  4159. border-left:0px;
  4160. border-top:0px;
  4161. border-right:0px;
  4162. border-radius:0px;
  4163. border-bottom-right-radius:0px;
  4164. border-bottom-left-radius:0px;
  4165. -moz-box-shadow:none;
  4166. -webkit-box-shadow:none;
  4167. box-shadow:none;
  4168. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4169. font-weight:650;
  4170. font-style:normal;
  4171. font-size:14px;
  4172. line-height:30px;
  4173. }
  4174. #u164918 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:1794px;
  4178. top:275px;
  4179. width:169px;
  4180. height:30px;
  4181. display:flex;
  4182. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4183. font-weight:650;
  4184. font-style:normal;
  4185. font-size:14px;
  4186. line-height:30px;
  4187. }
  4188. #u164918 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:0px 0px 0px 0px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u164918_text {
  4196. border-width:0px;
  4197. white-space:nowrap;
  4198. text-transform:none;
  4199. }
  4200. #u164919_div {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:374px;
  4206. height:130px;
  4207. background:inherit;
  4208. background-color:rgba(255, 255, 255, 1);
  4209. border:none;
  4210. border-radius:0px;
  4211. -moz-box-shadow:none;
  4212. -webkit-box-shadow:none;
  4213. box-shadow:none;
  4214. }
  4215. #u164919 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:1696px;
  4219. top:599px;
  4220. width:374px;
  4221. height:130px;
  4222. display:flex;
  4223. }
  4224. #u164919 .text {
  4225. position:absolute;
  4226. align-self:center;
  4227. padding:2px 2px 2px 2px;
  4228. box-sizing:border-box;
  4229. width:100%;
  4230. }
  4231. #u164919_text {
  4232. border-width:0px;
  4233. word-wrap:break-word;
  4234. text-transform:none;
  4235. visibility:hidden;
  4236. }
  4237. #u164920_div {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:243px;
  4243. height:40px;
  4244. background:inherit;
  4245. background-color:rgba(255, 255, 255, 1);
  4246. box-sizing:border-box;
  4247. border-width:1px;
  4248. border-style:solid;
  4249. border-color:rgba(0, 137, 254, 1);
  4250. border-radius:34px;
  4251. -moz-box-shadow:none;
  4252. -webkit-box-shadow:none;
  4253. box-shadow:none;
  4254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:14px;
  4258. color:#0089FE;
  4259. }
  4260. #u164920 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:1759px;
  4264. top:619px;
  4265. width:243px;
  4266. height:40px;
  4267. display:flex;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:14px;
  4272. color:#0089FE;
  4273. }
  4274. #u164920 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 2px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u164920_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. }
  4286. #u164921_div {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:243px;
  4292. height:40px;
  4293. background:inherit;
  4294. background-color:rgba(255, 255, 255, 1);
  4295. box-sizing:border-box;
  4296. border-width:1px;
  4297. border-style:solid;
  4298. border-color:rgba(245, 154, 35, 1);
  4299. border-radius:34px;
  4300. -moz-box-shadow:none;
  4301. -webkit-box-shadow:none;
  4302. box-shadow:none;
  4303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:14px;
  4307. color:#F59A23;
  4308. }
  4309. #u164921 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:1759px;
  4313. top:669px;
  4314. width:243px;
  4315. height:40px;
  4316. display:flex;
  4317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4318. font-weight:400;
  4319. font-style:normal;
  4320. font-size:14px;
  4321. color:#F59A23;
  4322. }
  4323. #u164921 .text {
  4324. position:absolute;
  4325. align-self:center;
  4326. padding:2px 2px 2px 2px;
  4327. box-sizing:border-box;
  4328. width:100%;
  4329. }
  4330. #u164921_text {
  4331. border-width:0px;
  4332. word-wrap:break-word;
  4333. text-transform:none;
  4334. }
  4335. #u164922_div {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:140px;
  4341. height:40px;
  4342. background:inherit;
  4343. background-color:rgba(242, 242, 242, 1);
  4344. box-sizing:border-box;
  4345. border-width:1px;
  4346. border-style:solid;
  4347. border-color:rgba(170, 170, 170, 1);
  4348. border-radius:34px;
  4349. -moz-box-shadow:none;
  4350. -webkit-box-shadow:none;
  4351. box-shadow:none;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:12px;
  4356. color:#555555;
  4357. }
  4358. #u164922 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:1734px;
  4362. top:937px;
  4363. width:140px;
  4364. height:40px;
  4365. display:flex;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:12px;
  4370. color:#555555;
  4371. }
  4372. #u164922 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 2px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u164922_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. }
  4384. #u164923_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:140px;
  4390. height:40px;
  4391. background:inherit;
  4392. background-color:rgba(242, 242, 242, 1);
  4393. box-sizing:border-box;
  4394. border-width:1px;
  4395. border-style:solid;
  4396. border-color:rgba(170, 170, 170, 1);
  4397. border-radius:34px;
  4398. -moz-box-shadow:none;
  4399. -webkit-box-shadow:none;
  4400. box-shadow:none;
  4401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:12px;
  4405. color:#555555;
  4406. }
  4407. #u164923 {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:1894px;
  4411. top:937px;
  4412. width:140px;
  4413. height:40px;
  4414. display:flex;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:12px;
  4419. color:#555555;
  4420. }
  4421. #u164923 .text {
  4422. position:absolute;
  4423. align-self:center;
  4424. padding:2px 2px 2px 2px;
  4425. box-sizing:border-box;
  4426. width:100%;
  4427. }
  4428. #u164923_text {
  4429. border-width:0px;
  4430. word-wrap:break-word;
  4431. text-transform:none;
  4432. }
  4433. #u164925_img {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:433px;
  4439. height:865px;
  4440. }
  4441. #u164925 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:433px;
  4447. height:865px;
  4448. display:flex;
  4449. }
  4450. #u164925 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 2px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u164925_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u164926_div {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:375px;
  4469. height:40px;
  4470. background:inherit;
  4471. background-color:rgba(255, 255, 255, 1);
  4472. box-sizing:border-box;
  4473. border-width:1px;
  4474. border-style:solid;
  4475. border-color:rgba(215, 215, 215, 1);
  4476. border-left:0px;
  4477. border-top:0px;
  4478. border-right:0px;
  4479. border-radius:0px;
  4480. border-bottom-right-radius:0px;
  4481. border-bottom-left-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. }
  4486. #u164926 {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:29px;
  4490. top:67px;
  4491. width:375px;
  4492. height:40px;
  4493. display:flex;
  4494. }
  4495. #u164926 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 2px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u164926_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. visibility:hidden;
  4507. }
  4508. #u164927 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:0px;
  4514. height:0px;
  4515. }
  4516. #u164928_div {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:88px;
  4522. height:32px;
  4523. background:inherit;
  4524. background-color:rgba(255, 255, 255, 1);
  4525. box-sizing:border-box;
  4526. border-width:1px;
  4527. border-style:solid;
  4528. border-color:rgba(242, 242, 242, 1);
  4529. border-radius:33px;
  4530. -moz-box-shadow:none;
  4531. -webkit-box-shadow:none;
  4532. box-shadow:none;
  4533. }
  4534. #u164928 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:309px;
  4538. top:71px;
  4539. width:88px;
  4540. height:32px;
  4541. display:flex;
  4542. }
  4543. #u164928 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 2px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u164928_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u164929 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:0px;
  4562. height:0px;
  4563. }
  4564. #u164930_img {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:18px;
  4570. height:18px;
  4571. }
  4572. #u164930 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:372px;
  4576. top:78px;
  4577. width:18px;
  4578. height:18px;
  4579. display:flex;
  4580. }
  4581. #u164930 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 2px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u164930_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. visibility:hidden;
  4593. }
  4594. #u164931_img {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:6px;
  4600. height:6px;
  4601. }
  4602. #u164931 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:378px;
  4606. top:84px;
  4607. width:6px;
  4608. height:6px;
  4609. display:flex;
  4610. }
  4611. #u164931 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 2px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u164931_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u164932 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:0px;
  4630. height:0px;
  4631. }
  4632. #u164933_img {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:5px;
  4638. height:5px;
  4639. }
  4640. #u164933 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:323px;
  4644. top:85px;
  4645. width:5px;
  4646. height:5px;
  4647. display:flex;
  4648. }
  4649. #u164933 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 2px 2px 2px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u164933_text {
  4657. border-width:0px;
  4658. word-wrap:break-word;
  4659. text-transform:none;
  4660. visibility:hidden;
  4661. }
  4662. #u164934_img {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:5px;
  4668. height:5px;
  4669. }
  4670. #u164934 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:339px;
  4674. top:85px;
  4675. width:5px;
  4676. height:5px;
  4677. display:flex;
  4678. }
  4679. #u164934 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 2px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u164934_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u164935_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:7px;
  4698. height:7px;
  4699. }
  4700. #u164935 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:330px;
  4704. top:84px;
  4705. width:7px;
  4706. height:7px;
  4707. display:flex;
  4708. }
  4709. #u164935 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u164935_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u164936_img {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:19px;
  4728. height:2px;
  4729. }
  4730. #u164936 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:347px;
  4734. top:87px;
  4735. width:18px;
  4736. height:1px;
  4737. display:flex;
  4738. -webkit-transform:rotate(90deg);
  4739. -moz-transform:rotate(90deg);
  4740. -ms-transform:rotate(90deg);
  4741. transform:rotate(90deg);
  4742. }
  4743. #u164936 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 2px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u164936_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u164937_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:375px;
  4762. height:44px;
  4763. }
  4764. #u164937 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:29px;
  4768. top:24px;
  4769. width:375px;
  4770. height:44px;
  4771. display:flex;
  4772. }
  4773. #u164937 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 2px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u164937_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u164938_div {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:375px;
  4792. height:50px;
  4793. background:inherit;
  4794. background-color:rgba(255, 255, 255, 1);
  4795. box-sizing:border-box;
  4796. border-width:1px;
  4797. border-style:solid;
  4798. border-color:rgba(242, 242, 242, 1);
  4799. border-radius:26px;
  4800. border-top-left-radius:0px;
  4801. border-top-right-radius:0px;
  4802. -moz-box-shadow:none;
  4803. -webkit-box-shadow:none;
  4804. box-shadow:none;
  4805. }
  4806. #u164938 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:29px;
  4810. top:788px;
  4811. width:375px;
  4812. height:50px;
  4813. display:flex;
  4814. }
  4815. #u164938 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:2px 2px 2px 2px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u164938_text {
  4823. border-width:0px;
  4824. word-wrap:break-word;
  4825. text-transform:none;
  4826. visibility:hidden;
  4827. }
  4828. #u164939 {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:0px;
  4834. height:0px;
  4835. }
  4836. #u164940_img {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:24px;
  4842. height:24px;
  4843. }
  4844. #u164940 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:69px;
  4848. top:792px;
  4849. width:24px;
  4850. height:24px;
  4851. display:flex;
  4852. font-size:8px;
  4853. }
  4854. #u164940 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 2px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u164940_text {
  4862. border-width:0px;
  4863. word-wrap:break-word;
  4864. text-transform:none;
  4865. }
  4866. #u164941_div {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:25px;
  4872. height:17px;
  4873. background:inherit;
  4874. background-color:rgba(255, 255, 255, 0);
  4875. border:none;
  4876. border-radius:0px;
  4877. -moz-box-shadow:none;
  4878. -webkit-box-shadow:none;
  4879. box-shadow:none;
  4880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4881. font-weight:400;
  4882. font-style:normal;
  4883. font-size:12px;
  4884. }
  4885. #u164941 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:69px;
  4889. top:817px;
  4890. width:25px;
  4891. height:17px;
  4892. display:flex;
  4893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4894. font-weight:400;
  4895. font-style:normal;
  4896. font-size:12px;
  4897. }
  4898. #u164941 .text {
  4899. position:absolute;
  4900. align-self:flex-start;
  4901. padding:0px 0px 0px 0px;
  4902. box-sizing:border-box;
  4903. width:100%;
  4904. }
  4905. #u164941_text {
  4906. border-width:0px;
  4907. white-space:nowrap;
  4908. text-transform:none;
  4909. }
  4910. #u164942 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:0px;
  4916. height:0px;
  4917. }
  4918. #u164943_img {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:24px;
  4924. height:24px;
  4925. }
  4926. #u164943 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:339px;
  4930. top:794px;
  4931. width:24px;
  4932. height:24px;
  4933. display:flex;
  4934. font-size:8px;
  4935. }
  4936. #u164943 .text {
  4937. position:absolute;
  4938. align-self:center;
  4939. padding:2px 2px 2px 2px;
  4940. box-sizing:border-box;
  4941. width:100%;
  4942. }
  4943. #u164943_text {
  4944. border-width:0px;
  4945. word-wrap:break-word;
  4946. text-transform:none;
  4947. }
  4948. #u164944_div {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:25px;
  4954. height:17px;
  4955. background:inherit;
  4956. background-color:rgba(255, 255, 255, 0);
  4957. border:none;
  4958. border-radius:0px;
  4959. -moz-box-shadow:none;
  4960. -webkit-box-shadow:none;
  4961. box-shadow:none;
  4962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:12px;
  4966. }
  4967. #u164944 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:339px;
  4971. top:819px;
  4972. width:25px;
  4973. height:17px;
  4974. display:flex;
  4975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:12px;
  4979. }
  4980. #u164944 .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. #u164944_text {
  4988. border-width:0px;
  4989. white-space:nowrap;
  4990. text-transform:none;
  4991. }
  4992. #u164945_div {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:375px;
  4998. height:681px;
  4999. background:inherit;
  5000. background-color:rgba(242, 242, 242, 0.462745098039216);
  5001. border:none;
  5002. border-radius:0px;
  5003. -moz-box-shadow:none;
  5004. -webkit-box-shadow:none;
  5005. box-shadow:none;
  5006. }
  5007. #u164945 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:29px;
  5011. top:107px;
  5012. width:375px;
  5013. height:681px;
  5014. display:flex;
  5015. }
  5016. #u164945 .text {
  5017. position:absolute;
  5018. align-self:center;
  5019. padding:2px 2px 2px 2px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u164945_text {
  5024. border-width:0px;
  5025. word-wrap:break-word;
  5026. text-transform:none;
  5027. visibility:hidden;
  5028. }
  5029. #u164946 {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:0px;
  5035. height:0px;
  5036. }
  5037. #u164947_img {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:24px;
  5043. height:24px;
  5044. }
  5045. #u164947 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:251px;
  5049. top:792px;
  5050. width:24px;
  5051. height:24px;
  5052. display:flex;
  5053. font-size:8px;
  5054. }
  5055. #u164947 .text {
  5056. position:absolute;
  5057. align-self:center;
  5058. padding:2px 2px 2px 2px;
  5059. box-sizing:border-box;
  5060. width:100%;
  5061. }
  5062. #u164947_text {
  5063. border-width:0px;
  5064. word-wrap:break-word;
  5065. text-transform:none;
  5066. }
  5067. #u164948_div {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:37px;
  5073. height:17px;
  5074. background:inherit;
  5075. background-color:rgba(255, 255, 255, 0);
  5076. border:none;
  5077. border-radius:0px;
  5078. -moz-box-shadow:none;
  5079. -webkit-box-shadow:none;
  5080. box-shadow:none;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:12px;
  5085. }
  5086. #u164948 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:245px;
  5090. top:817px;
  5091. width:37px;
  5092. height:17px;
  5093. display:flex;
  5094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:12px;
  5098. }
  5099. #u164948 .text {
  5100. position:absolute;
  5101. align-self:flex-start;
  5102. padding:0px 0px 0px 0px;
  5103. box-sizing:border-box;
  5104. width:100%;
  5105. }
  5106. #u164948_text {
  5107. border-width:0px;
  5108. white-space:nowrap;
  5109. text-transform:none;
  5110. }
  5111. #u164949 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:0px;
  5117. height:0px;
  5118. }
  5119. #u164950_img {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:24px;
  5125. height:24px;
  5126. }
  5127. #u164950 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:157px;
  5131. top:792px;
  5132. width:24px;
  5133. height:24px;
  5134. display:flex;
  5135. font-size:8px;
  5136. }
  5137. #u164950 .text {
  5138. position:absolute;
  5139. align-self:center;
  5140. padding:2px 2px 2px 2px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u164950_text {
  5145. border-width:0px;
  5146. word-wrap:break-word;
  5147. text-transform:none;
  5148. }
  5149. #u164951_div {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:37px;
  5155. height:17px;
  5156. background:inherit;
  5157. background-color:rgba(255, 255, 255, 0);
  5158. border:none;
  5159. border-radius:0px;
  5160. -moz-box-shadow:none;
  5161. -webkit-box-shadow:none;
  5162. box-shadow:none;
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:12px;
  5167. }
  5168. #u164951 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:151px;
  5172. top:817px;
  5173. width:37px;
  5174. height:17px;
  5175. display:flex;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:12px;
  5180. }
  5181. #u164951 .text {
  5182. position:absolute;
  5183. align-self:flex-start;
  5184. padding:0px 0px 0px 0px;
  5185. box-sizing:border-box;
  5186. width:100%;
  5187. }
  5188. #u164951_text {
  5189. border-width:0px;
  5190. white-space:nowrap;
  5191. text-transform:none;
  5192. }
  5193. #u164952_div {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:0px;
  5197. top:0px;
  5198. width:375px;
  5199. height:735px;
  5200. background:inherit;
  5201. background-color:rgba(242, 242, 242, 1);
  5202. border:none;
  5203. border-top:0px;
  5204. border-radius:25px;
  5205. border-top-left-radius:0px;
  5206. border-top-right-radius:0px;
  5207. -moz-box-shadow:none;
  5208. -webkit-box-shadow:none;
  5209. box-shadow:none;
  5210. }
  5211. #u164952 {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:29px;
  5215. top:104px;
  5216. width:375px;
  5217. height:735px;
  5218. display:flex;
  5219. }
  5220. #u164952 .text {
  5221. position:absolute;
  5222. align-self:center;
  5223. padding:2px 2px 2px 2px;
  5224. box-sizing:border-box;
  5225. width:100%;
  5226. }
  5227. #u164952_text {
  5228. border-width:0px;
  5229. word-wrap:break-word;
  5230. text-transform:none;
  5231. visibility:hidden;
  5232. }
  5233. #u164953 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:0px;
  5239. height:0px;
  5240. }
  5241. #u164954_img {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:11px;
  5247. height:18px;
  5248. }
  5249. #u164954 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:40px;
  5253. top:79px;
  5254. width:11px;
  5255. height:18px;
  5256. display:flex;
  5257. }
  5258. #u164954 .text {
  5259. position:absolute;
  5260. align-self:center;
  5261. padding:2px 2px 2px 2px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u164954_text {
  5266. border-width:0px;
  5267. word-wrap:break-word;
  5268. text-transform:none;
  5269. visibility:hidden;
  5270. }
  5271. #u164955 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:0px;
  5277. height:0px;
  5278. }
  5279. #u164956_div {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:339px;
  5285. height:160px;
  5286. background:inherit;
  5287. background-color:rgba(51, 51, 51, 1);
  5288. border:none;
  5289. border-radius:4px;
  5290. -moz-box-shadow:none;
  5291. -webkit-box-shadow:none;
  5292. box-shadow:none;
  5293. }
  5294. #u164956 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:46px;
  5298. top:119px;
  5299. width:339px;
  5300. height:160px;
  5301. display:flex;
  5302. }
  5303. #u164956 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u164956_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u164957_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:126px;
  5322. height:40px;
  5323. background:inherit;
  5324. background-color:rgba(255, 255, 255, 0);
  5325. border:none;
  5326. border-left:0px;
  5327. border-top:0px;
  5328. border-right:0px;
  5329. border-radius:0px;
  5330. border-bottom-right-radius:0px;
  5331. border-bottom-left-radius:0px;
  5332. -moz-box-shadow:none;
  5333. -webkit-box-shadow:none;
  5334. box-shadow:none;
  5335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5336. font-weight:500;
  5337. font-style:normal;
  5338. font-size:28px;
  5339. color:#F59A23;
  5340. }
  5341. #u164957 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:64px;
  5345. top:194px;
  5346. width:126px;
  5347. height:40px;
  5348. display:flex;
  5349. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5350. font-weight:500;
  5351. font-style:normal;
  5352. font-size:28px;
  5353. color:#F59A23;
  5354. }
  5355. #u164957 .text {
  5356. position:absolute;
  5357. align-self:flex-start;
  5358. padding:0px 0px 0px 0px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u164957_text {
  5363. border-width:0px;
  5364. white-space:nowrap;
  5365. text-transform:none;
  5366. }
  5367. #u164958 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:0px;
  5373. height:0px;
  5374. }
  5375. #u164959_div {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:191px;
  5381. height:30px;
  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-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5395. font-weight:650;
  5396. font-style:normal;
  5397. font-size:14px;
  5398. color:#FFFFFF;
  5399. line-height:30px;
  5400. }
  5401. #u164959 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:64px;
  5405. top:134px;
  5406. width:191px;
  5407. height:30px;
  5408. display:flex;
  5409. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5410. font-weight:650;
  5411. font-style:normal;
  5412. font-size:14px;
  5413. color:#FFFFFF;
  5414. line-height:30px;
  5415. }
  5416. #u164959 .text {
  5417. position:absolute;
  5418. align-self:center;
  5419. padding:0px 0px 0px 0px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u164959_text {
  5424. border-width:0px;
  5425. white-space:nowrap;
  5426. text-transform:none;
  5427. }
  5428. #u164960_div {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:61px;
  5434. height:30px;
  5435. background:inherit;
  5436. background-color:rgba(255, 255, 255, 0);
  5437. border:none;
  5438. border-left:0px;
  5439. border-top:0px;
  5440. border-right:0px;
  5441. border-radius:0px;
  5442. border-bottom-right-radius:0px;
  5443. border-bottom-left-radius:0px;
  5444. -moz-box-shadow:none;
  5445. -webkit-box-shadow:none;
  5446. box-shadow:none;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:12px;
  5451. color:#7F7F7F;
  5452. line-height:30px;
  5453. }
  5454. #u164960 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:64px;
  5458. top:234px;
  5459. width:61px;
  5460. height:30px;
  5461. display:flex;
  5462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:12px;
  5466. color:#7F7F7F;
  5467. line-height:30px;
  5468. }
  5469. #u164960 .text {
  5470. position:absolute;
  5471. align-self:center;
  5472. padding:0px 0px 0px 0px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u164960_text {
  5477. border-width:0px;
  5478. white-space:nowrap;
  5479. text-transform:none;
  5480. }
  5481. #u164961_div {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:126px;
  5487. height:30px;
  5488. background:inherit;
  5489. background-color:rgba(255, 255, 255, 0);
  5490. border:none;
  5491. border-left:0px;
  5492. border-top:0px;
  5493. border-right:0px;
  5494. border-radius:0px;
  5495. border-bottom-right-radius:0px;
  5496. border-bottom-left-radius:0px;
  5497. -moz-box-shadow:none;
  5498. -webkit-box-shadow:none;
  5499. box-shadow:none;
  5500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5501. font-weight:400;
  5502. font-style:normal;
  5503. font-size:12px;
  5504. color:#7F7F7F;
  5505. line-height:30px;
  5506. }
  5507. #u164961 {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:64px;
  5511. top:164px;
  5512. width:126px;
  5513. height:30px;
  5514. display:flex;
  5515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5516. font-weight:400;
  5517. font-style:normal;
  5518. font-size:12px;
  5519. color:#7F7F7F;
  5520. line-height:30px;
  5521. }
  5522. #u164961 .text {
  5523. position:absolute;
  5524. align-self:center;
  5525. padding:0px 0px 0px 0px;
  5526. box-sizing:border-box;
  5527. width:100%;
  5528. }
  5529. #u164961_text {
  5530. border-width:0px;
  5531. white-space:nowrap;
  5532. text-transform:none;
  5533. }
  5534. #u164962_img {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:52px;
  5540. height:52px;
  5541. }
  5542. #u164962 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:285px;
  5546. top:173px;
  5547. width:52px;
  5548. height:52px;
  5549. display:flex;
  5550. }
  5551. #u164962 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 2px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u164962_text {
  5559. border-width:0px;
  5560. word-wrap:break-word;
  5561. text-transform:none;
  5562. visibility:hidden;
  5563. }
  5564. #u164963_img {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:65px;
  5570. height:24px;
  5571. }
  5572. #u164963 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:320px;
  5576. top:119px;
  5577. width:65px;
  5578. height:24px;
  5579. display:flex;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:12px;
  5584. color:#FFFFFF;
  5585. }
  5586. #u164963 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 2px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u164963_text {
  5594. border-width:0px;
  5595. word-wrap:break-word;
  5596. text-transform:none;
  5597. }
  5598. #u164964_div {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:71px;
  5604. height:30px;
  5605. background:inherit;
  5606. background-color:rgba(255, 255, 255, 0);
  5607. border:none;
  5608. border-left:0px;
  5609. border-top:0px;
  5610. border-right:0px;
  5611. border-radius:0px;
  5612. border-bottom-right-radius:0px;
  5613. border-bottom-left-radius:0px;
  5614. -moz-box-shadow:none;
  5615. -webkit-box-shadow:none;
  5616. box-shadow:none;
  5617. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5618. font-weight:500;
  5619. font-style:normal;
  5620. font-size:14px;
  5621. line-height:30px;
  5622. }
  5623. #u164964 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:180px;
  5627. top:73px;
  5628. width:71px;
  5629. height:30px;
  5630. display:flex;
  5631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5632. font-weight:500;
  5633. font-style:normal;
  5634. font-size:14px;
  5635. line-height:30px;
  5636. }
  5637. #u164964 .text {
  5638. position:absolute;
  5639. align-self:flex-start;
  5640. padding:0px 0px 0px 0px;
  5641. box-sizing:border-box;
  5642. width:100%;
  5643. }
  5644. #u164964_text {
  5645. border-width:0px;
  5646. white-space:nowrap;
  5647. text-transform:none;
  5648. }
  5649. #u164965 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:0px;
  5655. height:0px;
  5656. }
  5657. #u164966_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:339px;
  5663. height:160px;
  5664. background:inherit;
  5665. background-color:rgba(215, 215, 215, 1);
  5666. border:none;
  5667. border-radius:4px;
  5668. -moz-box-shadow:none;
  5669. -webkit-box-shadow:none;
  5670. box-shadow:none;
  5671. color:#7F7F7F;
  5672. }
  5673. #u164966 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:46px;
  5677. top:289px;
  5678. width:339px;
  5679. height:160px;
  5680. display:flex;
  5681. color:#7F7F7F;
  5682. }
  5683. #u164966 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 2px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u164966_text {
  5691. border-width:0px;
  5692. word-wrap:break-word;
  5693. text-transform:none;
  5694. visibility:hidden;
  5695. }
  5696. #u164967_div {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:76px;
  5702. height:40px;
  5703. background:inherit;
  5704. background-color:rgba(255, 255, 255, 0);
  5705. border:none;
  5706. border-left:0px;
  5707. border-top:0px;
  5708. border-right:0px;
  5709. border-radius:0px;
  5710. border-bottom-right-radius:0px;
  5711. border-bottom-left-radius:0px;
  5712. -moz-box-shadow:none;
  5713. -webkit-box-shadow:none;
  5714. box-shadow:none;
  5715. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5716. font-weight:500;
  5717. font-style:normal;
  5718. font-size:28px;
  5719. color:#7F7F7F;
  5720. }
  5721. #u164967 {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:64px;
  5725. top:364px;
  5726. width:76px;
  5727. height:40px;
  5728. display:flex;
  5729. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5730. font-weight:500;
  5731. font-style:normal;
  5732. font-size:28px;
  5733. color:#7F7F7F;
  5734. }
  5735. #u164967 .text {
  5736. position:absolute;
  5737. align-self:flex-start;
  5738. padding:0px 0px 0px 0px;
  5739. box-sizing:border-box;
  5740. width:100%;
  5741. }
  5742. #u164967_text {
  5743. border-width:0px;
  5744. white-space:nowrap;
  5745. text-transform:none;
  5746. }
  5747. #u164968_div {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:191px;
  5753. height:30px;
  5754. background:inherit;
  5755. background-color:rgba(255, 255, 255, 0);
  5756. border:none;
  5757. border-left:0px;
  5758. border-top:0px;
  5759. border-right:0px;
  5760. border-radius:0px;
  5761. border-bottom-right-radius:0px;
  5762. border-bottom-left-radius:0px;
  5763. -moz-box-shadow:none;
  5764. -webkit-box-shadow:none;
  5765. box-shadow:none;
  5766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5767. font-weight:400;
  5768. font-style:normal;
  5769. font-size:14px;
  5770. color:#7F7F7F;
  5771. line-height:30px;
  5772. }
  5773. #u164968 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:64px;
  5777. top:304px;
  5778. width:191px;
  5779. height:30px;
  5780. display:flex;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:14px;
  5785. color:#7F7F7F;
  5786. line-height:30px;
  5787. }
  5788. #u164968 .text {
  5789. position:absolute;
  5790. align-self:center;
  5791. padding:0px 0px 0px 0px;
  5792. box-sizing:border-box;
  5793. width:100%;
  5794. }
  5795. #u164968_text {
  5796. border-width:0px;
  5797. white-space:nowrap;
  5798. text-transform:none;
  5799. }
  5800. #u164969_div {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:138px;
  5806. height:30px;
  5807. background:inherit;
  5808. background-color:rgba(255, 255, 255, 0);
  5809. border:none;
  5810. border-left:0px;
  5811. border-top:0px;
  5812. border-right:0px;
  5813. border-radius:0px;
  5814. border-bottom-right-radius:0px;
  5815. border-bottom-left-radius:0px;
  5816. -moz-box-shadow:none;
  5817. -webkit-box-shadow:none;
  5818. box-shadow:none;
  5819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. font-size:12px;
  5823. color:#7F7F7F;
  5824. line-height:30px;
  5825. }
  5826. #u164969 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:61px;
  5830. top:404px;
  5831. width:138px;
  5832. height:30px;
  5833. display:flex;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:12px;
  5838. color:#7F7F7F;
  5839. line-height:30px;
  5840. }
  5841. #u164969 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:0px 0px 0px 0px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u164969_text {
  5849. border-width:0px;
  5850. white-space:nowrap;
  5851. text-transform:none;
  5852. }
  5853. #u164970_div {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:126px;
  5859. height:30px;
  5860. background:inherit;
  5861. background-color:rgba(255, 255, 255, 0);
  5862. border:none;
  5863. border-left:0px;
  5864. border-top:0px;
  5865. border-right:0px;
  5866. border-radius:0px;
  5867. border-bottom-right-radius:0px;
  5868. border-bottom-left-radius:0px;
  5869. -moz-box-shadow:none;
  5870. -webkit-box-shadow:none;
  5871. box-shadow:none;
  5872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:12px;
  5876. color:#7F7F7F;
  5877. line-height:30px;
  5878. }
  5879. #u164970 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:64px;
  5883. top:334px;
  5884. width:126px;
  5885. height:30px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:12px;
  5891. color:#7F7F7F;
  5892. line-height:30px;
  5893. }
  5894. #u164970 .text {
  5895. position:absolute;
  5896. align-self:center;
  5897. padding:0px 0px 0px 0px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u164970_text {
  5902. border-width:0px;
  5903. white-space:nowrap;
  5904. text-transform:none;
  5905. }
  5906. #u164971_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:65px;
  5912. height:24px;
  5913. }
  5914. #u164971 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:320px;
  5918. top:289px;
  5919. width:65px;
  5920. height:24px;
  5921. display:flex;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:12px;
  5926. color:#FFFFFF;
  5927. }
  5928. #u164971 .text {
  5929. position:absolute;
  5930. align-self:center;
  5931. padding:2px 2px 2px 2px;
  5932. box-sizing:border-box;
  5933. width:100%;
  5934. }
  5935. #u164971_text {
  5936. border-width:0px;
  5937. word-wrap:break-word;
  5938. text-transform:none;
  5939. }
  5940. #u164972_img {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:52px;
  5946. height:52px;
  5947. }
  5948. #u164972 {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:279px;
  5952. top:343px;
  5953. width:52px;
  5954. height:52px;
  5955. display:flex;
  5956. }
  5957. #u164972 .text {
  5958. position:absolute;
  5959. align-self:center;
  5960. padding:2px 2px 2px 2px;
  5961. box-sizing:border-box;
  5962. width:100%;
  5963. }
  5964. #u164972_text {
  5965. border-width:0px;
  5966. word-wrap:break-word;
  5967. text-transform:none;
  5968. visibility:hidden;
  5969. }
  5970. #u164973_div {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:60px;
  5976. height:24px;
  5977. background:inherit;
  5978. background-color:rgba(215, 215, 215, 0.701960784313725);
  5979. border:none;
  5980. border-radius:12px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:18px;
  5988. color:#AAAAAA;
  5989. text-align:center;
  5990. line-height:24px;
  5991. }
  5992. #u164973 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:287px;
  5996. top:346px;
  5997. width:60px;
  5998. height:24px;
  5999. display:flex;
  6000. -webkit-transform:rotate(25deg);
  6001. -moz-transform:rotate(25deg);
  6002. -ms-transform:rotate(25deg);
  6003. transform:rotate(25deg);
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:18px;
  6008. color:#AAAAAA;
  6009. text-align:center;
  6010. line-height:24px;
  6011. }
  6012. #u164973 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:0px 0px 0px 0px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u164973_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. }
  6024. #u164974 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:0px;
  6030. height:0px;
  6031. }
  6032. #u164975_div {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:339px;
  6038. height:59px;
  6039. background:inherit;
  6040. background-color:rgba(255, 255, 255, 0.996078431372549);
  6041. border:none;
  6042. border-radius:4px;
  6043. -moz-box-shadow:none;
  6044. -webkit-box-shadow:none;
  6045. box-shadow:none;
  6046. }
  6047. #u164975 {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:499px;
  6051. top:497px;
  6052. width:339px;
  6053. height:59px;
  6054. display:flex;
  6055. }
  6056. #u164975 .text {
  6057. position:absolute;
  6058. align-self:center;
  6059. padding:2px 2px 2px 2px;
  6060. box-sizing:border-box;
  6061. width:100%;
  6062. }
  6063. #u164975_text {
  6064. border-width:0px;
  6065. word-wrap:break-word;
  6066. text-transform:none;
  6067. visibility:hidden;
  6068. }
  6069. #u164976_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:99px;
  6075. height:20px;
  6076. background:inherit;
  6077. background-color:rgba(255, 255, 255, 0);
  6078. border:none;
  6079. border-left:0px;
  6080. border-top:0px;
  6081. border-right:0px;
  6082. border-radius:0px;
  6083. border-bottom-right-radius:0px;
  6084. border-bottom-left-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:14px;
  6092. }
  6093. #u164976 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:519px;
  6097. top:517px;
  6098. width:99px;
  6099. height:20px;
  6100. display:flex;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:14px;
  6105. }
  6106. #u164976 .text {
  6107. position:absolute;
  6108. align-self:flex-start;
  6109. padding:0px 0px 0px 0px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u164976_text {
  6114. border-width:0px;
  6115. white-space:nowrap;
  6116. text-transform:none;
  6117. }
  6118. #u164977_img {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:6px;
  6124. height:10px;
  6125. }
  6126. #u164977 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:822px;
  6130. top:522px;
  6131. width:6px;
  6132. height:10px;
  6133. display:flex;
  6134. -webkit-transform:rotate(180deg);
  6135. -moz-transform:rotate(180deg);
  6136. -ms-transform:rotate(180deg);
  6137. transform:rotate(180deg);
  6138. }
  6139. #u164977 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:2px 2px 2px 2px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u164977_text {
  6147. border-width:0px;
  6148. word-wrap:break-word;
  6149. text-transform:none;
  6150. visibility:hidden;
  6151. }
  6152. #u164978_div {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:339px;
  6158. height:40px;
  6159. background:inherit;
  6160. background-color:rgba(0, 191, 191, 0);
  6161. box-sizing:border-box;
  6162. border-width:1px;
  6163. border-style:solid;
  6164. border-color:rgba(0, 137, 254, 1);
  6165. border-radius:35px;
  6166. -moz-box-shadow:none;
  6167. -webkit-box-shadow:none;
  6168. box-shadow:none;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:14px;
  6173. color:#0089FE;
  6174. text-align:center;
  6175. }
  6176. #u164978 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:499px;
  6180. top:349px;
  6181. width:339px;
  6182. height:40px;
  6183. display:flex;
  6184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:14px;
  6188. color:#0089FE;
  6189. text-align:center;
  6190. }
  6191. #u164978 .text {
  6192. position:absolute;
  6193. align-self:center;
  6194. padding:2px 2px 2px 2px;
  6195. box-sizing:border-box;
  6196. width:100%;
  6197. }
  6198. #u164978_text {
  6199. border-width:0px;
  6200. word-wrap:break-word;
  6201. text-transform:none;
  6202. }