styles.css 147 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2287px;
  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. #u8831_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u8831 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:-1px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u8831 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u8831_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u8832_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. #u8832 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:66px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u8832 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u8832_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u8833 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u8834_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. #u8834 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:70px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u8834 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u8834_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u8835 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u8836_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u8836 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:77px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u8836 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u8836_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u8837_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u8837 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:83px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u8837 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u8837_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u8838 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u8839_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u8839 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:84px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u8839 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u8839_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u8840_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u8840 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:84px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u8840 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u8840_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u8841_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u8841 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:83px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u8841 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u8841_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u8842_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u8842 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:86px;
  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. #u8842 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u8842_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u8843_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u8843 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:23px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u8843 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u8843_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u8844_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. #u8844 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:787px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u8844 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u8844_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u8845 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u8846_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u8846 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:791px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u8846 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u8846_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u8847_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. #u8847 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:816px;
  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. #u8847 .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. #u8847_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u8848 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u8849_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u8849 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:793px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u8849 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u8849_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u8850_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. #u8850 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:818px;
  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. #u8850 .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. #u8850_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u8851_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. #u8851 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:106px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u8851 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u8851_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u8852 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u8853_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u8853 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:791px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u8853 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u8853_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u8854_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. #u8854 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:816px;
  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. #u8854 .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. #u8854_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u8855 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u8856_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u8856 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:791px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u8856 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u8856_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u8857_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. #u8857 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:816px;
  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. #u8857 .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. #u8857_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u8858_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:734px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:20px;
  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. #u8858 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:734px;
  804. display:flex;
  805. }
  806. #u8858 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u8858_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u8859 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u8860_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:11px;
  833. height:18px;
  834. }
  835. #u8860 {
  836. border-width:0px;
  837. position:absolute;
  838. left:43px;
  839. top:78px;
  840. width:11px;
  841. height:18px;
  842. display:flex;
  843. }
  844. #u8860 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u8860_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u8861_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:57px;
  863. height:30px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0);
  866. border:none;
  867. border-left:0px;
  868. border-top:0px;
  869. border-right:0px;
  870. border-radius:0px;
  871. border-bottom-right-radius:0px;
  872. border-bottom-left-radius:0px;
  873. -moz-box-shadow:none;
  874. -webkit-box-shadow:none;
  875. box-shadow:none;
  876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  877. font-weight:500;
  878. font-style:normal;
  879. font-size:14px;
  880. line-height:30px;
  881. }
  882. #u8861 {
  883. border-width:0px;
  884. position:absolute;
  885. left:175px;
  886. top:74px;
  887. width:57px;
  888. height:30px;
  889. display:flex;
  890. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  891. font-weight:500;
  892. font-style:normal;
  893. font-size:14px;
  894. line-height:30px;
  895. }
  896. #u8861 .text {
  897. position:absolute;
  898. align-self:flex-start;
  899. padding:0px 0px 0px 0px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u8861_text {
  904. border-width:0px;
  905. white-space:nowrap;
  906. text-transform:none;
  907. }
  908. #u8862_div {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:375px;
  914. height:60px;
  915. background:inherit;
  916. background-color:rgba(255, 255, 255, 1);
  917. border:none;
  918. border-top:0px;
  919. border-radius:22px;
  920. border-top-left-radius:0px;
  921. border-top-right-radius:0px;
  922. -moz-box-shadow:none;
  923. -webkit-box-shadow:none;
  924. box-shadow:none;
  925. }
  926. #u8862 {
  927. border-width:0px;
  928. position:absolute;
  929. left:29px;
  930. top:779px;
  931. width:375px;
  932. height:60px;
  933. display:flex;
  934. }
  935. #u8862 .text {
  936. position:absolute;
  937. align-self:center;
  938. padding:2px 2px 2px 2px;
  939. box-sizing:border-box;
  940. width:100%;
  941. }
  942. #u8862_text {
  943. border-width:0px;
  944. word-wrap:break-word;
  945. text-transform:none;
  946. visibility:hidden;
  947. }
  948. #u8863_div {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:100px;
  954. height:40px;
  955. background:inherit;
  956. background-color:rgba(0, 137, 254, 1);
  957. border:none;
  958. border-radius:82px;
  959. -moz-box-shadow:none;
  960. -webkit-box-shadow:none;
  961. box-shadow:none;
  962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  963. font-weight:400;
  964. font-style:normal;
  965. font-size:14px;
  966. color:#FFFFFF;
  967. }
  968. #u8863 {
  969. border-width:0px;
  970. position:absolute;
  971. left:284px;
  972. top:789px;
  973. width:100px;
  974. height:40px;
  975. display:flex;
  976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  977. font-weight:400;
  978. font-style:normal;
  979. font-size:14px;
  980. color:#FFFFFF;
  981. }
  982. #u8863 .text {
  983. position:absolute;
  984. align-self:center;
  985. padding:2px 2px 2px 2px;
  986. box-sizing:border-box;
  987. width:100%;
  988. }
  989. #u8863_text {
  990. border-width:0px;
  991. word-wrap:break-word;
  992. text-transform:none;
  993. }
  994. #u8864_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:103px;
  1000. height:30px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-left:0px;
  1005. border-top:0px;
  1006. border-right:0px;
  1007. border-radius:0px;
  1008. border-bottom-right-radius:0px;
  1009. border-bottom-left-radius:0px;
  1010. -moz-box-shadow:none;
  1011. -webkit-box-shadow:none;
  1012. box-shadow:none;
  1013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1014. font-weight:400;
  1015. font-style:normal;
  1016. font-size:12px;
  1017. line-height:30px;
  1018. }
  1019. #u8864 {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:60px;
  1023. top:794px;
  1024. width:103px;
  1025. height:30px;
  1026. display:flex;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. font-size:12px;
  1031. line-height:30px;
  1032. }
  1033. #u8864 .text {
  1034. position:absolute;
  1035. align-self:flex-start;
  1036. padding:0px 0px 0px 0px;
  1037. box-sizing:border-box;
  1038. width:100%;
  1039. }
  1040. #u8864_text {
  1041. border-width:0px;
  1042. white-space:nowrap;
  1043. text-transform:none;
  1044. }
  1045. #u8865 {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:0px;
  1049. top:0px;
  1050. width:0px;
  1051. height:0px;
  1052. }
  1053. #u8866_img {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:0px;
  1057. top:0px;
  1058. width:375px;
  1059. height:150px;
  1060. }
  1061. #u8866 {
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:29px;
  1065. top:145px;
  1066. width:375px;
  1067. height:150px;
  1068. display:flex;
  1069. }
  1070. #u8866 .text {
  1071. position:absolute;
  1072. align-self:center;
  1073. padding:2px 2px 2px 2px;
  1074. box-sizing:border-box;
  1075. width:100%;
  1076. }
  1077. #u8866_text {
  1078. border-width:0px;
  1079. word-wrap:break-word;
  1080. text-transform:none;
  1081. visibility:hidden;
  1082. }
  1083. #u8867_div {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:0px;
  1087. top:0px;
  1088. width:253px;
  1089. height:30px;
  1090. background:inherit;
  1091. background-color:rgba(255, 255, 255, 0);
  1092. border:none;
  1093. border-left:0px;
  1094. border-top:0px;
  1095. border-right:0px;
  1096. border-radius:0px;
  1097. border-bottom-right-radius:0px;
  1098. border-bottom-left-radius:0px;
  1099. -moz-box-shadow:none;
  1100. -webkit-box-shadow:none;
  1101. box-shadow:none;
  1102. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1103. font-weight:500;
  1104. font-style:normal;
  1105. font-size:14px;
  1106. line-height:30px;
  1107. }
  1108. #u8867 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:65px;
  1112. top:180px;
  1113. width:253px;
  1114. height:30px;
  1115. display:flex;
  1116. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1117. font-weight:500;
  1118. font-style:normal;
  1119. font-size:14px;
  1120. line-height:30px;
  1121. }
  1122. #u8867 .text {
  1123. position:absolute;
  1124. align-self:flex-start;
  1125. padding:0px 0px 0px 0px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u8867_text {
  1130. border-width:0px;
  1131. white-space:nowrap;
  1132. text-transform:none;
  1133. }
  1134. #u8868_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:131px;
  1140. height:75px;
  1141. background:inherit;
  1142. background-color:rgba(255, 255, 255, 0);
  1143. border:none;
  1144. border-left:0px;
  1145. border-top:0px;
  1146. border-right:0px;
  1147. border-radius:0px;
  1148. border-bottom-right-radius:0px;
  1149. border-bottom-left-radius:0px;
  1150. -moz-box-shadow:none;
  1151. -webkit-box-shadow:none;
  1152. box-shadow:none;
  1153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1154. font-weight:400;
  1155. font-style:normal;
  1156. font-size:12px;
  1157. color:#7F7F7F;
  1158. line-height:25px;
  1159. }
  1160. #u8868 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:65px;
  1164. top:210px;
  1165. width:131px;
  1166. height:75px;
  1167. display:flex;
  1168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1169. font-weight:400;
  1170. font-style:normal;
  1171. font-size:12px;
  1172. color:#7F7F7F;
  1173. line-height:25px;
  1174. }
  1175. #u8868 .text {
  1176. position:absolute;
  1177. align-self:flex-start;
  1178. padding:0px 0px 0px 0px;
  1179. box-sizing:border-box;
  1180. width:100%;
  1181. }
  1182. #u8868_text {
  1183. border-width:0px;
  1184. white-space:nowrap;
  1185. text-transform:none;
  1186. }
  1187. #u8869_div {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:0px;
  1191. top:0px;
  1192. width:57px;
  1193. height:25px;
  1194. background:inherit;
  1195. background-color:rgba(255, 255, 255, 0);
  1196. border:none;
  1197. border-left:0px;
  1198. border-top:0px;
  1199. border-right:0px;
  1200. border-radius:0px;
  1201. border-bottom-right-radius:0px;
  1202. border-bottom-left-radius:0px;
  1203. -moz-box-shadow:none;
  1204. -webkit-box-shadow:none;
  1205. box-shadow:none;
  1206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1207. font-weight:400;
  1208. font-style:normal;
  1209. text-align:right;
  1210. }
  1211. #u8869 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:327px;
  1215. top:210px;
  1216. width:57px;
  1217. height:25px;
  1218. display:flex;
  1219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1220. font-weight:400;
  1221. font-style:normal;
  1222. text-align:right;
  1223. }
  1224. #u8869 .text {
  1225. position:absolute;
  1226. align-self:flex-start;
  1227. padding:0px 0px 0px 0px;
  1228. box-sizing:border-box;
  1229. width:100%;
  1230. }
  1231. #u8869_text {
  1232. border-width:0px;
  1233. white-space:nowrap;
  1234. text-transform:none;
  1235. }
  1236. #u8870 {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:0px;
  1242. height:0px;
  1243. }
  1244. #u8871_div {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:355px;
  1250. height:30px;
  1251. background:inherit;
  1252. background-color:rgba(255, 255, 255, 0);
  1253. box-sizing:border-box;
  1254. border-width:1px;
  1255. border-style:solid;
  1256. border-color:rgba(242, 242, 242, 1);
  1257. border-left:0px;
  1258. border-top:0px;
  1259. border-right:0px;
  1260. border-radius:0px;
  1261. border-bottom-right-radius:0px;
  1262. border-bottom-left-radius:0px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. }
  1267. #u8871 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:49px;
  1271. top:145px;
  1272. width:355px;
  1273. height:30px;
  1274. display:flex;
  1275. }
  1276. #u8871 .text {
  1277. position:absolute;
  1278. align-self:center;
  1279. padding:2px 2px 2px 2px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u8871_text {
  1284. border-width:0px;
  1285. word-wrap:break-word;
  1286. text-transform:none;
  1287. visibility:hidden;
  1288. }
  1289. #u8872_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:97px;
  1295. height:24px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 0);
  1298. border:none;
  1299. border-left:0px;
  1300. border-top:0px;
  1301. border-right:0px;
  1302. border-radius:0px;
  1303. border-bottom-right-radius:0px;
  1304. border-bottom-left-radius:0px;
  1305. -moz-box-shadow:none;
  1306. -webkit-box-shadow:none;
  1307. box-shadow:none;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:10px;
  1312. color:#7F7F7F;
  1313. line-height:24px;
  1314. }
  1315. #u8872 {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:59px;
  1319. top:148px;
  1320. width:97px;
  1321. height:24px;
  1322. display:flex;
  1323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1324. font-weight:400;
  1325. font-style:normal;
  1326. font-size:10px;
  1327. color:#7F7F7F;
  1328. line-height:24px;
  1329. }
  1330. #u8872 .text {
  1331. position:absolute;
  1332. align-self:flex-start;
  1333. padding:0px 0px 0px 0px;
  1334. box-sizing:border-box;
  1335. width:100%;
  1336. }
  1337. #u8872_text {
  1338. border-width:0px;
  1339. white-space:nowrap;
  1340. text-transform:none;
  1341. }
  1342. #u8873_div {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:100px;
  1348. height:24px;
  1349. background:inherit;
  1350. background-color:rgba(255, 255, 255, 0);
  1351. border:none;
  1352. border-left:0px;
  1353. border-top:0px;
  1354. border-right:0px;
  1355. border-radius:0px;
  1356. border-bottom-right-radius:0px;
  1357. border-bottom-left-radius:0px;
  1358. -moz-box-shadow:none;
  1359. -webkit-box-shadow:none;
  1360. box-shadow:none;
  1361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1362. font-weight:400;
  1363. font-style:normal;
  1364. font-size:10px;
  1365. color:#555555;
  1366. text-align:right;
  1367. line-height:24px;
  1368. }
  1369. #u8873 {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:294px;
  1373. top:148px;
  1374. width:100px;
  1375. height:24px;
  1376. display:flex;
  1377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1378. font-weight:400;
  1379. font-style:normal;
  1380. font-size:10px;
  1381. color:#555555;
  1382. text-align:right;
  1383. line-height:24px;
  1384. }
  1385. #u8873 .text {
  1386. position:absolute;
  1387. align-self:flex-start;
  1388. padding:0px 0px 0px 0px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u8873_text {
  1393. border-width:0px;
  1394. white-space:nowrap;
  1395. text-transform:none;
  1396. }
  1397. #u8874 label {
  1398. left:0px;
  1399. width:100%;
  1400. }
  1401. #u8874_img {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:0px;
  1405. top:0px;
  1406. width:12px;
  1407. height:12px;
  1408. }
  1409. #u8874 {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:38px;
  1413. top:210px;
  1414. width:30px;
  1415. height:16px;
  1416. display:flex;
  1417. }
  1418. #u8874 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:0px 2px 0px 2px;
  1422. box-sizing:border-box;
  1423. }
  1424. #u8874_img.selected {
  1425. }
  1426. #u8874.selected {
  1427. }
  1428. #u8874_img.disabled {
  1429. }
  1430. #u8874.disabled {
  1431. }
  1432. #u8874_img.selectedDisabled {
  1433. }
  1434. #u8874.selectedDisabled {
  1435. }
  1436. #u8874_text {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:14px;
  1440. top:0px;
  1441. width:14px;
  1442. word-wrap:break-word;
  1443. text-transform:none;
  1444. visibility:hidden;
  1445. }
  1446. #u8874_input {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:0px;
  1452. height:0px;
  1453. opacity:0;
  1454. }
  1455. #u8875_div {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:813px;
  1461. height:290px;
  1462. background:inherit;
  1463. background-color:rgba(255, 255, 255, 1);
  1464. box-sizing:border-box;
  1465. border-width:1px;
  1466. border-style:solid;
  1467. border-color:rgba(217, 0, 27, 1);
  1468. border-radius:0px;
  1469. -moz-box-shadow:none;
  1470. -webkit-box-shadow:none;
  1471. box-shadow:none;
  1472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1473. font-weight:400;
  1474. font-style:normal;
  1475. font-size:14px;
  1476. line-height:30px;
  1477. }
  1478. #u8875 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:38px;
  1482. top:886px;
  1483. width:813px;
  1484. height:290px;
  1485. display:flex;
  1486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1487. font-weight:400;
  1488. font-style:normal;
  1489. font-size:14px;
  1490. line-height:30px;
  1491. }
  1492. #u8875 .text {
  1493. position:absolute;
  1494. align-self:flex-start;
  1495. padding:10px 10px 10px 10px;
  1496. box-sizing:border-box;
  1497. width:100%;
  1498. }
  1499. #u8875_text {
  1500. border-width:0px;
  1501. white-space:nowrap;
  1502. text-transform:none;
  1503. }
  1504. #u8877_img {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:433px;
  1510. height:865px;
  1511. }
  1512. #u8877 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:462px;
  1516. top:-1px;
  1517. width:433px;
  1518. height:865px;
  1519. display:flex;
  1520. }
  1521. #u8877 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:2px 2px 2px 2px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u8877_text {
  1529. border-width:0px;
  1530. word-wrap:break-word;
  1531. text-transform:none;
  1532. visibility:hidden;
  1533. }
  1534. #u8878_div {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:375px;
  1540. height:40px;
  1541. background:inherit;
  1542. background-color:rgba(255, 255, 255, 1);
  1543. box-sizing:border-box;
  1544. border-width:1px;
  1545. border-style:solid;
  1546. border-color:rgba(215, 215, 215, 1);
  1547. border-left:0px;
  1548. border-top:0px;
  1549. border-right:0px;
  1550. border-radius:0px;
  1551. border-bottom-right-radius:0px;
  1552. border-bottom-left-radius:0px;
  1553. -moz-box-shadow:none;
  1554. -webkit-box-shadow:none;
  1555. box-shadow:none;
  1556. }
  1557. #u8878 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:491px;
  1561. top:66px;
  1562. width:375px;
  1563. height:40px;
  1564. display:flex;
  1565. }
  1566. #u8878 .text {
  1567. position:absolute;
  1568. align-self:center;
  1569. padding:2px 2px 2px 2px;
  1570. box-sizing:border-box;
  1571. width:100%;
  1572. }
  1573. #u8878_text {
  1574. border-width:0px;
  1575. word-wrap:break-word;
  1576. text-transform:none;
  1577. visibility:hidden;
  1578. }
  1579. #u8879 {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:0px;
  1585. height:0px;
  1586. }
  1587. #u8880_div {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:0px;
  1591. top:0px;
  1592. width:88px;
  1593. height:32px;
  1594. background:inherit;
  1595. background-color:rgba(255, 255, 255, 1);
  1596. box-sizing:border-box;
  1597. border-width:1px;
  1598. border-style:solid;
  1599. border-color:rgba(242, 242, 242, 1);
  1600. border-radius:33px;
  1601. -moz-box-shadow:none;
  1602. -webkit-box-shadow:none;
  1603. box-shadow:none;
  1604. }
  1605. #u8880 {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:771px;
  1609. top:70px;
  1610. width:88px;
  1611. height:32px;
  1612. display:flex;
  1613. }
  1614. #u8880 .text {
  1615. position:absolute;
  1616. align-self:center;
  1617. padding:2px 2px 2px 2px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u8880_text {
  1622. border-width:0px;
  1623. word-wrap:break-word;
  1624. text-transform:none;
  1625. visibility:hidden;
  1626. }
  1627. #u8881 {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:0px;
  1633. height:0px;
  1634. }
  1635. #u8882_img {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:18px;
  1641. height:18px;
  1642. }
  1643. #u8882 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:834px;
  1647. top:77px;
  1648. width:18px;
  1649. height:18px;
  1650. display:flex;
  1651. }
  1652. #u8882 .text {
  1653. position:absolute;
  1654. align-self:center;
  1655. padding:2px 2px 2px 2px;
  1656. box-sizing:border-box;
  1657. width:100%;
  1658. }
  1659. #u8882_text {
  1660. border-width:0px;
  1661. word-wrap:break-word;
  1662. text-transform:none;
  1663. visibility:hidden;
  1664. }
  1665. #u8883_img {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:0px;
  1669. top:0px;
  1670. width:6px;
  1671. height:6px;
  1672. }
  1673. #u8883 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:840px;
  1677. top:83px;
  1678. width:6px;
  1679. height:6px;
  1680. display:flex;
  1681. }
  1682. #u8883 .text {
  1683. position:absolute;
  1684. align-self:center;
  1685. padding:2px 2px 2px 2px;
  1686. box-sizing:border-box;
  1687. width:100%;
  1688. }
  1689. #u8883_text {
  1690. border-width:0px;
  1691. word-wrap:break-word;
  1692. text-transform:none;
  1693. visibility:hidden;
  1694. }
  1695. #u8884 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:0px;
  1701. height:0px;
  1702. }
  1703. #u8885_img {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:5px;
  1709. height:5px;
  1710. }
  1711. #u8885 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:785px;
  1715. top:84px;
  1716. width:5px;
  1717. height:5px;
  1718. display:flex;
  1719. }
  1720. #u8885 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:2px 2px 2px 2px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u8885_text {
  1728. border-width:0px;
  1729. word-wrap:break-word;
  1730. text-transform:none;
  1731. visibility:hidden;
  1732. }
  1733. #u8886_img {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:5px;
  1739. height:5px;
  1740. }
  1741. #u8886 {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:801px;
  1745. top:84px;
  1746. width:5px;
  1747. height:5px;
  1748. display:flex;
  1749. }
  1750. #u8886 .text {
  1751. position:absolute;
  1752. align-self:center;
  1753. padding:2px 2px 2px 2px;
  1754. box-sizing:border-box;
  1755. width:100%;
  1756. }
  1757. #u8886_text {
  1758. border-width:0px;
  1759. word-wrap:break-word;
  1760. text-transform:none;
  1761. visibility:hidden;
  1762. }
  1763. #u8887_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:7px;
  1769. height:7px;
  1770. }
  1771. #u8887 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:792px;
  1775. top:83px;
  1776. width:7px;
  1777. height:7px;
  1778. display:flex;
  1779. }
  1780. #u8887 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u8887_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. visibility:hidden;
  1792. }
  1793. #u8888_img {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:19px;
  1799. height:2px;
  1800. }
  1801. #u8888 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:809px;
  1805. top:86px;
  1806. width:18px;
  1807. height:1px;
  1808. display:flex;
  1809. -webkit-transform:rotate(90deg);
  1810. -moz-transform:rotate(90deg);
  1811. -ms-transform:rotate(90deg);
  1812. transform:rotate(90deg);
  1813. }
  1814. #u8888 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u8888_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. visibility:hidden;
  1826. }
  1827. #u8889_img {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:375px;
  1833. height:44px;
  1834. }
  1835. #u8889 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:491px;
  1839. top:23px;
  1840. width:375px;
  1841. height:44px;
  1842. display:flex;
  1843. }
  1844. #u8889 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u8889_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. visibility:hidden;
  1856. }
  1857. #u8890_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:375px;
  1863. height:50px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 1);
  1866. box-sizing:border-box;
  1867. border-width:1px;
  1868. border-style:solid;
  1869. border-color:rgba(242, 242, 242, 1);
  1870. border-radius:26px;
  1871. border-top-left-radius:0px;
  1872. border-top-right-radius:0px;
  1873. -moz-box-shadow:none;
  1874. -webkit-box-shadow:none;
  1875. box-shadow:none;
  1876. }
  1877. #u8890 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:491px;
  1881. top:787px;
  1882. width:375px;
  1883. height:50px;
  1884. display:flex;
  1885. }
  1886. #u8890 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 2px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u8890_text {
  1894. border-width:0px;
  1895. word-wrap:break-word;
  1896. text-transform:none;
  1897. visibility:hidden;
  1898. }
  1899. #u8891 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:0px;
  1905. height:0px;
  1906. }
  1907. #u8892_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:24px;
  1913. height:24px;
  1914. }
  1915. #u8892 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:531px;
  1919. top:791px;
  1920. width:24px;
  1921. height:24px;
  1922. display:flex;
  1923. font-size:8px;
  1924. }
  1925. #u8892 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 2px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u8892_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. }
  1937. #u8893_div {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:25px;
  1943. height:17px;
  1944. background:inherit;
  1945. background-color:rgba(255, 255, 255, 0);
  1946. border:none;
  1947. border-radius:0px;
  1948. -moz-box-shadow:none;
  1949. -webkit-box-shadow:none;
  1950. box-shadow:none;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:12px;
  1955. }
  1956. #u8893 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:531px;
  1960. top:816px;
  1961. width:25px;
  1962. height:17px;
  1963. display:flex;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:12px;
  1968. }
  1969. #u8893 .text {
  1970. position:absolute;
  1971. align-self:flex-start;
  1972. padding:0px 0px 0px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u8893_text {
  1977. border-width:0px;
  1978. white-space:nowrap;
  1979. text-transform:none;
  1980. }
  1981. #u8894 {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:0px;
  1987. height:0px;
  1988. }
  1989. #u8895_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:24px;
  1995. height:24px;
  1996. }
  1997. #u8895 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:801px;
  2001. top:793px;
  2002. width:24px;
  2003. height:24px;
  2004. display:flex;
  2005. font-size:8px;
  2006. }
  2007. #u8895 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 2px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u8895_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. }
  2019. #u8896_div {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:25px;
  2025. height:17px;
  2026. background:inherit;
  2027. background-color:rgba(255, 255, 255, 0);
  2028. border:none;
  2029. border-radius:0px;
  2030. -moz-box-shadow:none;
  2031. -webkit-box-shadow:none;
  2032. box-shadow:none;
  2033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2034. font-weight:400;
  2035. font-style:normal;
  2036. font-size:12px;
  2037. }
  2038. #u8896 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:801px;
  2042. top:818px;
  2043. width:25px;
  2044. height:17px;
  2045. display:flex;
  2046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2047. font-weight:400;
  2048. font-style:normal;
  2049. font-size:12px;
  2050. }
  2051. #u8896 .text {
  2052. position:absolute;
  2053. align-self:flex-start;
  2054. padding:0px 0px 0px 0px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u8896_text {
  2059. border-width:0px;
  2060. white-space:nowrap;
  2061. text-transform:none;
  2062. }
  2063. #u8897_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:375px;
  2069. height:681px;
  2070. background:inherit;
  2071. background-color:rgba(242, 242, 242, 0.462745098039216);
  2072. border:none;
  2073. border-radius:0px;
  2074. -moz-box-shadow:none;
  2075. -webkit-box-shadow:none;
  2076. box-shadow:none;
  2077. }
  2078. #u8897 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:491px;
  2082. top:106px;
  2083. width:375px;
  2084. height:681px;
  2085. display:flex;
  2086. }
  2087. #u8897 .text {
  2088. position:absolute;
  2089. align-self:center;
  2090. padding:2px 2px 2px 2px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u8897_text {
  2095. border-width:0px;
  2096. word-wrap:break-word;
  2097. text-transform:none;
  2098. visibility:hidden;
  2099. }
  2100. #u8898 {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:0px;
  2106. height:0px;
  2107. }
  2108. #u8899_img {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:24px;
  2114. height:24px;
  2115. }
  2116. #u8899 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:713px;
  2120. top:791px;
  2121. width:24px;
  2122. height:24px;
  2123. display:flex;
  2124. font-size:8px;
  2125. }
  2126. #u8899 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:2px 2px 2px 2px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u8899_text {
  2134. border-width:0px;
  2135. word-wrap:break-word;
  2136. text-transform:none;
  2137. }
  2138. #u8900_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:37px;
  2144. height:17px;
  2145. background:inherit;
  2146. background-color:rgba(255, 255, 255, 0);
  2147. border:none;
  2148. border-radius:0px;
  2149. -moz-box-shadow:none;
  2150. -webkit-box-shadow:none;
  2151. box-shadow:none;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:12px;
  2156. }
  2157. #u8900 {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:707px;
  2161. top:816px;
  2162. width:37px;
  2163. height:17px;
  2164. display:flex;
  2165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2166. font-weight:400;
  2167. font-style:normal;
  2168. font-size:12px;
  2169. }
  2170. #u8900 .text {
  2171. position:absolute;
  2172. align-self:flex-start;
  2173. padding:0px 0px 0px 0px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u8900_text {
  2178. border-width:0px;
  2179. white-space:nowrap;
  2180. text-transform:none;
  2181. }
  2182. #u8901 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:0px;
  2188. height:0px;
  2189. }
  2190. #u8902_img {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:24px;
  2196. height:24px;
  2197. }
  2198. #u8902 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:619px;
  2202. top:791px;
  2203. width:24px;
  2204. height:24px;
  2205. display:flex;
  2206. font-size:8px;
  2207. }
  2208. #u8902 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u8902_text {
  2216. border-width:0px;
  2217. word-wrap:break-word;
  2218. text-transform:none;
  2219. }
  2220. #u8903_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:37px;
  2226. height:17px;
  2227. background:inherit;
  2228. background-color:rgba(255, 255, 255, 0);
  2229. border:none;
  2230. border-radius:0px;
  2231. -moz-box-shadow:none;
  2232. -webkit-box-shadow:none;
  2233. box-shadow:none;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:12px;
  2238. }
  2239. #u8903 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:613px;
  2243. top:816px;
  2244. width:37px;
  2245. height:17px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. }
  2252. #u8903 .text {
  2253. position:absolute;
  2254. align-self:flex-start;
  2255. padding:0px 0px 0px 0px;
  2256. box-sizing:border-box;
  2257. width:100%;
  2258. }
  2259. #u8903_text {
  2260. border-width:0px;
  2261. white-space:nowrap;
  2262. text-transform:none;
  2263. }
  2264. #u8904_div {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:375px;
  2270. height:734px;
  2271. background:inherit;
  2272. background-color:rgba(242, 242, 242, 1);
  2273. border:none;
  2274. border-top:0px;
  2275. border-radius:20px;
  2276. border-top-left-radius:0px;
  2277. border-top-right-radius:0px;
  2278. -moz-box-shadow:none;
  2279. -webkit-box-shadow:none;
  2280. box-shadow:none;
  2281. }
  2282. #u8904 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:491px;
  2286. top:105px;
  2287. width:375px;
  2288. height:734px;
  2289. display:flex;
  2290. }
  2291. #u8904 .text {
  2292. position:absolute;
  2293. align-self:center;
  2294. padding:2px 2px 2px 2px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u8904_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. visibility:hidden;
  2303. }
  2304. #u8905 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:0px;
  2310. height:0px;
  2311. }
  2312. #u8906_img {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:11px;
  2318. height:18px;
  2319. }
  2320. #u8906 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:505px;
  2324. top:78px;
  2325. width:11px;
  2326. height:18px;
  2327. display:flex;
  2328. }
  2329. #u8906 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 2px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u8906_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u8907_div {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:57px;
  2348. height:30px;
  2349. background:inherit;
  2350. background-color:rgba(255, 255, 255, 0);
  2351. border:none;
  2352. border-left:0px;
  2353. border-top:0px;
  2354. border-right:0px;
  2355. border-radius:0px;
  2356. border-bottom-right-radius:0px;
  2357. border-bottom-left-radius:0px;
  2358. -moz-box-shadow:none;
  2359. -webkit-box-shadow:none;
  2360. box-shadow:none;
  2361. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2362. font-weight:500;
  2363. font-style:normal;
  2364. font-size:14px;
  2365. line-height:30px;
  2366. }
  2367. #u8907 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:637px;
  2371. top:74px;
  2372. width:57px;
  2373. height:30px;
  2374. display:flex;
  2375. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2376. font-weight:500;
  2377. font-style:normal;
  2378. font-size:14px;
  2379. line-height:30px;
  2380. }
  2381. #u8907 .text {
  2382. position:absolute;
  2383. align-self:flex-start;
  2384. padding:0px 0px 0px 0px;
  2385. box-sizing:border-box;
  2386. width:100%;
  2387. }
  2388. #u8907_text {
  2389. border-width:0px;
  2390. white-space:nowrap;
  2391. text-transform:none;
  2392. }
  2393. #u8908_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:375px;
  2399. height:60px;
  2400. background:inherit;
  2401. background-color:rgba(255, 255, 255, 1);
  2402. border:none;
  2403. border-top:0px;
  2404. border-radius:22px;
  2405. border-top-left-radius:0px;
  2406. border-top-right-radius:0px;
  2407. -moz-box-shadow:none;
  2408. -webkit-box-shadow:none;
  2409. box-shadow:none;
  2410. }
  2411. #u8908 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:491px;
  2415. top:779px;
  2416. width:375px;
  2417. height:60px;
  2418. display:flex;
  2419. }
  2420. #u8908 .text {
  2421. position:absolute;
  2422. align-self:center;
  2423. padding:2px 2px 2px 2px;
  2424. box-sizing:border-box;
  2425. width:100%;
  2426. }
  2427. #u8908_text {
  2428. border-width:0px;
  2429. word-wrap:break-word;
  2430. text-transform:none;
  2431. visibility:hidden;
  2432. }
  2433. #u8909_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:100px;
  2439. height:40px;
  2440. background:inherit;
  2441. background-color:rgba(0, 137, 254, 1);
  2442. border:none;
  2443. border-radius:82px;
  2444. -moz-box-shadow:none;
  2445. -webkit-box-shadow:none;
  2446. box-shadow:none;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. color:#FFFFFF;
  2452. }
  2453. #u8909 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:746px;
  2457. top:789px;
  2458. width:100px;
  2459. height:40px;
  2460. display:flex;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:14px;
  2465. color:#FFFFFF;
  2466. }
  2467. #u8909 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 2px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u8909_text {
  2475. border-width:0px;
  2476. word-wrap:break-word;
  2477. text-transform:none;
  2478. }
  2479. #u8910_div {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:103px;
  2485. height:30px;
  2486. background:inherit;
  2487. background-color:rgba(255, 255, 255, 0);
  2488. border:none;
  2489. border-left:0px;
  2490. border-top:0px;
  2491. border-right:0px;
  2492. border-radius:0px;
  2493. border-bottom-right-radius:0px;
  2494. border-bottom-left-radius:0px;
  2495. -moz-box-shadow:none;
  2496. -webkit-box-shadow:none;
  2497. box-shadow:none;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. line-height:30px;
  2503. }
  2504. #u8910 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:522px;
  2508. top:794px;
  2509. width:103px;
  2510. height:30px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:12px;
  2516. line-height:30px;
  2517. }
  2518. #u8910 .text {
  2519. position:absolute;
  2520. align-self:flex-start;
  2521. padding:0px 0px 0px 0px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u8910_text {
  2526. border-width:0px;
  2527. white-space:nowrap;
  2528. text-transform:none;
  2529. }
  2530. #u8912_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:433px;
  2536. height:865px;
  2537. }
  2538. #u8912 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:925px;
  2542. top:-1px;
  2543. width:433px;
  2544. height:865px;
  2545. display:flex;
  2546. }
  2547. #u8912 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 2px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u8912_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. visibility:hidden;
  2559. }
  2560. #u8913_div {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:375px;
  2566. height:40px;
  2567. background:inherit;
  2568. background-color:rgba(255, 255, 255, 1);
  2569. box-sizing:border-box;
  2570. border-width:1px;
  2571. border-style:solid;
  2572. border-color:rgba(215, 215, 215, 1);
  2573. border-left:0px;
  2574. border-top:0px;
  2575. border-right:0px;
  2576. border-radius:0px;
  2577. border-bottom-right-radius:0px;
  2578. border-bottom-left-radius:0px;
  2579. -moz-box-shadow:none;
  2580. -webkit-box-shadow:none;
  2581. box-shadow:none;
  2582. }
  2583. #u8913 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:954px;
  2587. top:66px;
  2588. width:375px;
  2589. height:40px;
  2590. display:flex;
  2591. }
  2592. #u8913 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:2px 2px 2px 2px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u8913_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. visibility:hidden;
  2604. }
  2605. #u8914 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:0px;
  2611. height:0px;
  2612. }
  2613. #u8915_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:88px;
  2619. height:32px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 1);
  2622. box-sizing:border-box;
  2623. border-width:1px;
  2624. border-style:solid;
  2625. border-color:rgba(242, 242, 242, 1);
  2626. border-radius:33px;
  2627. -moz-box-shadow:none;
  2628. -webkit-box-shadow:none;
  2629. box-shadow:none;
  2630. }
  2631. #u8915 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:1234px;
  2635. top:70px;
  2636. width:88px;
  2637. height:32px;
  2638. display:flex;
  2639. }
  2640. #u8915 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 2px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u8915_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u8916 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:0px;
  2659. height:0px;
  2660. }
  2661. #u8917_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:18px;
  2667. height:18px;
  2668. }
  2669. #u8917 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:1297px;
  2673. top:77px;
  2674. width:18px;
  2675. height:18px;
  2676. display:flex;
  2677. }
  2678. #u8917 .text {
  2679. position:absolute;
  2680. align-self:center;
  2681. padding:2px 2px 2px 2px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u8917_text {
  2686. border-width:0px;
  2687. word-wrap:break-word;
  2688. text-transform:none;
  2689. visibility:hidden;
  2690. }
  2691. #u8918_img {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:6px;
  2697. height:6px;
  2698. }
  2699. #u8918 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:1303px;
  2703. top:83px;
  2704. width:6px;
  2705. height:6px;
  2706. display:flex;
  2707. }
  2708. #u8918 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 2px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u8918_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u8919 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:0px;
  2727. height:0px;
  2728. }
  2729. #u8920_img {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:5px;
  2735. height:5px;
  2736. }
  2737. #u8920 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:1248px;
  2741. top:84px;
  2742. width:5px;
  2743. height:5px;
  2744. display:flex;
  2745. }
  2746. #u8920 .text {
  2747. position:absolute;
  2748. align-self:center;
  2749. padding:2px 2px 2px 2px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u8920_text {
  2754. border-width:0px;
  2755. word-wrap:break-word;
  2756. text-transform:none;
  2757. visibility:hidden;
  2758. }
  2759. #u8921_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:5px;
  2765. height:5px;
  2766. }
  2767. #u8921 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:1264px;
  2771. top:84px;
  2772. width:5px;
  2773. height:5px;
  2774. display:flex;
  2775. }
  2776. #u8921 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 2px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u8921_text {
  2784. border-width:0px;
  2785. word-wrap:break-word;
  2786. text-transform:none;
  2787. visibility:hidden;
  2788. }
  2789. #u8922_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:7px;
  2795. height:7px;
  2796. }
  2797. #u8922 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:1255px;
  2801. top:83px;
  2802. width:7px;
  2803. height:7px;
  2804. display:flex;
  2805. }
  2806. #u8922 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:2px 2px 2px 2px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u8922_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. visibility:hidden;
  2818. }
  2819. #u8923_img {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:19px;
  2825. height:2px;
  2826. }
  2827. #u8923 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:1272px;
  2831. top:86px;
  2832. width:18px;
  2833. height:1px;
  2834. display:flex;
  2835. -webkit-transform:rotate(90deg);
  2836. -moz-transform:rotate(90deg);
  2837. -ms-transform:rotate(90deg);
  2838. transform:rotate(90deg);
  2839. }
  2840. #u8923 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 2px 2px 2px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u8923_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u8924_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:375px;
  2859. height:44px;
  2860. }
  2861. #u8924 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:954px;
  2865. top:23px;
  2866. width:375px;
  2867. height:44px;
  2868. display:flex;
  2869. }
  2870. #u8924 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 2px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u8924_text {
  2878. border-width:0px;
  2879. word-wrap:break-word;
  2880. text-transform:none;
  2881. visibility:hidden;
  2882. }
  2883. #u8925_div {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:375px;
  2889. height:50px;
  2890. background:inherit;
  2891. background-color:rgba(255, 255, 255, 1);
  2892. box-sizing:border-box;
  2893. border-width:1px;
  2894. border-style:solid;
  2895. border-color:rgba(242, 242, 242, 1);
  2896. border-radius:26px;
  2897. border-top-left-radius:0px;
  2898. border-top-right-radius:0px;
  2899. -moz-box-shadow:none;
  2900. -webkit-box-shadow:none;
  2901. box-shadow:none;
  2902. }
  2903. #u8925 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:954px;
  2907. top:787px;
  2908. width:375px;
  2909. height:50px;
  2910. display:flex;
  2911. }
  2912. #u8925 .text {
  2913. position:absolute;
  2914. align-self:center;
  2915. padding:2px 2px 2px 2px;
  2916. box-sizing:border-box;
  2917. width:100%;
  2918. }
  2919. #u8925_text {
  2920. border-width:0px;
  2921. word-wrap:break-word;
  2922. text-transform:none;
  2923. visibility:hidden;
  2924. }
  2925. #u8926 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:0px;
  2931. height:0px;
  2932. }
  2933. #u8927_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:24px;
  2939. height:24px;
  2940. }
  2941. #u8927 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:994px;
  2945. top:791px;
  2946. width:24px;
  2947. height:24px;
  2948. display:flex;
  2949. font-size:8px;
  2950. }
  2951. #u8927 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 2px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u8927_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. }
  2963. #u8928_div {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:25px;
  2969. height:17px;
  2970. background:inherit;
  2971. background-color:rgba(255, 255, 255, 0);
  2972. border:none;
  2973. border-radius:0px;
  2974. -moz-box-shadow:none;
  2975. -webkit-box-shadow:none;
  2976. box-shadow:none;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. }
  2982. #u8928 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:994px;
  2986. top:816px;
  2987. width:25px;
  2988. height:17px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. }
  2995. #u8928 .text {
  2996. position:absolute;
  2997. align-self:flex-start;
  2998. padding:0px 0px 0px 0px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u8928_text {
  3003. border-width:0px;
  3004. white-space:nowrap;
  3005. text-transform:none;
  3006. }
  3007. #u8929 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:0px;
  3013. height:0px;
  3014. }
  3015. #u8930_img {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:24px;
  3021. height:24px;
  3022. }
  3023. #u8930 {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:1264px;
  3027. top:793px;
  3028. width:24px;
  3029. height:24px;
  3030. display:flex;
  3031. font-size:8px;
  3032. }
  3033. #u8930 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:2px 2px 2px 2px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u8930_text {
  3041. border-width:0px;
  3042. word-wrap:break-word;
  3043. text-transform:none;
  3044. }
  3045. #u8931_div {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:0px;
  3049. top:0px;
  3050. width:25px;
  3051. height:17px;
  3052. background:inherit;
  3053. background-color:rgba(255, 255, 255, 0);
  3054. border:none;
  3055. border-radius:0px;
  3056. -moz-box-shadow:none;
  3057. -webkit-box-shadow:none;
  3058. box-shadow:none;
  3059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3060. font-weight:400;
  3061. font-style:normal;
  3062. font-size:12px;
  3063. }
  3064. #u8931 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:1264px;
  3068. top:818px;
  3069. width:25px;
  3070. height:17px;
  3071. display:flex;
  3072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3073. font-weight:400;
  3074. font-style:normal;
  3075. font-size:12px;
  3076. }
  3077. #u8931 .text {
  3078. position:absolute;
  3079. align-self:flex-start;
  3080. padding:0px 0px 0px 0px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u8931_text {
  3085. border-width:0px;
  3086. white-space:nowrap;
  3087. text-transform:none;
  3088. }
  3089. #u8932_div {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:375px;
  3095. height:681px;
  3096. background:inherit;
  3097. background-color:rgba(242, 242, 242, 0.462745098039216);
  3098. border:none;
  3099. border-radius:0px;
  3100. -moz-box-shadow:none;
  3101. -webkit-box-shadow:none;
  3102. box-shadow:none;
  3103. }
  3104. #u8932 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:954px;
  3108. top:106px;
  3109. width:375px;
  3110. height:681px;
  3111. display:flex;
  3112. }
  3113. #u8932 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 2px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u8932_text {
  3121. border-width:0px;
  3122. word-wrap:break-word;
  3123. text-transform:none;
  3124. visibility:hidden;
  3125. }
  3126. #u8933 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:0px;
  3132. height:0px;
  3133. }
  3134. #u8934_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:24px;
  3140. height:24px;
  3141. }
  3142. #u8934 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:1176px;
  3146. top:791px;
  3147. width:24px;
  3148. height:24px;
  3149. display:flex;
  3150. font-size:8px;
  3151. }
  3152. #u8934 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 2px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u8934_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. }
  3164. #u8935_div {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:37px;
  3170. height:17px;
  3171. background:inherit;
  3172. background-color:rgba(255, 255, 255, 0);
  3173. border:none;
  3174. border-radius:0px;
  3175. -moz-box-shadow:none;
  3176. -webkit-box-shadow:none;
  3177. box-shadow:none;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:12px;
  3182. }
  3183. #u8935 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:1170px;
  3187. top:816px;
  3188. width:37px;
  3189. height:17px;
  3190. display:flex;
  3191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:12px;
  3195. }
  3196. #u8935 .text {
  3197. position:absolute;
  3198. align-self:flex-start;
  3199. padding:0px 0px 0px 0px;
  3200. box-sizing:border-box;
  3201. width:100%;
  3202. }
  3203. #u8935_text {
  3204. border-width:0px;
  3205. white-space:nowrap;
  3206. text-transform:none;
  3207. }
  3208. #u8936 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:0px;
  3214. height:0px;
  3215. }
  3216. #u8937_img {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:24px;
  3222. height:24px;
  3223. }
  3224. #u8937 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:1082px;
  3228. top:791px;
  3229. width:24px;
  3230. height:24px;
  3231. display:flex;
  3232. font-size:8px;
  3233. }
  3234. #u8937 .text {
  3235. position:absolute;
  3236. align-self:center;
  3237. padding:2px 2px 2px 2px;
  3238. box-sizing:border-box;
  3239. width:100%;
  3240. }
  3241. #u8937_text {
  3242. border-width:0px;
  3243. word-wrap:break-word;
  3244. text-transform:none;
  3245. }
  3246. #u8938_div {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:37px;
  3252. height:17px;
  3253. background:inherit;
  3254. background-color:rgba(255, 255, 255, 0);
  3255. border:none;
  3256. border-radius:0px;
  3257. -moz-box-shadow:none;
  3258. -webkit-box-shadow:none;
  3259. box-shadow:none;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:12px;
  3264. }
  3265. #u8938 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:1076px;
  3269. top:816px;
  3270. width:37px;
  3271. height:17px;
  3272. display:flex;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:12px;
  3277. }
  3278. #u8938 .text {
  3279. position:absolute;
  3280. align-self:flex-start;
  3281. padding:0px 0px 0px 0px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u8938_text {
  3286. border-width:0px;
  3287. white-space:nowrap;
  3288. text-transform:none;
  3289. }
  3290. #u8939_div {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:375px;
  3296. height:734px;
  3297. background:inherit;
  3298. background-color:rgba(242, 242, 242, 1);
  3299. border:none;
  3300. border-top:0px;
  3301. border-radius:20px;
  3302. border-top-left-radius:0px;
  3303. border-top-right-radius:0px;
  3304. -moz-box-shadow:none;
  3305. -webkit-box-shadow:none;
  3306. box-shadow:none;
  3307. }
  3308. #u8939 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:954px;
  3312. top:105px;
  3313. width:375px;
  3314. height:734px;
  3315. display:flex;
  3316. }
  3317. #u8939 .text {
  3318. position:absolute;
  3319. align-self:center;
  3320. padding:2px 2px 2px 2px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u8939_text {
  3325. border-width:0px;
  3326. word-wrap:break-word;
  3327. text-transform:none;
  3328. visibility:hidden;
  3329. }
  3330. #u8940 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:0px;
  3336. height:0px;
  3337. }
  3338. #u8941_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:11px;
  3344. height:18px;
  3345. }
  3346. #u8941 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:968px;
  3350. top:78px;
  3351. width:11px;
  3352. height:18px;
  3353. display:flex;
  3354. }
  3355. #u8941 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 2px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u8941_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. visibility:hidden;
  3367. }
  3368. #u8942_div {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:57px;
  3374. height:30px;
  3375. background:inherit;
  3376. background-color:rgba(255, 255, 255, 0);
  3377. border:none;
  3378. border-left:0px;
  3379. border-top:0px;
  3380. border-right:0px;
  3381. border-radius:0px;
  3382. border-bottom-right-radius:0px;
  3383. border-bottom-left-radius:0px;
  3384. -moz-box-shadow:none;
  3385. -webkit-box-shadow:none;
  3386. box-shadow:none;
  3387. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3388. font-weight:500;
  3389. font-style:normal;
  3390. font-size:14px;
  3391. line-height:30px;
  3392. }
  3393. #u8942 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:1100px;
  3397. top:74px;
  3398. width:57px;
  3399. height:30px;
  3400. display:flex;
  3401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3402. font-weight:500;
  3403. font-style:normal;
  3404. font-size:14px;
  3405. line-height:30px;
  3406. }
  3407. #u8942 .text {
  3408. position:absolute;
  3409. align-self:flex-start;
  3410. padding:0px 0px 0px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u8942_text {
  3415. border-width:0px;
  3416. white-space:nowrap;
  3417. text-transform:none;
  3418. }
  3419. #u8943_div {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:375px;
  3425. height:60px;
  3426. background:inherit;
  3427. background-color:rgba(255, 255, 255, 1);
  3428. border:none;
  3429. border-top:0px;
  3430. border-radius:22px;
  3431. border-top-left-radius:0px;
  3432. border-top-right-radius:0px;
  3433. -moz-box-shadow:none;
  3434. -webkit-box-shadow:none;
  3435. box-shadow:none;
  3436. }
  3437. #u8943 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:954px;
  3441. top:779px;
  3442. width:375px;
  3443. height:60px;
  3444. display:flex;
  3445. }
  3446. #u8943 .text {
  3447. position:absolute;
  3448. align-self:center;
  3449. padding:2px 2px 2px 2px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u8943_text {
  3454. border-width:0px;
  3455. word-wrap:break-word;
  3456. text-transform:none;
  3457. visibility:hidden;
  3458. }
  3459. #u8944_div {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:100px;
  3465. height:40px;
  3466. background:inherit;
  3467. background-color:rgba(0, 137, 254, 1);
  3468. border:none;
  3469. border-radius:82px;
  3470. -moz-box-shadow:none;
  3471. -webkit-box-shadow:none;
  3472. box-shadow:none;
  3473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:14px;
  3477. color:#FFFFFF;
  3478. }
  3479. #u8944 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:1209px;
  3483. top:789px;
  3484. width:100px;
  3485. height:40px;
  3486. display:flex;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:14px;
  3491. color:#FFFFFF;
  3492. }
  3493. #u8944 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 2px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u8944_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. }
  3505. #u8945_div {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:103px;
  3511. height:30px;
  3512. background:inherit;
  3513. background-color:rgba(255, 255, 255, 0);
  3514. border:none;
  3515. border-left:0px;
  3516. border-top:0px;
  3517. border-right:0px;
  3518. border-radius:0px;
  3519. border-bottom-right-radius:0px;
  3520. border-bottom-left-radius:0px;
  3521. -moz-box-shadow:none;
  3522. -webkit-box-shadow:none;
  3523. box-shadow:none;
  3524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3525. font-weight:400;
  3526. font-style:normal;
  3527. font-size:12px;
  3528. line-height:30px;
  3529. }
  3530. #u8945 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:985px;
  3534. top:794px;
  3535. width:103px;
  3536. height:30px;
  3537. display:flex;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:12px;
  3542. line-height:30px;
  3543. }
  3544. #u8945 .text {
  3545. position:absolute;
  3546. align-self:flex-start;
  3547. padding:0px 0px 0px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u8945_text {
  3552. border-width:0px;
  3553. white-space:nowrap;
  3554. text-transform:none;
  3555. }
  3556. #u8946 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:0px;
  3562. height:0px;
  3563. }
  3564. #u8947_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:375px;
  3570. height:200px;
  3571. }
  3572. #u8947 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:954px;
  3576. top:145px;
  3577. width:375px;
  3578. height:200px;
  3579. display:flex;
  3580. }
  3581. #u8947 .text {
  3582. position:absolute;
  3583. align-self:center;
  3584. padding:2px 2px 2px 2px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u8947_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u8948_div {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:211px;
  3600. height:30px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 0);
  3603. border:none;
  3604. border-left:0px;
  3605. border-top:0px;
  3606. border-right:0px;
  3607. border-radius:0px;
  3608. border-bottom-right-radius:0px;
  3609. border-bottom-left-radius:0px;
  3610. -moz-box-shadow:none;
  3611. -webkit-box-shadow:none;
  3612. box-shadow:none;
  3613. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3614. font-weight:500;
  3615. font-style:normal;
  3616. font-size:14px;
  3617. line-height:30px;
  3618. }
  3619. #u8948 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:990px;
  3623. top:180px;
  3624. width:211px;
  3625. height:30px;
  3626. display:flex;
  3627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3628. font-weight:500;
  3629. font-style:normal;
  3630. font-size:14px;
  3631. line-height:30px;
  3632. }
  3633. #u8948 .text {
  3634. position:absolute;
  3635. align-self:flex-start;
  3636. padding:0px 0px 0px 0px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u8948_text {
  3641. border-width:0px;
  3642. white-space:nowrap;
  3643. text-transform:none;
  3644. }
  3645. #u8949_div {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:199px;
  3651. height:125px;
  3652. background:inherit;
  3653. background-color:rgba(255, 255, 255, 0);
  3654. border:none;
  3655. border-left:0px;
  3656. border-top:0px;
  3657. border-right:0px;
  3658. border-radius:0px;
  3659. border-bottom-right-radius:0px;
  3660. border-bottom-left-radius:0px;
  3661. -moz-box-shadow:none;
  3662. -webkit-box-shadow:none;
  3663. box-shadow:none;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:12px;
  3668. color:#7F7F7F;
  3669. line-height:25px;
  3670. }
  3671. #u8949 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:990px;
  3675. top:210px;
  3676. width:199px;
  3677. height:125px;
  3678. display:flex;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:12px;
  3683. color:#7F7F7F;
  3684. line-height:25px;
  3685. }
  3686. #u8949 .text {
  3687. position:absolute;
  3688. align-self:flex-start;
  3689. padding:0px 0px 0px 0px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u8949_text {
  3694. border-width:0px;
  3695. white-space:nowrap;
  3696. text-transform:none;
  3697. }
  3698. #u8950_div {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:57px;
  3704. height:25px;
  3705. background:inherit;
  3706. background-color:rgba(255, 255, 255, 0);
  3707. border:none;
  3708. border-left:0px;
  3709. border-top:0px;
  3710. border-right:0px;
  3711. border-radius:0px;
  3712. border-bottom-right-radius:0px;
  3713. border-bottom-left-radius:0px;
  3714. -moz-box-shadow:none;
  3715. -webkit-box-shadow:none;
  3716. box-shadow:none;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. text-align:right;
  3721. }
  3722. #u8950 {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:1252px;
  3726. top:210px;
  3727. width:57px;
  3728. height:25px;
  3729. display:flex;
  3730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3731. font-weight:400;
  3732. font-style:normal;
  3733. text-align:right;
  3734. }
  3735. #u8950 .text {
  3736. position:absolute;
  3737. align-self:flex-start;
  3738. padding:0px 0px 0px 0px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u8950_text {
  3743. border-width:0px;
  3744. white-space:nowrap;
  3745. text-transform:none;
  3746. }
  3747. #u8951 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:0px;
  3753. height:0px;
  3754. }
  3755. #u8952_div {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:355px;
  3761. height:30px;
  3762. background:inherit;
  3763. background-color:rgba(255, 255, 255, 0);
  3764. box-sizing:border-box;
  3765. border-width:1px;
  3766. border-style:solid;
  3767. border-color:rgba(242, 242, 242, 1);
  3768. border-left:0px;
  3769. border-top:0px;
  3770. border-right:0px;
  3771. border-radius:0px;
  3772. border-bottom-right-radius:0px;
  3773. border-bottom-left-radius:0px;
  3774. -moz-box-shadow:none;
  3775. -webkit-box-shadow:none;
  3776. box-shadow:none;
  3777. }
  3778. #u8952 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:974px;
  3782. top:145px;
  3783. width:355px;
  3784. height:30px;
  3785. display:flex;
  3786. }
  3787. #u8952 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 2px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u8952_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. visibility:hidden;
  3799. }
  3800. #u8953_div {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:97px;
  3806. height:24px;
  3807. background:inherit;
  3808. background-color:rgba(255, 255, 255, 0);
  3809. border:none;
  3810. border-left:0px;
  3811. border-top:0px;
  3812. border-right:0px;
  3813. border-radius:0px;
  3814. border-bottom-right-radius:0px;
  3815. border-bottom-left-radius:0px;
  3816. -moz-box-shadow:none;
  3817. -webkit-box-shadow:none;
  3818. box-shadow:none;
  3819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:10px;
  3823. color:#7F7F7F;
  3824. line-height:24px;
  3825. }
  3826. #u8953 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:984px;
  3830. top:148px;
  3831. width:97px;
  3832. height:24px;
  3833. display:flex;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:10px;
  3838. color:#7F7F7F;
  3839. line-height:24px;
  3840. }
  3841. #u8953 .text {
  3842. position:absolute;
  3843. align-self:flex-start;
  3844. padding:0px 0px 0px 0px;
  3845. box-sizing:border-box;
  3846. width:100%;
  3847. }
  3848. #u8953_text {
  3849. border-width:0px;
  3850. white-space:nowrap;
  3851. text-transform:none;
  3852. }
  3853. #u8954_div {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:100px;
  3859. height:24px;
  3860. background:inherit;
  3861. background-color:rgba(255, 255, 255, 0);
  3862. border:none;
  3863. border-left:0px;
  3864. border-top:0px;
  3865. border-right:0px;
  3866. border-radius:0px;
  3867. border-bottom-right-radius:0px;
  3868. border-bottom-left-radius:0px;
  3869. -moz-box-shadow:none;
  3870. -webkit-box-shadow:none;
  3871. box-shadow:none;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:10px;
  3876. color:#555555;
  3877. text-align:right;
  3878. line-height:24px;
  3879. }
  3880. #u8954 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:1219px;
  3884. top:148px;
  3885. width:100px;
  3886. height:24px;
  3887. display:flex;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:10px;
  3892. color:#555555;
  3893. text-align:right;
  3894. line-height:24px;
  3895. }
  3896. #u8954 .text {
  3897. position:absolute;
  3898. align-self:flex-start;
  3899. padding:0px 0px 0px 0px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u8954_text {
  3904. border-width:0px;
  3905. white-space:nowrap;
  3906. text-transform:none;
  3907. }
  3908. #u8955 label {
  3909. left:0px;
  3910. width:100%;
  3911. }
  3912. #u8955_img {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:12px;
  3918. height:12px;
  3919. }
  3920. #u8955 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:963px;
  3924. top:210px;
  3925. width:30px;
  3926. height:16px;
  3927. display:flex;
  3928. }
  3929. #u8955 .text {
  3930. position:absolute;
  3931. align-self:center;
  3932. padding:0px 2px 0px 2px;
  3933. box-sizing:border-box;
  3934. }
  3935. #u8955_img.selected {
  3936. }
  3937. #u8955.selected {
  3938. }
  3939. #u8955_img.disabled {
  3940. }
  3941. #u8955.disabled {
  3942. }
  3943. #u8955_img.selectedDisabled {
  3944. }
  3945. #u8955.selectedDisabled {
  3946. }
  3947. #u8955_text {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:14px;
  3951. top:0px;
  3952. width:14px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u8955_input {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:0px;
  3963. height:0px;
  3964. opacity:0;
  3965. }
  3966. #u8957_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:433px;
  3972. height:865px;
  3973. }
  3974. #u8957 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:1388px;
  3978. top:-1px;
  3979. width:433px;
  3980. height:865px;
  3981. display:flex;
  3982. }
  3983. #u8957 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u8957_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u8958_div {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:375px;
  4002. height:40px;
  4003. background:inherit;
  4004. background-color:rgba(255, 255, 255, 1);
  4005. box-sizing:border-box;
  4006. border-width:1px;
  4007. border-style:solid;
  4008. border-color:rgba(215, 215, 215, 1);
  4009. border-left:0px;
  4010. border-top:0px;
  4011. border-right:0px;
  4012. border-radius:0px;
  4013. border-bottom-right-radius:0px;
  4014. border-bottom-left-radius:0px;
  4015. -moz-box-shadow:none;
  4016. -webkit-box-shadow:none;
  4017. box-shadow:none;
  4018. }
  4019. #u8958 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:1417px;
  4023. top:66px;
  4024. width:375px;
  4025. height:40px;
  4026. display:flex;
  4027. }
  4028. #u8958 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 2px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u8958_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u8959 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:0px;
  4047. height:0px;
  4048. }
  4049. #u8960_div {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:88px;
  4055. height:32px;
  4056. background:inherit;
  4057. background-color:rgba(255, 255, 255, 1);
  4058. box-sizing:border-box;
  4059. border-width:1px;
  4060. border-style:solid;
  4061. border-color:rgba(242, 242, 242, 1);
  4062. border-radius:33px;
  4063. -moz-box-shadow:none;
  4064. -webkit-box-shadow:none;
  4065. box-shadow:none;
  4066. }
  4067. #u8960 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:1697px;
  4071. top:70px;
  4072. width:88px;
  4073. height:32px;
  4074. display:flex;
  4075. }
  4076. #u8960 .text {
  4077. position:absolute;
  4078. align-self:center;
  4079. padding:2px 2px 2px 2px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u8960_text {
  4084. border-width:0px;
  4085. word-wrap:break-word;
  4086. text-transform:none;
  4087. visibility:hidden;
  4088. }
  4089. #u8961 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:0px;
  4095. height:0px;
  4096. }
  4097. #u8962_img {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:18px;
  4103. height:18px;
  4104. }
  4105. #u8962 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:1760px;
  4109. top:77px;
  4110. width:18px;
  4111. height:18px;
  4112. display:flex;
  4113. }
  4114. #u8962 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:2px 2px 2px 2px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u8962_text {
  4122. border-width:0px;
  4123. word-wrap:break-word;
  4124. text-transform:none;
  4125. visibility:hidden;
  4126. }
  4127. #u8963_img {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:6px;
  4133. height:6px;
  4134. }
  4135. #u8963 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:1766px;
  4139. top:83px;
  4140. width:6px;
  4141. height:6px;
  4142. display:flex;
  4143. }
  4144. #u8963 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 2px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u8963_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u8964 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:0px;
  4163. height:0px;
  4164. }
  4165. #u8965_img {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:5px;
  4171. height:5px;
  4172. }
  4173. #u8965 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:1711px;
  4177. top:84px;
  4178. width:5px;
  4179. height:5px;
  4180. display:flex;
  4181. }
  4182. #u8965 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:2px 2px 2px 2px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u8965_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. visibility:hidden;
  4194. }
  4195. #u8966_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:5px;
  4201. height:5px;
  4202. }
  4203. #u8966 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:1727px;
  4207. top:84px;
  4208. width:5px;
  4209. height:5px;
  4210. display:flex;
  4211. }
  4212. #u8966 .text {
  4213. position:absolute;
  4214. align-self:center;
  4215. padding:2px 2px 2px 2px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u8966_text {
  4220. border-width:0px;
  4221. word-wrap:break-word;
  4222. text-transform:none;
  4223. visibility:hidden;
  4224. }
  4225. #u8967_img {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:7px;
  4231. height:7px;
  4232. }
  4233. #u8967 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:1718px;
  4237. top:83px;
  4238. width:7px;
  4239. height:7px;
  4240. display:flex;
  4241. }
  4242. #u8967 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 2px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u8967_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u8968_img {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:19px;
  4261. height:2px;
  4262. }
  4263. #u8968 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:1735px;
  4267. top:86px;
  4268. width:18px;
  4269. height:1px;
  4270. display:flex;
  4271. -webkit-transform:rotate(90deg);
  4272. -moz-transform:rotate(90deg);
  4273. -ms-transform:rotate(90deg);
  4274. transform:rotate(90deg);
  4275. }
  4276. #u8968 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 2px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u8968_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. visibility:hidden;
  4288. }
  4289. #u8969_img {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:375px;
  4295. height:44px;
  4296. }
  4297. #u8969 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:1417px;
  4301. top:23px;
  4302. width:375px;
  4303. height:44px;
  4304. display:flex;
  4305. }
  4306. #u8969 .text {
  4307. position:absolute;
  4308. align-self:center;
  4309. padding:2px 2px 2px 2px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u8969_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. visibility:hidden;
  4318. }
  4319. #u8970_div {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:375px;
  4325. height:50px;
  4326. background:inherit;
  4327. background-color:rgba(255, 255, 255, 1);
  4328. box-sizing:border-box;
  4329. border-width:1px;
  4330. border-style:solid;
  4331. border-color:rgba(242, 242, 242, 1);
  4332. border-radius:26px;
  4333. border-top-left-radius:0px;
  4334. border-top-right-radius:0px;
  4335. -moz-box-shadow:none;
  4336. -webkit-box-shadow:none;
  4337. box-shadow:none;
  4338. }
  4339. #u8970 {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:1417px;
  4343. top:787px;
  4344. width:375px;
  4345. height:50px;
  4346. display:flex;
  4347. }
  4348. #u8970 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:2px 2px 2px 2px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u8970_text {
  4356. border-width:0px;
  4357. word-wrap:break-word;
  4358. text-transform:none;
  4359. visibility:hidden;
  4360. }
  4361. #u8971 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:0px;
  4367. height:0px;
  4368. }
  4369. #u8972_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:24px;
  4375. height:24px;
  4376. }
  4377. #u8972 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:1457px;
  4381. top:791px;
  4382. width:24px;
  4383. height:24px;
  4384. display:flex;
  4385. font-size:8px;
  4386. }
  4387. #u8972 .text {
  4388. position:absolute;
  4389. align-self:center;
  4390. padding:2px 2px 2px 2px;
  4391. box-sizing:border-box;
  4392. width:100%;
  4393. }
  4394. #u8972_text {
  4395. border-width:0px;
  4396. word-wrap:break-word;
  4397. text-transform:none;
  4398. }
  4399. #u8973_div {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:0px;
  4403. top:0px;
  4404. width:25px;
  4405. height:17px;
  4406. background:inherit;
  4407. background-color:rgba(255, 255, 255, 0);
  4408. border:none;
  4409. border-radius:0px;
  4410. -moz-box-shadow:none;
  4411. -webkit-box-shadow:none;
  4412. box-shadow:none;
  4413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. font-size:12px;
  4417. }
  4418. #u8973 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:1457px;
  4422. top:816px;
  4423. width:25px;
  4424. height:17px;
  4425. display:flex;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. }
  4431. #u8973 .text {
  4432. position:absolute;
  4433. align-self:flex-start;
  4434. padding:0px 0px 0px 0px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u8973_text {
  4439. border-width:0px;
  4440. white-space:nowrap;
  4441. text-transform:none;
  4442. }
  4443. #u8974 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:0px;
  4449. height:0px;
  4450. }
  4451. #u8975_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:24px;
  4457. height:24px;
  4458. }
  4459. #u8975 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:1727px;
  4463. top:793px;
  4464. width:24px;
  4465. height:24px;
  4466. display:flex;
  4467. font-size:8px;
  4468. }
  4469. #u8975 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u8975_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. }
  4481. #u8976_div {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:25px;
  4487. height:17px;
  4488. background:inherit;
  4489. background-color:rgba(255, 255, 255, 0);
  4490. border:none;
  4491. border-radius:0px;
  4492. -moz-box-shadow:none;
  4493. -webkit-box-shadow:none;
  4494. box-shadow:none;
  4495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:12px;
  4499. }
  4500. #u8976 {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:1727px;
  4504. top:818px;
  4505. width:25px;
  4506. height:17px;
  4507. display:flex;
  4508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4509. font-weight:400;
  4510. font-style:normal;
  4511. font-size:12px;
  4512. }
  4513. #u8976 .text {
  4514. position:absolute;
  4515. align-self:flex-start;
  4516. padding:0px 0px 0px 0px;
  4517. box-sizing:border-box;
  4518. width:100%;
  4519. }
  4520. #u8976_text {
  4521. border-width:0px;
  4522. white-space:nowrap;
  4523. text-transform:none;
  4524. }
  4525. #u8977_div {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:375px;
  4531. height:681px;
  4532. background:inherit;
  4533. background-color:rgba(242, 242, 242, 0.462745098039216);
  4534. border:none;
  4535. border-radius:0px;
  4536. -moz-box-shadow:none;
  4537. -webkit-box-shadow:none;
  4538. box-shadow:none;
  4539. }
  4540. #u8977 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:1417px;
  4544. top:106px;
  4545. width:375px;
  4546. height:681px;
  4547. display:flex;
  4548. }
  4549. #u8977 .text {
  4550. position:absolute;
  4551. align-self:center;
  4552. padding:2px 2px 2px 2px;
  4553. box-sizing:border-box;
  4554. width:100%;
  4555. }
  4556. #u8977_text {
  4557. border-width:0px;
  4558. word-wrap:break-word;
  4559. text-transform:none;
  4560. visibility:hidden;
  4561. }
  4562. #u8978 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:0px;
  4566. top:0px;
  4567. width:0px;
  4568. height:0px;
  4569. }
  4570. #u8979_img {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:24px;
  4576. height:24px;
  4577. }
  4578. #u8979 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:1639px;
  4582. top:791px;
  4583. width:24px;
  4584. height:24px;
  4585. display:flex;
  4586. font-size:8px;
  4587. }
  4588. #u8979 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:2px 2px 2px 2px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u8979_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. }
  4600. #u8980_div {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:37px;
  4606. height:17px;
  4607. background:inherit;
  4608. background-color:rgba(255, 255, 255, 0);
  4609. border:none;
  4610. border-radius:0px;
  4611. -moz-box-shadow:none;
  4612. -webkit-box-shadow:none;
  4613. box-shadow:none;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:12px;
  4618. }
  4619. #u8980 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:1633px;
  4623. top:816px;
  4624. width:37px;
  4625. height:17px;
  4626. display:flex;
  4627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:12px;
  4631. }
  4632. #u8980 .text {
  4633. position:absolute;
  4634. align-self:flex-start;
  4635. padding:0px 0px 0px 0px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u8980_text {
  4640. border-width:0px;
  4641. white-space:nowrap;
  4642. text-transform:none;
  4643. }
  4644. #u8981 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:0px;
  4650. height:0px;
  4651. }
  4652. #u8982_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:24px;
  4658. height:24px;
  4659. }
  4660. #u8982 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:1545px;
  4664. top:791px;
  4665. width:24px;
  4666. height:24px;
  4667. display:flex;
  4668. font-size:8px;
  4669. }
  4670. #u8982 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 2px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u8982_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. }
  4682. #u8983_div {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:37px;
  4688. height:17px;
  4689. background:inherit;
  4690. background-color:rgba(255, 255, 255, 0);
  4691. border:none;
  4692. border-radius:0px;
  4693. -moz-box-shadow:none;
  4694. -webkit-box-shadow:none;
  4695. box-shadow:none;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:12px;
  4700. }
  4701. #u8983 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:1539px;
  4705. top:816px;
  4706. width:37px;
  4707. height:17px;
  4708. display:flex;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. }
  4714. #u8983 .text {
  4715. position:absolute;
  4716. align-self:flex-start;
  4717. padding:0px 0px 0px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u8983_text {
  4722. border-width:0px;
  4723. white-space:nowrap;
  4724. text-transform:none;
  4725. }
  4726. #u8984_div {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:375px;
  4732. height:734px;
  4733. background:inherit;
  4734. background-color:rgba(242, 242, 242, 1);
  4735. border:none;
  4736. border-top:0px;
  4737. border-radius:20px;
  4738. border-top-left-radius:0px;
  4739. border-top-right-radius:0px;
  4740. -moz-box-shadow:none;
  4741. -webkit-box-shadow:none;
  4742. box-shadow:none;
  4743. }
  4744. #u8984 {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:1417px;
  4748. top:105px;
  4749. width:375px;
  4750. height:734px;
  4751. display:flex;
  4752. }
  4753. #u8984 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 2px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u8984_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. visibility:hidden;
  4765. }
  4766. #u8985 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:0px;
  4772. height:0px;
  4773. }
  4774. #u8986_img {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:11px;
  4780. height:18px;
  4781. }
  4782. #u8986 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:1431px;
  4786. top:78px;
  4787. width:11px;
  4788. height:18px;
  4789. display:flex;
  4790. }
  4791. #u8986 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 2px 2px 2px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u8986_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. visibility:hidden;
  4803. }
  4804. #u8987_div {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:57px;
  4810. height:30px;
  4811. background:inherit;
  4812. background-color:rgba(255, 255, 255, 0);
  4813. border:none;
  4814. border-left:0px;
  4815. border-top:0px;
  4816. border-right:0px;
  4817. border-radius:0px;
  4818. border-bottom-right-radius:0px;
  4819. border-bottom-left-radius:0px;
  4820. -moz-box-shadow:none;
  4821. -webkit-box-shadow:none;
  4822. box-shadow:none;
  4823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4824. font-weight:500;
  4825. font-style:normal;
  4826. font-size:14px;
  4827. line-height:30px;
  4828. }
  4829. #u8987 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:1563px;
  4833. top:74px;
  4834. width:57px;
  4835. height:30px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4838. font-weight:500;
  4839. font-style:normal;
  4840. font-size:14px;
  4841. line-height:30px;
  4842. }
  4843. #u8987 .text {
  4844. position:absolute;
  4845. align-self:flex-start;
  4846. padding:0px 0px 0px 0px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u8987_text {
  4851. border-width:0px;
  4852. white-space:nowrap;
  4853. text-transform:none;
  4854. }
  4855. #u8988_div {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:375px;
  4861. height:60px;
  4862. background:inherit;
  4863. background-color:rgba(255, 255, 255, 1);
  4864. border:none;
  4865. border-top:0px;
  4866. border-radius:22px;
  4867. border-top-left-radius:0px;
  4868. border-top-right-radius:0px;
  4869. -moz-box-shadow:none;
  4870. -webkit-box-shadow:none;
  4871. box-shadow:none;
  4872. }
  4873. #u8988 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:1417px;
  4877. top:779px;
  4878. width:375px;
  4879. height:60px;
  4880. display:flex;
  4881. }
  4882. #u8988 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:2px 2px 2px 2px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u8988_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. visibility:hidden;
  4894. }
  4895. #u8989_div {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:100px;
  4901. height:40px;
  4902. background:inherit;
  4903. background-color:rgba(0, 137, 254, 1);
  4904. border:none;
  4905. border-radius:82px;
  4906. -moz-box-shadow:none;
  4907. -webkit-box-shadow:none;
  4908. box-shadow:none;
  4909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:14px;
  4913. color:#FFFFFF;
  4914. }
  4915. #u8989 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:1672px;
  4919. top:789px;
  4920. width:100px;
  4921. height:40px;
  4922. display:flex;
  4923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:14px;
  4927. color:#FFFFFF;
  4928. }
  4929. #u8989 .text {
  4930. position:absolute;
  4931. align-self:center;
  4932. padding:2px 2px 2px 2px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u8989_text {
  4937. border-width:0px;
  4938. word-wrap:break-word;
  4939. text-transform:none;
  4940. }
  4941. #u8990_div {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:103px;
  4947. height:30px;
  4948. background:inherit;
  4949. background-color:rgba(255, 255, 255, 0);
  4950. border:none;
  4951. border-left:0px;
  4952. border-top:0px;
  4953. border-right:0px;
  4954. border-radius:0px;
  4955. border-bottom-right-radius:0px;
  4956. border-bottom-left-radius:0px;
  4957. -moz-box-shadow:none;
  4958. -webkit-box-shadow:none;
  4959. box-shadow:none;
  4960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4961. font-weight:400;
  4962. font-style:normal;
  4963. font-size:12px;
  4964. line-height:30px;
  4965. }
  4966. #u8990 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:1448px;
  4970. top:794px;
  4971. width:103px;
  4972. height:30px;
  4973. display:flex;
  4974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4975. font-weight:400;
  4976. font-style:normal;
  4977. font-size:12px;
  4978. line-height:30px;
  4979. }
  4980. #u8990 .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. #u8990_text {
  4988. border-width:0px;
  4989. white-space:nowrap;
  4990. text-transform:none;
  4991. }
  4992. #u8991 {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:0px;
  4998. height:0px;
  4999. }
  5000. #u8992_img {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:0px;
  5004. top:0px;
  5005. width:375px;
  5006. height:180px;
  5007. }
  5008. #u8992 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:1417px;
  5012. top:145px;
  5013. width:375px;
  5014. height:180px;
  5015. display:flex;
  5016. }
  5017. #u8992 .text {
  5018. position:absolute;
  5019. align-self:center;
  5020. padding:2px 2px 2px 2px;
  5021. box-sizing:border-box;
  5022. width:100%;
  5023. }
  5024. #u8992_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. visibility:hidden;
  5029. }
  5030. #u8993_div {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:239px;
  5036. height:30px;
  5037. background:inherit;
  5038. background-color:rgba(255, 255, 255, 0);
  5039. border:none;
  5040. border-left:0px;
  5041. border-top:0px;
  5042. border-right:0px;
  5043. border-radius:0px;
  5044. border-bottom-right-radius:0px;
  5045. border-bottom-left-radius:0px;
  5046. -moz-box-shadow:none;
  5047. -webkit-box-shadow:none;
  5048. box-shadow:none;
  5049. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5050. font-weight:500;
  5051. font-style:normal;
  5052. font-size:14px;
  5053. line-height:30px;
  5054. }
  5055. #u8993 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:1453px;
  5059. top:180px;
  5060. width:239px;
  5061. height:30px;
  5062. display:flex;
  5063. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5064. font-weight:500;
  5065. font-style:normal;
  5066. font-size:14px;
  5067. line-height:30px;
  5068. }
  5069. #u8993 .text {
  5070. position:absolute;
  5071. align-self:flex-start;
  5072. padding:0px 0px 0px 0px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u8993_text {
  5077. border-width:0px;
  5078. white-space:nowrap;
  5079. text-transform:none;
  5080. }
  5081. #u8994_div {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:113px;
  5087. height:100px;
  5088. background:inherit;
  5089. background-color:rgba(255, 255, 255, 0);
  5090. border:none;
  5091. border-left:0px;
  5092. border-top:0px;
  5093. border-right:0px;
  5094. border-radius:0px;
  5095. border-bottom-right-radius:0px;
  5096. border-bottom-left-radius:0px;
  5097. -moz-box-shadow:none;
  5098. -webkit-box-shadow:none;
  5099. box-shadow:none;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:12px;
  5104. color:#7F7F7F;
  5105. line-height:25px;
  5106. }
  5107. #u8994 {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:1453px;
  5111. top:210px;
  5112. width:113px;
  5113. height:100px;
  5114. display:flex;
  5115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5116. font-weight:400;
  5117. font-style:normal;
  5118. font-size:12px;
  5119. color:#7F7F7F;
  5120. line-height:25px;
  5121. }
  5122. #u8994 .text {
  5123. position:absolute;
  5124. align-self:flex-start;
  5125. padding:0px 0px 0px 0px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u8994_text {
  5130. border-width:0px;
  5131. white-space:nowrap;
  5132. text-transform:none;
  5133. }
  5134. #u8995_div {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:71px;
  5140. height:25px;
  5141. background:inherit;
  5142. background-color:rgba(255, 255, 255, 0);
  5143. border:none;
  5144. border-left:0px;
  5145. border-top:0px;
  5146. border-right:0px;
  5147. border-radius:0px;
  5148. border-bottom-right-radius:0px;
  5149. border-bottom-left-radius:0px;
  5150. -moz-box-shadow:none;
  5151. -webkit-box-shadow:none;
  5152. box-shadow:none;
  5153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5154. font-weight:400;
  5155. font-style:normal;
  5156. text-align:right;
  5157. }
  5158. #u8995 {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:1701px;
  5162. top:210px;
  5163. width:71px;
  5164. height:25px;
  5165. display:flex;
  5166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. text-align:right;
  5170. }
  5171. #u8995 .text {
  5172. position:absolute;
  5173. align-self:flex-start;
  5174. padding:0px 0px 0px 0px;
  5175. box-sizing:border-box;
  5176. width:100%;
  5177. }
  5178. #u8995_text {
  5179. border-width:0px;
  5180. white-space:nowrap;
  5181. text-transform:none;
  5182. }
  5183. #u8996 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:0px;
  5189. height:0px;
  5190. }
  5191. #u8997_div {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:355px;
  5197. height:30px;
  5198. background:inherit;
  5199. background-color:rgba(255, 255, 255, 0);
  5200. box-sizing:border-box;
  5201. border-width:1px;
  5202. border-style:solid;
  5203. border-color:rgba(242, 242, 242, 1);
  5204. border-left:0px;
  5205. border-top:0px;
  5206. border-right:0px;
  5207. border-radius:0px;
  5208. border-bottom-right-radius:0px;
  5209. border-bottom-left-radius:0px;
  5210. -moz-box-shadow:none;
  5211. -webkit-box-shadow:none;
  5212. box-shadow:none;
  5213. }
  5214. #u8997 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:1437px;
  5218. top:145px;
  5219. width:355px;
  5220. height:30px;
  5221. display:flex;
  5222. }
  5223. #u8997 .text {
  5224. position:absolute;
  5225. align-self:center;
  5226. padding:2px 2px 2px 2px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u8997_text {
  5231. border-width:0px;
  5232. word-wrap:break-word;
  5233. text-transform:none;
  5234. visibility:hidden;
  5235. }
  5236. #u8998_div {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:97px;
  5242. height:24px;
  5243. background:inherit;
  5244. background-color:rgba(255, 255, 255, 0);
  5245. border:none;
  5246. border-left:0px;
  5247. border-top:0px;
  5248. border-right:0px;
  5249. border-radius:0px;
  5250. border-bottom-right-radius:0px;
  5251. border-bottom-left-radius:0px;
  5252. -moz-box-shadow:none;
  5253. -webkit-box-shadow:none;
  5254. box-shadow:none;
  5255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:10px;
  5259. color:#7F7F7F;
  5260. line-height:24px;
  5261. }
  5262. #u8998 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:1447px;
  5266. top:148px;
  5267. width:97px;
  5268. height:24px;
  5269. display:flex;
  5270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. font-size:10px;
  5274. color:#7F7F7F;
  5275. line-height:24px;
  5276. }
  5277. #u8998 .text {
  5278. position:absolute;
  5279. align-self:flex-start;
  5280. padding:0px 0px 0px 0px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u8998_text {
  5285. border-width:0px;
  5286. white-space:nowrap;
  5287. text-transform:none;
  5288. }
  5289. #u8999_div {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:100px;
  5295. height:24px;
  5296. background:inherit;
  5297. background-color:rgba(255, 255, 255, 0);
  5298. border:none;
  5299. border-left:0px;
  5300. border-top:0px;
  5301. border-right:0px;
  5302. border-radius:0px;
  5303. border-bottom-right-radius:0px;
  5304. border-bottom-left-radius:0px;
  5305. -moz-box-shadow:none;
  5306. -webkit-box-shadow:none;
  5307. box-shadow:none;
  5308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. font-size:10px;
  5312. color:#555555;
  5313. text-align:right;
  5314. line-height:24px;
  5315. }
  5316. #u8999 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:1682px;
  5320. top:148px;
  5321. width:100px;
  5322. height:24px;
  5323. display:flex;
  5324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5325. font-weight:400;
  5326. font-style:normal;
  5327. font-size:10px;
  5328. color:#555555;
  5329. text-align:right;
  5330. line-height:24px;
  5331. }
  5332. #u8999 .text {
  5333. position:absolute;
  5334. align-self:flex-start;
  5335. padding:0px 0px 0px 0px;
  5336. box-sizing:border-box;
  5337. width:100%;
  5338. }
  5339. #u8999_text {
  5340. border-width:0px;
  5341. white-space:nowrap;
  5342. text-transform:none;
  5343. }
  5344. #u9000 label {
  5345. left:0px;
  5346. width:100%;
  5347. }
  5348. #u9000_img {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:12px;
  5354. height:12px;
  5355. }
  5356. #u9000 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:1426px;
  5360. top:210px;
  5361. width:30px;
  5362. height:16px;
  5363. display:flex;
  5364. }
  5365. #u9000 .text {
  5366. position:absolute;
  5367. align-self:center;
  5368. padding:0px 2px 0px 2px;
  5369. box-sizing:border-box;
  5370. }
  5371. #u9000_img.selected {
  5372. }
  5373. #u9000.selected {
  5374. }
  5375. #u9000_img.disabled {
  5376. }
  5377. #u9000.disabled {
  5378. }
  5379. #u9000_img.selectedDisabled {
  5380. }
  5381. #u9000.selectedDisabled {
  5382. }
  5383. #u9000_text {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:14px;
  5387. top:0px;
  5388. width:14px;
  5389. word-wrap:break-word;
  5390. text-transform:none;
  5391. visibility:hidden;
  5392. }
  5393. #u9000_input {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:0px;
  5399. height:0px;
  5400. opacity:0;
  5401. }
  5402. #u9001 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:0px;
  5408. height:0px;
  5409. }
  5410. #u9002_img {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:375px;
  5416. height:200px;
  5417. }
  5418. #u9002 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:491px;
  5422. top:145px;
  5423. width:375px;
  5424. height:200px;
  5425. display:flex;
  5426. }
  5427. #u9002 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 2px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u9002_text {
  5435. border-width:0px;
  5436. word-wrap:break-word;
  5437. text-transform:none;
  5438. visibility:hidden;
  5439. }
  5440. #u9003_div {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:309px;
  5446. height:30px;
  5447. background:inherit;
  5448. background-color:rgba(255, 255, 255, 0);
  5449. border:none;
  5450. border-left:0px;
  5451. border-top:0px;
  5452. border-right:0px;
  5453. border-radius:0px;
  5454. border-bottom-right-radius:0px;
  5455. border-bottom-left-radius:0px;
  5456. -moz-box-shadow:none;
  5457. -webkit-box-shadow:none;
  5458. box-shadow:none;
  5459. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5460. font-weight:500;
  5461. font-style:normal;
  5462. font-size:14px;
  5463. line-height:30px;
  5464. }
  5465. #u9003 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:527px;
  5469. top:180px;
  5470. width:309px;
  5471. height:30px;
  5472. display:flex;
  5473. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5474. font-weight:500;
  5475. font-style:normal;
  5476. font-size:14px;
  5477. line-height:30px;
  5478. }
  5479. #u9003 .text {
  5480. position:absolute;
  5481. align-self:flex-start;
  5482. padding:0px 0px 0px 0px;
  5483. box-sizing:border-box;
  5484. width:100%;
  5485. }
  5486. #u9003_text {
  5487. border-width:0px;
  5488. white-space:nowrap;
  5489. text-transform:none;
  5490. }
  5491. #u9004_div {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:165px;
  5497. height:125px;
  5498. background:inherit;
  5499. background-color:rgba(255, 255, 255, 0);
  5500. border:none;
  5501. border-left:0px;
  5502. border-top:0px;
  5503. border-right:0px;
  5504. border-radius:0px;
  5505. border-bottom-right-radius:0px;
  5506. border-bottom-left-radius:0px;
  5507. -moz-box-shadow:none;
  5508. -webkit-box-shadow:none;
  5509. box-shadow:none;
  5510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:12px;
  5514. color:#7F7F7F;
  5515. line-height:25px;
  5516. }
  5517. #u9004 {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:527px;
  5521. top:210px;
  5522. width:165px;
  5523. height:125px;
  5524. display:flex;
  5525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5526. font-weight:400;
  5527. font-style:normal;
  5528. font-size:12px;
  5529. color:#7F7F7F;
  5530. line-height:25px;
  5531. }
  5532. #u9004 .text {
  5533. position:absolute;
  5534. align-self:flex-start;
  5535. padding:0px 0px 0px 0px;
  5536. box-sizing:border-box;
  5537. width:100%;
  5538. }
  5539. #u9004_text {
  5540. border-width:0px;
  5541. white-space:nowrap;
  5542. text-transform:none;
  5543. }
  5544. #u9005_div {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:57px;
  5550. height:25px;
  5551. background:inherit;
  5552. background-color:rgba(255, 255, 255, 0);
  5553. border:none;
  5554. border-left:0px;
  5555. border-top:0px;
  5556. border-right:0px;
  5557. border-radius:0px;
  5558. border-bottom-right-radius:0px;
  5559. border-bottom-left-radius:0px;
  5560. -moz-box-shadow:none;
  5561. -webkit-box-shadow:none;
  5562. box-shadow:none;
  5563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5564. font-weight:400;
  5565. font-style:normal;
  5566. text-align:right;
  5567. }
  5568. #u9005 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:789px;
  5572. top:224px;
  5573. width:57px;
  5574. height:25px;
  5575. display:flex;
  5576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5577. font-weight:400;
  5578. font-style:normal;
  5579. text-align:right;
  5580. }
  5581. #u9005 .text {
  5582. position:absolute;
  5583. align-self:flex-start;
  5584. padding:0px 0px 0px 0px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u9005_text {
  5589. border-width:0px;
  5590. white-space:nowrap;
  5591. text-transform:none;
  5592. }
  5593. #u9006 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:0px;
  5599. height:0px;
  5600. }
  5601. #u9007_div {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:355px;
  5607. height:30px;
  5608. background:inherit;
  5609. background-color:rgba(255, 255, 255, 0);
  5610. box-sizing:border-box;
  5611. border-width:1px;
  5612. border-style:solid;
  5613. border-color:rgba(242, 242, 242, 1);
  5614. border-left:0px;
  5615. border-top:0px;
  5616. border-right:0px;
  5617. border-radius:0px;
  5618. border-bottom-right-radius:0px;
  5619. border-bottom-left-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. }
  5624. #u9007 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:511px;
  5628. top:145px;
  5629. width:355px;
  5630. height:30px;
  5631. display:flex;
  5632. }
  5633. #u9007 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 2px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u9007_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. visibility:hidden;
  5645. }
  5646. #u9008_div {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:97px;
  5652. height:24px;
  5653. background:inherit;
  5654. background-color:rgba(255, 255, 255, 0);
  5655. border:none;
  5656. border-left:0px;
  5657. border-top:0px;
  5658. border-right:0px;
  5659. border-radius:0px;
  5660. border-bottom-right-radius:0px;
  5661. border-bottom-left-radius:0px;
  5662. -moz-box-shadow:none;
  5663. -webkit-box-shadow:none;
  5664. box-shadow:none;
  5665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5666. font-weight:400;
  5667. font-style:normal;
  5668. font-size:10px;
  5669. color:#7F7F7F;
  5670. line-height:24px;
  5671. }
  5672. #u9008 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:521px;
  5676. top:148px;
  5677. width:97px;
  5678. height:24px;
  5679. display:flex;
  5680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. font-size:10px;
  5684. color:#7F7F7F;
  5685. line-height:24px;
  5686. }
  5687. #u9008 .text {
  5688. position:absolute;
  5689. align-self:flex-start;
  5690. padding:0px 0px 0px 0px;
  5691. box-sizing:border-box;
  5692. width:100%;
  5693. }
  5694. #u9008_text {
  5695. border-width:0px;
  5696. white-space:nowrap;
  5697. text-transform:none;
  5698. }
  5699. #u9009_div {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:100px;
  5705. height:24px;
  5706. background:inherit;
  5707. background-color:rgba(255, 255, 255, 0);
  5708. border:none;
  5709. border-left:0px;
  5710. border-top:0px;
  5711. border-right:0px;
  5712. border-radius:0px;
  5713. border-bottom-right-radius:0px;
  5714. border-bottom-left-radius:0px;
  5715. -moz-box-shadow:none;
  5716. -webkit-box-shadow:none;
  5717. box-shadow:none;
  5718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5719. font-weight:400;
  5720. font-style:normal;
  5721. font-size:10px;
  5722. color:#555555;
  5723. text-align:right;
  5724. line-height:24px;
  5725. }
  5726. #u9009 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:756px;
  5730. top:148px;
  5731. width:100px;
  5732. height:24px;
  5733. display:flex;
  5734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:10px;
  5738. color:#555555;
  5739. text-align:right;
  5740. line-height:24px;
  5741. }
  5742. #u9009 .text {
  5743. position:absolute;
  5744. align-self:flex-start;
  5745. padding:0px 0px 0px 0px;
  5746. box-sizing:border-box;
  5747. width:100%;
  5748. }
  5749. #u9009_text {
  5750. border-width:0px;
  5751. white-space:nowrap;
  5752. text-transform:none;
  5753. }
  5754. #u9010 label {
  5755. left:0px;
  5756. width:100%;
  5757. }
  5758. #u9010_img {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:12px;
  5764. height:12px;
  5765. }
  5766. #u9010 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:500px;
  5770. top:210px;
  5771. width:30px;
  5772. height:16px;
  5773. display:flex;
  5774. }
  5775. #u9010 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:0px 2px 0px 2px;
  5779. box-sizing:border-box;
  5780. }
  5781. #u9010_img.selected {
  5782. }
  5783. #u9010.selected {
  5784. }
  5785. #u9010_img.disabled {
  5786. }
  5787. #u9010.disabled {
  5788. }
  5789. #u9010_img.selectedDisabled {
  5790. }
  5791. #u9010.selectedDisabled {
  5792. }
  5793. #u9010_text {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:14px;
  5797. top:0px;
  5798. width:14px;
  5799. word-wrap:break-word;
  5800. text-transform:none;
  5801. visibility:hidden;
  5802. }
  5803. #u9010_input {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:0px;
  5809. height:0px;
  5810. opacity:0;
  5811. }
  5812. #u9012_img {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:433px;
  5818. height:865px;
  5819. }
  5820. #u9012 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:1854px;
  5824. top:-1px;
  5825. width:433px;
  5826. height:865px;
  5827. display:flex;
  5828. }
  5829. #u9012 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 2px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u9012_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u9013_div {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:375px;
  5848. height:40px;
  5849. background:inherit;
  5850. background-color:rgba(255, 255, 255, 1);
  5851. box-sizing:border-box;
  5852. border-width:1px;
  5853. border-style:solid;
  5854. border-color:rgba(215, 215, 215, 1);
  5855. border-left:0px;
  5856. border-top:0px;
  5857. border-right:0px;
  5858. border-radius:0px;
  5859. border-bottom-right-radius:0px;
  5860. border-bottom-left-radius:0px;
  5861. -moz-box-shadow:none;
  5862. -webkit-box-shadow:none;
  5863. box-shadow:none;
  5864. }
  5865. #u9013 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:1883px;
  5869. top:66px;
  5870. width:375px;
  5871. height:40px;
  5872. display:flex;
  5873. }
  5874. #u9013 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:2px 2px 2px 2px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u9013_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. visibility:hidden;
  5886. }
  5887. #u9014 {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:0px;
  5891. top:0px;
  5892. width:0px;
  5893. height:0px;
  5894. }
  5895. #u9015_div {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:0px;
  5899. top:0px;
  5900. width:88px;
  5901. height:32px;
  5902. background:inherit;
  5903. background-color:rgba(255, 255, 255, 1);
  5904. box-sizing:border-box;
  5905. border-width:1px;
  5906. border-style:solid;
  5907. border-color:rgba(242, 242, 242, 1);
  5908. border-radius:33px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. }
  5913. #u9015 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:2163px;
  5917. top:70px;
  5918. width:88px;
  5919. height:32px;
  5920. display:flex;
  5921. }
  5922. #u9015 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 2px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u9015_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u9016 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:0px;
  5941. height:0px;
  5942. }
  5943. #u9017_img {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:18px;
  5949. height:18px;
  5950. }
  5951. #u9017 {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:2226px;
  5955. top:77px;
  5956. width:18px;
  5957. height:18px;
  5958. display:flex;
  5959. }
  5960. #u9017 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:2px 2px 2px 2px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u9017_text {
  5968. border-width:0px;
  5969. word-wrap:break-word;
  5970. text-transform:none;
  5971. visibility:hidden;
  5972. }
  5973. #u9018_img {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:6px;
  5979. height:6px;
  5980. }
  5981. #u9018 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:2232px;
  5985. top:83px;
  5986. width:6px;
  5987. height:6px;
  5988. display:flex;
  5989. }
  5990. #u9018 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:2px 2px 2px 2px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u9018_text {
  5998. border-width:0px;
  5999. word-wrap:break-word;
  6000. text-transform:none;
  6001. visibility:hidden;
  6002. }
  6003. #u9019 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:0px;
  6009. height:0px;
  6010. }
  6011. #u9020_img {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:5px;
  6017. height:5px;
  6018. }
  6019. #u9020 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:2177px;
  6023. top:84px;
  6024. width:5px;
  6025. height:5px;
  6026. display:flex;
  6027. }
  6028. #u9020 .text {
  6029. position:absolute;
  6030. align-self:center;
  6031. padding:2px 2px 2px 2px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u9020_text {
  6036. border-width:0px;
  6037. word-wrap:break-word;
  6038. text-transform:none;
  6039. visibility:hidden;
  6040. }
  6041. #u9021_img {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:5px;
  6047. height:5px;
  6048. }
  6049. #u9021 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:2193px;
  6053. top:84px;
  6054. width:5px;
  6055. height:5px;
  6056. display:flex;
  6057. }
  6058. #u9021 .text {
  6059. position:absolute;
  6060. align-self:center;
  6061. padding:2px 2px 2px 2px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u9021_text {
  6066. border-width:0px;
  6067. word-wrap:break-word;
  6068. text-transform:none;
  6069. visibility:hidden;
  6070. }
  6071. #u9022_img {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:7px;
  6077. height:7px;
  6078. }
  6079. #u9022 {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:2184px;
  6083. top:83px;
  6084. width:7px;
  6085. height:7px;
  6086. display:flex;
  6087. }
  6088. #u9022 .text {
  6089. position:absolute;
  6090. align-self:center;
  6091. padding:2px 2px 2px 2px;
  6092. box-sizing:border-box;
  6093. width:100%;
  6094. }
  6095. #u9022_text {
  6096. border-width:0px;
  6097. word-wrap:break-word;
  6098. text-transform:none;
  6099. visibility:hidden;
  6100. }
  6101. #u9023_img {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:19px;
  6107. height:2px;
  6108. }
  6109. #u9023 {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:2201px;
  6113. top:86px;
  6114. width:18px;
  6115. height:1px;
  6116. display:flex;
  6117. -webkit-transform:rotate(90deg);
  6118. -moz-transform:rotate(90deg);
  6119. -ms-transform:rotate(90deg);
  6120. transform:rotate(90deg);
  6121. }
  6122. #u9023 .text {
  6123. position:absolute;
  6124. align-self:center;
  6125. padding:2px 2px 2px 2px;
  6126. box-sizing:border-box;
  6127. width:100%;
  6128. }
  6129. #u9023_text {
  6130. border-width:0px;
  6131. word-wrap:break-word;
  6132. text-transform:none;
  6133. visibility:hidden;
  6134. }
  6135. #u9024_img {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:0px;
  6139. top:0px;
  6140. width:375px;
  6141. height:44px;
  6142. }
  6143. #u9024 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:1883px;
  6147. top:23px;
  6148. width:375px;
  6149. height:44px;
  6150. display:flex;
  6151. }
  6152. #u9024 .text {
  6153. position:absolute;
  6154. align-self:center;
  6155. padding:2px 2px 2px 2px;
  6156. box-sizing:border-box;
  6157. width:100%;
  6158. }
  6159. #u9024_text {
  6160. border-width:0px;
  6161. word-wrap:break-word;
  6162. text-transform:none;
  6163. visibility:hidden;
  6164. }
  6165. #u9025_div {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:375px;
  6171. height:50px;
  6172. background:inherit;
  6173. background-color:rgba(255, 255, 255, 1);
  6174. box-sizing:border-box;
  6175. border-width:1px;
  6176. border-style:solid;
  6177. border-color:rgba(242, 242, 242, 1);
  6178. border-radius:26px;
  6179. border-top-left-radius:0px;
  6180. border-top-right-radius:0px;
  6181. -moz-box-shadow:none;
  6182. -webkit-box-shadow:none;
  6183. box-shadow:none;
  6184. }
  6185. #u9025 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:1883px;
  6189. top:787px;
  6190. width:375px;
  6191. height:50px;
  6192. display:flex;
  6193. }
  6194. #u9025 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 2px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u9025_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. visibility:hidden;
  6206. }
  6207. #u9026 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:0px;
  6213. height:0px;
  6214. }
  6215. #u9027_img {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:24px;
  6221. height:24px;
  6222. }
  6223. #u9027 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:1923px;
  6227. top:791px;
  6228. width:24px;
  6229. height:24px;
  6230. display:flex;
  6231. font-size:8px;
  6232. }
  6233. #u9027 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:2px 2px 2px 2px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u9027_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. }
  6245. #u9028_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:25px;
  6251. height:17px;
  6252. background:inherit;
  6253. background-color:rgba(255, 255, 255, 0);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:12px;
  6263. }
  6264. #u9028 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:1923px;
  6268. top:816px;
  6269. width:25px;
  6270. height:17px;
  6271. display:flex;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:12px;
  6276. }
  6277. #u9028 .text {
  6278. position:absolute;
  6279. align-self:flex-start;
  6280. padding:0px 0px 0px 0px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u9028_text {
  6285. border-width:0px;
  6286. white-space:nowrap;
  6287. text-transform:none;
  6288. }
  6289. #u9029 {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:0px;
  6295. height:0px;
  6296. }
  6297. #u9030_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:24px;
  6303. height:24px;
  6304. }
  6305. #u9030 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:2193px;
  6309. top:793px;
  6310. width:24px;
  6311. height:24px;
  6312. display:flex;
  6313. font-size:8px;
  6314. }
  6315. #u9030 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 2px 2px 2px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u9030_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. }
  6327. #u9031_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:25px;
  6333. height:17px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. border:none;
  6337. border-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:12px;
  6345. }
  6346. #u9031 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:2193px;
  6350. top:818px;
  6351. width:25px;
  6352. height:17px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. }
  6359. #u9031 .text {
  6360. position:absolute;
  6361. align-self:flex-start;
  6362. padding:0px 0px 0px 0px;
  6363. box-sizing:border-box;
  6364. width:100%;
  6365. }
  6366. #u9031_text {
  6367. border-width:0px;
  6368. white-space:nowrap;
  6369. text-transform:none;
  6370. }
  6371. #u9032_div {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:375px;
  6377. height:681px;
  6378. background:inherit;
  6379. background-color:rgba(242, 242, 242, 0.462745098039216);
  6380. border:none;
  6381. border-radius:0px;
  6382. -moz-box-shadow:none;
  6383. -webkit-box-shadow:none;
  6384. box-shadow:none;
  6385. }
  6386. #u9032 {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:1883px;
  6390. top:106px;
  6391. width:375px;
  6392. height:681px;
  6393. display:flex;
  6394. }
  6395. #u9032 .text {
  6396. position:absolute;
  6397. align-self:center;
  6398. padding:2px 2px 2px 2px;
  6399. box-sizing:border-box;
  6400. width:100%;
  6401. }
  6402. #u9032_text {
  6403. border-width:0px;
  6404. word-wrap:break-word;
  6405. text-transform:none;
  6406. visibility:hidden;
  6407. }
  6408. #u9033 {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:0px;
  6414. height:0px;
  6415. }
  6416. #u9034_img {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:24px;
  6422. height:24px;
  6423. }
  6424. #u9034 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:2105px;
  6428. top:791px;
  6429. width:24px;
  6430. height:24px;
  6431. display:flex;
  6432. font-size:8px;
  6433. }
  6434. #u9034 .text {
  6435. position:absolute;
  6436. align-self:center;
  6437. padding:2px 2px 2px 2px;
  6438. box-sizing:border-box;
  6439. width:100%;
  6440. }
  6441. #u9034_text {
  6442. border-width:0px;
  6443. word-wrap:break-word;
  6444. text-transform:none;
  6445. }
  6446. #u9035_div {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:37px;
  6452. height:17px;
  6453. background:inherit;
  6454. background-color:rgba(255, 255, 255, 0);
  6455. border:none;
  6456. border-radius:0px;
  6457. -moz-box-shadow:none;
  6458. -webkit-box-shadow:none;
  6459. box-shadow:none;
  6460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6461. font-weight:400;
  6462. font-style:normal;
  6463. font-size:12px;
  6464. }
  6465. #u9035 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:2099px;
  6469. top:816px;
  6470. width:37px;
  6471. height:17px;
  6472. display:flex;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:12px;
  6477. }
  6478. #u9035 .text {
  6479. position:absolute;
  6480. align-self:flex-start;
  6481. padding:0px 0px 0px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u9035_text {
  6486. border-width:0px;
  6487. white-space:nowrap;
  6488. text-transform:none;
  6489. }
  6490. #u9036 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:0px;
  6496. height:0px;
  6497. }
  6498. #u9037_img {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:0px;
  6502. top:0px;
  6503. width:24px;
  6504. height:24px;
  6505. }
  6506. #u9037 {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:2011px;
  6510. top:791px;
  6511. width:24px;
  6512. height:24px;
  6513. display:flex;
  6514. font-size:8px;
  6515. }
  6516. #u9037 .text {
  6517. position:absolute;
  6518. align-self:center;
  6519. padding:2px 2px 2px 2px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u9037_text {
  6524. border-width:0px;
  6525. word-wrap:break-word;
  6526. text-transform:none;
  6527. }
  6528. #u9038_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:37px;
  6534. height:17px;
  6535. background:inherit;
  6536. background-color:rgba(255, 255, 255, 0);
  6537. border:none;
  6538. border-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:12px;
  6546. }
  6547. #u9038 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:2005px;
  6551. top:816px;
  6552. width:37px;
  6553. height:17px;
  6554. display:flex;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:12px;
  6559. }
  6560. #u9038 .text {
  6561. position:absolute;
  6562. align-self:flex-start;
  6563. padding:0px 0px 0px 0px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u9038_text {
  6568. border-width:0px;
  6569. white-space:nowrap;
  6570. text-transform:none;
  6571. }
  6572. #u9039_div {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:375px;
  6578. height:734px;
  6579. background:inherit;
  6580. background-color:rgba(242, 242, 242, 1);
  6581. border:none;
  6582. border-top:0px;
  6583. border-radius:20px;
  6584. border-top-left-radius:0px;
  6585. border-top-right-radius:0px;
  6586. -moz-box-shadow:none;
  6587. -webkit-box-shadow:none;
  6588. box-shadow:none;
  6589. }
  6590. #u9039 {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:1883px;
  6594. top:105px;
  6595. width:375px;
  6596. height:734px;
  6597. display:flex;
  6598. }
  6599. #u9039 .text {
  6600. position:absolute;
  6601. align-self:center;
  6602. padding:2px 2px 2px 2px;
  6603. box-sizing:border-box;
  6604. width:100%;
  6605. }
  6606. #u9039_text {
  6607. border-width:0px;
  6608. word-wrap:break-word;
  6609. text-transform:none;
  6610. visibility:hidden;
  6611. }
  6612. #u9040 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:0px;
  6618. height:0px;
  6619. }
  6620. #u9041_img {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:11px;
  6626. height:18px;
  6627. }
  6628. #u9041 {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:1897px;
  6632. top:78px;
  6633. width:11px;
  6634. height:18px;
  6635. display:flex;
  6636. }
  6637. #u9041 .text {
  6638. position:absolute;
  6639. align-self:center;
  6640. padding:2px 2px 2px 2px;
  6641. box-sizing:border-box;
  6642. width:100%;
  6643. }
  6644. #u9041_text {
  6645. border-width:0px;
  6646. word-wrap:break-word;
  6647. text-transform:none;
  6648. visibility:hidden;
  6649. }
  6650. #u9042_div {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:57px;
  6656. height:30px;
  6657. background:inherit;
  6658. background-color:rgba(255, 255, 255, 0);
  6659. border:none;
  6660. border-left:0px;
  6661. border-top:0px;
  6662. border-right:0px;
  6663. border-radius:0px;
  6664. border-bottom-right-radius:0px;
  6665. border-bottom-left-radius:0px;
  6666. -moz-box-shadow:none;
  6667. -webkit-box-shadow:none;
  6668. box-shadow:none;
  6669. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6670. font-weight:500;
  6671. font-style:normal;
  6672. font-size:14px;
  6673. line-height:30px;
  6674. }
  6675. #u9042 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:2029px;
  6679. top:74px;
  6680. width:57px;
  6681. height:30px;
  6682. display:flex;
  6683. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6684. font-weight:500;
  6685. font-style:normal;
  6686. font-size:14px;
  6687. line-height:30px;
  6688. }
  6689. #u9042 .text {
  6690. position:absolute;
  6691. align-self:flex-start;
  6692. padding:0px 0px 0px 0px;
  6693. box-sizing:border-box;
  6694. width:100%;
  6695. }
  6696. #u9042_text {
  6697. border-width:0px;
  6698. white-space:nowrap;
  6699. text-transform:none;
  6700. }
  6701. #u9043_div {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:375px;
  6707. height:60px;
  6708. background:inherit;
  6709. background-color:rgba(255, 255, 255, 1);
  6710. border:none;
  6711. border-top:0px;
  6712. border-radius:22px;
  6713. border-top-left-radius:0px;
  6714. border-top-right-radius:0px;
  6715. -moz-box-shadow:none;
  6716. -webkit-box-shadow:none;
  6717. box-shadow:none;
  6718. }
  6719. #u9043 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:1883px;
  6723. top:779px;
  6724. width:375px;
  6725. height:60px;
  6726. display:flex;
  6727. }
  6728. #u9043 .text {
  6729. position:absolute;
  6730. align-self:center;
  6731. padding:2px 2px 2px 2px;
  6732. box-sizing:border-box;
  6733. width:100%;
  6734. }
  6735. #u9043_text {
  6736. border-width:0px;
  6737. word-wrap:break-word;
  6738. text-transform:none;
  6739. visibility:hidden;
  6740. }
  6741. #u9044_div {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:0px;
  6745. top:0px;
  6746. width:100px;
  6747. height:40px;
  6748. background:inherit;
  6749. background-color:rgba(0, 137, 254, 1);
  6750. border:none;
  6751. border-radius:82px;
  6752. -moz-box-shadow:none;
  6753. -webkit-box-shadow:none;
  6754. box-shadow:none;
  6755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6756. font-weight:400;
  6757. font-style:normal;
  6758. font-size:14px;
  6759. color:#FFFFFF;
  6760. }
  6761. #u9044 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:2138px;
  6765. top:789px;
  6766. width:100px;
  6767. height:40px;
  6768. display:flex;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:14px;
  6773. color:#FFFFFF;
  6774. }
  6775. #u9044 .text {
  6776. position:absolute;
  6777. align-self:center;
  6778. padding:2px 2px 2px 2px;
  6779. box-sizing:border-box;
  6780. width:100%;
  6781. }
  6782. #u9044_text {
  6783. border-width:0px;
  6784. word-wrap:break-word;
  6785. text-transform:none;
  6786. }
  6787. #u9045_div {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:0px;
  6791. top:0px;
  6792. width:103px;
  6793. height:30px;
  6794. background:inherit;
  6795. background-color:rgba(255, 255, 255, 0);
  6796. border:none;
  6797. border-left:0px;
  6798. border-top:0px;
  6799. border-right:0px;
  6800. border-radius:0px;
  6801. border-bottom-right-radius:0px;
  6802. border-bottom-left-radius:0px;
  6803. -moz-box-shadow:none;
  6804. -webkit-box-shadow:none;
  6805. box-shadow:none;
  6806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:12px;
  6810. line-height:30px;
  6811. }
  6812. #u9045 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:1914px;
  6816. top:794px;
  6817. width:103px;
  6818. height:30px;
  6819. display:flex;
  6820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:12px;
  6824. line-height:30px;
  6825. }
  6826. #u9045 .text {
  6827. position:absolute;
  6828. align-self:flex-start;
  6829. padding:0px 0px 0px 0px;
  6830. box-sizing:border-box;
  6831. width:100%;
  6832. }
  6833. #u9045_text {
  6834. border-width:0px;
  6835. white-space:nowrap;
  6836. text-transform:none;
  6837. }
  6838. #u9046 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:0px;
  6842. top:0px;
  6843. width:0px;
  6844. height:0px;
  6845. }
  6846. #u9047_img {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:0px;
  6850. top:0px;
  6851. width:375px;
  6852. height:180px;
  6853. }
  6854. #u9047 {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:1883px;
  6858. top:145px;
  6859. width:375px;
  6860. height:180px;
  6861. display:flex;
  6862. }
  6863. #u9047 .text {
  6864. position:absolute;
  6865. align-self:center;
  6866. padding:2px 2px 2px 2px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u9047_text {
  6871. border-width:0px;
  6872. word-wrap:break-word;
  6873. text-transform:none;
  6874. visibility:hidden;
  6875. }
  6876. #u9048_div {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:239px;
  6882. height:30px;
  6883. background:inherit;
  6884. background-color:rgba(255, 255, 255, 0);
  6885. border:none;
  6886. border-left:0px;
  6887. border-top:0px;
  6888. border-right:0px;
  6889. border-radius:0px;
  6890. border-bottom-right-radius:0px;
  6891. border-bottom-left-radius:0px;
  6892. -moz-box-shadow:none;
  6893. -webkit-box-shadow:none;
  6894. box-shadow:none;
  6895. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6896. font-weight:500;
  6897. font-style:normal;
  6898. font-size:14px;
  6899. line-height:30px;
  6900. }
  6901. #u9048 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:1919px;
  6905. top:180px;
  6906. width:239px;
  6907. height:30px;
  6908. display:flex;
  6909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6910. font-weight:500;
  6911. font-style:normal;
  6912. font-size:14px;
  6913. line-height:30px;
  6914. }
  6915. #u9048 .text {
  6916. position:absolute;
  6917. align-self:flex-start;
  6918. padding:0px 0px 0px 0px;
  6919. box-sizing:border-box;
  6920. width:100%;
  6921. }
  6922. #u9048_text {
  6923. border-width:0px;
  6924. white-space:nowrap;
  6925. text-transform:none;
  6926. }
  6927. #u9049_div {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:113px;
  6933. height:100px;
  6934. background:inherit;
  6935. background-color:rgba(255, 255, 255, 0);
  6936. border:none;
  6937. border-left:0px;
  6938. border-top:0px;
  6939. border-right:0px;
  6940. border-radius:0px;
  6941. border-bottom-right-radius:0px;
  6942. border-bottom-left-radius:0px;
  6943. -moz-box-shadow:none;
  6944. -webkit-box-shadow:none;
  6945. box-shadow:none;
  6946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6947. font-weight:400;
  6948. font-style:normal;
  6949. font-size:12px;
  6950. color:#7F7F7F;
  6951. line-height:25px;
  6952. }
  6953. #u9049 {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:1919px;
  6957. top:210px;
  6958. width:113px;
  6959. height:100px;
  6960. display:flex;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:12px;
  6965. color:#7F7F7F;
  6966. line-height:25px;
  6967. }
  6968. #u9049 .text {
  6969. position:absolute;
  6970. align-self:flex-start;
  6971. padding:0px 0px 0px 0px;
  6972. box-sizing:border-box;
  6973. width:100%;
  6974. }
  6975. #u9049_text {
  6976. border-width:0px;
  6977. white-space:nowrap;
  6978. text-transform:none;
  6979. }
  6980. #u9050_div {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:71px;
  6986. height:25px;
  6987. background:inherit;
  6988. background-color:rgba(255, 255, 255, 0);
  6989. border:none;
  6990. border-left:0px;
  6991. border-top:0px;
  6992. border-right:0px;
  6993. border-radius:0px;
  6994. border-bottom-right-radius:0px;
  6995. border-bottom-left-radius:0px;
  6996. -moz-box-shadow:none;
  6997. -webkit-box-shadow:none;
  6998. box-shadow:none;
  6999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. text-align:right;
  7003. }
  7004. #u9050 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:2167px;
  7008. top:210px;
  7009. width:71px;
  7010. height:25px;
  7011. display:flex;
  7012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7013. font-weight:400;
  7014. font-style:normal;
  7015. text-align:right;
  7016. }
  7017. #u9050 .text {
  7018. position:absolute;
  7019. align-self:flex-start;
  7020. padding:0px 0px 0px 0px;
  7021. box-sizing:border-box;
  7022. width:100%;
  7023. }
  7024. #u9050_text {
  7025. border-width:0px;
  7026. white-space:nowrap;
  7027. text-transform:none;
  7028. }
  7029. #u9051 {
  7030. border-width:0px;
  7031. position:absolute;
  7032. left:0px;
  7033. top:0px;
  7034. width:0px;
  7035. height:0px;
  7036. }
  7037. #u9052_div {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:355px;
  7043. height:30px;
  7044. background:inherit;
  7045. background-color:rgba(255, 255, 255, 0);
  7046. box-sizing:border-box;
  7047. border-width:1px;
  7048. border-style:solid;
  7049. border-color:rgba(242, 242, 242, 1);
  7050. border-left:0px;
  7051. border-top:0px;
  7052. border-right:0px;
  7053. border-radius:0px;
  7054. border-bottom-right-radius:0px;
  7055. border-bottom-left-radius:0px;
  7056. -moz-box-shadow:none;
  7057. -webkit-box-shadow:none;
  7058. box-shadow:none;
  7059. }
  7060. #u9052 {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:1903px;
  7064. top:145px;
  7065. width:355px;
  7066. height:30px;
  7067. display:flex;
  7068. }
  7069. #u9052 .text {
  7070. position:absolute;
  7071. align-self:center;
  7072. padding:2px 2px 2px 2px;
  7073. box-sizing:border-box;
  7074. width:100%;
  7075. }
  7076. #u9052_text {
  7077. border-width:0px;
  7078. word-wrap:break-word;
  7079. text-transform:none;
  7080. visibility:hidden;
  7081. }
  7082. #u9053_div {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:97px;
  7088. height:24px;
  7089. background:inherit;
  7090. background-color:rgba(255, 255, 255, 0);
  7091. border:none;
  7092. border-left:0px;
  7093. border-top:0px;
  7094. border-right:0px;
  7095. border-radius:0px;
  7096. border-bottom-right-radius:0px;
  7097. border-bottom-left-radius:0px;
  7098. -moz-box-shadow:none;
  7099. -webkit-box-shadow:none;
  7100. box-shadow:none;
  7101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7102. font-weight:400;
  7103. font-style:normal;
  7104. font-size:10px;
  7105. color:#7F7F7F;
  7106. line-height:24px;
  7107. }
  7108. #u9053 {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:1913px;
  7112. top:148px;
  7113. width:97px;
  7114. height:24px;
  7115. display:flex;
  7116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7117. font-weight:400;
  7118. font-style:normal;
  7119. font-size:10px;
  7120. color:#7F7F7F;
  7121. line-height:24px;
  7122. }
  7123. #u9053 .text {
  7124. position:absolute;
  7125. align-self:flex-start;
  7126. padding:0px 0px 0px 0px;
  7127. box-sizing:border-box;
  7128. width:100%;
  7129. }
  7130. #u9053_text {
  7131. border-width:0px;
  7132. white-space:nowrap;
  7133. text-transform:none;
  7134. }
  7135. #u9054_div {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:100px;
  7141. height:24px;
  7142. background:inherit;
  7143. background-color:rgba(255, 255, 255, 0);
  7144. border:none;
  7145. border-left:0px;
  7146. border-top:0px;
  7147. border-right:0px;
  7148. border-radius:0px;
  7149. border-bottom-right-radius:0px;
  7150. border-bottom-left-radius:0px;
  7151. -moz-box-shadow:none;
  7152. -webkit-box-shadow:none;
  7153. box-shadow:none;
  7154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7155. font-weight:400;
  7156. font-style:normal;
  7157. font-size:10px;
  7158. color:#555555;
  7159. text-align:right;
  7160. line-height:24px;
  7161. }
  7162. #u9054 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:2148px;
  7166. top:148px;
  7167. width:100px;
  7168. height:24px;
  7169. display:flex;
  7170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7171. font-weight:400;
  7172. font-style:normal;
  7173. font-size:10px;
  7174. color:#555555;
  7175. text-align:right;
  7176. line-height:24px;
  7177. }
  7178. #u9054 .text {
  7179. position:absolute;
  7180. align-self:flex-start;
  7181. padding:0px 0px 0px 0px;
  7182. box-sizing:border-box;
  7183. width:100%;
  7184. }
  7185. #u9054_text {
  7186. border-width:0px;
  7187. white-space:nowrap;
  7188. text-transform:none;
  7189. }
  7190. #u9055 label {
  7191. left:0px;
  7192. width:100%;
  7193. }
  7194. #u9055_img {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:0px;
  7199. width:12px;
  7200. height:12px;
  7201. }
  7202. #u9055 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:1892px;
  7206. top:210px;
  7207. width:30px;
  7208. height:16px;
  7209. display:flex;
  7210. }
  7211. #u9055 .text {
  7212. position:absolute;
  7213. align-self:center;
  7214. padding:0px 2px 0px 2px;
  7215. box-sizing:border-box;
  7216. }
  7217. #u9055_img.selected {
  7218. }
  7219. #u9055.selected {
  7220. }
  7221. #u9055_img.disabled {
  7222. }
  7223. #u9055.disabled {
  7224. }
  7225. #u9055_img.selectedDisabled {
  7226. }
  7227. #u9055.selectedDisabled {
  7228. }
  7229. #u9055_text {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:14px;
  7233. top:0px;
  7234. width:14px;
  7235. word-wrap:break-word;
  7236. text-transform:none;
  7237. visibility:hidden;
  7238. }
  7239. #u9055_input {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:0px;
  7243. top:0px;
  7244. width:0px;
  7245. height:0px;
  7246. opacity:0;
  7247. }
  7248. #u9056_div {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:0px;
  7252. top:0px;
  7253. width:375px;
  7254. height:40px;
  7255. background:inherit;
  7256. background-color:rgba(255, 255, 0, 0.0980392156862745);
  7257. border:none;
  7258. border-left:0px;
  7259. border-top:0px;
  7260. border-right:0px;
  7261. border-radius:0px;
  7262. border-bottom-right-radius:0px;
  7263. border-bottom-left-radius:0px;
  7264. -moz-box-shadow:none;
  7265. -webkit-box-shadow:none;
  7266. box-shadow:none;
  7267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:12px;
  7271. color:#F59A23;
  7272. }
  7273. #u9056 {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:1417px;
  7277. top:106px;
  7278. width:375px;
  7279. height:40px;
  7280. display:flex;
  7281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. font-size:12px;
  7285. color:#F59A23;
  7286. }
  7287. #u9056 .text {
  7288. position:absolute;
  7289. align-self:center;
  7290. padding:0px 10px 0px 10px;
  7291. box-sizing:border-box;
  7292. width:100%;
  7293. }
  7294. #u9056_text {
  7295. border-width:0px;
  7296. word-wrap:break-word;
  7297. text-transform:none;
  7298. }
  7299. #u9057_div {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:375px;
  7305. height:40px;
  7306. background:inherit;
  7307. background-color:rgba(255, 255, 0, 0.0980392156862745);
  7308. border:none;
  7309. border-left:0px;
  7310. border-top:0px;
  7311. border-right:0px;
  7312. border-radius:0px;
  7313. border-bottom-right-radius:0px;
  7314. border-bottom-left-radius:0px;
  7315. -moz-box-shadow:none;
  7316. -webkit-box-shadow:none;
  7317. box-shadow:none;
  7318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:12px;
  7322. color:#F59A23;
  7323. }
  7324. #u9057 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:1883px;
  7328. top:106px;
  7329. width:375px;
  7330. height:40px;
  7331. display:flex;
  7332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:12px;
  7336. color:#F59A23;
  7337. }
  7338. #u9057 .text {
  7339. position:absolute;
  7340. align-self:center;
  7341. padding:0px 10px 0px 10px;
  7342. box-sizing:border-box;
  7343. width:100%;
  7344. }
  7345. #u9057_text {
  7346. border-width:0px;
  7347. word-wrap:break-word;
  7348. text-transform:none;
  7349. }
  7350. #u9058_div {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:0px;
  7354. top:0px;
  7355. width:375px;
  7356. height:40px;
  7357. background:inherit;
  7358. background-color:rgba(255, 255, 0, 0.0980392156862745);
  7359. border:none;
  7360. border-left:0px;
  7361. border-top:0px;
  7362. border-right:0px;
  7363. border-radius:0px;
  7364. border-bottom-right-radius:0px;
  7365. border-bottom-left-radius:0px;
  7366. -moz-box-shadow:none;
  7367. -webkit-box-shadow:none;
  7368. box-shadow:none;
  7369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7370. font-weight:400;
  7371. font-style:normal;
  7372. font-size:12px;
  7373. color:#F59A23;
  7374. }
  7375. #u9058 {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:954px;
  7379. top:106px;
  7380. width:375px;
  7381. height:40px;
  7382. display:flex;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:12px;
  7387. color:#F59A23;
  7388. }
  7389. #u9058 .text {
  7390. position:absolute;
  7391. align-self:center;
  7392. padding:0px 10px 0px 10px;
  7393. box-sizing:border-box;
  7394. width:100%;
  7395. }
  7396. #u9058_text {
  7397. border-width:0px;
  7398. word-wrap:break-word;
  7399. text-transform:none;
  7400. }
  7401. #u9059_div {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:375px;
  7407. height:40px;
  7408. background:inherit;
  7409. background-color:rgba(255, 255, 0, 0.0980392156862745);
  7410. border:none;
  7411. border-left:0px;
  7412. border-top:0px;
  7413. border-right:0px;
  7414. border-radius:0px;
  7415. border-bottom-right-radius:0px;
  7416. border-bottom-left-radius:0px;
  7417. -moz-box-shadow:none;
  7418. -webkit-box-shadow:none;
  7419. box-shadow:none;
  7420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7421. font-weight:400;
  7422. font-style:normal;
  7423. font-size:12px;
  7424. color:#F59A23;
  7425. }
  7426. #u9059 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:491px;
  7430. top:106px;
  7431. width:375px;
  7432. height:40px;
  7433. display:flex;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. font-size:12px;
  7438. color:#F59A23;
  7439. }
  7440. #u9059 .text {
  7441. position:absolute;
  7442. align-self:center;
  7443. padding:0px 10px 0px 10px;
  7444. box-sizing:border-box;
  7445. width:100%;
  7446. }
  7447. #u9059_text {
  7448. border-width:0px;
  7449. word-wrap:break-word;
  7450. text-transform:none;
  7451. }
  7452. #u9060_div {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:0px;
  7456. top:0px;
  7457. width:375px;
  7458. height:40px;
  7459. background:inherit;
  7460. background-color:rgba(255, 255, 0, 0.0980392156862745);
  7461. border:none;
  7462. border-left:0px;
  7463. border-top:0px;
  7464. border-right:0px;
  7465. border-radius:0px;
  7466. border-bottom-right-radius:0px;
  7467. border-bottom-left-radius:0px;
  7468. -moz-box-shadow:none;
  7469. -webkit-box-shadow:none;
  7470. box-shadow:none;
  7471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7472. font-weight:400;
  7473. font-style:normal;
  7474. font-size:12px;
  7475. color:#F59A23;
  7476. }
  7477. #u9060 {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:29px;
  7481. top:106px;
  7482. width:375px;
  7483. height:40px;
  7484. display:flex;
  7485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:12px;
  7489. color:#F59A23;
  7490. }
  7491. #u9060 .text {
  7492. position:absolute;
  7493. align-self:center;
  7494. padding:0px 10px 0px 10px;
  7495. box-sizing:border-box;
  7496. width:100%;
  7497. }
  7498. #u9060_text {
  7499. border-width:0px;
  7500. word-wrap:break-word;
  7501. text-transform:none;
  7502. }
  7503. #u9061 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:0px;
  7509. height:0px;
  7510. }
  7511. #u9062_img {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:0px;
  7515. top:0px;
  7516. width:375px;
  7517. height:150px;
  7518. }
  7519. #u9062 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:29px;
  7523. top:286px;
  7524. width:375px;
  7525. height:150px;
  7526. display:flex;
  7527. }
  7528. #u9062 .text {
  7529. position:absolute;
  7530. align-self:center;
  7531. padding:2px 2px 2px 2px;
  7532. box-sizing:border-box;
  7533. width:100%;
  7534. }
  7535. #u9062_text {
  7536. border-width:0px;
  7537. word-wrap:break-word;
  7538. text-transform:none;
  7539. visibility:hidden;
  7540. }
  7541. #u9063_div {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:253px;
  7547. height:30px;
  7548. background:inherit;
  7549. background-color:rgba(255, 255, 255, 0);
  7550. border:none;
  7551. border-left:0px;
  7552. border-top:0px;
  7553. border-right:0px;
  7554. border-radius:0px;
  7555. border-bottom-right-radius:0px;
  7556. border-bottom-left-radius:0px;
  7557. -moz-box-shadow:none;
  7558. -webkit-box-shadow:none;
  7559. box-shadow:none;
  7560. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7561. font-weight:500;
  7562. font-style:normal;
  7563. font-size:14px;
  7564. line-height:30px;
  7565. }
  7566. #u9063 {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:65px;
  7570. top:321px;
  7571. width:253px;
  7572. height:30px;
  7573. display:flex;
  7574. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7575. font-weight:500;
  7576. font-style:normal;
  7577. font-size:14px;
  7578. line-height:30px;
  7579. }
  7580. #u9063 .text {
  7581. position:absolute;
  7582. align-self:flex-start;
  7583. padding:0px 0px 0px 0px;
  7584. box-sizing:border-box;
  7585. width:100%;
  7586. }
  7587. #u9063_text {
  7588. border-width:0px;
  7589. white-space:nowrap;
  7590. text-transform:none;
  7591. }
  7592. #u9064_div {
  7593. border-width:0px;
  7594. position:absolute;
  7595. left:0px;
  7596. top:0px;
  7597. width:131px;
  7598. height:75px;
  7599. background:inherit;
  7600. background-color:rgba(255, 255, 255, 0);
  7601. border:none;
  7602. border-left:0px;
  7603. border-top:0px;
  7604. border-right:0px;
  7605. border-radius:0px;
  7606. border-bottom-right-radius:0px;
  7607. border-bottom-left-radius:0px;
  7608. -moz-box-shadow:none;
  7609. -webkit-box-shadow:none;
  7610. box-shadow:none;
  7611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7612. font-weight:400;
  7613. font-style:normal;
  7614. font-size:12px;
  7615. color:#7F7F7F;
  7616. line-height:25px;
  7617. }
  7618. #u9064 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:65px;
  7622. top:351px;
  7623. width:131px;
  7624. height:75px;
  7625. display:flex;
  7626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7627. font-weight:400;
  7628. font-style:normal;
  7629. font-size:12px;
  7630. color:#7F7F7F;
  7631. line-height:25px;
  7632. }
  7633. #u9064 .text {
  7634. position:absolute;
  7635. align-self:flex-start;
  7636. padding:0px 0px 0px 0px;
  7637. box-sizing:border-box;
  7638. width:100%;
  7639. }
  7640. #u9064_text {
  7641. border-width:0px;
  7642. white-space:nowrap;
  7643. text-transform:none;
  7644. }
  7645. #u9065_div {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:57px;
  7651. height:25px;
  7652. background:inherit;
  7653. background-color:rgba(255, 255, 255, 0);
  7654. border:none;
  7655. border-left:0px;
  7656. border-top:0px;
  7657. border-right:0px;
  7658. border-radius:0px;
  7659. border-bottom-right-radius:0px;
  7660. border-bottom-left-radius:0px;
  7661. -moz-box-shadow:none;
  7662. -webkit-box-shadow:none;
  7663. box-shadow:none;
  7664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7665. font-weight:400;
  7666. font-style:normal;
  7667. text-align:right;
  7668. }
  7669. #u9065 {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:327px;
  7673. top:351px;
  7674. width:57px;
  7675. height:25px;
  7676. display:flex;
  7677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. text-align:right;
  7681. }
  7682. #u9065 .text {
  7683. position:absolute;
  7684. align-self:flex-start;
  7685. padding:0px 0px 0px 0px;
  7686. box-sizing:border-box;
  7687. width:100%;
  7688. }
  7689. #u9065_text {
  7690. border-width:0px;
  7691. white-space:nowrap;
  7692. text-transform:none;
  7693. }
  7694. #u9066 {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:0px;
  7698. top:0px;
  7699. width:0px;
  7700. height:0px;
  7701. }
  7702. #u9067_div {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:355px;
  7708. height:30px;
  7709. background:inherit;
  7710. background-color:rgba(255, 255, 255, 0);
  7711. box-sizing:border-box;
  7712. border-width:1px;
  7713. border-style:solid;
  7714. border-color:rgba(242, 242, 242, 1);
  7715. border-left:0px;
  7716. border-top:0px;
  7717. border-right:0px;
  7718. border-radius:0px;
  7719. border-bottom-right-radius:0px;
  7720. border-bottom-left-radius:0px;
  7721. -moz-box-shadow:none;
  7722. -webkit-box-shadow:none;
  7723. box-shadow:none;
  7724. }
  7725. #u9067 {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:49px;
  7729. top:286px;
  7730. width:355px;
  7731. height:30px;
  7732. display:flex;
  7733. }
  7734. #u9067 .text {
  7735. position:absolute;
  7736. align-self:center;
  7737. padding:2px 2px 2px 2px;
  7738. box-sizing:border-box;
  7739. width:100%;
  7740. }
  7741. #u9067_text {
  7742. border-width:0px;
  7743. word-wrap:break-word;
  7744. text-transform:none;
  7745. visibility:hidden;
  7746. }
  7747. #u9068_div {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:97px;
  7753. height:24px;
  7754. background:inherit;
  7755. background-color:rgba(255, 255, 255, 0);
  7756. border:none;
  7757. border-left:0px;
  7758. border-top:0px;
  7759. border-right:0px;
  7760. border-radius:0px;
  7761. border-bottom-right-radius:0px;
  7762. border-bottom-left-radius:0px;
  7763. -moz-box-shadow:none;
  7764. -webkit-box-shadow:none;
  7765. box-shadow:none;
  7766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7767. font-weight:400;
  7768. font-style:normal;
  7769. font-size:10px;
  7770. color:#7F7F7F;
  7771. line-height:24px;
  7772. }
  7773. #u9068 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:59px;
  7777. top:289px;
  7778. width:97px;
  7779. height:24px;
  7780. display:flex;
  7781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7782. font-weight:400;
  7783. font-style:normal;
  7784. font-size:10px;
  7785. color:#7F7F7F;
  7786. line-height:24px;
  7787. }
  7788. #u9068 .text {
  7789. position:absolute;
  7790. align-self:flex-start;
  7791. padding:0px 0px 0px 0px;
  7792. box-sizing:border-box;
  7793. width:100%;
  7794. }
  7795. #u9068_text {
  7796. border-width:0px;
  7797. white-space:nowrap;
  7798. text-transform:none;
  7799. }
  7800. #u9069_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:100px;
  7806. height:24px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 0);
  7809. border:none;
  7810. border-left:0px;
  7811. border-top:0px;
  7812. border-right:0px;
  7813. border-radius:0px;
  7814. border-bottom-right-radius:0px;
  7815. border-bottom-left-radius:0px;
  7816. -moz-box-shadow:none;
  7817. -webkit-box-shadow:none;
  7818. box-shadow:none;
  7819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7820. font-weight:400;
  7821. font-style:normal;
  7822. font-size:10px;
  7823. color:#555555;
  7824. text-align:right;
  7825. line-height:24px;
  7826. }
  7827. #u9069 {
  7828. border-width:0px;
  7829. position:absolute;
  7830. left:294px;
  7831. top:289px;
  7832. width:100px;
  7833. height:24px;
  7834. display:flex;
  7835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7836. font-weight:400;
  7837. font-style:normal;
  7838. font-size:10px;
  7839. color:#555555;
  7840. text-align:right;
  7841. line-height:24px;
  7842. }
  7843. #u9069 .text {
  7844. position:absolute;
  7845. align-self:flex-start;
  7846. padding:0px 0px 0px 0px;
  7847. box-sizing:border-box;
  7848. width:100%;
  7849. }
  7850. #u9069_text {
  7851. border-width:0px;
  7852. white-space:nowrap;
  7853. text-transform:none;
  7854. }
  7855. #u9070 label {
  7856. left:0px;
  7857. width:100%;
  7858. }
  7859. #u9070_img {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:12px;
  7865. height:12px;
  7866. }
  7867. #u9070 {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:38px;
  7871. top:351px;
  7872. width:30px;
  7873. height:16px;
  7874. display:flex;
  7875. }
  7876. #u9070 .text {
  7877. position:absolute;
  7878. align-self:center;
  7879. padding:0px 2px 0px 2px;
  7880. box-sizing:border-box;
  7881. }
  7882. #u9070_img.selected {
  7883. }
  7884. #u9070.selected {
  7885. }
  7886. #u9070_img.disabled {
  7887. }
  7888. #u9070.disabled {
  7889. }
  7890. #u9070_img.selectedDisabled {
  7891. }
  7892. #u9070.selectedDisabled {
  7893. }
  7894. #u9070_text {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:14px;
  7898. top:0px;
  7899. width:14px;
  7900. word-wrap:break-word;
  7901. text-transform:none;
  7902. visibility:hidden;
  7903. }
  7904. #u9070_input {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:0px;
  7910. height:0px;
  7911. opacity:0;
  7912. }
  7913. #u9071_div {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:101px;
  7919. height:28px;
  7920. background:inherit;
  7921. background-color:rgba(255, 255, 255, 0);
  7922. border:none;
  7923. border-left:0px;
  7924. border-top:0px;
  7925. border-right:0px;
  7926. border-radius:0px;
  7927. border-bottom-right-radius:0px;
  7928. border-bottom-left-radius:0px;
  7929. -moz-box-shadow:none;
  7930. -webkit-box-shadow:none;
  7931. box-shadow:none;
  7932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:10px;
  7936. color:#F59A23;
  7937. text-align:right;
  7938. }
  7939. #u9071 {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:283px;
  7943. top:376px;
  7944. width:101px;
  7945. height:28px;
  7946. display:flex;
  7947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7948. font-weight:400;
  7949. font-style:normal;
  7950. font-size:10px;
  7951. color:#F59A23;
  7952. text-align:right;
  7953. }
  7954. #u9071 .text {
  7955. position:absolute;
  7956. align-self:flex-start;
  7957. padding:0px 0px 0px 0px;
  7958. box-sizing:border-box;
  7959. width:100%;
  7960. }
  7961. #u9071_text {
  7962. border-width:0px;
  7963. white-space:nowrap;
  7964. text-transform:none;
  7965. }
  7966. #u9072 {
  7967. border-width:0px;
  7968. position:absolute;
  7969. left:0px;
  7970. top:0px;
  7971. width:0px;
  7972. height:0px;
  7973. }
  7974. #u9073_img {
  7975. border-width:0px;
  7976. position:absolute;
  7977. left:0px;
  7978. top:0px;
  7979. width:375px;
  7980. height:150px;
  7981. }
  7982. #u9073 {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:29px;
  7986. top:437px;
  7987. width:375px;
  7988. height:150px;
  7989. display:flex;
  7990. }
  7991. #u9073 .text {
  7992. position:absolute;
  7993. align-self:center;
  7994. padding:2px 2px 2px 2px;
  7995. box-sizing:border-box;
  7996. width:100%;
  7997. }
  7998. #u9073_text {
  7999. border-width:0px;
  8000. word-wrap:break-word;
  8001. text-transform:none;
  8002. visibility:hidden;
  8003. }
  8004. #u9074_div {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:0px;
  8008. top:0px;
  8009. width:253px;
  8010. height:30px;
  8011. background:inherit;
  8012. background-color:rgba(255, 255, 255, 0);
  8013. border:none;
  8014. border-left:0px;
  8015. border-top:0px;
  8016. border-right:0px;
  8017. border-radius:0px;
  8018. border-bottom-right-radius:0px;
  8019. border-bottom-left-radius:0px;
  8020. -moz-box-shadow:none;
  8021. -webkit-box-shadow:none;
  8022. box-shadow:none;
  8023. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8024. font-weight:500;
  8025. font-style:normal;
  8026. font-size:14px;
  8027. line-height:30px;
  8028. }
  8029. #u9074 {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:65px;
  8033. top:472px;
  8034. width:253px;
  8035. height:30px;
  8036. display:flex;
  8037. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8038. font-weight:500;
  8039. font-style:normal;
  8040. font-size:14px;
  8041. line-height:30px;
  8042. }
  8043. #u9074 .text {
  8044. position:absolute;
  8045. align-self:flex-start;
  8046. padding:0px 0px 0px 0px;
  8047. box-sizing:border-box;
  8048. width:100%;
  8049. }
  8050. #u9074_text {
  8051. border-width:0px;
  8052. white-space:nowrap;
  8053. text-transform:none;
  8054. }
  8055. #u9075_div {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:0px;
  8059. top:0px;
  8060. width:131px;
  8061. height:75px;
  8062. background:inherit;
  8063. background-color:rgba(255, 255, 255, 0);
  8064. border:none;
  8065. border-left:0px;
  8066. border-top:0px;
  8067. border-right:0px;
  8068. border-radius:0px;
  8069. border-bottom-right-radius:0px;
  8070. border-bottom-left-radius:0px;
  8071. -moz-box-shadow:none;
  8072. -webkit-box-shadow:none;
  8073. box-shadow:none;
  8074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8075. font-weight:400;
  8076. font-style:normal;
  8077. font-size:12px;
  8078. color:#7F7F7F;
  8079. line-height:25px;
  8080. }
  8081. #u9075 {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:65px;
  8085. top:502px;
  8086. width:131px;
  8087. height:75px;
  8088. display:flex;
  8089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8090. font-weight:400;
  8091. font-style:normal;
  8092. font-size:12px;
  8093. color:#7F7F7F;
  8094. line-height:25px;
  8095. }
  8096. #u9075 .text {
  8097. position:absolute;
  8098. align-self:flex-start;
  8099. padding:0px 0px 0px 0px;
  8100. box-sizing:border-box;
  8101. width:100%;
  8102. }
  8103. #u9075_text {
  8104. border-width:0px;
  8105. white-space:nowrap;
  8106. text-transform:none;
  8107. }
  8108. #u9076_div {
  8109. border-width:0px;
  8110. position:absolute;
  8111. left:0px;
  8112. top:0px;
  8113. width:57px;
  8114. height:25px;
  8115. background:inherit;
  8116. background-color:rgba(255, 255, 255, 0);
  8117. border:none;
  8118. border-left:0px;
  8119. border-top:0px;
  8120. border-right:0px;
  8121. border-radius:0px;
  8122. border-bottom-right-radius:0px;
  8123. border-bottom-left-radius:0px;
  8124. -moz-box-shadow:none;
  8125. -webkit-box-shadow:none;
  8126. box-shadow:none;
  8127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8128. font-weight:400;
  8129. font-style:normal;
  8130. text-align:right;
  8131. }
  8132. #u9076 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:327px;
  8136. top:502px;
  8137. width:57px;
  8138. height:25px;
  8139. display:flex;
  8140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8141. font-weight:400;
  8142. font-style:normal;
  8143. text-align:right;
  8144. }
  8145. #u9076 .text {
  8146. position:absolute;
  8147. align-self:flex-start;
  8148. padding:0px 0px 0px 0px;
  8149. box-sizing:border-box;
  8150. width:100%;
  8151. }
  8152. #u9076_text {
  8153. border-width:0px;
  8154. white-space:nowrap;
  8155. text-transform:none;
  8156. }
  8157. #u9077 {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:0px;
  8163. height:0px;
  8164. }
  8165. #u9078_div {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:0px;
  8169. top:0px;
  8170. width:355px;
  8171. height:30px;
  8172. background:inherit;
  8173. background-color:rgba(255, 255, 255, 0);
  8174. box-sizing:border-box;
  8175. border-width:1px;
  8176. border-style:solid;
  8177. border-color:rgba(242, 242, 242, 1);
  8178. border-left:0px;
  8179. border-top:0px;
  8180. border-right:0px;
  8181. border-radius:0px;
  8182. border-bottom-right-radius:0px;
  8183. border-bottom-left-radius:0px;
  8184. -moz-box-shadow:none;
  8185. -webkit-box-shadow:none;
  8186. box-shadow:none;
  8187. }
  8188. #u9078 {
  8189. border-width:0px;
  8190. position:absolute;
  8191. left:49px;
  8192. top:437px;
  8193. width:355px;
  8194. height:30px;
  8195. display:flex;
  8196. }
  8197. #u9078 .text {
  8198. position:absolute;
  8199. align-self:center;
  8200. padding:2px 2px 2px 2px;
  8201. box-sizing:border-box;
  8202. width:100%;
  8203. }
  8204. #u9078_text {
  8205. border-width:0px;
  8206. word-wrap:break-word;
  8207. text-transform:none;
  8208. visibility:hidden;
  8209. }
  8210. #u9079_div {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:97px;
  8216. height:24px;
  8217. background:inherit;
  8218. background-color:rgba(255, 255, 255, 0);
  8219. border:none;
  8220. border-left:0px;
  8221. border-top:0px;
  8222. border-right:0px;
  8223. border-radius:0px;
  8224. border-bottom-right-radius:0px;
  8225. border-bottom-left-radius:0px;
  8226. -moz-box-shadow:none;
  8227. -webkit-box-shadow:none;
  8228. box-shadow:none;
  8229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8230. font-weight:400;
  8231. font-style:normal;
  8232. font-size:10px;
  8233. color:#7F7F7F;
  8234. line-height:24px;
  8235. }
  8236. #u9079 {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:59px;
  8240. top:440px;
  8241. width:97px;
  8242. height:24px;
  8243. display:flex;
  8244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:10px;
  8248. color:#7F7F7F;
  8249. line-height:24px;
  8250. }
  8251. #u9079 .text {
  8252. position:absolute;
  8253. align-self:flex-start;
  8254. padding:0px 0px 0px 0px;
  8255. box-sizing:border-box;
  8256. width:100%;
  8257. }
  8258. #u9079_text {
  8259. border-width:0px;
  8260. white-space:nowrap;
  8261. text-transform:none;
  8262. }
  8263. #u9080_div {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:0px;
  8267. top:0px;
  8268. width:100px;
  8269. height:24px;
  8270. background:inherit;
  8271. background-color:rgba(255, 255, 255, 0);
  8272. border:none;
  8273. border-left:0px;
  8274. border-top:0px;
  8275. border-right:0px;
  8276. border-radius:0px;
  8277. border-bottom-right-radius:0px;
  8278. border-bottom-left-radius:0px;
  8279. -moz-box-shadow:none;
  8280. -webkit-box-shadow:none;
  8281. box-shadow:none;
  8282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8283. font-weight:400;
  8284. font-style:normal;
  8285. font-size:10px;
  8286. color:#555555;
  8287. text-align:right;
  8288. line-height:24px;
  8289. }
  8290. #u9080 {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:294px;
  8294. top:440px;
  8295. width:100px;
  8296. height:24px;
  8297. display:flex;
  8298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8299. font-weight:400;
  8300. font-style:normal;
  8301. font-size:10px;
  8302. color:#555555;
  8303. text-align:right;
  8304. line-height:24px;
  8305. }
  8306. #u9080 .text {
  8307. position:absolute;
  8308. align-self:flex-start;
  8309. padding:0px 0px 0px 0px;
  8310. box-sizing:border-box;
  8311. width:100%;
  8312. }
  8313. #u9080_text {
  8314. border-width:0px;
  8315. white-space:nowrap;
  8316. text-transform:none;
  8317. }
  8318. #u9081 label {
  8319. left:0px;
  8320. width:100%;
  8321. }
  8322. #u9081_img {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:0px;
  8326. top:0px;
  8327. width:12px;
  8328. height:12px;
  8329. }
  8330. #u9081 {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:38px;
  8334. top:502px;
  8335. width:30px;
  8336. height:16px;
  8337. display:flex;
  8338. }
  8339. #u9081 .text {
  8340. position:absolute;
  8341. align-self:center;
  8342. padding:0px 2px 0px 2px;
  8343. box-sizing:border-box;
  8344. }
  8345. #u9081_img.selected {
  8346. }
  8347. #u9081.selected {
  8348. }
  8349. #u9081_img.disabled {
  8350. }
  8351. #u9081.disabled {
  8352. }
  8353. #u9081_img.selectedDisabled {
  8354. }
  8355. #u9081.selectedDisabled {
  8356. }
  8357. #u9081_text {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:14px;
  8361. top:0px;
  8362. width:14px;
  8363. word-wrap:break-word;
  8364. text-transform:none;
  8365. visibility:hidden;
  8366. }
  8367. #u9081_input {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:0px;
  8371. top:0px;
  8372. width:0px;
  8373. height:0px;
  8374. opacity:0;
  8375. }
  8376. #u9082_div {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:101px;
  8382. height:28px;
  8383. background:inherit;
  8384. background-color:rgba(255, 255, 255, 0);
  8385. border:none;
  8386. border-left:0px;
  8387. border-top:0px;
  8388. border-right:0px;
  8389. border-radius:0px;
  8390. border-bottom-right-radius:0px;
  8391. border-bottom-left-radius:0px;
  8392. -moz-box-shadow:none;
  8393. -webkit-box-shadow:none;
  8394. box-shadow:none;
  8395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8396. font-weight:400;
  8397. font-style:normal;
  8398. font-size:10px;
  8399. color:#F59A23;
  8400. text-align:right;
  8401. }
  8402. #u9082 {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:283px;
  8406. top:527px;
  8407. width:101px;
  8408. height:28px;
  8409. display:flex;
  8410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8411. font-weight:400;
  8412. font-style:normal;
  8413. font-size:10px;
  8414. color:#F59A23;
  8415. text-align:right;
  8416. }
  8417. #u9082 .text {
  8418. position:absolute;
  8419. align-self:flex-start;
  8420. padding:0px 0px 0px 0px;
  8421. box-sizing:border-box;
  8422. width:100%;
  8423. }
  8424. #u9082_text {
  8425. border-width:0px;
  8426. white-space:nowrap;
  8427. text-transform:none;
  8428. }