styles.css 116 KB

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