styles.css 116 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961
  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. #u99607_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. #u99607 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u99607 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u99607_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u99608_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. #u99608 {
  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. #u99608 .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. #u99608_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u99609_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. #u99609 {
  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. #u99609 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u99609_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u99610 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u99611_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u99611 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u99611 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u99611_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u99612_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. #u99612 {
  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. #u99612 .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. #u99612_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u99613_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. #u99613 {
  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. #u99613 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u99613_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u99614 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u99615_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u99615 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u99615 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u99615_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u99616_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u99616 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u99616 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u99616_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u99617 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u99618_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u99618 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u99618 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u99618_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u99619_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u99619 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u99619 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u99619_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u99620 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u99621_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u99621 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u99621 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u99621_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u99622_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u99622 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u99622 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u99622_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u99623 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u99624_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u99624 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u99624 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u99624_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u99625_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u99625 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u99625 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u99625_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u99626 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u99627_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u99627 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u99627 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u99627_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u99628_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u99628 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u99628 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u99628_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u99629 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u99630_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u99630 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u99630 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u99630_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u99631_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u99631 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u99631 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u99631_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u99632 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u99633_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u99633 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u99633 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u99633_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u99634_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u99634 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u99634 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u99634_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u99635 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u99636_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u99636 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u99636 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u99636_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u99637_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u99637 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u99637 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u99637_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u99638 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u99639_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u99639 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u99639 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u99639_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u99640_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u99640 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u99640 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u99640_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u99641_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u99641 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u99641 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u99641_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u99642_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u99642 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u99642 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u99642_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u99643_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u99643 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u99643 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u99643_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u99644_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u99644 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u99644 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u99644_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u99645 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u99646_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u99646 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u99646 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u99646_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u99647_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u99647 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u99647 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u99647_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u99648 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u99649_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u99649 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u99649 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u99649_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u99650_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u99650 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u99650 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u99650_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u99651 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u99652_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u99652_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u99652_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u99652 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u99652 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u99652_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u99652.disabled {
  1428. }
  1429. .u99652_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u99653_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u99653 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u99653 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u99653_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u99654_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u99654 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u99654 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u99654_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u99655_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u99655 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u99655 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u99655_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u99656_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1257px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u99656 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:333px;
  1557. top:50px;
  1558. width:1257px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u99656 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u99656_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u99657_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:73px;
  1581. height:50px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-left:0px;
  1586. border-top:0px;
  1587. border-right:0px;
  1588. border-radius:0px;
  1589. border-bottom-right-radius:0px;
  1590. border-bottom-left-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:18px;
  1598. line-height:40px;
  1599. }
  1600. #u99657 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:363px;
  1604. top:54px;
  1605. width:73px;
  1606. height:50px;
  1607. display:flex;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-weight:400;
  1610. font-style:normal;
  1611. font-size:18px;
  1612. line-height:40px;
  1613. }
  1614. #u99657 .text {
  1615. position:absolute;
  1616. align-self:center;
  1617. padding:0px 0px 0px 0px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u99657_text {
  1622. border-width:0px;
  1623. white-space:nowrap;
  1624. text-transform:none;
  1625. }
  1626. #u99658 {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:363px;
  1630. top:199px;
  1631. width:1206px;
  1632. height:426px;
  1633. }
  1634. #u99659_img {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:0px;
  1638. top:0px;
  1639. width:125px;
  1640. height:31px;
  1641. }
  1642. #u99659 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:125px;
  1648. height:31px;
  1649. display:flex;
  1650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1651. font-weight:400;
  1652. font-style:normal;
  1653. font-size:14px;
  1654. color:#FFFFFF;
  1655. }
  1656. #u99659 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:2px 2px 2px 2px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u99659_text {
  1664. border-width:0px;
  1665. word-wrap:break-word;
  1666. text-transform:none;
  1667. }
  1668. #u99660_img {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:126px;
  1674. height:31px;
  1675. }
  1676. #u99660 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:125px;
  1680. top:0px;
  1681. width:126px;
  1682. height:31px;
  1683. display:flex;
  1684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:14px;
  1688. color:#FFFFFF;
  1689. }
  1690. #u99660 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 2px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u99660_text {
  1698. border-width:0px;
  1699. word-wrap:break-word;
  1700. text-transform:none;
  1701. }
  1702. #u99661_img {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:125px;
  1708. height:31px;
  1709. }
  1710. #u99661 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:251px;
  1714. top:0px;
  1715. width:125px;
  1716. height:31px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. font-size:14px;
  1722. color:#FFFFFF;
  1723. }
  1724. #u99661 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:2px 2px 2px 2px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u99661_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. }
  1736. #u99662_img {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:151px;
  1742. height:31px;
  1743. }
  1744. #u99662 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:376px;
  1748. top:0px;
  1749. width:151px;
  1750. height:31px;
  1751. display:flex;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. color:#FFFFFF;
  1757. }
  1758. #u99662 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 2px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u99662_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. }
  1770. #u99663_img {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:151px;
  1776. height:31px;
  1777. }
  1778. #u99663 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:527px;
  1782. top:0px;
  1783. width:151px;
  1784. height:31px;
  1785. display:flex;
  1786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1787. font-weight:400;
  1788. font-style:normal;
  1789. font-size:14px;
  1790. color:#FFFFFF;
  1791. }
  1792. #u99663 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 2px 2px 2px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u99663_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. }
  1804. #u99664_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:134px;
  1810. height:31px;
  1811. }
  1812. #u99664 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:678px;
  1816. top:0px;
  1817. width:134px;
  1818. height:31px;
  1819. display:flex;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. color:#FFFFFF;
  1825. }
  1826. #u99664 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:2px 2px 2px 2px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u99664_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. }
  1838. #u99665_img {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:126px;
  1844. height:31px;
  1845. }
  1846. #u99665 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:812px;
  1850. top:0px;
  1851. width:126px;
  1852. height:31px;
  1853. display:flex;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. color:#FFFFFF;
  1859. }
  1860. #u99665 .text {
  1861. position:absolute;
  1862. align-self:center;
  1863. padding:2px 2px 2px 2px;
  1864. box-sizing:border-box;
  1865. width:100%;
  1866. }
  1867. #u99665_text {
  1868. border-width:0px;
  1869. word-wrap:break-word;
  1870. text-transform:none;
  1871. }
  1872. #u99666_img {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:133px;
  1878. height:31px;
  1879. }
  1880. #u99666 {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:938px;
  1884. top:0px;
  1885. width:133px;
  1886. height:31px;
  1887. display:flex;
  1888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:14px;
  1892. color:#FFFFFF;
  1893. }
  1894. #u99666 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:2px 2px 2px 2px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u99666_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. }
  1906. #u99667_img {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:135px;
  1912. height:31px;
  1913. }
  1914. #u99667 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:1071px;
  1918. top:0px;
  1919. width:135px;
  1920. height:31px;
  1921. display:flex;
  1922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:14px;
  1926. color:#FFFFFF;
  1927. }
  1928. #u99667 .text {
  1929. position:absolute;
  1930. align-self:center;
  1931. padding:2px 2px 2px 2px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u99667_text {
  1936. border-width:0px;
  1937. word-wrap:break-word;
  1938. text-transform:none;
  1939. }
  1940. #u99668_img {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:125px;
  1946. height:35px;
  1947. }
  1948. #u99668 {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:31px;
  1953. width:125px;
  1954. height:35px;
  1955. display:flex;
  1956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:14px;
  1960. }
  1961. #u99668 .text {
  1962. position:absolute;
  1963. align-self:center;
  1964. padding:2px 2px 2px 2px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u99668_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. visibility:hidden;
  1973. }
  1974. #u99669_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:126px;
  1980. height:35px;
  1981. }
  1982. #u99669 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:125px;
  1986. top:31px;
  1987. width:126px;
  1988. height:35px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:14px;
  1994. }
  1995. #u99669 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 2px 2px 2px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u99669_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. }
  2007. #u99670_img {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:125px;
  2013. height:35px;
  2014. }
  2015. #u99670 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:251px;
  2019. top:31px;
  2020. width:125px;
  2021. height:35px;
  2022. display:flex;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:14px;
  2027. }
  2028. #u99670 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:2px 2px 2px 2px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u99670_text {
  2036. border-width:0px;
  2037. word-wrap:break-word;
  2038. text-transform:none;
  2039. visibility:hidden;
  2040. }
  2041. #u99671_img {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:151px;
  2047. height:35px;
  2048. }
  2049. #u99671 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:376px;
  2053. top:31px;
  2054. width:151px;
  2055. height:35px;
  2056. display:flex;
  2057. font-size:14px;
  2058. }
  2059. #u99671 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 2px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u99671_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. }
  2071. #u99672_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:151px;
  2077. height:35px;
  2078. }
  2079. #u99672 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:527px;
  2083. top:31px;
  2084. width:151px;
  2085. height:35px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:14px;
  2091. }
  2092. #u99672 .text {
  2093. position:absolute;
  2094. align-self:center;
  2095. padding:2px 2px 2px 2px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u99672_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. visibility:hidden;
  2104. }
  2105. #u99673_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:134px;
  2111. height:35px;
  2112. }
  2113. #u99673 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:678px;
  2117. top:31px;
  2118. width:134px;
  2119. height:35px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:14px;
  2125. }
  2126. #u99673 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:2px 2px 2px 2px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u99673_text {
  2134. border-width:0px;
  2135. word-wrap:break-word;
  2136. text-transform:none;
  2137. visibility:hidden;
  2138. }
  2139. #u99674_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:126px;
  2145. height:35px;
  2146. }
  2147. #u99674 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:812px;
  2151. top:31px;
  2152. width:126px;
  2153. height:35px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:14px;
  2159. }
  2160. #u99674 .text {
  2161. position:absolute;
  2162. align-self:center;
  2163. padding:2px 2px 2px 2px;
  2164. box-sizing:border-box;
  2165. width:100%;
  2166. }
  2167. #u99674_text {
  2168. border-width:0px;
  2169. word-wrap:break-word;
  2170. text-transform:none;
  2171. }
  2172. #u99675_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:133px;
  2178. height:35px;
  2179. }
  2180. #u99675 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:938px;
  2184. top:31px;
  2185. width:133px;
  2186. height:35px;
  2187. display:flex;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:14px;
  2192. }
  2193. #u99675 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:2px 2px 2px 2px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u99675_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. visibility:hidden;
  2205. }
  2206. #u99676_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:135px;
  2212. height:35px;
  2213. }
  2214. #u99676 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:1071px;
  2218. top:31px;
  2219. width:135px;
  2220. height:35px;
  2221. display:flex;
  2222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:14px;
  2226. color:#1890FF;
  2227. }
  2228. #u99676 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 2px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u99676_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. }
  2240. #u99677_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:125px;
  2246. height:30px;
  2247. }
  2248. #u99677 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:66px;
  2253. width:125px;
  2254. height:30px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:14px;
  2260. }
  2261. #u99677 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 2px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u99677_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u99678_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:126px;
  2280. height:30px;
  2281. }
  2282. #u99678 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:125px;
  2286. top:66px;
  2287. width:126px;
  2288. height:30px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. }
  2295. #u99678 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u99678_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u99679_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:125px;
  2314. height:30px;
  2315. }
  2316. #u99679 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:251px;
  2320. top:66px;
  2321. width:125px;
  2322. height:30px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:14px;
  2328. }
  2329. #u99679 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 2px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u99679_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u99680_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:151px;
  2348. height:30px;
  2349. }
  2350. #u99680 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:376px;
  2354. top:66px;
  2355. width:151px;
  2356. height:30px;
  2357. display:flex;
  2358. font-size:14px;
  2359. }
  2360. #u99680 .text {
  2361. position:absolute;
  2362. align-self:center;
  2363. padding:2px 2px 2px 2px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u99680_text {
  2368. border-width:0px;
  2369. word-wrap:break-word;
  2370. text-transform:none;
  2371. visibility:hidden;
  2372. }
  2373. #u99681_img {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:151px;
  2379. height:30px;
  2380. }
  2381. #u99681 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:527px;
  2385. top:66px;
  2386. width:151px;
  2387. height:30px;
  2388. display:flex;
  2389. font-size:14px;
  2390. }
  2391. #u99681 .text {
  2392. position:absolute;
  2393. align-self:center;
  2394. padding:2px 2px 2px 2px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u99681_text {
  2399. border-width:0px;
  2400. word-wrap:break-word;
  2401. text-transform:none;
  2402. visibility:hidden;
  2403. }
  2404. #u99682_img {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:134px;
  2410. height:30px;
  2411. }
  2412. #u99682 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:678px;
  2416. top:66px;
  2417. width:134px;
  2418. height:30px;
  2419. display:flex;
  2420. font-size:14px;
  2421. }
  2422. #u99682 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u99682_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u99683_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:126px;
  2441. height:30px;
  2442. }
  2443. #u99683 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:812px;
  2447. top:66px;
  2448. width:126px;
  2449. height:30px;
  2450. display:flex;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:14px;
  2455. }
  2456. #u99683 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 2px 2px 2px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u99683_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. }
  2468. #u99684_img {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:133px;
  2474. height:30px;
  2475. }
  2476. #u99684 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:938px;
  2480. top:66px;
  2481. width:133px;
  2482. height:30px;
  2483. display:flex;
  2484. font-size:14px;
  2485. }
  2486. #u99684 .text {
  2487. position:absolute;
  2488. align-self:center;
  2489. padding:2px 2px 2px 2px;
  2490. box-sizing:border-box;
  2491. width:100%;
  2492. }
  2493. #u99684_text {
  2494. border-width:0px;
  2495. word-wrap:break-word;
  2496. text-transform:none;
  2497. visibility:hidden;
  2498. }
  2499. #u99685_img {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:135px;
  2505. height:30px;
  2506. }
  2507. #u99685 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:1071px;
  2511. top:66px;
  2512. width:135px;
  2513. height:30px;
  2514. display:flex;
  2515. font-size:14px;
  2516. }
  2517. #u99685 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:2px 2px 2px 2px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u99685_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. visibility:hidden;
  2529. }
  2530. #u99686_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:125px;
  2536. height:30px;
  2537. }
  2538. #u99686 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:96px;
  2543. width:125px;
  2544. height:30px;
  2545. display:flex;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:14px;
  2550. }
  2551. #u99686 .text {
  2552. position:absolute;
  2553. align-self:center;
  2554. padding:2px 2px 2px 2px;
  2555. box-sizing:border-box;
  2556. width:100%;
  2557. }
  2558. #u99686_text {
  2559. border-width:0px;
  2560. word-wrap:break-word;
  2561. text-transform:none;
  2562. visibility:hidden;
  2563. }
  2564. #u99687_img {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:126px;
  2570. height:30px;
  2571. }
  2572. #u99687 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:125px;
  2576. top:96px;
  2577. width:126px;
  2578. height:30px;
  2579. display:flex;
  2580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. font-size:14px;
  2584. }
  2585. #u99687 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 2px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u99687_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u99688_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:125px;
  2604. height:30px;
  2605. }
  2606. #u99688 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:251px;
  2610. top:96px;
  2611. width:125px;
  2612. height:30px;
  2613. display:flex;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:14px;
  2618. }
  2619. #u99688 .text {
  2620. position:absolute;
  2621. align-self:center;
  2622. padding:2px 2px 2px 2px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u99688_text {
  2627. border-width:0px;
  2628. word-wrap:break-word;
  2629. text-transform:none;
  2630. visibility:hidden;
  2631. }
  2632. #u99689_img {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:151px;
  2638. height:30px;
  2639. }
  2640. #u99689 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:376px;
  2644. top:96px;
  2645. width:151px;
  2646. height:30px;
  2647. display:flex;
  2648. font-size:14px;
  2649. }
  2650. #u99689 .text {
  2651. position:absolute;
  2652. align-self:center;
  2653. padding:2px 2px 2px 2px;
  2654. box-sizing:border-box;
  2655. width:100%;
  2656. }
  2657. #u99689_text {
  2658. border-width:0px;
  2659. word-wrap:break-word;
  2660. text-transform:none;
  2661. visibility:hidden;
  2662. }
  2663. #u99690_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:151px;
  2669. height:30px;
  2670. }
  2671. #u99690 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:527px;
  2675. top:96px;
  2676. width:151px;
  2677. height:30px;
  2678. display:flex;
  2679. font-size:14px;
  2680. }
  2681. #u99690 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:2px 2px 2px 2px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u99690_text {
  2689. border-width:0px;
  2690. word-wrap:break-word;
  2691. text-transform:none;
  2692. visibility:hidden;
  2693. }
  2694. #u99691_img {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:134px;
  2700. height:30px;
  2701. }
  2702. #u99691 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:678px;
  2706. top:96px;
  2707. width:134px;
  2708. height:30px;
  2709. display:flex;
  2710. font-size:14px;
  2711. }
  2712. #u99691 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 2px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u99691_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. visibility:hidden;
  2724. }
  2725. #u99692_img {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:126px;
  2731. height:30px;
  2732. }
  2733. #u99692 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:812px;
  2737. top:96px;
  2738. width:126px;
  2739. height:30px;
  2740. display:flex;
  2741. font-size:14px;
  2742. }
  2743. #u99692 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 2px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u99692_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u99693_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:133px;
  2762. height:30px;
  2763. }
  2764. #u99693 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:938px;
  2768. top:96px;
  2769. width:133px;
  2770. height:30px;
  2771. display:flex;
  2772. font-size:14px;
  2773. }
  2774. #u99693 .text {
  2775. position:absolute;
  2776. align-self:center;
  2777. padding:2px 2px 2px 2px;
  2778. box-sizing:border-box;
  2779. width:100%;
  2780. }
  2781. #u99693_text {
  2782. border-width:0px;
  2783. word-wrap:break-word;
  2784. text-transform:none;
  2785. visibility:hidden;
  2786. }
  2787. #u99694_img {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:135px;
  2793. height:30px;
  2794. }
  2795. #u99694 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:1071px;
  2799. top:96px;
  2800. width:135px;
  2801. height:30px;
  2802. display:flex;
  2803. font-size:14px;
  2804. }
  2805. #u99694 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u99694_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u99695_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:125px;
  2824. height:30px;
  2825. }
  2826. #u99695 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:126px;
  2831. width:125px;
  2832. height:30px;
  2833. display:flex;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:14px;
  2838. }
  2839. #u99695 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:2px 2px 2px 2px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u99695_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. visibility:hidden;
  2851. }
  2852. #u99696_img {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:126px;
  2858. height:30px;
  2859. }
  2860. #u99696 {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:125px;
  2864. top:126px;
  2865. width:126px;
  2866. height:30px;
  2867. display:flex;
  2868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:14px;
  2872. }
  2873. #u99696 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 2px 2px 2px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u99696_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u99697_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:125px;
  2892. height:30px;
  2893. }
  2894. #u99697 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:251px;
  2898. top:126px;
  2899. width:125px;
  2900. height:30px;
  2901. display:flex;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:14px;
  2906. }
  2907. #u99697 .text {
  2908. position:absolute;
  2909. align-self:center;
  2910. padding:2px 2px 2px 2px;
  2911. box-sizing:border-box;
  2912. width:100%;
  2913. }
  2914. #u99697_text {
  2915. border-width:0px;
  2916. word-wrap:break-word;
  2917. text-transform:none;
  2918. visibility:hidden;
  2919. }
  2920. #u99698_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:151px;
  2926. height:30px;
  2927. }
  2928. #u99698 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:376px;
  2932. top:126px;
  2933. width:151px;
  2934. height:30px;
  2935. display:flex;
  2936. font-size:14px;
  2937. }
  2938. #u99698 .text {
  2939. position:absolute;
  2940. align-self:center;
  2941. padding:2px 2px 2px 2px;
  2942. box-sizing:border-box;
  2943. width:100%;
  2944. }
  2945. #u99698_text {
  2946. border-width:0px;
  2947. word-wrap:break-word;
  2948. text-transform:none;
  2949. visibility:hidden;
  2950. }
  2951. #u99699_img {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:151px;
  2957. height:30px;
  2958. }
  2959. #u99699 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:527px;
  2963. top:126px;
  2964. width:151px;
  2965. height:30px;
  2966. display:flex;
  2967. font-size:14px;
  2968. }
  2969. #u99699 .text {
  2970. position:absolute;
  2971. align-self:center;
  2972. padding:2px 2px 2px 2px;
  2973. box-sizing:border-box;
  2974. width:100%;
  2975. }
  2976. #u99699_text {
  2977. border-width:0px;
  2978. word-wrap:break-word;
  2979. text-transform:none;
  2980. visibility:hidden;
  2981. }
  2982. #u99700_img {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:134px;
  2988. height:30px;
  2989. }
  2990. #u99700 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:678px;
  2994. top:126px;
  2995. width:134px;
  2996. height:30px;
  2997. display:flex;
  2998. font-size:14px;
  2999. }
  3000. #u99700 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 2px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u99700_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. visibility:hidden;
  3012. }
  3013. #u99701_img {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:126px;
  3019. height:30px;
  3020. }
  3021. #u99701 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:812px;
  3025. top:126px;
  3026. width:126px;
  3027. height:30px;
  3028. display:flex;
  3029. font-size:14px;
  3030. }
  3031. #u99701 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:2px 2px 2px 2px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u99701_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. visibility:hidden;
  3043. }
  3044. #u99702_img {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:133px;
  3050. height:30px;
  3051. }
  3052. #u99702 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:938px;
  3056. top:126px;
  3057. width:133px;
  3058. height:30px;
  3059. display:flex;
  3060. font-size:14px;
  3061. }
  3062. #u99702 .text {
  3063. position:absolute;
  3064. align-self:center;
  3065. padding:2px 2px 2px 2px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u99702_text {
  3070. border-width:0px;
  3071. word-wrap:break-word;
  3072. text-transform:none;
  3073. visibility:hidden;
  3074. }
  3075. #u99703_img {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:135px;
  3081. height:30px;
  3082. }
  3083. #u99703 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:1071px;
  3087. top:126px;
  3088. width:135px;
  3089. height:30px;
  3090. display:flex;
  3091. font-size:14px;
  3092. }
  3093. #u99703 .text {
  3094. position:absolute;
  3095. align-self:center;
  3096. padding:2px 2px 2px 2px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u99703_text {
  3101. border-width:0px;
  3102. word-wrap:break-word;
  3103. text-transform:none;
  3104. visibility:hidden;
  3105. }
  3106. #u99704_img {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:125px;
  3112. height:30px;
  3113. }
  3114. #u99704 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:156px;
  3119. width:125px;
  3120. height:30px;
  3121. display:flex;
  3122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3123. font-weight:400;
  3124. font-style:normal;
  3125. font-size:14px;
  3126. }
  3127. #u99704 .text {
  3128. position:absolute;
  3129. align-self:center;
  3130. padding:2px 2px 2px 2px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u99704_text {
  3135. border-width:0px;
  3136. word-wrap:break-word;
  3137. text-transform:none;
  3138. visibility:hidden;
  3139. }
  3140. #u99705_img {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:126px;
  3146. height:30px;
  3147. }
  3148. #u99705 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:125px;
  3152. top:156px;
  3153. width:126px;
  3154. height:30px;
  3155. display:flex;
  3156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3157. font-weight:400;
  3158. font-style:normal;
  3159. font-size:14px;
  3160. }
  3161. #u99705 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 2px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u99705_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u99706_img {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:125px;
  3180. height:30px;
  3181. }
  3182. #u99706 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:251px;
  3186. top:156px;
  3187. width:125px;
  3188. height:30px;
  3189. display:flex;
  3190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3191. font-weight:400;
  3192. font-style:normal;
  3193. font-size:14px;
  3194. }
  3195. #u99706 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 2px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u99706_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u99707_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:151px;
  3214. height:30px;
  3215. }
  3216. #u99707 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:376px;
  3220. top:156px;
  3221. width:151px;
  3222. height:30px;
  3223. display:flex;
  3224. font-size:14px;
  3225. }
  3226. #u99707 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:2px 2px 2px 2px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u99707_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u99708_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:151px;
  3245. height:30px;
  3246. }
  3247. #u99708 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:527px;
  3251. top:156px;
  3252. width:151px;
  3253. height:30px;
  3254. display:flex;
  3255. font-size:14px;
  3256. }
  3257. #u99708 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 2px 2px 2px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u99708_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. visibility:hidden;
  3269. }
  3270. #u99709_img {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:134px;
  3276. height:30px;
  3277. }
  3278. #u99709 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:678px;
  3282. top:156px;
  3283. width:134px;
  3284. height:30px;
  3285. display:flex;
  3286. font-size:14px;
  3287. }
  3288. #u99709 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 2px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u99709_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. visibility:hidden;
  3300. }
  3301. #u99710_img {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:126px;
  3307. height:30px;
  3308. }
  3309. #u99710 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:812px;
  3313. top:156px;
  3314. width:126px;
  3315. height:30px;
  3316. display:flex;
  3317. font-size:14px;
  3318. }
  3319. #u99710 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:2px 2px 2px 2px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u99710_text {
  3327. border-width:0px;
  3328. word-wrap:break-word;
  3329. text-transform:none;
  3330. visibility:hidden;
  3331. }
  3332. #u99711_img {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:133px;
  3338. height:30px;
  3339. }
  3340. #u99711 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:938px;
  3344. top:156px;
  3345. width:133px;
  3346. height:30px;
  3347. display:flex;
  3348. font-size:14px;
  3349. }
  3350. #u99711 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:2px 2px 2px 2px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u99711_text {
  3358. border-width:0px;
  3359. word-wrap:break-word;
  3360. text-transform:none;
  3361. visibility:hidden;
  3362. }
  3363. #u99712_img {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:135px;
  3369. height:30px;
  3370. }
  3371. #u99712 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:1071px;
  3375. top:156px;
  3376. width:135px;
  3377. height:30px;
  3378. display:flex;
  3379. font-size:14px;
  3380. }
  3381. #u99712 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 2px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u99712_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. visibility:hidden;
  3393. }
  3394. #u99713_img {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:125px;
  3400. height:30px;
  3401. }
  3402. #u99713 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:186px;
  3407. width:125px;
  3408. height:30px;
  3409. display:flex;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:14px;
  3414. }
  3415. #u99713 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 2px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u99713_text {
  3423. border-width:0px;
  3424. word-wrap:break-word;
  3425. text-transform:none;
  3426. visibility:hidden;
  3427. }
  3428. #u99714_img {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:126px;
  3434. height:30px;
  3435. }
  3436. #u99714 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:125px;
  3440. top:186px;
  3441. width:126px;
  3442. height:30px;
  3443. display:flex;
  3444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3445. font-weight:400;
  3446. font-style:normal;
  3447. font-size:14px;
  3448. }
  3449. #u99714 .text {
  3450. position:absolute;
  3451. align-self:center;
  3452. padding:2px 2px 2px 2px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u99714_text {
  3457. border-width:0px;
  3458. word-wrap:break-word;
  3459. text-transform:none;
  3460. visibility:hidden;
  3461. }
  3462. #u99715_img {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:125px;
  3468. height:30px;
  3469. }
  3470. #u99715 {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:251px;
  3474. top:186px;
  3475. width:125px;
  3476. height:30px;
  3477. display:flex;
  3478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:14px;
  3482. }
  3483. #u99715 .text {
  3484. position:absolute;
  3485. align-self:center;
  3486. padding:2px 2px 2px 2px;
  3487. box-sizing:border-box;
  3488. width:100%;
  3489. }
  3490. #u99715_text {
  3491. border-width:0px;
  3492. word-wrap:break-word;
  3493. text-transform:none;
  3494. visibility:hidden;
  3495. }
  3496. #u99716_img {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:0px;
  3501. width:151px;
  3502. height:30px;
  3503. }
  3504. #u99716 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:376px;
  3508. top:186px;
  3509. width:151px;
  3510. height:30px;
  3511. display:flex;
  3512. font-size:14px;
  3513. }
  3514. #u99716 .text {
  3515. position:absolute;
  3516. align-self:center;
  3517. padding:2px 2px 2px 2px;
  3518. box-sizing:border-box;
  3519. width:100%;
  3520. }
  3521. #u99716_text {
  3522. border-width:0px;
  3523. word-wrap:break-word;
  3524. text-transform:none;
  3525. visibility:hidden;
  3526. }
  3527. #u99717_img {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:151px;
  3533. height:30px;
  3534. }
  3535. #u99717 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:527px;
  3539. top:186px;
  3540. width:151px;
  3541. height:30px;
  3542. display:flex;
  3543. font-size:14px;
  3544. }
  3545. #u99717 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 2px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u99717_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u99718_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:134px;
  3564. height:30px;
  3565. }
  3566. #u99718 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:678px;
  3570. top:186px;
  3571. width:134px;
  3572. height:30px;
  3573. display:flex;
  3574. font-size:14px;
  3575. }
  3576. #u99718 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 2px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u99718_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u99719_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:126px;
  3595. height:30px;
  3596. }
  3597. #u99719 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:812px;
  3601. top:186px;
  3602. width:126px;
  3603. height:30px;
  3604. display:flex;
  3605. font-size:14px;
  3606. }
  3607. #u99719 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 2px 2px 2px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u99719_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. visibility:hidden;
  3619. }
  3620. #u99720_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:133px;
  3626. height:30px;
  3627. }
  3628. #u99720 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:938px;
  3632. top:186px;
  3633. width:133px;
  3634. height:30px;
  3635. display:flex;
  3636. font-size:14px;
  3637. }
  3638. #u99720 .text {
  3639. position:absolute;
  3640. align-self:center;
  3641. padding:2px 2px 2px 2px;
  3642. box-sizing:border-box;
  3643. width:100%;
  3644. }
  3645. #u99720_text {
  3646. border-width:0px;
  3647. word-wrap:break-word;
  3648. text-transform:none;
  3649. visibility:hidden;
  3650. }
  3651. #u99721_img {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:135px;
  3657. height:30px;
  3658. }
  3659. #u99721 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:1071px;
  3663. top:186px;
  3664. width:135px;
  3665. height:30px;
  3666. display:flex;
  3667. font-size:14px;
  3668. }
  3669. #u99721 .text {
  3670. position:absolute;
  3671. align-self:center;
  3672. padding:2px 2px 2px 2px;
  3673. box-sizing:border-box;
  3674. width:100%;
  3675. }
  3676. #u99721_text {
  3677. border-width:0px;
  3678. word-wrap:break-word;
  3679. text-transform:none;
  3680. visibility:hidden;
  3681. }
  3682. #u99722_img {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:125px;
  3688. height:30px;
  3689. }
  3690. #u99722 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:216px;
  3695. width:125px;
  3696. height:30px;
  3697. display:flex;
  3698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:14px;
  3702. }
  3703. #u99722 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 2px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u99722_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u99723_img {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:126px;
  3722. height:30px;
  3723. }
  3724. #u99723 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:125px;
  3728. top:216px;
  3729. width:126px;
  3730. height:30px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:14px;
  3736. }
  3737. #u99723 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 2px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u99723_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u99724_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:125px;
  3756. height:30px;
  3757. }
  3758. #u99724 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:251px;
  3762. top:216px;
  3763. width:125px;
  3764. height:30px;
  3765. display:flex;
  3766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:14px;
  3770. }
  3771. #u99724 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 2px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u99724_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. visibility:hidden;
  3783. }
  3784. #u99725_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:151px;
  3790. height:30px;
  3791. }
  3792. #u99725 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:376px;
  3796. top:216px;
  3797. width:151px;
  3798. height:30px;
  3799. display:flex;
  3800. font-size:14px;
  3801. }
  3802. #u99725 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 2px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u99725_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u99726_img {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:151px;
  3821. height:30px;
  3822. }
  3823. #u99726 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:527px;
  3827. top:216px;
  3828. width:151px;
  3829. height:30px;
  3830. display:flex;
  3831. font-size:14px;
  3832. }
  3833. #u99726 .text {
  3834. position:absolute;
  3835. align-self:center;
  3836. padding:2px 2px 2px 2px;
  3837. box-sizing:border-box;
  3838. width:100%;
  3839. }
  3840. #u99726_text {
  3841. border-width:0px;
  3842. word-wrap:break-word;
  3843. text-transform:none;
  3844. visibility:hidden;
  3845. }
  3846. #u99727_img {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:0px;
  3850. top:0px;
  3851. width:134px;
  3852. height:30px;
  3853. }
  3854. #u99727 {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:678px;
  3858. top:216px;
  3859. width:134px;
  3860. height:30px;
  3861. display:flex;
  3862. font-size:14px;
  3863. }
  3864. #u99727 .text {
  3865. position:absolute;
  3866. align-self:center;
  3867. padding:2px 2px 2px 2px;
  3868. box-sizing:border-box;
  3869. width:100%;
  3870. }
  3871. #u99727_text {
  3872. border-width:0px;
  3873. word-wrap:break-word;
  3874. text-transform:none;
  3875. visibility:hidden;
  3876. }
  3877. #u99728_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:126px;
  3883. height:30px;
  3884. }
  3885. #u99728 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:812px;
  3889. top:216px;
  3890. width:126px;
  3891. height:30px;
  3892. display:flex;
  3893. font-size:14px;
  3894. }
  3895. #u99728 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:2px 2px 2px 2px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u99728_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. visibility:hidden;
  3907. }
  3908. #u99729_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:133px;
  3914. height:30px;
  3915. }
  3916. #u99729 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:938px;
  3920. top:216px;
  3921. width:133px;
  3922. height:30px;
  3923. display:flex;
  3924. font-size:14px;
  3925. }
  3926. #u99729 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 2px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u99729_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u99730_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:135px;
  3945. height:30px;
  3946. }
  3947. #u99730 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:1071px;
  3951. top:216px;
  3952. width:135px;
  3953. height:30px;
  3954. display:flex;
  3955. font-size:14px;
  3956. }
  3957. #u99730 .text {
  3958. position:absolute;
  3959. align-self:center;
  3960. padding:2px 2px 2px 2px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u99730_text {
  3965. border-width:0px;
  3966. word-wrap:break-word;
  3967. text-transform:none;
  3968. visibility:hidden;
  3969. }
  3970. #u99731_img {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:125px;
  3976. height:30px;
  3977. }
  3978. #u99731 {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:246px;
  3983. width:125px;
  3984. height:30px;
  3985. display:flex;
  3986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3987. font-weight:400;
  3988. font-style:normal;
  3989. font-size:14px;
  3990. }
  3991. #u99731 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 2px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u99731_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u99732_img {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:126px;
  4010. height:30px;
  4011. }
  4012. #u99732 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:125px;
  4016. top:246px;
  4017. width:126px;
  4018. height:30px;
  4019. display:flex;
  4020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:14px;
  4024. }
  4025. #u99732 .text {
  4026. position:absolute;
  4027. align-self:center;
  4028. padding:2px 2px 2px 2px;
  4029. box-sizing:border-box;
  4030. width:100%;
  4031. }
  4032. #u99732_text {
  4033. border-width:0px;
  4034. word-wrap:break-word;
  4035. text-transform:none;
  4036. visibility:hidden;
  4037. }
  4038. #u99733_img {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:125px;
  4044. height:30px;
  4045. }
  4046. #u99733 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:251px;
  4050. top:246px;
  4051. width:125px;
  4052. height:30px;
  4053. display:flex;
  4054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:14px;
  4058. }
  4059. #u99733 .text {
  4060. position:absolute;
  4061. align-self:center;
  4062. padding:2px 2px 2px 2px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u99733_text {
  4067. border-width:0px;
  4068. word-wrap:break-word;
  4069. text-transform:none;
  4070. visibility:hidden;
  4071. }
  4072. #u99734_img {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:151px;
  4078. height:30px;
  4079. }
  4080. #u99734 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:376px;
  4084. top:246px;
  4085. width:151px;
  4086. height:30px;
  4087. display:flex;
  4088. font-size:14px;
  4089. }
  4090. #u99734 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 2px 2px 2px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u99734_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. visibility:hidden;
  4102. }
  4103. #u99735_img {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:151px;
  4109. height:30px;
  4110. }
  4111. #u99735 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:527px;
  4115. top:246px;
  4116. width:151px;
  4117. height:30px;
  4118. display:flex;
  4119. font-size:14px;
  4120. }
  4121. #u99735 .text {
  4122. position:absolute;
  4123. align-self:center;
  4124. padding:2px 2px 2px 2px;
  4125. box-sizing:border-box;
  4126. width:100%;
  4127. }
  4128. #u99735_text {
  4129. border-width:0px;
  4130. word-wrap:break-word;
  4131. text-transform:none;
  4132. visibility:hidden;
  4133. }
  4134. #u99736_img {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:134px;
  4140. height:30px;
  4141. }
  4142. #u99736 {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:678px;
  4146. top:246px;
  4147. width:134px;
  4148. height:30px;
  4149. display:flex;
  4150. font-size:14px;
  4151. }
  4152. #u99736 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 2px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u99736_text {
  4160. border-width:0px;
  4161. word-wrap:break-word;
  4162. text-transform:none;
  4163. visibility:hidden;
  4164. }
  4165. #u99737_img {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:126px;
  4171. height:30px;
  4172. }
  4173. #u99737 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:812px;
  4177. top:246px;
  4178. width:126px;
  4179. height:30px;
  4180. display:flex;
  4181. font-size:14px;
  4182. }
  4183. #u99737 .text {
  4184. position:absolute;
  4185. align-self:center;
  4186. padding:2px 2px 2px 2px;
  4187. box-sizing:border-box;
  4188. width:100%;
  4189. }
  4190. #u99737_text {
  4191. border-width:0px;
  4192. word-wrap:break-word;
  4193. text-transform:none;
  4194. visibility:hidden;
  4195. }
  4196. #u99738_img {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:133px;
  4202. height:30px;
  4203. }
  4204. #u99738 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:938px;
  4208. top:246px;
  4209. width:133px;
  4210. height:30px;
  4211. display:flex;
  4212. font-size:14px;
  4213. }
  4214. #u99738 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 2px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u99738_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. visibility:hidden;
  4226. }
  4227. #u99739_img {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:135px;
  4233. height:30px;
  4234. }
  4235. #u99739 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:1071px;
  4239. top:246px;
  4240. width:135px;
  4241. height:30px;
  4242. display:flex;
  4243. font-size:14px;
  4244. }
  4245. #u99739 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 2px 2px 2px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u99739_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u99740_img {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:125px;
  4264. height:30px;
  4265. }
  4266. #u99740 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:276px;
  4271. width:125px;
  4272. height:30px;
  4273. display:flex;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:14px;
  4278. }
  4279. #u99740 .text {
  4280. position:absolute;
  4281. align-self:center;
  4282. padding:2px 2px 2px 2px;
  4283. box-sizing:border-box;
  4284. width:100%;
  4285. }
  4286. #u99740_text {
  4287. border-width:0px;
  4288. word-wrap:break-word;
  4289. text-transform:none;
  4290. visibility:hidden;
  4291. }
  4292. #u99741_img {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:126px;
  4298. height:30px;
  4299. }
  4300. #u99741 {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:125px;
  4304. top:276px;
  4305. width:126px;
  4306. height:30px;
  4307. display:flex;
  4308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4309. font-weight:400;
  4310. font-style:normal;
  4311. font-size:14px;
  4312. }
  4313. #u99741 .text {
  4314. position:absolute;
  4315. align-self:center;
  4316. padding:2px 2px 2px 2px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u99741_text {
  4321. border-width:0px;
  4322. word-wrap:break-word;
  4323. text-transform:none;
  4324. visibility:hidden;
  4325. }
  4326. #u99742_img {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:125px;
  4332. height:30px;
  4333. }
  4334. #u99742 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:251px;
  4338. top:276px;
  4339. width:125px;
  4340. height:30px;
  4341. display:flex;
  4342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4343. font-weight:400;
  4344. font-style:normal;
  4345. font-size:14px;
  4346. }
  4347. #u99742 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 2px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u99742_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. visibility:hidden;
  4359. }
  4360. #u99743_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:151px;
  4366. height:30px;
  4367. }
  4368. #u99743 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:376px;
  4372. top:276px;
  4373. width:151px;
  4374. height:30px;
  4375. display:flex;
  4376. font-size:14px;
  4377. }
  4378. #u99743 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u99743_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u99744_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:151px;
  4397. height:30px;
  4398. }
  4399. #u99744 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:527px;
  4403. top:276px;
  4404. width:151px;
  4405. height:30px;
  4406. display:flex;
  4407. font-size:14px;
  4408. }
  4409. #u99744 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u99744_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u99745_img {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:134px;
  4428. height:30px;
  4429. }
  4430. #u99745 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:678px;
  4434. top:276px;
  4435. width:134px;
  4436. height:30px;
  4437. display:flex;
  4438. font-size:14px;
  4439. }
  4440. #u99745 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 2px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u99745_text {
  4448. border-width:0px;
  4449. word-wrap:break-word;
  4450. text-transform:none;
  4451. visibility:hidden;
  4452. }
  4453. #u99746_img {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:126px;
  4459. height:30px;
  4460. }
  4461. #u99746 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:812px;
  4465. top:276px;
  4466. width:126px;
  4467. height:30px;
  4468. display:flex;
  4469. font-size:14px;
  4470. }
  4471. #u99746 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 2px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u99746_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u99747_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:133px;
  4490. height:30px;
  4491. }
  4492. #u99747 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:938px;
  4496. top:276px;
  4497. width:133px;
  4498. height:30px;
  4499. display:flex;
  4500. font-size:14px;
  4501. }
  4502. #u99747 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:2px 2px 2px 2px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u99747_text {
  4510. border-width:0px;
  4511. word-wrap:break-word;
  4512. text-transform:none;
  4513. visibility:hidden;
  4514. }
  4515. #u99748_img {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:135px;
  4521. height:30px;
  4522. }
  4523. #u99748 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:1071px;
  4527. top:276px;
  4528. width:135px;
  4529. height:30px;
  4530. display:flex;
  4531. font-size:14px;
  4532. }
  4533. #u99748 .text {
  4534. position:absolute;
  4535. align-self:center;
  4536. padding:2px 2px 2px 2px;
  4537. box-sizing:border-box;
  4538. width:100%;
  4539. }
  4540. #u99748_text {
  4541. border-width:0px;
  4542. word-wrap:break-word;
  4543. text-transform:none;
  4544. visibility:hidden;
  4545. }
  4546. #u99749_img {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:125px;
  4552. height:30px;
  4553. }
  4554. #u99749 {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:306px;
  4559. width:125px;
  4560. height:30px;
  4561. display:flex;
  4562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4563. font-weight:400;
  4564. font-style:normal;
  4565. font-size:14px;
  4566. }
  4567. #u99749 .text {
  4568. position:absolute;
  4569. align-self:center;
  4570. padding:2px 2px 2px 2px;
  4571. box-sizing:border-box;
  4572. width:100%;
  4573. }
  4574. #u99749_text {
  4575. border-width:0px;
  4576. word-wrap:break-word;
  4577. text-transform:none;
  4578. visibility:hidden;
  4579. }
  4580. #u99750_img {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:0px;
  4584. top:0px;
  4585. width:126px;
  4586. height:30px;
  4587. }
  4588. #u99750 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:125px;
  4592. top:306px;
  4593. width:126px;
  4594. height:30px;
  4595. display:flex;
  4596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4597. font-weight:400;
  4598. font-style:normal;
  4599. font-size:14px;
  4600. }
  4601. #u99750 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 2px 2px 2px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u99750_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u99751_img {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:125px;
  4620. height:30px;
  4621. }
  4622. #u99751 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:251px;
  4626. top:306px;
  4627. width:125px;
  4628. height:30px;
  4629. display:flex;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:14px;
  4634. }
  4635. #u99751 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 2px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u99751_text {
  4643. border-width:0px;
  4644. word-wrap:break-word;
  4645. text-transform:none;
  4646. visibility:hidden;
  4647. }
  4648. #u99752_img {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:151px;
  4654. height:30px;
  4655. }
  4656. #u99752 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:376px;
  4660. top:306px;
  4661. width:151px;
  4662. height:30px;
  4663. display:flex;
  4664. font-size:14px;
  4665. }
  4666. #u99752 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 2px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u99752_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. visibility:hidden;
  4678. }
  4679. #u99753_img {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:151px;
  4685. height:30px;
  4686. }
  4687. #u99753 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:527px;
  4691. top:306px;
  4692. width:151px;
  4693. height:30px;
  4694. display:flex;
  4695. font-size:14px;
  4696. }
  4697. #u99753 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:2px 2px 2px 2px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u99753_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. visibility:hidden;
  4709. }
  4710. #u99754_img {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:134px;
  4716. height:30px;
  4717. }
  4718. #u99754 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:678px;
  4722. top:306px;
  4723. width:134px;
  4724. height:30px;
  4725. display:flex;
  4726. font-size:14px;
  4727. }
  4728. #u99754 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 2px 2px 2px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u99754_text {
  4736. border-width:0px;
  4737. word-wrap:break-word;
  4738. text-transform:none;
  4739. visibility:hidden;
  4740. }
  4741. #u99755_img {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:126px;
  4747. height:30px;
  4748. }
  4749. #u99755 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:812px;
  4753. top:306px;
  4754. width:126px;
  4755. height:30px;
  4756. display:flex;
  4757. font-size:14px;
  4758. }
  4759. #u99755 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:2px 2px 2px 2px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u99755_text {
  4767. border-width:0px;
  4768. word-wrap:break-word;
  4769. text-transform:none;
  4770. visibility:hidden;
  4771. }
  4772. #u99756_img {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:133px;
  4778. height:30px;
  4779. }
  4780. #u99756 {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:938px;
  4784. top:306px;
  4785. width:133px;
  4786. height:30px;
  4787. display:flex;
  4788. font-size:14px;
  4789. }
  4790. #u99756 .text {
  4791. position:absolute;
  4792. align-self:center;
  4793. padding:2px 2px 2px 2px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u99756_text {
  4798. border-width:0px;
  4799. word-wrap:break-word;
  4800. text-transform:none;
  4801. visibility:hidden;
  4802. }
  4803. #u99757_img {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:135px;
  4809. height:30px;
  4810. }
  4811. #u99757 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:1071px;
  4815. top:306px;
  4816. width:135px;
  4817. height:30px;
  4818. display:flex;
  4819. font-size:14px;
  4820. }
  4821. #u99757 .text {
  4822. position:absolute;
  4823. align-self:center;
  4824. padding:2px 2px 2px 2px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u99757_text {
  4829. border-width:0px;
  4830. word-wrap:break-word;
  4831. text-transform:none;
  4832. visibility:hidden;
  4833. }
  4834. #u99758_img {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:125px;
  4840. height:30px;
  4841. }
  4842. #u99758 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:336px;
  4847. width:125px;
  4848. height:30px;
  4849. display:flex;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:14px;
  4854. }
  4855. #u99758 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 2px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u99758_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. visibility:hidden;
  4867. }
  4868. #u99759_img {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:126px;
  4874. height:30px;
  4875. }
  4876. #u99759 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:125px;
  4880. top:336px;
  4881. width:126px;
  4882. height:30px;
  4883. display:flex;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:14px;
  4888. }
  4889. #u99759 .text {
  4890. position:absolute;
  4891. align-self:center;
  4892. padding:2px 2px 2px 2px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u99759_text {
  4897. border-width:0px;
  4898. word-wrap:break-word;
  4899. text-transform:none;
  4900. visibility:hidden;
  4901. }
  4902. #u99760_img {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:0px;
  4907. width:125px;
  4908. height:30px;
  4909. }
  4910. #u99760 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:251px;
  4914. top:336px;
  4915. width:125px;
  4916. height:30px;
  4917. display:flex;
  4918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4919. font-weight:400;
  4920. font-style:normal;
  4921. font-size:14px;
  4922. }
  4923. #u99760 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 2px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u99760_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. visibility:hidden;
  4935. }
  4936. #u99761_img {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:151px;
  4942. height:30px;
  4943. }
  4944. #u99761 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:376px;
  4948. top:336px;
  4949. width:151px;
  4950. height:30px;
  4951. display:flex;
  4952. font-size:14px;
  4953. }
  4954. #u99761 .text {
  4955. position:absolute;
  4956. align-self:center;
  4957. padding:2px 2px 2px 2px;
  4958. box-sizing:border-box;
  4959. width:100%;
  4960. }
  4961. #u99761_text {
  4962. border-width:0px;
  4963. word-wrap:break-word;
  4964. text-transform:none;
  4965. visibility:hidden;
  4966. }
  4967. #u99762_img {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:151px;
  4973. height:30px;
  4974. }
  4975. #u99762 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:527px;
  4979. top:336px;
  4980. width:151px;
  4981. height:30px;
  4982. display:flex;
  4983. font-size:14px;
  4984. }
  4985. #u99762 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 2px 2px 2px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u99762_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u99763_img {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:134px;
  5004. height:30px;
  5005. }
  5006. #u99763 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:678px;
  5010. top:336px;
  5011. width:134px;
  5012. height:30px;
  5013. display:flex;
  5014. font-size:14px;
  5015. }
  5016. #u99763 .text {
  5017. position:absolute;
  5018. align-self:center;
  5019. padding:2px 2px 2px 2px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u99763_text {
  5024. border-width:0px;
  5025. word-wrap:break-word;
  5026. text-transform:none;
  5027. visibility:hidden;
  5028. }
  5029. #u99764_img {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:126px;
  5035. height:30px;
  5036. }
  5037. #u99764 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:812px;
  5041. top:336px;
  5042. width:126px;
  5043. height:30px;
  5044. display:flex;
  5045. font-size:14px;
  5046. }
  5047. #u99764 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 2px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u99764_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. visibility:hidden;
  5059. }
  5060. #u99765_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:133px;
  5066. height:30px;
  5067. }
  5068. #u99765 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:938px;
  5072. top:336px;
  5073. width:133px;
  5074. height:30px;
  5075. display:flex;
  5076. font-size:14px;
  5077. }
  5078. #u99765 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 2px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u99765_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. visibility:hidden;
  5090. }
  5091. #u99766_img {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:135px;
  5097. height:30px;
  5098. }
  5099. #u99766 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:1071px;
  5103. top:336px;
  5104. width:135px;
  5105. height:30px;
  5106. display:flex;
  5107. font-size:14px;
  5108. }
  5109. #u99766 .text {
  5110. position:absolute;
  5111. align-self:center;
  5112. padding:2px 2px 2px 2px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u99766_text {
  5117. border-width:0px;
  5118. word-wrap:break-word;
  5119. text-transform:none;
  5120. visibility:hidden;
  5121. }
  5122. #u99767_img {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:125px;
  5128. height:30px;
  5129. }
  5130. #u99767 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:366px;
  5135. width:125px;
  5136. height:30px;
  5137. display:flex;
  5138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:14px;
  5142. }
  5143. #u99767 .text {
  5144. position:absolute;
  5145. align-self:center;
  5146. padding:2px 2px 2px 2px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u99767_text {
  5151. border-width:0px;
  5152. word-wrap:break-word;
  5153. text-transform:none;
  5154. visibility:hidden;
  5155. }
  5156. #u99768_img {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:0px;
  5160. top:0px;
  5161. width:126px;
  5162. height:30px;
  5163. }
  5164. #u99768 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:125px;
  5168. top:366px;
  5169. width:126px;
  5170. height:30px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:14px;
  5176. }
  5177. #u99768 .text {
  5178. position:absolute;
  5179. align-self:center;
  5180. padding:2px 2px 2px 2px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u99768_text {
  5185. border-width:0px;
  5186. word-wrap:break-word;
  5187. text-transform:none;
  5188. visibility:hidden;
  5189. }
  5190. #u99769_img {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:125px;
  5196. height:30px;
  5197. }
  5198. #u99769 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:251px;
  5202. top:366px;
  5203. width:125px;
  5204. height:30px;
  5205. display:flex;
  5206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:14px;
  5210. }
  5211. #u99769 .text {
  5212. position:absolute;
  5213. align-self:center;
  5214. padding:2px 2px 2px 2px;
  5215. box-sizing:border-box;
  5216. width:100%;
  5217. }
  5218. #u99769_text {
  5219. border-width:0px;
  5220. word-wrap:break-word;
  5221. text-transform:none;
  5222. visibility:hidden;
  5223. }
  5224. #u99770_img {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:151px;
  5230. height:30px;
  5231. }
  5232. #u99770 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:376px;
  5236. top:366px;
  5237. width:151px;
  5238. height:30px;
  5239. display:flex;
  5240. font-size:14px;
  5241. }
  5242. #u99770 .text {
  5243. position:absolute;
  5244. align-self:center;
  5245. padding:2px 2px 2px 2px;
  5246. box-sizing:border-box;
  5247. width:100%;
  5248. }
  5249. #u99770_text {
  5250. border-width:0px;
  5251. word-wrap:break-word;
  5252. text-transform:none;
  5253. visibility:hidden;
  5254. }
  5255. #u99771_img {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:151px;
  5261. height:30px;
  5262. }
  5263. #u99771 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:527px;
  5267. top:366px;
  5268. width:151px;
  5269. height:30px;
  5270. display:flex;
  5271. font-size:14px;
  5272. }
  5273. #u99771 .text {
  5274. position:absolute;
  5275. align-self:center;
  5276. padding:2px 2px 2px 2px;
  5277. box-sizing:border-box;
  5278. width:100%;
  5279. }
  5280. #u99771_text {
  5281. border-width:0px;
  5282. word-wrap:break-word;
  5283. text-transform:none;
  5284. visibility:hidden;
  5285. }
  5286. #u99772_img {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:134px;
  5292. height:30px;
  5293. }
  5294. #u99772 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:678px;
  5298. top:366px;
  5299. width:134px;
  5300. height:30px;
  5301. display:flex;
  5302. font-size:14px;
  5303. }
  5304. #u99772 .text {
  5305. position:absolute;
  5306. align-self:center;
  5307. padding:2px 2px 2px 2px;
  5308. box-sizing:border-box;
  5309. width:100%;
  5310. }
  5311. #u99772_text {
  5312. border-width:0px;
  5313. word-wrap:break-word;
  5314. text-transform:none;
  5315. visibility:hidden;
  5316. }
  5317. #u99773_img {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:126px;
  5323. height:30px;
  5324. }
  5325. #u99773 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:812px;
  5329. top:366px;
  5330. width:126px;
  5331. height:30px;
  5332. display:flex;
  5333. font-size:14px;
  5334. }
  5335. #u99773 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 2px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u99773_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. visibility:hidden;
  5347. }
  5348. #u99774_img {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:133px;
  5354. height:30px;
  5355. }
  5356. #u99774 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:938px;
  5360. top:366px;
  5361. width:133px;
  5362. height:30px;
  5363. display:flex;
  5364. font-size:14px;
  5365. }
  5366. #u99774 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 2px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u99774_text {
  5374. border-width:0px;
  5375. word-wrap:break-word;
  5376. text-transform:none;
  5377. visibility:hidden;
  5378. }
  5379. #u99775_img {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:135px;
  5385. height:30px;
  5386. }
  5387. #u99775 {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:1071px;
  5391. top:366px;
  5392. width:135px;
  5393. height:30px;
  5394. display:flex;
  5395. font-size:14px;
  5396. }
  5397. #u99775 .text {
  5398. position:absolute;
  5399. align-self:center;
  5400. padding:2px 2px 2px 2px;
  5401. box-sizing:border-box;
  5402. width:100%;
  5403. }
  5404. #u99775_text {
  5405. border-width:0px;
  5406. word-wrap:break-word;
  5407. text-transform:none;
  5408. visibility:hidden;
  5409. }
  5410. #u99776_img {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:125px;
  5416. height:30px;
  5417. }
  5418. #u99776 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:396px;
  5423. width:125px;
  5424. height:30px;
  5425. display:flex;
  5426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:14px;
  5430. }
  5431. #u99776 .text {
  5432. position:absolute;
  5433. align-self:center;
  5434. padding:2px 2px 2px 2px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u99776_text {
  5439. border-width:0px;
  5440. word-wrap:break-word;
  5441. text-transform:none;
  5442. visibility:hidden;
  5443. }
  5444. #u99777_img {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:126px;
  5450. height:30px;
  5451. }
  5452. #u99777 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:125px;
  5456. top:396px;
  5457. width:126px;
  5458. height:30px;
  5459. display:flex;
  5460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:14px;
  5464. }
  5465. #u99777 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:2px 2px 2px 2px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u99777_text {
  5473. border-width:0px;
  5474. word-wrap:break-word;
  5475. text-transform:none;
  5476. visibility:hidden;
  5477. }
  5478. #u99778_img {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:125px;
  5484. height:30px;
  5485. }
  5486. #u99778 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:251px;
  5490. top:396px;
  5491. width:125px;
  5492. height:30px;
  5493. display:flex;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:14px;
  5498. }
  5499. #u99778 .text {
  5500. position:absolute;
  5501. align-self:center;
  5502. padding:2px 2px 2px 2px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u99778_text {
  5507. border-width:0px;
  5508. word-wrap:break-word;
  5509. text-transform:none;
  5510. visibility:hidden;
  5511. }
  5512. #u99779_img {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:151px;
  5518. height:30px;
  5519. }
  5520. #u99779 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:376px;
  5524. top:396px;
  5525. width:151px;
  5526. height:30px;
  5527. display:flex;
  5528. font-size:14px;
  5529. }
  5530. #u99779 .text {
  5531. position:absolute;
  5532. align-self:center;
  5533. padding:2px 2px 2px 2px;
  5534. box-sizing:border-box;
  5535. width:100%;
  5536. }
  5537. #u99779_text {
  5538. border-width:0px;
  5539. word-wrap:break-word;
  5540. text-transform:none;
  5541. visibility:hidden;
  5542. }
  5543. #u99780_img {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:0px;
  5547. top:0px;
  5548. width:151px;
  5549. height:30px;
  5550. }
  5551. #u99780 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:527px;
  5555. top:396px;
  5556. width:151px;
  5557. height:30px;
  5558. display:flex;
  5559. font-size:14px;
  5560. }
  5561. #u99780 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:2px 2px 2px 2px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u99780_text {
  5569. border-width:0px;
  5570. word-wrap:break-word;
  5571. text-transform:none;
  5572. visibility:hidden;
  5573. }
  5574. #u99781_img {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:134px;
  5580. height:30px;
  5581. }
  5582. #u99781 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:678px;
  5586. top:396px;
  5587. width:134px;
  5588. height:30px;
  5589. display:flex;
  5590. font-size:14px;
  5591. }
  5592. #u99781 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:2px 2px 2px 2px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u99781_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. visibility:hidden;
  5604. }
  5605. #u99782_img {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:126px;
  5611. height:30px;
  5612. }
  5613. #u99782 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:812px;
  5617. top:396px;
  5618. width:126px;
  5619. height:30px;
  5620. display:flex;
  5621. font-size:14px;
  5622. }
  5623. #u99782 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 2px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u99782_text {
  5631. border-width:0px;
  5632. word-wrap:break-word;
  5633. text-transform:none;
  5634. visibility:hidden;
  5635. }
  5636. #u99783_img {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:133px;
  5642. height:30px;
  5643. }
  5644. #u99783 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:938px;
  5648. top:396px;
  5649. width:133px;
  5650. height:30px;
  5651. display:flex;
  5652. font-size:14px;
  5653. }
  5654. #u99783 .text {
  5655. position:absolute;
  5656. align-self:center;
  5657. padding:2px 2px 2px 2px;
  5658. box-sizing:border-box;
  5659. width:100%;
  5660. }
  5661. #u99783_text {
  5662. border-width:0px;
  5663. word-wrap:break-word;
  5664. text-transform:none;
  5665. visibility:hidden;
  5666. }
  5667. #u99784_img {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:135px;
  5673. height:30px;
  5674. }
  5675. #u99784 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:1071px;
  5679. top:396px;
  5680. width:135px;
  5681. height:30px;
  5682. display:flex;
  5683. font-size:14px;
  5684. }
  5685. #u99784 .text {
  5686. position:absolute;
  5687. align-self:center;
  5688. padding:2px 2px 2px 2px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u99784_text {
  5693. border-width:0px;
  5694. word-wrap:break-word;
  5695. text-transform:none;
  5696. visibility:hidden;
  5697. }
  5698. #u99785_div {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:0px;
  5702. top:0px;
  5703. width:80px;
  5704. height:30px;
  5705. background:inherit;
  5706. background-color:rgba(24, 144, 255, 1);
  5707. border:none;
  5708. border-radius:4px;
  5709. -moz-box-shadow:none;
  5710. -webkit-box-shadow:none;
  5711. box-shadow:none;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:14px;
  5716. color:#FFFFFF;
  5717. }
  5718. #u99785 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:363px;
  5722. top:153px;
  5723. width:80px;
  5724. height:30px;
  5725. display:flex;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:14px;
  5730. color:#FFFFFF;
  5731. }
  5732. #u99785 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 2px 2px 2px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u99785_text {
  5740. border-width:0px;
  5741. word-wrap:break-word;
  5742. text-transform:none;
  5743. }
  5744. #u99786 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:0px;
  5750. height:0px;
  5751. }
  5752. #u99787_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:140px;
  5758. height:30px;
  5759. background:inherit;
  5760. background-color:rgba(255, 255, 255, 1);
  5761. box-sizing:border-box;
  5762. border-width:1px;
  5763. border-style:solid;
  5764. border-color:rgba(215, 215, 215, 1);
  5765. border-radius:4px;
  5766. -moz-box-shadow:none;
  5767. -webkit-box-shadow:none;
  5768. box-shadow:none;
  5769. font-size:14px;
  5770. }
  5771. #u99787 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:513px;
  5775. top:104px;
  5776. width:140px;
  5777. height:30px;
  5778. display:flex;
  5779. font-size:14px;
  5780. }
  5781. #u99787 .text {
  5782. position:absolute;
  5783. align-self:center;
  5784. padding:2px 2px 2px 2px;
  5785. box-sizing:border-box;
  5786. width:100%;
  5787. }
  5788. #u99787_text {
  5789. border-width:0px;
  5790. word-wrap:break-word;
  5791. text-transform:none;
  5792. visibility:hidden;
  5793. }
  5794. #u99788_input {
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:134px;
  5799. height:23px;
  5800. padding:2px 2px 2px 2px;
  5801. font-family:'ArialMT', 'Arial', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:14px;
  5805. letter-spacing:normal;
  5806. color:#AAAAAA;
  5807. vertical-align:none;
  5808. text-align:left;
  5809. text-transform:none;
  5810. background-color:transparent;
  5811. border-color:transparent;
  5812. }
  5813. #u99788_input.disabled {
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:134px;
  5818. height:23px;
  5819. padding:2px 2px 2px 2px;
  5820. font-family:'ArialMT', 'Arial', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:14px;
  5824. letter-spacing:normal;
  5825. color:#AAAAAA;
  5826. vertical-align:none;
  5827. text-align:left;
  5828. text-transform:none;
  5829. background-color:transparent;
  5830. border-color:transparent;
  5831. }
  5832. #u99788_div {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:134px;
  5838. height:23px;
  5839. background:inherit;
  5840. background-color:rgba(255, 255, 255, 1);
  5841. border:none;
  5842. border-radius:0px;
  5843. -moz-box-shadow:none;
  5844. -webkit-box-shadow:none;
  5845. box-shadow:none;
  5846. font-size:14px;
  5847. color:#AAAAAA;
  5848. }
  5849. #u99788 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:517px;
  5853. top:106px;
  5854. width:134px;
  5855. height:23px;
  5856. display:flex;
  5857. font-size:14px;
  5858. color:#AAAAAA;
  5859. }
  5860. #u99788 .text {
  5861. position:absolute;
  5862. align-self:flex-start;
  5863. padding:2px 2px 2px 2px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u99788_div.disabled {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:134px;
  5873. height:23px;
  5874. background:inherit;
  5875. background-color:rgba(240, 240, 240, 1);
  5876. border:none;
  5877. border-radius:0px;
  5878. -moz-box-shadow:none;
  5879. -webkit-box-shadow:none;
  5880. box-shadow:none;
  5881. font-size:14px;
  5882. color:#AAAAAA;
  5883. }
  5884. #u99788.disabled {
  5885. }
  5886. .u99788_input_option {
  5887. font-size:14px;
  5888. }
  5889. #u99789 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:0px;
  5895. height:0px;
  5896. }
  5897. #u99790_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:140px;
  5903. height:30px;
  5904. background:inherit;
  5905. background-color:rgba(255, 255, 255, 1);
  5906. box-sizing:border-box;
  5907. border-width:1px;
  5908. border-style:solid;
  5909. border-color:rgba(215, 215, 215, 1);
  5910. border-radius:4px;
  5911. -moz-box-shadow:none;
  5912. -webkit-box-shadow:none;
  5913. box-shadow:none;
  5914. font-size:14px;
  5915. }
  5916. #u99790 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:813px;
  5920. top:104px;
  5921. width:140px;
  5922. height:30px;
  5923. display:flex;
  5924. font-size:14px;
  5925. }
  5926. #u99790 .text {
  5927. position:absolute;
  5928. align-self:center;
  5929. padding:2px 2px 2px 2px;
  5930. box-sizing:border-box;
  5931. width:100%;
  5932. }
  5933. #u99790_text {
  5934. border-width:0px;
  5935. word-wrap:break-word;
  5936. text-transform:none;
  5937. visibility:hidden;
  5938. }
  5939. #u99791_input {
  5940. position:absolute;
  5941. left:0px;
  5942. top:0px;
  5943. width:134px;
  5944. height:23px;
  5945. padding:2px 2px 2px 2px;
  5946. font-family:'ArialMT', 'Arial', sans-serif;
  5947. font-weight:400;
  5948. font-style:normal;
  5949. font-size:14px;
  5950. letter-spacing:normal;
  5951. color:#AAAAAA;
  5952. vertical-align:none;
  5953. text-align:left;
  5954. text-transform:none;
  5955. background-color:transparent;
  5956. border-color:transparent;
  5957. }
  5958. #u99791_input.disabled {
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:134px;
  5963. height:23px;
  5964. padding:2px 2px 2px 2px;
  5965. font-family:'ArialMT', 'Arial', sans-serif;
  5966. font-weight:400;
  5967. font-style:normal;
  5968. font-size:14px;
  5969. letter-spacing:normal;
  5970. color:#AAAAAA;
  5971. vertical-align:none;
  5972. text-align:left;
  5973. text-transform:none;
  5974. background-color:transparent;
  5975. border-color:transparent;
  5976. }
  5977. #u99791_div {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:134px;
  5983. height:23px;
  5984. background:inherit;
  5985. background-color:rgba(255, 255, 255, 1);
  5986. border:none;
  5987. border-radius:0px;
  5988. -moz-box-shadow:none;
  5989. -webkit-box-shadow:none;
  5990. box-shadow:none;
  5991. font-size:14px;
  5992. color:#AAAAAA;
  5993. }
  5994. #u99791 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:817px;
  5998. top:106px;
  5999. width:134px;
  6000. height:23px;
  6001. display:flex;
  6002. font-size:14px;
  6003. color:#AAAAAA;
  6004. }
  6005. #u99791 .text {
  6006. position:absolute;
  6007. align-self:flex-start;
  6008. padding:2px 2px 2px 2px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u99791_div.disabled {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:134px;
  6018. height:23px;
  6019. background:inherit;
  6020. background-color:rgba(240, 240, 240, 1);
  6021. border:none;
  6022. border-radius:0px;
  6023. -moz-box-shadow:none;
  6024. -webkit-box-shadow:none;
  6025. box-shadow:none;
  6026. font-size:14px;
  6027. color:#AAAAAA;
  6028. }
  6029. #u99791.disabled {
  6030. }
  6031. .u99791_input_option {
  6032. font-size:14px;
  6033. }
  6034. #u99792 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:0px;
  6039. width:0px;
  6040. height:0px;
  6041. }
  6042. #u99793_div {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:60px;
  6048. height:30px;
  6049. background:inherit;
  6050. background-color:rgba(24, 144, 255, 1);
  6051. border:none;
  6052. border-radius:4px;
  6053. -moz-box-shadow:none;
  6054. -webkit-box-shadow:none;
  6055. box-shadow:none;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:14px;
  6060. color:#FFFFFF;
  6061. }
  6062. #u99793 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:963px;
  6066. top:104px;
  6067. width:60px;
  6068. height:30px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:14px;
  6074. color:#FFFFFF;
  6075. }
  6076. #u99793 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 2px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u99793_text {
  6084. border-width:0px;
  6085. word-wrap:break-word;
  6086. text-transform:none;
  6087. }
  6088. #u99794_div {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:60px;
  6094. height:30px;
  6095. background:inherit;
  6096. background-color:rgba(255, 255, 255, 1);
  6097. box-sizing:border-box;
  6098. border-width:1px;
  6099. border-style:solid;
  6100. border-color:rgba(170, 170, 170, 1);
  6101. border-radius:4px;
  6102. -moz-box-shadow:none;
  6103. -webkit-box-shadow:none;
  6104. box-shadow:none;
  6105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6106. font-weight:400;
  6107. font-style:normal;
  6108. font-size:14px;
  6109. }
  6110. #u99794 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:1033px;
  6114. top:104px;
  6115. width:60px;
  6116. height:30px;
  6117. display:flex;
  6118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:14px;
  6122. }
  6123. #u99794 .text {
  6124. position:absolute;
  6125. align-self:center;
  6126. padding:2px 2px 2px 2px;
  6127. box-sizing:border-box;
  6128. width:100%;
  6129. }
  6130. #u99794_text {
  6131. border-width:0px;
  6132. word-wrap:break-word;
  6133. text-transform:none;
  6134. }
  6135. #u99795 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:0px;
  6139. top:0px;
  6140. width:0px;
  6141. height:0px;
  6142. }
  6143. #u99796_div {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:140px;
  6149. height:30px;
  6150. background:inherit;
  6151. background-color:rgba(255, 255, 255, 1);
  6152. box-sizing:border-box;
  6153. border-width:1px;
  6154. border-style:solid;
  6155. border-color:rgba(201, 201, 201, 1);
  6156. border-radius:4px;
  6157. -moz-box-shadow:none;
  6158. -webkit-box-shadow:none;
  6159. box-shadow:none;
  6160. font-family:'Microsoft YaHei', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. font-size:14px;
  6164. color:#CCCCCC;
  6165. text-align:left;
  6166. }
  6167. #u99796 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:663px;
  6171. top:104px;
  6172. width:140px;
  6173. height:30px;
  6174. display:flex;
  6175. font-family:'Microsoft YaHei', sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:14px;
  6179. color:#CCCCCC;
  6180. text-align:left;
  6181. }
  6182. #u99796 .text {
  6183. position:absolute;
  6184. align-self:center;
  6185. padding:2px 8px 2px 8px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u99796_text {
  6190. border-width:0px;
  6191. word-wrap:break-word;
  6192. text-transform:none;
  6193. visibility:hidden;
  6194. }
  6195. #u99797_input {
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:127px;
  6200. height:25px;
  6201. padding:2px 2px 2px 2px;
  6202. font-family:'Microsoft YaHei', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:10px;
  6206. letter-spacing:normal;
  6207. color:#000000;
  6208. vertical-align:none;
  6209. text-align:left;
  6210. text-transform:none;
  6211. background-color:transparent;
  6212. border-color:transparent;
  6213. }
  6214. #u99797_input.disabled {
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:127px;
  6219. height:25px;
  6220. padding:2px 2px 2px 2px;
  6221. font-family:'Microsoft YaHei', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:10px;
  6225. letter-spacing:normal;
  6226. color:#000000;
  6227. vertical-align:none;
  6228. text-align:left;
  6229. text-transform:none;
  6230. background-color:transparent;
  6231. border-color:transparent;
  6232. }
  6233. #u99797_div {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:127px;
  6239. height:25px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 1);
  6242. border:none;
  6243. border-radius:0px;
  6244. -moz-box-shadow:none;
  6245. -webkit-box-shadow:none;
  6246. box-shadow:none;
  6247. font-family:'Microsoft YaHei', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:10px;
  6251. }
  6252. #u99797 {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:671px;
  6256. top:105px;
  6257. width:127px;
  6258. height:25px;
  6259. display:flex;
  6260. font-family:'Microsoft YaHei', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:10px;
  6264. }
  6265. #u99797 .text {
  6266. position:absolute;
  6267. align-self:center;
  6268. padding:2px 2px 2px 2px;
  6269. box-sizing:border-box;
  6270. width:100%;
  6271. }
  6272. #u99797_div.disabled {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:127px;
  6278. height:25px;
  6279. background:inherit;
  6280. background-color:rgba(240, 240, 240, 1);
  6281. border:none;
  6282. border-radius:0px;
  6283. -moz-box-shadow:none;
  6284. -webkit-box-shadow:none;
  6285. box-shadow:none;
  6286. font-family:'Microsoft YaHei', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:10px;
  6290. }
  6291. #u99797.disabled {
  6292. }
  6293. #u99798 {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:0px;
  6299. height:0px;
  6300. }
  6301. #u99799_div {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:0px;
  6305. top:0px;
  6306. width:140px;
  6307. height:30px;
  6308. background:inherit;
  6309. background-color:rgba(255, 255, 255, 1);
  6310. box-sizing:border-box;
  6311. border-width:1px;
  6312. border-style:solid;
  6313. border-color:rgba(215, 215, 215, 1);
  6314. border-radius:4px;
  6315. -moz-box-shadow:none;
  6316. -webkit-box-shadow:none;
  6317. box-shadow:none;
  6318. font-size:14px;
  6319. }
  6320. #u99799 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:363px;
  6324. top:104px;
  6325. width:140px;
  6326. height:30px;
  6327. display:flex;
  6328. font-size:14px;
  6329. }
  6330. #u99799 .text {
  6331. position:absolute;
  6332. align-self:center;
  6333. padding:2px 2px 2px 2px;
  6334. box-sizing:border-box;
  6335. width:100%;
  6336. }
  6337. #u99799_text {
  6338. border-width:0px;
  6339. word-wrap:break-word;
  6340. text-transform:none;
  6341. visibility:hidden;
  6342. }
  6343. #u99800_input {
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:134px;
  6348. height:23px;
  6349. padding:2px 2px 2px 2px;
  6350. font-family:'ArialMT', 'Arial', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. font-size:14px;
  6354. letter-spacing:normal;
  6355. color:#AAAAAA;
  6356. vertical-align:none;
  6357. text-align:left;
  6358. text-transform:none;
  6359. background-color:transparent;
  6360. border-color:transparent;
  6361. }
  6362. #u99800_input.disabled {
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:134px;
  6367. height:23px;
  6368. padding:2px 2px 2px 2px;
  6369. font-family:'ArialMT', 'Arial', sans-serif;
  6370. font-weight:400;
  6371. font-style:normal;
  6372. font-size:14px;
  6373. letter-spacing:normal;
  6374. color:#AAAAAA;
  6375. vertical-align:none;
  6376. text-align:left;
  6377. text-transform:none;
  6378. background-color:transparent;
  6379. border-color:transparent;
  6380. }
  6381. #u99800_div {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:134px;
  6387. height:23px;
  6388. background:inherit;
  6389. background-color:rgba(255, 255, 255, 1);
  6390. border:none;
  6391. border-radius:0px;
  6392. -moz-box-shadow:none;
  6393. -webkit-box-shadow:none;
  6394. box-shadow:none;
  6395. font-size:14px;
  6396. color:#AAAAAA;
  6397. }
  6398. #u99800 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:367px;
  6402. top:106px;
  6403. width:134px;
  6404. height:23px;
  6405. display:flex;
  6406. font-size:14px;
  6407. color:#AAAAAA;
  6408. }
  6409. #u99800 .text {
  6410. position:absolute;
  6411. align-self:flex-start;
  6412. padding:2px 2px 2px 2px;
  6413. box-sizing:border-box;
  6414. width:100%;
  6415. }
  6416. #u99800_div.disabled {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:134px;
  6422. height:23px;
  6423. background:inherit;
  6424. background-color:rgba(240, 240, 240, 1);
  6425. border:none;
  6426. border-radius:0px;
  6427. -moz-box-shadow:none;
  6428. -webkit-box-shadow:none;
  6429. box-shadow:none;
  6430. font-size:14px;
  6431. color:#AAAAAA;
  6432. }
  6433. #u99800.disabled {
  6434. }
  6435. .u99800_input_option {
  6436. font-size:14px;
  6437. }
  6438. #u99801_div {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:530px;
  6444. height:75px;
  6445. background:inherit;
  6446. background-color:rgba(255, 255, 255, 0);
  6447. border:none;
  6448. border-radius:0px;
  6449. -moz-box-shadow:none;
  6450. -webkit-box-shadow:none;
  6451. box-shadow:none;
  6452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6453. font-weight:400;
  6454. font-style:normal;
  6455. font-size:18px;
  6456. color:#D9001B;
  6457. }
  6458. #u99801 {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:409px;
  6462. top:686px;
  6463. width:530px;
  6464. height:75px;
  6465. display:flex;
  6466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:18px;
  6470. color:#D9001B;
  6471. }
  6472. #u99801 .text {
  6473. position:absolute;
  6474. align-self:flex-start;
  6475. padding:0px 0px 0px 0px;
  6476. box-sizing:border-box;
  6477. width:100%;
  6478. }
  6479. #u99801_text {
  6480. border-width:0px;
  6481. white-space:nowrap;
  6482. text-transform:none;
  6483. }
  6484. #u99802 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:0px;
  6490. height:0px;
  6491. }
  6492. #u99803_div {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:200px;
  6498. height:1180px;
  6499. background:inherit;
  6500. background-color:rgba(255, 255, 255, 1);
  6501. border:none;
  6502. border-radius:0px;
  6503. -moz-box-shadow:none;
  6504. -webkit-box-shadow:none;
  6505. box-shadow:none;
  6506. }
  6507. #u99803 {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:120px;
  6511. top:50px;
  6512. width:200px;
  6513. height:1180px;
  6514. display:flex;
  6515. }
  6516. #u99803 .text {
  6517. position:absolute;
  6518. align-self:center;
  6519. padding:2px 2px 2px 2px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u99803_text {
  6524. border-width:0px;
  6525. word-wrap:break-word;
  6526. text-transform:none;
  6527. visibility:hidden;
  6528. }
  6529. #u99804_div {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:200px;
  6535. height:60px;
  6536. background:inherit;
  6537. background-color:rgba(224, 231, 247, 1);
  6538. border:none;
  6539. border-radius:0px;
  6540. -moz-box-shadow:none;
  6541. -webkit-box-shadow:none;
  6542. box-shadow:none;
  6543. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6544. font-weight:500;
  6545. font-style:normal;
  6546. font-size:18px;
  6547. }
  6548. #u99804 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:120px;
  6552. top:50px;
  6553. width:200px;
  6554. height:60px;
  6555. display:flex;
  6556. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6557. font-weight:500;
  6558. font-style:normal;
  6559. font-size:18px;
  6560. }
  6561. #u99804 .text {
  6562. position:absolute;
  6563. align-self:center;
  6564. padding:0px 0px 0px 20px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u99804_text {
  6569. border-width:0px;
  6570. word-wrap:break-word;
  6571. text-transform:none;
  6572. }
  6573. #u99805_div {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:65px;
  6579. height:22px;
  6580. background:inherit;
  6581. background-color:rgba(255, 255, 255, 0);
  6582. border:none;
  6583. border-radius:0px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:16px;
  6591. }
  6592. #u99805 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:143px;
  6596. top:163px;
  6597. width:65px;
  6598. height:22px;
  6599. display:flex;
  6600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:16px;
  6604. }
  6605. #u99805 .text {
  6606. position:absolute;
  6607. align-self:flex-start;
  6608. padding:0px 0px 0px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u99805_text {
  6613. border-width:0px;
  6614. white-space:nowrap;
  6615. text-transform:none;
  6616. }
  6617. #u99806_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:49px;
  6623. height:17px;
  6624. background:inherit;
  6625. background-color:rgba(255, 255, 255, 0);
  6626. border:none;
  6627. border-radius:0px;
  6628. -moz-box-shadow:none;
  6629. -webkit-box-shadow:none;
  6630. box-shadow:none;
  6631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6632. font-weight:400;
  6633. font-style:normal;
  6634. font-size:12px;
  6635. color:#AAAAAA;
  6636. }
  6637. #u99806 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:143px;
  6641. top:130px;
  6642. width:49px;
  6643. height:17px;
  6644. display:flex;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:12px;
  6649. color:#AAAAAA;
  6650. }
  6651. #u99806 .text {
  6652. position:absolute;
  6653. align-self:flex-start;
  6654. padding:0px 0px 0px 0px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u99806_text {
  6659. border-width:0px;
  6660. white-space:nowrap;
  6661. text-transform:none;
  6662. }
  6663. #u99807_div {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:65px;
  6669. height:22px;
  6670. background:inherit;
  6671. background-color:rgba(255, 255, 255, 0);
  6672. border:none;
  6673. border-radius:0px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:16px;
  6681. }
  6682. #u99807 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:143px;
  6686. top:205px;
  6687. width:65px;
  6688. height:22px;
  6689. display:flex;
  6690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:16px;
  6694. }
  6695. #u99807 .text {
  6696. position:absolute;
  6697. align-self:flex-start;
  6698. padding:0px 0px 0px 0px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u99807_text {
  6703. border-width:0px;
  6704. white-space:nowrap;
  6705. text-transform:none;
  6706. }
  6707. #u99808_div {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:65px;
  6713. height:22px;
  6714. background:inherit;
  6715. background-color:rgba(255, 255, 255, 0);
  6716. border:none;
  6717. border-radius:0px;
  6718. -moz-box-shadow:none;
  6719. -webkit-box-shadow:none;
  6720. box-shadow:none;
  6721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:16px;
  6725. }
  6726. #u99808 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:143px;
  6730. top:247px;
  6731. width:65px;
  6732. height:22px;
  6733. display:flex;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:16px;
  6738. }
  6739. #u99808 .text {
  6740. position:absolute;
  6741. align-self:flex-start;
  6742. padding:0px 0px 0px 0px;
  6743. box-sizing:border-box;
  6744. width:100%;
  6745. }
  6746. #u99808_text {
  6747. border-width:0px;
  6748. white-space:nowrap;
  6749. text-transform:none;
  6750. }
  6751. #u99809_div {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:65px;
  6757. height:22px;
  6758. background:inherit;
  6759. background-color:rgba(255, 255, 255, 0);
  6760. border:none;
  6761. border-radius:0px;
  6762. -moz-box-shadow:none;
  6763. -webkit-box-shadow:none;
  6764. box-shadow:none;
  6765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:16px;
  6769. }
  6770. #u99809 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:143px;
  6774. top:342px;
  6775. width:65px;
  6776. height:22px;
  6777. display:flex;
  6778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6779. font-weight:400;
  6780. font-style:normal;
  6781. font-size:16px;
  6782. }
  6783. #u99809 .text {
  6784. position:absolute;
  6785. align-self:flex-start;
  6786. padding:0px 0px 0px 0px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u99809_text {
  6791. border-width:0px;
  6792. white-space:nowrap;
  6793. text-transform:none;
  6794. }
  6795. #u99810_img {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:201px;
  6801. height:2px;
  6802. }
  6803. #u99810 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:120px;
  6807. top:289px;
  6808. width:200px;
  6809. height:1px;
  6810. display:flex;
  6811. }
  6812. #u99810 .text {
  6813. position:absolute;
  6814. align-self:center;
  6815. padding:2px 2px 2px 2px;
  6816. box-sizing:border-box;
  6817. width:100%;
  6818. }
  6819. #u99810_text {
  6820. border-width:0px;
  6821. word-wrap:break-word;
  6822. text-transform:none;
  6823. visibility:hidden;
  6824. }
  6825. #u99811_div {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:0px;
  6829. top:0px;
  6830. width:49px;
  6831. height:17px;
  6832. background:inherit;
  6833. background-color:rgba(255, 255, 255, 0);
  6834. border:none;
  6835. border-radius:0px;
  6836. -moz-box-shadow:none;
  6837. -webkit-box-shadow:none;
  6838. box-shadow:none;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:12px;
  6843. color:#AAAAAA;
  6844. }
  6845. #u99811 {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:143px;
  6849. top:309px;
  6850. width:49px;
  6851. height:17px;
  6852. display:flex;
  6853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6854. font-weight:400;
  6855. font-style:normal;
  6856. font-size:12px;
  6857. color:#AAAAAA;
  6858. }
  6859. #u99811 .text {
  6860. position:absolute;
  6861. align-self:flex-start;
  6862. padding:0px 0px 0px 0px;
  6863. box-sizing:border-box;
  6864. width:100%;
  6865. }
  6866. #u99811_text {
  6867. border-width:0px;
  6868. white-space:nowrap;
  6869. text-transform:none;
  6870. }
  6871. #u99812_div {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:65px;
  6877. height:22px;
  6878. background:inherit;
  6879. background-color:rgba(255, 255, 255, 0);
  6880. border:none;
  6881. border-radius:0px;
  6882. -moz-box-shadow:none;
  6883. -webkit-box-shadow:none;
  6884. box-shadow:none;
  6885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:16px;
  6889. }
  6890. #u99812 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:143px;
  6894. top:384px;
  6895. width:65px;
  6896. height:22px;
  6897. display:flex;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:16px;
  6902. }
  6903. #u99812 .text {
  6904. position:absolute;
  6905. align-self:flex-start;
  6906. padding:0px 0px 0px 0px;
  6907. box-sizing:border-box;
  6908. width:100%;
  6909. }
  6910. #u99812_text {
  6911. border-width:0px;
  6912. white-space:nowrap;
  6913. text-transform:none;
  6914. }
  6915. #u99813_div {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:60px;
  6921. height:30px;
  6922. background:inherit;
  6923. background-color:rgba(255, 255, 255, 1);
  6924. box-sizing:border-box;
  6925. border-width:1px;
  6926. border-style:solid;
  6927. border-color:rgba(170, 170, 170, 1);
  6928. border-radius:4px;
  6929. -moz-box-shadow:none;
  6930. -webkit-box-shadow:none;
  6931. box-shadow:none;
  6932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6933. font-weight:400;
  6934. font-style:normal;
  6935. font-size:14px;
  6936. }
  6937. #u99813 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:453px;
  6941. top:153px;
  6942. width:60px;
  6943. height:30px;
  6944. display:flex;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:14px;
  6949. }
  6950. #u99813 .text {
  6951. position:absolute;
  6952. align-self:center;
  6953. padding:2px 2px 2px 2px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u99813_text {
  6958. border-width:0px;
  6959. word-wrap:break-word;
  6960. text-transform:none;
  6961. }