styles.css 134 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1889px;
  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. #u88199_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. #u88199 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u88199 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u88199_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u88200_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. #u88200 {
  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. #u88200 .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. #u88200_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u88201_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. #u88201 {
  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. #u88201 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u88201_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u88202 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u88203_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u88203 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u88203 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u88203_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u88204_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. #u88204 {
  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. #u88204 .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. #u88204_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u88205_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. #u88205 {
  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. #u88205 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u88205_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u88206 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u88207_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u88207_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u88207_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u88207 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u88207 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u88207_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u88207.disabled {
  356. }
  357. .u88207_input_option {
  358. font-size:14px;
  359. }
  360. #u88208_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u88208 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u88208 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u88208_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u88209_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u88209 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u88209 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u88209_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u88210_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u88210 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u88210 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u88210_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u88211 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u88212_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u88212 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u88212 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u88212_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u88213_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u88213 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u88213 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u88213_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u88214 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u88215_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u88215 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u88215 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u88215_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u88216_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u88216 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u88216 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u88216_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u88217 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u88218_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u88218 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u88218 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u88218_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u88219_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u88219 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u88219 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u88219_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u88220 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u88221_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u88221 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u88221 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u88221_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u88222_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u88222 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u88222 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u88222_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u88223 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u88224_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u88224 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u88224 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u88224_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u88225_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u88225 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u88225 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u88225_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u88226 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u88227_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u88227 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u88227 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u88227_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u88228_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u88228 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u88228 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u88228_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u88229 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u88230_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u88230 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u88230 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u88230_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u88231_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u88231 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u88231 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u88231_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u88232 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u88233_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u88233 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u88233 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u88233_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u88234_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u88234 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u88234 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u88234_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u88235 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u88236_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u88236 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u88236 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u88236_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u88237_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u88237 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u88237 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u88237_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u88238 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u88239_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u88239 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u88239 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u88239_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u88240_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u88240 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u88240 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u88240_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u88241_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u88241 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u88241 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u88241_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u88242_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u88242 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u88242 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u88242_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u88243_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u88243 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u88243 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u88243_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u88244_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u88244 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u88244 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u88244_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u88245 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u88246_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u88246 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u88246 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u88246_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u88247_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u88247 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u88247 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u88247_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u88248 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u88249_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u88249 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u88249 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u88249_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u88250_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u88250 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u88250 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u88250_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u88251_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. color:#1890FF;
  1653. }
  1654. #u88251 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:330px;
  1658. top:50px;
  1659. width:1260px;
  1660. height:1191px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u88251 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u88251_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u88253 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:0px;
  1683. height:0px;
  1684. }
  1685. #u88254_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:200px;
  1691. height:1191px;
  1692. }
  1693. #u88254 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:120px;
  1697. top:50px;
  1698. width:200px;
  1699. height:1191px;
  1700. display:flex;
  1701. }
  1702. #u88254 .text {
  1703. position:absolute;
  1704. align-self:center;
  1705. padding:2px 2px 2px 2px;
  1706. box-sizing:border-box;
  1707. width:100%;
  1708. }
  1709. #u88254_text {
  1710. border-width:0px;
  1711. word-wrap:break-word;
  1712. text-transform:none;
  1713. visibility:hidden;
  1714. }
  1715. #u88255_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:200px;
  1721. height:60px;
  1722. background:inherit;
  1723. background-color:rgba(224, 231, 247, 1);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1730. font-weight:500;
  1731. font-style:normal;
  1732. font-size:18px;
  1733. }
  1734. #u88255 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:120px;
  1738. top:50px;
  1739. width:200px;
  1740. height:60px;
  1741. display:flex;
  1742. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1743. font-weight:500;
  1744. font-style:normal;
  1745. font-size:18px;
  1746. }
  1747. #u88255 .text {
  1748. position:absolute;
  1749. align-self:center;
  1750. padding:0px 0px 0px 20px;
  1751. box-sizing:border-box;
  1752. width:100%;
  1753. }
  1754. #u88255_text {
  1755. border-width:0px;
  1756. word-wrap:break-word;
  1757. text-transform:none;
  1758. }
  1759. #u88256 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:120px;
  1763. top:130px;
  1764. width:200px;
  1765. height:1078px;
  1766. }
  1767. #u88256_state0 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:200px;
  1773. height:1078px;
  1774. overflow:auto;
  1775. -webkit-overflow-scrolling:touch;
  1776. -ms-overflow-x:hidden;
  1777. overflow-x:hidden;
  1778. background-image:none;
  1779. border:none;
  1780. border-radius:0px;
  1781. -moz-box-shadow:none;
  1782. -webkit-box-shadow:none;
  1783. box-shadow:none;
  1784. }
  1785. #u88256_state0_content {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:1px;
  1791. height:1px;
  1792. }
  1793. #u88257_div {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:97px;
  1799. height:22px;
  1800. background:inherit;
  1801. background-color:rgba(255, 255, 255, 0);
  1802. border:none;
  1803. border-radius:0px;
  1804. -moz-box-shadow:none;
  1805. -webkit-box-shadow:none;
  1806. box-shadow:none;
  1807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:16px;
  1811. }
  1812. #u88257 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:30px;
  1816. top:0px;
  1817. width:97px;
  1818. height:22px;
  1819. display:flex;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:16px;
  1824. }
  1825. #u88257 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:0px 0px 0px 0px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u88257_text {
  1833. border-width:0px;
  1834. word-wrap:break-word;
  1835. text-transform:none;
  1836. }
  1837. #u88258_div {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:65px;
  1843. height:22px;
  1844. background:inherit;
  1845. background-color:rgba(255, 255, 255, 0);
  1846. border:none;
  1847. border-radius:0px;
  1848. -moz-box-shadow:none;
  1849. -webkit-box-shadow:none;
  1850. box-shadow:none;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:16px;
  1855. }
  1856. #u88258 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:30px;
  1860. top:42px;
  1861. width:65px;
  1862. height:22px;
  1863. display:flex;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:16px;
  1868. }
  1869. #u88258 .text {
  1870. position:absolute;
  1871. align-self:flex-start;
  1872. padding:0px 0px 0px 0px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u88258_text {
  1877. border-width:0px;
  1878. white-space:nowrap;
  1879. text-transform:none;
  1880. }
  1881. #u88259_div {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:49px;
  1887. height:22px;
  1888. background:inherit;
  1889. background-color:rgba(255, 255, 255, 0);
  1890. border:none;
  1891. border-radius:0px;
  1892. -moz-box-shadow:none;
  1893. -webkit-box-shadow:none;
  1894. box-shadow:none;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:16px;
  1899. }
  1900. #u88259 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:30px;
  1904. top:145px;
  1905. width:49px;
  1906. height:22px;
  1907. display:flex;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:16px;
  1912. }
  1913. #u88259 .text {
  1914. position:absolute;
  1915. align-self:flex-start;
  1916. padding:0px 0px 0px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u88259_text {
  1921. border-width:0px;
  1922. white-space:nowrap;
  1923. text-transform:none;
  1924. }
  1925. #u88260_div {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:97px;
  1931. height:22px;
  1932. background:inherit;
  1933. background-color:rgba(255, 255, 255, 0);
  1934. border:none;
  1935. border-radius:0px;
  1936. -moz-box-shadow:none;
  1937. -webkit-box-shadow:none;
  1938. box-shadow:none;
  1939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1940. font-weight:400;
  1941. font-style:normal;
  1942. font-size:16px;
  1943. }
  1944. #u88260 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:30px;
  1948. top:187px;
  1949. width:97px;
  1950. height:22px;
  1951. display:flex;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:16px;
  1956. }
  1957. #u88260 .text {
  1958. position:absolute;
  1959. align-self:flex-start;
  1960. padding:0px 0px 0px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u88260_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. }
  1969. #u88261_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:201px;
  1975. height:2px;
  1976. }
  1977. #u88261 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:84px;
  1982. width:200px;
  1983. height:1px;
  1984. display:flex;
  1985. }
  1986. #u88261 .text {
  1987. position:absolute;
  1988. align-self:center;
  1989. padding:2px 2px 2px 2px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u88261_text {
  1994. border-width:0px;
  1995. word-wrap:break-word;
  1996. text-transform:none;
  1997. visibility:hidden;
  1998. }
  1999. #u88262_div {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:49px;
  2005. height:17px;
  2006. background:inherit;
  2007. background-color:rgba(255, 255, 255, 0);
  2008. border:none;
  2009. border-radius:0px;
  2010. -moz-box-shadow:none;
  2011. -webkit-box-shadow:none;
  2012. box-shadow:none;
  2013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2014. font-weight:400;
  2015. font-style:normal;
  2016. font-size:12px;
  2017. color:#AAAAAA;
  2018. }
  2019. #u88262 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:30px;
  2023. top:105px;
  2024. width:49px;
  2025. height:17px;
  2026. display:flex;
  2027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:12px;
  2031. color:#AAAAAA;
  2032. }
  2033. #u88262 .text {
  2034. position:absolute;
  2035. align-self:flex-start;
  2036. padding:0px 0px 0px 0px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u88262_text {
  2041. border-width:0px;
  2042. white-space:nowrap;
  2043. text-transform:none;
  2044. }
  2045. #u88263_div {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:97px;
  2051. height:22px;
  2052. background:inherit;
  2053. background-color:rgba(255, 255, 255, 0);
  2054. border:none;
  2055. border-radius:0px;
  2056. -moz-box-shadow:none;
  2057. -webkit-box-shadow:none;
  2058. box-shadow:none;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:16px;
  2063. }
  2064. #u88263 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:30px;
  2068. top:229px;
  2069. width:97px;
  2070. height:22px;
  2071. display:flex;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:16px;
  2076. }
  2077. #u88263 .text {
  2078. position:absolute;
  2079. align-self:flex-start;
  2080. padding:0px 0px 0px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u88263_text {
  2085. border-width:0px;
  2086. word-wrap:break-word;
  2087. text-transform:none;
  2088. }
  2089. #u88264_div {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:0px;
  2093. top:0px;
  2094. width:65px;
  2095. height:22px;
  2096. background:inherit;
  2097. background-color:rgba(255, 255, 255, 0);
  2098. border:none;
  2099. border-radius:0px;
  2100. -moz-box-shadow:none;
  2101. -webkit-box-shadow:none;
  2102. box-shadow:none;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:16px;
  2107. }
  2108. #u88264 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:30px;
  2112. top:271px;
  2113. width:65px;
  2114. height:22px;
  2115. display:flex;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:16px;
  2120. }
  2121. #u88264 .text {
  2122. position:absolute;
  2123. align-self:flex-start;
  2124. padding:0px 0px 0px 0px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u88264_text {
  2129. border-width:0px;
  2130. white-space:nowrap;
  2131. text-transform:none;
  2132. }
  2133. #u88265_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:201px;
  2139. height:2px;
  2140. }
  2141. #u88265 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:313px;
  2146. width:200px;
  2147. height:1px;
  2148. display:flex;
  2149. }
  2150. #u88265 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 2px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u88265_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. visibility:hidden;
  2162. }
  2163. #u88266_div {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:65px;
  2169. height:22px;
  2170. background:inherit;
  2171. background-color:rgba(255, 255, 255, 0);
  2172. border:none;
  2173. border-radius:0px;
  2174. -moz-box-shadow:none;
  2175. -webkit-box-shadow:none;
  2176. box-shadow:none;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:16px;
  2181. }
  2182. #u88266 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:30px;
  2186. top:370px;
  2187. width:65px;
  2188. height:22px;
  2189. display:flex;
  2190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:16px;
  2194. }
  2195. #u88266 .text {
  2196. position:absolute;
  2197. align-self:flex-start;
  2198. padding:0px 0px 0px 0px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u88266_text {
  2203. border-width:0px;
  2204. white-space:nowrap;
  2205. text-transform:none;
  2206. }
  2207. #u88267_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:49px;
  2213. height:17px;
  2214. background:inherit;
  2215. background-color:rgba(255, 255, 255, 0);
  2216. border:none;
  2217. border-radius:0px;
  2218. -moz-box-shadow:none;
  2219. -webkit-box-shadow:none;
  2220. box-shadow:none;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:12px;
  2225. color:#AAAAAA;
  2226. }
  2227. #u88267 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:30px;
  2231. top:334px;
  2232. width:49px;
  2233. height:17px;
  2234. display:flex;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:12px;
  2239. color:#AAAAAA;
  2240. }
  2241. #u88267 .text {
  2242. position:absolute;
  2243. align-self:flex-start;
  2244. padding:0px 0px 0px 0px;
  2245. box-sizing:border-box;
  2246. width:100%;
  2247. }
  2248. #u88267_text {
  2249. border-width:0px;
  2250. white-space:nowrap;
  2251. text-transform:none;
  2252. }
  2253. #u88268_div {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:0px;
  2257. top:0px;
  2258. width:65px;
  2259. height:22px;
  2260. background:inherit;
  2261. background-color:rgba(255, 255, 255, 0);
  2262. border:none;
  2263. border-radius:0px;
  2264. -moz-box-shadow:none;
  2265. -webkit-box-shadow:none;
  2266. box-shadow:none;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:16px;
  2271. }
  2272. #u88268 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:30px;
  2276. top:412px;
  2277. width:65px;
  2278. height:22px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:16px;
  2284. }
  2285. #u88268 .text {
  2286. position:absolute;
  2287. align-self:flex-start;
  2288. padding:0px 0px 0px 0px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u88268_text {
  2293. border-width:0px;
  2294. white-space:nowrap;
  2295. text-transform:none;
  2296. }
  2297. #u88269_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:65px;
  2303. height:22px;
  2304. background:inherit;
  2305. background-color:rgba(255, 255, 255, 0);
  2306. border:none;
  2307. border-radius:0px;
  2308. -moz-box-shadow:none;
  2309. -webkit-box-shadow:none;
  2310. box-shadow:none;
  2311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2312. font-weight:400;
  2313. font-style:normal;
  2314. font-size:16px;
  2315. }
  2316. #u88269 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:30px;
  2320. top:454px;
  2321. width:65px;
  2322. height:22px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:16px;
  2328. }
  2329. #u88269 .text {
  2330. position:absolute;
  2331. align-self:flex-start;
  2332. padding:0px 0px 0px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u88269_text {
  2337. border-width:0px;
  2338. white-space:nowrap;
  2339. text-transform:none;
  2340. }
  2341. #u88270_div {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:65px;
  2347. height:22px;
  2348. background:inherit;
  2349. background-color:rgba(255, 255, 255, 0);
  2350. border:none;
  2351. border-radius:0px;
  2352. -moz-box-shadow:none;
  2353. -webkit-box-shadow:none;
  2354. box-shadow:none;
  2355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2356. font-weight:400;
  2357. font-style:normal;
  2358. font-size:16px;
  2359. }
  2360. #u88270 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:30px;
  2364. top:496px;
  2365. width:65px;
  2366. height:22px;
  2367. display:flex;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:16px;
  2372. }
  2373. #u88270 .text {
  2374. position:absolute;
  2375. align-self:flex-start;
  2376. padding:0px 0px 0px 0px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u88270_text {
  2381. border-width:0px;
  2382. white-space:nowrap;
  2383. text-transform:none;
  2384. }
  2385. #u88271_div {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:65px;
  2391. height:22px;
  2392. background:inherit;
  2393. background-color:rgba(255, 255, 255, 0);
  2394. border:none;
  2395. border-radius:0px;
  2396. -moz-box-shadow:none;
  2397. -webkit-box-shadow:none;
  2398. box-shadow:none;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:16px;
  2403. }
  2404. #u88271 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:30px;
  2408. top:538px;
  2409. width:65px;
  2410. height:22px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:16px;
  2416. }
  2417. #u88271 .text {
  2418. position:absolute;
  2419. align-self:flex-start;
  2420. padding:0px 0px 0px 0px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u88271_text {
  2425. border-width:0px;
  2426. white-space:nowrap;
  2427. text-transform:none;
  2428. }
  2429. #u88272_div {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:65px;
  2435. height:22px;
  2436. background:inherit;
  2437. background-color:rgba(255, 255, 255, 0);
  2438. border:none;
  2439. border-radius:0px;
  2440. -moz-box-shadow:none;
  2441. -webkit-box-shadow:none;
  2442. box-shadow:none;
  2443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2444. font-weight:400;
  2445. font-style:normal;
  2446. font-size:16px;
  2447. }
  2448. #u88272 {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:30px;
  2452. top:580px;
  2453. width:65px;
  2454. height:22px;
  2455. display:flex;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:16px;
  2460. }
  2461. #u88272 .text {
  2462. position:absolute;
  2463. align-self:flex-start;
  2464. padding:0px 0px 0px 0px;
  2465. box-sizing:border-box;
  2466. width:100%;
  2467. }
  2468. #u88272_text {
  2469. border-width:0px;
  2470. white-space:nowrap;
  2471. text-transform:none;
  2472. }
  2473. #u88273_img {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:201px;
  2479. height:2px;
  2480. }
  2481. #u88273 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:1289px;
  2486. width:200px;
  2487. height:1px;
  2488. display:flex;
  2489. }
  2490. #u88273 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 2px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u88273_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u88274_div {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:65px;
  2509. height:22px;
  2510. background:inherit;
  2511. background-color:rgba(255, 255, 255, 0);
  2512. border:none;
  2513. border-radius:0px;
  2514. -moz-box-shadow:none;
  2515. -webkit-box-shadow:none;
  2516. box-shadow:none;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:16px;
  2521. }
  2522. #u88274 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:30px;
  2526. top:1346px;
  2527. width:65px;
  2528. height:22px;
  2529. display:flex;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:16px;
  2534. }
  2535. #u88274 .text {
  2536. position:absolute;
  2537. align-self:flex-start;
  2538. padding:0px 0px 0px 0px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u88274_text {
  2543. border-width:0px;
  2544. white-space:nowrap;
  2545. text-transform:none;
  2546. }
  2547. #u88275_div {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:49px;
  2553. height:17px;
  2554. background:inherit;
  2555. background-color:rgba(255, 255, 255, 0);
  2556. border:none;
  2557. border-radius:0px;
  2558. -moz-box-shadow:none;
  2559. -webkit-box-shadow:none;
  2560. box-shadow:none;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:12px;
  2565. color:#AAAAAA;
  2566. }
  2567. #u88275 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:30px;
  2571. top:1310px;
  2572. width:49px;
  2573. height:17px;
  2574. display:flex;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:12px;
  2579. color:#AAAAAA;
  2580. }
  2581. #u88275 .text {
  2582. position:absolute;
  2583. align-self:flex-start;
  2584. padding:0px 0px 0px 0px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u88275_text {
  2589. border-width:0px;
  2590. white-space:nowrap;
  2591. text-transform:none;
  2592. }
  2593. #u88276_div {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:65px;
  2599. height:22px;
  2600. background:inherit;
  2601. background-color:rgba(255, 255, 255, 0);
  2602. border:none;
  2603. border-radius:0px;
  2604. -moz-box-shadow:none;
  2605. -webkit-box-shadow:none;
  2606. box-shadow:none;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:16px;
  2611. }
  2612. #u88276 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:30px;
  2616. top:1388px;
  2617. width:65px;
  2618. height:22px;
  2619. display:flex;
  2620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. font-size:16px;
  2624. }
  2625. #u88276 .text {
  2626. position:absolute;
  2627. align-self:flex-start;
  2628. padding:0px 0px 0px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u88276_text {
  2633. border-width:0px;
  2634. white-space:nowrap;
  2635. text-transform:none;
  2636. }
  2637. #u88277_div {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:65px;
  2643. height:22px;
  2644. background:inherit;
  2645. background-color:rgba(255, 255, 255, 0);
  2646. border:none;
  2647. border-radius:0px;
  2648. -moz-box-shadow:none;
  2649. -webkit-box-shadow:none;
  2650. box-shadow:none;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:16px;
  2655. }
  2656. #u88277 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:30px;
  2660. top:1472px;
  2661. width:65px;
  2662. height:22px;
  2663. display:flex;
  2664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2665. font-weight:400;
  2666. font-style:normal;
  2667. font-size:16px;
  2668. }
  2669. #u88277 .text {
  2670. position:absolute;
  2671. align-self:flex-start;
  2672. padding:0px 0px 0px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u88277_text {
  2677. border-width:0px;
  2678. white-space:nowrap;
  2679. text-transform:none;
  2680. }
  2681. #u88278_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:201px;
  2687. height:2px;
  2688. }
  2689. #u88278 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:1514px;
  2694. width:200px;
  2695. height:1px;
  2696. display:flex;
  2697. }
  2698. #u88278 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 2px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u88278_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u88279_div {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:49px;
  2717. height:22px;
  2718. background:inherit;
  2719. background-color:rgba(255, 255, 255, 0);
  2720. border:none;
  2721. border-radius:0px;
  2722. -moz-box-shadow:none;
  2723. -webkit-box-shadow:none;
  2724. box-shadow:none;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:16px;
  2729. }
  2730. #u88279 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:30px;
  2734. top:1571px;
  2735. width:49px;
  2736. height:22px;
  2737. display:flex;
  2738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:16px;
  2742. }
  2743. #u88279 .text {
  2744. position:absolute;
  2745. align-self:flex-start;
  2746. padding:0px 0px 0px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u88279_text {
  2751. border-width:0px;
  2752. white-space:nowrap;
  2753. text-transform:none;
  2754. }
  2755. #u88280_div {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:49px;
  2761. height:17px;
  2762. background:inherit;
  2763. background-color:rgba(255, 255, 255, 0);
  2764. border:none;
  2765. border-radius:0px;
  2766. -moz-box-shadow:none;
  2767. -webkit-box-shadow:none;
  2768. box-shadow:none;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:12px;
  2773. color:#AAAAAA;
  2774. }
  2775. #u88280 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:30px;
  2779. top:1535px;
  2780. width:49px;
  2781. height:17px;
  2782. display:flex;
  2783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:12px;
  2787. color:#AAAAAA;
  2788. }
  2789. #u88280 .text {
  2790. position:absolute;
  2791. align-self:flex-start;
  2792. padding:0px 0px 0px 0px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u88280_text {
  2797. border-width:0px;
  2798. white-space:nowrap;
  2799. text-transform:none;
  2800. }
  2801. #u88281_div {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:49px;
  2807. height:22px;
  2808. background:inherit;
  2809. background-color:rgba(255, 255, 255, 0);
  2810. border:none;
  2811. border-radius:0px;
  2812. -moz-box-shadow:none;
  2813. -webkit-box-shadow:none;
  2814. box-shadow:none;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:16px;
  2819. }
  2820. #u88281 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:30px;
  2824. top:1613px;
  2825. width:49px;
  2826. height:22px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:16px;
  2832. }
  2833. #u88281 .text {
  2834. position:absolute;
  2835. align-self:flex-start;
  2836. padding:0px 0px 0px 0px;
  2837. box-sizing:border-box;
  2838. width:100%;
  2839. }
  2840. #u88281_text {
  2841. border-width:0px;
  2842. white-space:nowrap;
  2843. text-transform:none;
  2844. }
  2845. #u88282_div {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:65px;
  2851. height:22px;
  2852. background:inherit;
  2853. background-color:rgba(255, 255, 255, 0);
  2854. border:none;
  2855. border-radius:0px;
  2856. -moz-box-shadow:none;
  2857. -webkit-box-shadow:none;
  2858. box-shadow:none;
  2859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2860. font-weight:400;
  2861. font-style:normal;
  2862. font-size:16px;
  2863. }
  2864. #u88282 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:30px;
  2868. top:1655px;
  2869. width:65px;
  2870. height:22px;
  2871. display:flex;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:16px;
  2876. }
  2877. #u88282 .text {
  2878. position:absolute;
  2879. align-self:flex-start;
  2880. padding:0px 0px 0px 0px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u88282_text {
  2885. border-width:0px;
  2886. white-space:nowrap;
  2887. text-transform:none;
  2888. }
  2889. #u88283_img {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:201px;
  2895. height:2px;
  2896. }
  2897. #u88283 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:1697px;
  2902. width:200px;
  2903. height:1px;
  2904. display:flex;
  2905. }
  2906. #u88283 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 2px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u88283_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u88284_div {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:81px;
  2925. height:22px;
  2926. background:inherit;
  2927. background-color:rgba(255, 255, 255, 0);
  2928. border:none;
  2929. border-radius:0px;
  2930. -moz-box-shadow:none;
  2931. -webkit-box-shadow:none;
  2932. box-shadow:none;
  2933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2934. font-weight:400;
  2935. font-style:normal;
  2936. font-size:16px;
  2937. }
  2938. #u88284 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:30px;
  2942. top:1754px;
  2943. width:81px;
  2944. height:22px;
  2945. display:flex;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:16px;
  2950. }
  2951. #u88284 .text {
  2952. position:absolute;
  2953. align-self:flex-start;
  2954. padding:0px 0px 0px 0px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u88284_text {
  2959. border-width:0px;
  2960. white-space:nowrap;
  2961. text-transform:none;
  2962. }
  2963. #u88285_div {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:49px;
  2969. height:17px;
  2970. background:inherit;
  2971. background-color:rgba(255, 255, 255, 0);
  2972. border:none;
  2973. border-radius:0px;
  2974. -moz-box-shadow:none;
  2975. -webkit-box-shadow:none;
  2976. box-shadow:none;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. color:#AAAAAA;
  2982. }
  2983. #u88285 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:30px;
  2987. top:1718px;
  2988. width:49px;
  2989. height:17px;
  2990. display:flex;
  2991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:12px;
  2995. color:#AAAAAA;
  2996. }
  2997. #u88285 .text {
  2998. position:absolute;
  2999. align-self:flex-start;
  3000. padding:0px 0px 0px 0px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u88285_text {
  3005. border-width:0px;
  3006. white-space:nowrap;
  3007. text-transform:none;
  3008. }
  3009. #u88286_div {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:81px;
  3015. height:22px;
  3016. background:inherit;
  3017. background-color:rgba(255, 255, 255, 0);
  3018. border:none;
  3019. border-radius:0px;
  3020. -moz-box-shadow:none;
  3021. -webkit-box-shadow:none;
  3022. box-shadow:none;
  3023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. font-size:16px;
  3027. }
  3028. #u88286 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:30px;
  3032. top:1796px;
  3033. width:81px;
  3034. height:22px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:16px;
  3040. }
  3041. #u88286 .text {
  3042. position:absolute;
  3043. align-self:flex-start;
  3044. padding:0px 0px 0px 0px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u88286_text {
  3049. border-width:0px;
  3050. white-space:nowrap;
  3051. text-transform:none;
  3052. }
  3053. #u88287_div {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:81px;
  3059. height:22px;
  3060. background:inherit;
  3061. background-color:rgba(255, 255, 255, 0);
  3062. border:none;
  3063. border-radius:0px;
  3064. -moz-box-shadow:none;
  3065. -webkit-box-shadow:none;
  3066. box-shadow:none;
  3067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3068. font-weight:400;
  3069. font-style:normal;
  3070. font-size:16px;
  3071. }
  3072. #u88287 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:30px;
  3076. top:1838px;
  3077. width:81px;
  3078. height:22px;
  3079. display:flex;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:16px;
  3084. }
  3085. #u88287 .text {
  3086. position:absolute;
  3087. align-self:flex-start;
  3088. padding:0px 0px 0px 0px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u88287_text {
  3093. border-width:0px;
  3094. white-space:nowrap;
  3095. text-transform:none;
  3096. }
  3097. #u88288_div {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:65px;
  3103. height:22px;
  3104. background:inherit;
  3105. background-color:rgba(255, 255, 255, 0);
  3106. border:none;
  3107. border-radius:0px;
  3108. -moz-box-shadow:none;
  3109. -webkit-box-shadow:none;
  3110. box-shadow:none;
  3111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3112. font-weight:400;
  3113. font-style:normal;
  3114. font-size:16px;
  3115. }
  3116. #u88288 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:30px;
  3120. top:1430px;
  3121. width:65px;
  3122. height:22px;
  3123. display:flex;
  3124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:16px;
  3128. }
  3129. #u88288 .text {
  3130. position:absolute;
  3131. align-self:flex-start;
  3132. padding:0px 0px 0px 0px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u88288_text {
  3137. border-width:0px;
  3138. white-space:nowrap;
  3139. text-transform:none;
  3140. }
  3141. #u88289_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:201px;
  3147. height:2px;
  3148. }
  3149. #u88289 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:669px;
  3154. width:200px;
  3155. height:1px;
  3156. display:flex;
  3157. }
  3158. #u88289 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 2px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u88289_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. visibility:hidden;
  3170. }
  3171. #u88290_div {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:65px;
  3177. height:22px;
  3178. background:inherit;
  3179. background-color:rgba(255, 255, 255, 0);
  3180. border:none;
  3181. border-radius:0px;
  3182. -moz-box-shadow:none;
  3183. -webkit-box-shadow:none;
  3184. box-shadow:none;
  3185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:16px;
  3189. }
  3190. #u88290 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:30px;
  3194. top:726px;
  3195. width:65px;
  3196. height:22px;
  3197. display:flex;
  3198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3199. font-weight:400;
  3200. font-style:normal;
  3201. font-size:16px;
  3202. }
  3203. #u88290 .text {
  3204. position:absolute;
  3205. align-self:flex-start;
  3206. padding:0px 0px 0px 0px;
  3207. box-sizing:border-box;
  3208. width:100%;
  3209. }
  3210. #u88290_text {
  3211. border-width:0px;
  3212. white-space:nowrap;
  3213. text-transform:none;
  3214. }
  3215. #u88291_div {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:0px;
  3219. top:0px;
  3220. width:49px;
  3221. height:17px;
  3222. background:inherit;
  3223. background-color:rgba(255, 255, 255, 0);
  3224. border:none;
  3225. border-radius:0px;
  3226. -moz-box-shadow:none;
  3227. -webkit-box-shadow:none;
  3228. box-shadow:none;
  3229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. color:#AAAAAA;
  3234. }
  3235. #u88291 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:30px;
  3239. top:690px;
  3240. width:49px;
  3241. height:17px;
  3242. display:flex;
  3243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. font-size:12px;
  3247. color:#AAAAAA;
  3248. }
  3249. #u88291 .text {
  3250. position:absolute;
  3251. align-self:flex-start;
  3252. padding:0px 0px 0px 0px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u88291_text {
  3257. border-width:0px;
  3258. white-space:nowrap;
  3259. text-transform:none;
  3260. }
  3261. #u88292_div {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:65px;
  3267. height:22px;
  3268. background:inherit;
  3269. background-color:rgba(255, 255, 255, 0);
  3270. border:none;
  3271. border-radius:0px;
  3272. -moz-box-shadow:none;
  3273. -webkit-box-shadow:none;
  3274. box-shadow:none;
  3275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3276. font-weight:400;
  3277. font-style:normal;
  3278. font-size:16px;
  3279. }
  3280. #u88292 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:30px;
  3284. top:768px;
  3285. width:65px;
  3286. height:22px;
  3287. display:flex;
  3288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3289. font-weight:400;
  3290. font-style:normal;
  3291. font-size:16px;
  3292. }
  3293. #u88292 .text {
  3294. position:absolute;
  3295. align-self:flex-start;
  3296. padding:0px 0px 0px 0px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u88292_text {
  3301. border-width:0px;
  3302. white-space:nowrap;
  3303. text-transform:none;
  3304. }
  3305. #u88293_div {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:65px;
  3311. height:22px;
  3312. background:inherit;
  3313. background-color:rgba(255, 255, 255, 0);
  3314. border:none;
  3315. border-radius:0px;
  3316. -moz-box-shadow:none;
  3317. -webkit-box-shadow:none;
  3318. box-shadow:none;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:16px;
  3323. }
  3324. #u88293 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:30px;
  3328. top:852px;
  3329. width:65px;
  3330. height:22px;
  3331. display:flex;
  3332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3333. font-weight:400;
  3334. font-style:normal;
  3335. font-size:16px;
  3336. }
  3337. #u88293 .text {
  3338. position:absolute;
  3339. align-self:flex-start;
  3340. padding:0px 0px 0px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u88293_text {
  3345. border-width:0px;
  3346. white-space:nowrap;
  3347. text-transform:none;
  3348. }
  3349. #u88294_div {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:65px;
  3355. height:22px;
  3356. background:inherit;
  3357. background-color:rgba(255, 255, 255, 0);
  3358. border:none;
  3359. border-radius:0px;
  3360. -moz-box-shadow:none;
  3361. -webkit-box-shadow:none;
  3362. box-shadow:none;
  3363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3364. font-weight:400;
  3365. font-style:normal;
  3366. font-size:16px;
  3367. }
  3368. #u88294 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:30px;
  3372. top:810px;
  3373. width:65px;
  3374. height:22px;
  3375. display:flex;
  3376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:16px;
  3380. }
  3381. #u88294 .text {
  3382. position:absolute;
  3383. align-self:flex-start;
  3384. padding:0px 0px 0px 0px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u88294_text {
  3389. border-width:0px;
  3390. white-space:nowrap;
  3391. text-transform:none;
  3392. }
  3393. #u88295_div {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:65px;
  3399. height:22px;
  3400. background:inherit;
  3401. background-color:rgba(255, 255, 255, 0);
  3402. border:none;
  3403. border-radius:0px;
  3404. -moz-box-shadow:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:16px;
  3411. }
  3412. #u88295 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:30px;
  3416. top:894px;
  3417. width:65px;
  3418. height:22px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:16px;
  3424. }
  3425. #u88295 .text {
  3426. position:absolute;
  3427. align-self:flex-start;
  3428. padding:0px 0px 0px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u88295_text {
  3433. border-width:0px;
  3434. white-space:nowrap;
  3435. text-transform:none;
  3436. }
  3437. #u88296_div {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:65px;
  3443. height:22px;
  3444. background:inherit;
  3445. background-color:rgba(255, 255, 255, 0);
  3446. border:none;
  3447. border-radius:0px;
  3448. -moz-box-shadow:none;
  3449. -webkit-box-shadow:none;
  3450. box-shadow:none;
  3451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3452. font-weight:400;
  3453. font-style:normal;
  3454. font-size:16px;
  3455. }
  3456. #u88296 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:30px;
  3460. top:936px;
  3461. width:65px;
  3462. height:22px;
  3463. display:flex;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:16px;
  3468. }
  3469. #u88296 .text {
  3470. position:absolute;
  3471. align-self:flex-start;
  3472. padding:0px 0px 0px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u88296_text {
  3477. border-width:0px;
  3478. white-space:nowrap;
  3479. text-transform:none;
  3480. }
  3481. #u88297_img {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:201px;
  3487. height:2px;
  3488. }
  3489. #u88297 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:1018px;
  3494. width:200px;
  3495. height:1px;
  3496. display:flex;
  3497. }
  3498. #u88297 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 2px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u88297_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. visibility:hidden;
  3510. }
  3511. #u88298_div {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:65px;
  3517. height:22px;
  3518. background:inherit;
  3519. background-color:rgba(255, 255, 255, 0);
  3520. border:none;
  3521. border-radius:0px;
  3522. -moz-box-shadow:none;
  3523. -webkit-box-shadow:none;
  3524. box-shadow:none;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:16px;
  3529. }
  3530. #u88298 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:30px;
  3534. top:1075px;
  3535. width:65px;
  3536. height:22px;
  3537. display:flex;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:16px;
  3542. }
  3543. #u88298 .text {
  3544. position:absolute;
  3545. align-self:flex-start;
  3546. padding:0px 0px 0px 0px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u88298_text {
  3551. border-width:0px;
  3552. white-space:nowrap;
  3553. text-transform:none;
  3554. }
  3555. #u88299_div {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:49px;
  3561. height:17px;
  3562. background:inherit;
  3563. background-color:rgba(255, 255, 255, 0);
  3564. border:none;
  3565. border-radius:0px;
  3566. -moz-box-shadow:none;
  3567. -webkit-box-shadow:none;
  3568. box-shadow:none;
  3569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:12px;
  3573. color:#AAAAAA;
  3574. }
  3575. #u88299 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:30px;
  3579. top:1039px;
  3580. width:49px;
  3581. height:17px;
  3582. display:flex;
  3583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3584. font-weight:400;
  3585. font-style:normal;
  3586. font-size:12px;
  3587. color:#AAAAAA;
  3588. }
  3589. #u88299 .text {
  3590. position:absolute;
  3591. align-self:flex-start;
  3592. padding:0px 0px 0px 0px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u88299_text {
  3597. border-width:0px;
  3598. white-space:nowrap;
  3599. text-transform:none;
  3600. }
  3601. #u88300_div {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:65px;
  3607. height:22px;
  3608. background:inherit;
  3609. background-color:rgba(255, 255, 255, 0);
  3610. border:none;
  3611. border-radius:0px;
  3612. -moz-box-shadow:none;
  3613. -webkit-box-shadow:none;
  3614. box-shadow:none;
  3615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3616. font-weight:400;
  3617. font-style:normal;
  3618. font-size:16px;
  3619. }
  3620. #u88300 {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:30px;
  3624. top:1117px;
  3625. width:65px;
  3626. height:22px;
  3627. display:flex;
  3628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3629. font-weight:400;
  3630. font-style:normal;
  3631. font-size:16px;
  3632. }
  3633. #u88300 .text {
  3634. position:absolute;
  3635. align-self:flex-start;
  3636. padding:0px 0px 0px 0px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u88300_text {
  3641. border-width:0px;
  3642. white-space:nowrap;
  3643. text-transform:none;
  3644. }
  3645. #u88301_div {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:65px;
  3651. height:22px;
  3652. background:inherit;
  3653. background-color:rgba(255, 255, 255, 0);
  3654. border:none;
  3655. border-radius:0px;
  3656. -moz-box-shadow:none;
  3657. -webkit-box-shadow:none;
  3658. box-shadow:none;
  3659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:16px;
  3663. }
  3664. #u88301 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:30px;
  3668. top:1201px;
  3669. width:65px;
  3670. height:22px;
  3671. display:flex;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:16px;
  3676. }
  3677. #u88301 .text {
  3678. position:absolute;
  3679. align-self:flex-start;
  3680. padding:0px 0px 0px 0px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u88301_text {
  3685. border-width:0px;
  3686. white-space:nowrap;
  3687. text-transform:none;
  3688. }
  3689. #u88302_div {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:65px;
  3695. height:22px;
  3696. background:inherit;
  3697. background-color:rgba(255, 255, 255, 0);
  3698. border:none;
  3699. border-radius:0px;
  3700. -moz-box-shadow:none;
  3701. -webkit-box-shadow:none;
  3702. box-shadow:none;
  3703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3704. font-weight:400;
  3705. font-style:normal;
  3706. font-size:16px;
  3707. }
  3708. #u88302 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:30px;
  3712. top:1159px;
  3713. width:65px;
  3714. height:22px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:16px;
  3720. }
  3721. #u88302 .text {
  3722. position:absolute;
  3723. align-self:flex-start;
  3724. padding:0px 0px 0px 0px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u88302_text {
  3729. border-width:0px;
  3730. white-space:nowrap;
  3731. text-transform:none;
  3732. }
  3733. #u88303_div {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:65px;
  3739. height:22px;
  3740. background:inherit;
  3741. background-color:rgba(255, 255, 255, 0);
  3742. border:none;
  3743. border-radius:0px;
  3744. -moz-box-shadow:none;
  3745. -webkit-box-shadow:none;
  3746. box-shadow:none;
  3747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3748. font-weight:400;
  3749. font-style:normal;
  3750. font-size:16px;
  3751. }
  3752. #u88303 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:30px;
  3756. top:1243px;
  3757. width:65px;
  3758. height:22px;
  3759. display:flex;
  3760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3761. font-weight:400;
  3762. font-style:normal;
  3763. font-size:16px;
  3764. }
  3765. #u88303 .text {
  3766. position:absolute;
  3767. align-self:flex-start;
  3768. padding:0px 0px 0px 0px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u88303_text {
  3773. border-width:0px;
  3774. white-space:nowrap;
  3775. text-transform:none;
  3776. }
  3777. #u88304_div {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:65px;
  3783. height:22px;
  3784. background:inherit;
  3785. background-color:rgba(255, 255, 255, 0);
  3786. border:none;
  3787. border-radius:0px;
  3788. -moz-box-shadow:none;
  3789. -webkit-box-shadow:none;
  3790. box-shadow:none;
  3791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3792. font-weight:400;
  3793. font-style:normal;
  3794. font-size:16px;
  3795. }
  3796. #u88304 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:30px;
  3800. top:978px;
  3801. width:65px;
  3802. height:22px;
  3803. display:flex;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:16px;
  3808. }
  3809. #u88304 .text {
  3810. position:absolute;
  3811. align-self:flex-start;
  3812. padding:0px 0px 0px 0px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u88304_text {
  3817. border-width:0px;
  3818. white-space:nowrap;
  3819. text-transform:none;
  3820. }
  3821. #u88305_div {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:65px;
  3827. height:22px;
  3828. background:inherit;
  3829. background-color:rgba(255, 255, 255, 0);
  3830. border:none;
  3831. border-radius:0px;
  3832. -moz-box-shadow:none;
  3833. -webkit-box-shadow:none;
  3834. box-shadow:none;
  3835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3836. font-weight:400;
  3837. font-style:normal;
  3838. font-size:16px;
  3839. }
  3840. #u88305 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:30px;
  3844. top:622px;
  3845. width:65px;
  3846. height:22px;
  3847. display:flex;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:16px;
  3852. }
  3853. #u88305 .text {
  3854. position:absolute;
  3855. align-self:flex-start;
  3856. padding:0px 0px 0px 0px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u88305_text {
  3861. border-width:0px;
  3862. white-space:nowrap;
  3863. text-transform:none;
  3864. }
  3865. #u88306_div {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:60px;
  3871. height:30px;
  3872. background:inherit;
  3873. background-color:rgba(255, 255, 255, 1);
  3874. box-sizing:border-box;
  3875. border-width:1px;
  3876. border-style:solid;
  3877. border-color:rgba(170, 170, 170, 1);
  3878. border-radius:4px;
  3879. -moz-box-shadow:none;
  3880. -webkit-box-shadow:none;
  3881. box-shadow:none;
  3882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3883. font-weight:400;
  3884. font-style:normal;
  3885. font-size:12px;
  3886. }
  3887. #u88306 {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:1505px;
  3891. top:110px;
  3892. width:60px;
  3893. height:30px;
  3894. display:flex;
  3895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3896. font-weight:400;
  3897. font-style:normal;
  3898. font-size:12px;
  3899. }
  3900. #u88306 .text {
  3901. position:absolute;
  3902. align-self:center;
  3903. padding:2px 2px 2px 2px;
  3904. box-sizing:border-box;
  3905. width:100%;
  3906. }
  3907. #u88306_text {
  3908. border-width:0px;
  3909. word-wrap:break-word;
  3910. text-transform:none;
  3911. }
  3912. #u88307_div {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:271px;
  3918. height:50px;
  3919. background:inherit;
  3920. background-color:rgba(255, 255, 255, 0);
  3921. border:none;
  3922. border-left:0px;
  3923. border-top:0px;
  3924. border-right:0px;
  3925. border-radius:0px;
  3926. border-bottom-right-radius:0px;
  3927. border-bottom-left-radius:0px;
  3928. -moz-box-shadow:none;
  3929. -webkit-box-shadow:none;
  3930. box-shadow:none;
  3931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3932. font-weight:400;
  3933. font-style:normal;
  3934. }
  3935. #u88307 {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:350px;
  3939. top:50px;
  3940. width:271px;
  3941. height:50px;
  3942. display:flex;
  3943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3944. font-weight:400;
  3945. font-style:normal;
  3946. }
  3947. #u88307 .text {
  3948. position:absolute;
  3949. align-self:center;
  3950. padding:5px 0px 5px 0px;
  3951. box-sizing:border-box;
  3952. width:100%;
  3953. }
  3954. #u88307_text {
  3955. border-width:0px;
  3956. white-space:nowrap;
  3957. text-transform:none;
  3958. }
  3959. #u88308_div {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:60px;
  3965. height:30px;
  3966. background:inherit;
  3967. background-color:rgba(255, 255, 255, 1);
  3968. box-sizing:border-box;
  3969. border-width:1px;
  3970. border-style:solid;
  3971. border-color:rgba(170, 170, 170, 1);
  3972. border-radius:4px;
  3973. -moz-box-shadow:none;
  3974. -webkit-box-shadow:none;
  3975. box-shadow:none;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:12px;
  3980. }
  3981. #u88308 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:716px;
  3985. top:110px;
  3986. width:60px;
  3987. height:30px;
  3988. display:flex;
  3989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:12px;
  3993. }
  3994. #u88308 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 2px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u88308_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. }
  4006. #u88309_div {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:55px;
  4012. height:30px;
  4013. background:inherit;
  4014. background-color:rgba(41, 143, 255, 1);
  4015. box-sizing:border-box;
  4016. border-width:1px;
  4017. border-style:solid;
  4018. border-color:rgba(0, 153, 255, 1);
  4019. border-radius:4px;
  4020. -moz-box-shadow:none;
  4021. -webkit-box-shadow:none;
  4022. box-shadow:none;
  4023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:12px;
  4027. color:#FFFFFF;
  4028. }
  4029. #u88309 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:650px;
  4033. top:110px;
  4034. width:55px;
  4035. height:30px;
  4036. display:flex;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:12px;
  4041. color:#FFFFFF;
  4042. }
  4043. #u88309 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:5px 15px 5px 15px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u88309_text {
  4051. border-width:0px;
  4052. white-space:nowrap;
  4053. text-transform:none;
  4054. }
  4055. #u88310 {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:0px;
  4061. height:0px;
  4062. }
  4063. #u88311_div {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:140px;
  4069. height:30px;
  4070. background:inherit;
  4071. background-color:rgba(255, 255, 255, 1);
  4072. box-sizing:border-box;
  4073. border-width:1px;
  4074. border-style:solid;
  4075. border-color:rgba(215, 215, 215, 1);
  4076. border-radius:4px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. font-size:11px;
  4081. }
  4082. #u88311 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:350px;
  4086. top:110px;
  4087. width:140px;
  4088. height:30px;
  4089. display:flex;
  4090. font-size:11px;
  4091. }
  4092. #u88311 .text {
  4093. position:absolute;
  4094. align-self:center;
  4095. padding:2px 2px 2px 2px;
  4096. box-sizing:border-box;
  4097. width:100%;
  4098. }
  4099. #u88311_text {
  4100. border-width:0px;
  4101. word-wrap:break-word;
  4102. text-transform:none;
  4103. visibility:hidden;
  4104. }
  4105. #u88312_input {
  4106. position:absolute;
  4107. left:0px;
  4108. top:0px;
  4109. width:120px;
  4110. height:23px;
  4111. padding:2px 2px 2px 2px;
  4112. font-family:'ArialMT', 'Arial', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:11px;
  4116. letter-spacing:normal;
  4117. color:#AAAAAA;
  4118. vertical-align:none;
  4119. text-align:left;
  4120. text-transform:none;
  4121. background-color:transparent;
  4122. border-color:transparent;
  4123. }
  4124. #u88312_input.disabled {
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:120px;
  4129. height:23px;
  4130. padding:2px 2px 2px 2px;
  4131. font-family:'ArialMT', 'Arial', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:11px;
  4135. letter-spacing:normal;
  4136. color:#AAAAAA;
  4137. vertical-align:none;
  4138. text-align:left;
  4139. text-transform:none;
  4140. background-color:transparent;
  4141. border-color:transparent;
  4142. }
  4143. #u88312_div {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:120px;
  4149. height:23px;
  4150. background:inherit;
  4151. background-color:rgba(255, 255, 255, 1);
  4152. border:none;
  4153. border-radius:0px;
  4154. -moz-box-shadow:none;
  4155. -webkit-box-shadow:none;
  4156. box-shadow:none;
  4157. font-size:11px;
  4158. color:#AAAAAA;
  4159. }
  4160. #u88312 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:357px;
  4164. top:112px;
  4165. width:120px;
  4166. height:23px;
  4167. display:flex;
  4168. font-size:11px;
  4169. color:#AAAAAA;
  4170. }
  4171. #u88312 .text {
  4172. position:absolute;
  4173. align-self:flex-start;
  4174. padding:2px 2px 2px 2px;
  4175. box-sizing:border-box;
  4176. width:100%;
  4177. }
  4178. #u88312_div.disabled {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:120px;
  4184. height:23px;
  4185. background:inherit;
  4186. background-color:rgba(240, 240, 240, 1);
  4187. border:none;
  4188. border-radius:0px;
  4189. -moz-box-shadow:none;
  4190. -webkit-box-shadow:none;
  4191. box-shadow:none;
  4192. font-size:11px;
  4193. color:#AAAAAA;
  4194. }
  4195. #u88312.disabled {
  4196. }
  4197. .u88312_input_option {
  4198. font-size:11px;
  4199. }
  4200. #u88313 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:0px;
  4206. height:0px;
  4207. }
  4208. #u88314_div {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:0px;
  4212. top:0px;
  4213. width:140px;
  4214. height:30px;
  4215. background:inherit;
  4216. background-color:rgba(255, 255, 255, 1);
  4217. box-sizing:border-box;
  4218. border-width:1px;
  4219. border-style:solid;
  4220. border-color:rgba(215, 215, 215, 1);
  4221. border-radius:4px;
  4222. -moz-box-shadow:none;
  4223. -webkit-box-shadow:none;
  4224. box-shadow:none;
  4225. font-size:11px;
  4226. }
  4227. #u88314 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:500px;
  4231. top:110px;
  4232. width:140px;
  4233. height:30px;
  4234. display:flex;
  4235. font-size:11px;
  4236. }
  4237. #u88314 .text {
  4238. position:absolute;
  4239. align-self:center;
  4240. padding:2px 2px 2px 2px;
  4241. box-sizing:border-box;
  4242. width:100%;
  4243. }
  4244. #u88314_text {
  4245. border-width:0px;
  4246. word-wrap:break-word;
  4247. text-transform:none;
  4248. visibility:hidden;
  4249. }
  4250. #u88315_input {
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:120px;
  4255. height:23px;
  4256. padding:2px 2px 2px 2px;
  4257. font-family:'ArialMT', 'Arial', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:11px;
  4261. letter-spacing:normal;
  4262. color:#AAAAAA;
  4263. vertical-align:none;
  4264. text-align:left;
  4265. text-transform:none;
  4266. background-color:transparent;
  4267. border-color:transparent;
  4268. }
  4269. #u88315_input.disabled {
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:120px;
  4274. height:23px;
  4275. padding:2px 2px 2px 2px;
  4276. font-family:'ArialMT', 'Arial', sans-serif;
  4277. font-weight:400;
  4278. font-style:normal;
  4279. font-size:11px;
  4280. letter-spacing:normal;
  4281. color:#AAAAAA;
  4282. vertical-align:none;
  4283. text-align:left;
  4284. text-transform:none;
  4285. background-color:transparent;
  4286. border-color:transparent;
  4287. }
  4288. #u88315_div {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:120px;
  4294. height:23px;
  4295. background:inherit;
  4296. background-color:rgba(255, 255, 255, 1);
  4297. border:none;
  4298. border-radius:0px;
  4299. -moz-box-shadow:none;
  4300. -webkit-box-shadow:none;
  4301. box-shadow:none;
  4302. font-size:11px;
  4303. color:#AAAAAA;
  4304. }
  4305. #u88315 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:507px;
  4309. top:112px;
  4310. width:120px;
  4311. height:23px;
  4312. display:flex;
  4313. font-size:11px;
  4314. color:#AAAAAA;
  4315. }
  4316. #u88315 .text {
  4317. position:absolute;
  4318. align-self:flex-start;
  4319. padding:2px 2px 2px 2px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u88315_div.disabled {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:120px;
  4329. height:23px;
  4330. background:inherit;
  4331. background-color:rgba(240, 240, 240, 1);
  4332. border:none;
  4333. border-radius:0px;
  4334. -moz-box-shadow:none;
  4335. -webkit-box-shadow:none;
  4336. box-shadow:none;
  4337. font-size:11px;
  4338. color:#AAAAAA;
  4339. }
  4340. #u88315.disabled {
  4341. }
  4342. .u88315_input_option {
  4343. font-size:11px;
  4344. }
  4345. #u88316 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:350px;
  4349. top:160px;
  4350. width:1539px;
  4351. height:194px;
  4352. }
  4353. #u88317_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:81px;
  4359. height:80px;
  4360. }
  4361. #u88317 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:81px;
  4367. height:80px;
  4368. display:flex;
  4369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:12px;
  4373. color:#FFFFFF;
  4374. }
  4375. #u88317 .text {
  4376. position:absolute;
  4377. align-self:center;
  4378. padding:2px 2px 2px 0px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u88317_text {
  4383. border-width:0px;
  4384. word-wrap:break-word;
  4385. text-transform:none;
  4386. }
  4387. #u88318_img {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:81px;
  4393. height:80px;
  4394. }
  4395. #u88318 {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:81px;
  4399. top:0px;
  4400. width:81px;
  4401. height:80px;
  4402. display:flex;
  4403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4404. font-weight:400;
  4405. font-style:normal;
  4406. font-size:12px;
  4407. color:#FFFFFF;
  4408. }
  4409. #u88318 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 0px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u88318_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. }
  4421. #u88319_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:81px;
  4427. height:80px;
  4428. }
  4429. #u88319 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:162px;
  4433. top:0px;
  4434. width:81px;
  4435. height:80px;
  4436. display:flex;
  4437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4438. font-weight:400;
  4439. font-style:normal;
  4440. font-size:12px;
  4441. color:#FFFFFF;
  4442. }
  4443. #u88319 .text {
  4444. position:absolute;
  4445. align-self:center;
  4446. padding:2px 2px 2px 0px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u88319_text {
  4451. border-width:0px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. visibility:hidden;
  4455. }
  4456. #u88320_img {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:81px;
  4462. height:80px;
  4463. }
  4464. #u88320 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:243px;
  4468. top:0px;
  4469. width:81px;
  4470. height:80px;
  4471. display:flex;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:12px;
  4476. color:#FFFFFF;
  4477. }
  4478. #u88320 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 0px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u88320_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. visibility:hidden;
  4490. }
  4491. #u88321_img {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:81px;
  4497. height:80px;
  4498. }
  4499. #u88321 {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:324px;
  4503. top:0px;
  4504. width:81px;
  4505. height:80px;
  4506. display:flex;
  4507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4508. font-weight:400;
  4509. font-style:normal;
  4510. font-size:12px;
  4511. color:#FFFFFF;
  4512. }
  4513. #u88321 .text {
  4514. position:absolute;
  4515. align-self:center;
  4516. padding:2px 2px 2px 0px;
  4517. box-sizing:border-box;
  4518. width:100%;
  4519. }
  4520. #u88321_text {
  4521. border-width:0px;
  4522. word-wrap:break-word;
  4523. text-transform:none;
  4524. visibility:hidden;
  4525. }
  4526. #u88322_img {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:81px;
  4532. height:80px;
  4533. }
  4534. #u88322 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:405px;
  4538. top:0px;
  4539. width:81px;
  4540. height:80px;
  4541. display:flex;
  4542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4543. font-weight:400;
  4544. font-style:normal;
  4545. font-size:12px;
  4546. color:#FFFFFF;
  4547. }
  4548. #u88322 .text {
  4549. position:absolute;
  4550. align-self:center;
  4551. padding:2px 2px 2px 0px;
  4552. box-sizing:border-box;
  4553. width:100%;
  4554. }
  4555. #u88322_text {
  4556. border-width:0px;
  4557. word-wrap:break-word;
  4558. text-transform:none;
  4559. visibility:hidden;
  4560. }
  4561. #u88323_img {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:81px;
  4567. height:80px;
  4568. }
  4569. #u88323 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:486px;
  4573. top:0px;
  4574. width:81px;
  4575. height:80px;
  4576. display:flex;
  4577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4578. font-weight:400;
  4579. font-style:normal;
  4580. font-size:12px;
  4581. color:#FFFFFF;
  4582. }
  4583. #u88323 .text {
  4584. position:absolute;
  4585. align-self:center;
  4586. padding:2px 2px 2px 0px;
  4587. box-sizing:border-box;
  4588. width:100%;
  4589. }
  4590. #u88323_text {
  4591. border-width:0px;
  4592. word-wrap:break-word;
  4593. text-transform:none;
  4594. visibility:hidden;
  4595. }
  4596. #u88324_img {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:81px;
  4602. height:80px;
  4603. }
  4604. #u88324 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:567px;
  4608. top:0px;
  4609. width:81px;
  4610. height:80px;
  4611. display:flex;
  4612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:12px;
  4616. color:#FFFFFF;
  4617. }
  4618. #u88324 .text {
  4619. position:absolute;
  4620. align-self:center;
  4621. padding:2px 2px 2px 0px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u88324_text {
  4626. border-width:0px;
  4627. word-wrap:break-word;
  4628. text-transform:none;
  4629. visibility:hidden;
  4630. }
  4631. #u88325_img {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:81px;
  4637. height:80px;
  4638. }
  4639. #u88325 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:648px;
  4643. top:0px;
  4644. width:81px;
  4645. height:80px;
  4646. display:flex;
  4647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4648. font-weight:400;
  4649. font-style:normal;
  4650. font-size:12px;
  4651. color:#FFFFFF;
  4652. }
  4653. #u88325 .text {
  4654. position:absolute;
  4655. align-self:center;
  4656. padding:2px 2px 2px 0px;
  4657. box-sizing:border-box;
  4658. width:100%;
  4659. }
  4660. #u88325_text {
  4661. border-width:0px;
  4662. word-wrap:break-word;
  4663. text-transform:none;
  4664. visibility:hidden;
  4665. }
  4666. #u88326_img {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:0px;
  4670. top:0px;
  4671. width:81px;
  4672. height:80px;
  4673. }
  4674. #u88326 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:729px;
  4678. top:0px;
  4679. width:81px;
  4680. height:80px;
  4681. display:flex;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:12px;
  4686. color:#FFFFFF;
  4687. }
  4688. #u88326 .text {
  4689. position:absolute;
  4690. align-self:center;
  4691. padding:2px 2px 2px 0px;
  4692. box-sizing:border-box;
  4693. width:100%;
  4694. }
  4695. #u88326_text {
  4696. border-width:0px;
  4697. word-wrap:break-word;
  4698. text-transform:none;
  4699. visibility:hidden;
  4700. }
  4701. #u88327_img {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:81px;
  4707. height:80px;
  4708. }
  4709. #u88327 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:810px;
  4713. top:0px;
  4714. width:81px;
  4715. height:80px;
  4716. display:flex;
  4717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4718. font-weight:400;
  4719. font-style:normal;
  4720. font-size:12px;
  4721. color:#FFFFFF;
  4722. }
  4723. #u88327 .text {
  4724. position:absolute;
  4725. align-self:center;
  4726. padding:2px 2px 2px 0px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u88327_text {
  4731. border-width:0px;
  4732. word-wrap:break-word;
  4733. text-transform:none;
  4734. visibility:hidden;
  4735. }
  4736. #u88328_img {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:0px;
  4740. top:0px;
  4741. width:81px;
  4742. height:80px;
  4743. }
  4744. #u88328 {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:891px;
  4748. top:0px;
  4749. width:81px;
  4750. height:80px;
  4751. display:flex;
  4752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4753. font-weight:400;
  4754. font-style:normal;
  4755. font-size:12px;
  4756. color:#FFFFFF;
  4757. }
  4758. #u88328 .text {
  4759. position:absolute;
  4760. align-self:center;
  4761. padding:2px 2px 2px 0px;
  4762. box-sizing:border-box;
  4763. width:100%;
  4764. }
  4765. #u88328_text {
  4766. border-width:0px;
  4767. word-wrap:break-word;
  4768. text-transform:none;
  4769. visibility:hidden;
  4770. }
  4771. #u88329_img {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:81px;
  4777. height:80px;
  4778. }
  4779. #u88329 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:972px;
  4783. top:0px;
  4784. width:81px;
  4785. height:80px;
  4786. display:flex;
  4787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4788. font-weight:400;
  4789. font-style:normal;
  4790. font-size:12px;
  4791. color:#FFFFFF;
  4792. }
  4793. #u88329 .text {
  4794. position:absolute;
  4795. align-self:center;
  4796. padding:2px 2px 2px 0px;
  4797. box-sizing:border-box;
  4798. width:100%;
  4799. }
  4800. #u88329_text {
  4801. border-width:0px;
  4802. word-wrap:break-word;
  4803. text-transform:none;
  4804. visibility:hidden;
  4805. }
  4806. #u88330_img {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:0px;
  4810. top:0px;
  4811. width:81px;
  4812. height:80px;
  4813. }
  4814. #u88330 {
  4815. border-width:0px;
  4816. position:absolute;
  4817. left:1053px;
  4818. top:0px;
  4819. width:81px;
  4820. height:80px;
  4821. display:flex;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:12px;
  4826. color:#FFFFFF;
  4827. }
  4828. #u88330 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:2px 2px 2px 0px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u88330_text {
  4836. border-width:0px;
  4837. word-wrap:break-word;
  4838. text-transform:none;
  4839. visibility:hidden;
  4840. }
  4841. #u88331_img {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:81px;
  4847. height:80px;
  4848. }
  4849. #u88331 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:1134px;
  4853. top:0px;
  4854. width:81px;
  4855. height:80px;
  4856. display:flex;
  4857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4858. font-weight:400;
  4859. font-style:normal;
  4860. font-size:12px;
  4861. color:#FFFFFF;
  4862. }
  4863. #u88331 .text {
  4864. position:absolute;
  4865. align-self:center;
  4866. padding:2px 2px 2px 0px;
  4867. box-sizing:border-box;
  4868. width:100%;
  4869. }
  4870. #u88331_text {
  4871. border-width:0px;
  4872. word-wrap:break-word;
  4873. text-transform:none;
  4874. visibility:hidden;
  4875. }
  4876. #u88332_img {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:81px;
  4882. height:80px;
  4883. }
  4884. #u88332 {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:1215px;
  4888. top:0px;
  4889. width:81px;
  4890. height:80px;
  4891. display:flex;
  4892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4893. font-weight:400;
  4894. font-style:normal;
  4895. font-size:12px;
  4896. color:#FFFFFF;
  4897. }
  4898. #u88332 .text {
  4899. position:absolute;
  4900. align-self:center;
  4901. padding:2px 2px 2px 0px;
  4902. box-sizing:border-box;
  4903. width:100%;
  4904. }
  4905. #u88332_text {
  4906. border-width:0px;
  4907. word-wrap:break-word;
  4908. text-transform:none;
  4909. }
  4910. #u88333_img {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:81px;
  4916. height:80px;
  4917. }
  4918. #u88333 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:1296px;
  4922. top:0px;
  4923. width:81px;
  4924. height:80px;
  4925. display:flex;
  4926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:12px;
  4930. color:#FFFFFF;
  4931. }
  4932. #u88333 .text {
  4933. position:absolute;
  4934. align-self:center;
  4935. padding:2px 2px 2px 0px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u88333_text {
  4940. border-width:0px;
  4941. word-wrap:break-word;
  4942. text-transform:none;
  4943. }
  4944. #u88334_img {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:81px;
  4950. height:80px;
  4951. }
  4952. #u88334 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:1377px;
  4956. top:0px;
  4957. width:81px;
  4958. height:80px;
  4959. display:flex;
  4960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4961. font-weight:400;
  4962. font-style:normal;
  4963. font-size:12px;
  4964. color:#FFFFFF;
  4965. }
  4966. #u88334 .text {
  4967. position:absolute;
  4968. align-self:center;
  4969. padding:2px 2px 2px 0px;
  4970. box-sizing:border-box;
  4971. width:100%;
  4972. }
  4973. #u88334_text {
  4974. border-width:0px;
  4975. word-wrap:break-word;
  4976. text-transform:none;
  4977. }
  4978. #u88335_img {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:81px;
  4984. height:80px;
  4985. }
  4986. #u88335 {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:1458px;
  4990. top:0px;
  4991. width:81px;
  4992. height:80px;
  4993. display:flex;
  4994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4995. font-weight:400;
  4996. font-style:normal;
  4997. font-size:12px;
  4998. color:#FFFFFF;
  4999. }
  5000. #u88335 .text {
  5001. position:absolute;
  5002. align-self:center;
  5003. padding:2px 2px 2px 0px;
  5004. box-sizing:border-box;
  5005. width:100%;
  5006. }
  5007. #u88335_text {
  5008. border-width:0px;
  5009. word-wrap:break-word;
  5010. text-transform:none;
  5011. }
  5012. #u88336_img {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:0px;
  5016. top:0px;
  5017. width:81px;
  5018. height:38px;
  5019. }
  5020. #u88336 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:80px;
  5025. width:81px;
  5026. height:38px;
  5027. display:flex;
  5028. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5029. font-weight:400;
  5030. font-style:normal;
  5031. font-size:12px;
  5032. }
  5033. #u88336 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 2px 2px 0px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u88336_text {
  5041. border-width:0px;
  5042. word-wrap:break-word;
  5043. text-transform:none;
  5044. visibility:hidden;
  5045. }
  5046. #u88337_img {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:81px;
  5052. height:38px;
  5053. }
  5054. #u88337 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:81px;
  5058. top:80px;
  5059. width:81px;
  5060. height:38px;
  5061. display:flex;
  5062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:12px;
  5066. color:#333333;
  5067. }
  5068. #u88337 .text {
  5069. position:absolute;
  5070. align-self:center;
  5071. padding:2px 2px 2px 0px;
  5072. box-sizing:border-box;
  5073. width:100%;
  5074. }
  5075. #u88337_text {
  5076. border-width:0px;
  5077. word-wrap:break-word;
  5078. text-transform:none;
  5079. }
  5080. #u88338_img {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:81px;
  5086. height:38px;
  5087. }
  5088. #u88338 {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:162px;
  5092. top:80px;
  5093. width:81px;
  5094. height:38px;
  5095. display:flex;
  5096. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:12px;
  5100. color:#333333;
  5101. }
  5102. #u88338 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 0px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u88338_text {
  5110. border-width:0px;
  5111. word-wrap:break-word;
  5112. text-transform:none;
  5113. visibility:hidden;
  5114. }
  5115. #u88339_img {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:81px;
  5121. height:38px;
  5122. }
  5123. #u88339 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:243px;
  5127. top:80px;
  5128. width:81px;
  5129. height:38px;
  5130. display:flex;
  5131. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5132. font-weight:400;
  5133. font-style:normal;
  5134. font-size:12px;
  5135. color:#333333;
  5136. }
  5137. #u88339 .text {
  5138. position:absolute;
  5139. align-self:center;
  5140. padding:2px 2px 2px 0px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u88339_text {
  5145. border-width:0px;
  5146. word-wrap:break-word;
  5147. text-transform:none;
  5148. visibility:hidden;
  5149. }
  5150. #u88340_img {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:81px;
  5156. height:38px;
  5157. }
  5158. #u88340 {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:324px;
  5162. top:80px;
  5163. width:81px;
  5164. height:38px;
  5165. display:flex;
  5166. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:12px;
  5170. color:#333333;
  5171. }
  5172. #u88340 .text {
  5173. position:absolute;
  5174. align-self:center;
  5175. padding:2px 2px 2px 0px;
  5176. box-sizing:border-box;
  5177. width:100%;
  5178. }
  5179. #u88340_text {
  5180. border-width:0px;
  5181. word-wrap:break-word;
  5182. text-transform:none;
  5183. visibility:hidden;
  5184. }
  5185. #u88341_img {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:0px;
  5189. top:0px;
  5190. width:81px;
  5191. height:38px;
  5192. }
  5193. #u88341 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:405px;
  5197. top:80px;
  5198. width:81px;
  5199. height:38px;
  5200. display:flex;
  5201. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:12px;
  5205. color:#333333;
  5206. }
  5207. #u88341 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:2px 2px 2px 0px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u88341_text {
  5215. border-width:0px;
  5216. word-wrap:break-word;
  5217. text-transform:none;
  5218. visibility:hidden;
  5219. }
  5220. #u88342_img {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:81px;
  5226. height:38px;
  5227. }
  5228. #u88342 {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:486px;
  5232. top:80px;
  5233. width:81px;
  5234. height:38px;
  5235. display:flex;
  5236. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5237. font-weight:400;
  5238. font-style:normal;
  5239. font-size:12px;
  5240. color:#333333;
  5241. }
  5242. #u88342 .text {
  5243. position:absolute;
  5244. align-self:center;
  5245. padding:2px 2px 2px 0px;
  5246. box-sizing:border-box;
  5247. width:100%;
  5248. }
  5249. #u88342_text {
  5250. border-width:0px;
  5251. word-wrap:break-word;
  5252. text-transform:none;
  5253. visibility:hidden;
  5254. }
  5255. #u88343_img {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:81px;
  5261. height:38px;
  5262. }
  5263. #u88343 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:567px;
  5267. top:80px;
  5268. width:81px;
  5269. height:38px;
  5270. display:flex;
  5271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. font-size:12px;
  5275. color:#333333;
  5276. }
  5277. #u88343 .text {
  5278. position:absolute;
  5279. align-self:center;
  5280. padding:2px 2px 2px 0px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u88343_text {
  5285. border-width:0px;
  5286. word-wrap:break-word;
  5287. text-transform:none;
  5288. visibility:hidden;
  5289. }
  5290. #u88344_img {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:81px;
  5296. height:38px;
  5297. }
  5298. #u88344 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:648px;
  5302. top:80px;
  5303. width:81px;
  5304. height:38px;
  5305. display:flex;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:12px;
  5310. color:#333333;
  5311. }
  5312. #u88344 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:2px 2px 2px 0px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u88344_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. visibility:hidden;
  5324. }
  5325. #u88345_img {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:81px;
  5331. height:38px;
  5332. }
  5333. #u88345 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:729px;
  5337. top:80px;
  5338. width:81px;
  5339. height:38px;
  5340. display:flex;
  5341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5342. font-weight:400;
  5343. font-style:normal;
  5344. font-size:12px;
  5345. color:#333333;
  5346. }
  5347. #u88345 .text {
  5348. position:absolute;
  5349. align-self:center;
  5350. padding:2px 2px 2px 0px;
  5351. box-sizing:border-box;
  5352. width:100%;
  5353. }
  5354. #u88345_text {
  5355. border-width:0px;
  5356. word-wrap:break-word;
  5357. text-transform:none;
  5358. visibility:hidden;
  5359. }
  5360. #u88346_img {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:81px;
  5366. height:38px;
  5367. }
  5368. #u88346 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:810px;
  5372. top:80px;
  5373. width:81px;
  5374. height:38px;
  5375. display:flex;
  5376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5377. font-weight:400;
  5378. font-style:normal;
  5379. font-size:12px;
  5380. color:#333333;
  5381. }
  5382. #u88346 .text {
  5383. position:absolute;
  5384. align-self:center;
  5385. padding:2px 2px 2px 0px;
  5386. box-sizing:border-box;
  5387. width:100%;
  5388. }
  5389. #u88346_text {
  5390. border-width:0px;
  5391. word-wrap:break-word;
  5392. text-transform:none;
  5393. visibility:hidden;
  5394. }
  5395. #u88347_img {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:81px;
  5401. height:38px;
  5402. }
  5403. #u88347 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:891px;
  5407. top:80px;
  5408. width:81px;
  5409. height:38px;
  5410. display:flex;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:12px;
  5415. color:#333333;
  5416. }
  5417. #u88347 .text {
  5418. position:absolute;
  5419. align-self:center;
  5420. padding:2px 2px 2px 0px;
  5421. box-sizing:border-box;
  5422. width:100%;
  5423. }
  5424. #u88347_text {
  5425. border-width:0px;
  5426. word-wrap:break-word;
  5427. text-transform:none;
  5428. visibility:hidden;
  5429. }
  5430. #u88348_img {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:81px;
  5436. height:38px;
  5437. }
  5438. #u88348 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:972px;
  5442. top:80px;
  5443. width:81px;
  5444. height:38px;
  5445. display:flex;
  5446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:12px;
  5450. color:#333333;
  5451. }
  5452. #u88348 .text {
  5453. position:absolute;
  5454. align-self:center;
  5455. padding:2px 2px 2px 0px;
  5456. box-sizing:border-box;
  5457. width:100%;
  5458. }
  5459. #u88348_text {
  5460. border-width:0px;
  5461. word-wrap:break-word;
  5462. text-transform:none;
  5463. visibility:hidden;
  5464. }
  5465. #u88349_img {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:81px;
  5471. height:38px;
  5472. }
  5473. #u88349 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:1053px;
  5477. top:80px;
  5478. width:81px;
  5479. height:38px;
  5480. display:flex;
  5481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:12px;
  5485. color:#333333;
  5486. }
  5487. #u88349 .text {
  5488. position:absolute;
  5489. align-self:center;
  5490. padding:2px 2px 2px 0px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u88349_text {
  5495. border-width:0px;
  5496. word-wrap:break-word;
  5497. text-transform:none;
  5498. visibility:hidden;
  5499. }
  5500. #u88350_img {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:81px;
  5506. height:38px;
  5507. }
  5508. #u88350 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:1134px;
  5512. top:80px;
  5513. width:81px;
  5514. height:38px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:12px;
  5520. color:#333333;
  5521. }
  5522. #u88350 .text {
  5523. position:absolute;
  5524. align-self:center;
  5525. padding:2px 2px 2px 0px;
  5526. box-sizing:border-box;
  5527. width:100%;
  5528. }
  5529. #u88350_text {
  5530. border-width:0px;
  5531. word-wrap:break-word;
  5532. text-transform:none;
  5533. visibility:hidden;
  5534. }
  5535. #u88351_img {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:81px;
  5541. height:38px;
  5542. }
  5543. #u88351 {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:1215px;
  5547. top:80px;
  5548. width:81px;
  5549. height:38px;
  5550. display:flex;
  5551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5552. font-weight:400;
  5553. font-style:normal;
  5554. font-size:12px;
  5555. color:#333333;
  5556. }
  5557. #u88351 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:2px 2px 2px 0px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u88351_text {
  5565. border-width:0px;
  5566. word-wrap:break-word;
  5567. text-transform:none;
  5568. visibility:hidden;
  5569. }
  5570. #u88352_img {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:81px;
  5576. height:38px;
  5577. }
  5578. #u88352 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:1296px;
  5582. top:80px;
  5583. width:81px;
  5584. height:38px;
  5585. display:flex;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:12px;
  5590. color:#333333;
  5591. }
  5592. #u88352 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:2px 2px 2px 0px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u88352_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. visibility:hidden;
  5604. }
  5605. #u88353_img {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:81px;
  5611. height:38px;
  5612. }
  5613. #u88353 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:1377px;
  5617. top:80px;
  5618. width:81px;
  5619. height:38px;
  5620. display:flex;
  5621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:12px;
  5625. color:#333333;
  5626. }
  5627. #u88353 .text {
  5628. position:absolute;
  5629. align-self:center;
  5630. padding:2px 2px 2px 0px;
  5631. box-sizing:border-box;
  5632. width:100%;
  5633. }
  5634. #u88353_text {
  5635. border-width:0px;
  5636. word-wrap:break-word;
  5637. text-transform:none;
  5638. visibility:hidden;
  5639. }
  5640. #u88354_img {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:81px;
  5646. height:38px;
  5647. }
  5648. #u88354 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:1458px;
  5652. top:80px;
  5653. width:81px;
  5654. height:38px;
  5655. display:flex;
  5656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:12px;
  5660. color:#333333;
  5661. }
  5662. #u88354 .text {
  5663. position:absolute;
  5664. align-self:center;
  5665. padding:2px 2px 2px 0px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u88354_text {
  5670. border-width:0px;
  5671. word-wrap:break-word;
  5672. text-transform:none;
  5673. visibility:hidden;
  5674. }
  5675. #u88355_img {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:81px;
  5681. height:38px;
  5682. }
  5683. #u88355 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:118px;
  5688. width:81px;
  5689. height:38px;
  5690. display:flex;
  5691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:12px;
  5695. }
  5696. #u88355 .text {
  5697. position:absolute;
  5698. align-self:center;
  5699. padding:2px 2px 2px 0px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u88355_text {
  5704. border-width:0px;
  5705. word-wrap:break-word;
  5706. text-transform:none;
  5707. visibility:hidden;
  5708. }
  5709. #u88356_img {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:0px;
  5713. top:0px;
  5714. width:81px;
  5715. height:38px;
  5716. }
  5717. #u88356 {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:81px;
  5721. top:118px;
  5722. width:81px;
  5723. height:38px;
  5724. display:flex;
  5725. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:12px;
  5729. color:#333333;
  5730. }
  5731. #u88356 .text {
  5732. position:absolute;
  5733. align-self:center;
  5734. padding:2px 2px 2px 0px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u88356_text {
  5739. border-width:0px;
  5740. word-wrap:break-word;
  5741. text-transform:none;
  5742. }
  5743. #u88357_img {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:81px;
  5749. height:38px;
  5750. }
  5751. #u88357 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:162px;
  5755. top:118px;
  5756. width:81px;
  5757. height:38px;
  5758. display:flex;
  5759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:12px;
  5763. color:#333333;
  5764. }
  5765. #u88357 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 2px 2px 0px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u88357_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u88358_img {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:81px;
  5784. height:38px;
  5785. }
  5786. #u88358 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:243px;
  5790. top:118px;
  5791. width:81px;
  5792. height:38px;
  5793. display:flex;
  5794. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#333333;
  5799. }
  5800. #u88358 .text {
  5801. position:absolute;
  5802. align-self:center;
  5803. padding:2px 2px 2px 0px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u88358_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. visibility:hidden;
  5812. }
  5813. #u88359_img {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:81px;
  5819. height:38px;
  5820. }
  5821. #u88359 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:324px;
  5825. top:118px;
  5826. width:81px;
  5827. height:38px;
  5828. display:flex;
  5829. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:12px;
  5833. color:#333333;
  5834. }
  5835. #u88359 .text {
  5836. position:absolute;
  5837. align-self:center;
  5838. padding:2px 2px 2px 0px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u88359_text {
  5843. border-width:0px;
  5844. word-wrap:break-word;
  5845. text-transform:none;
  5846. visibility:hidden;
  5847. }
  5848. #u88360_img {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:81px;
  5854. height:38px;
  5855. }
  5856. #u88360 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:405px;
  5860. top:118px;
  5861. width:81px;
  5862. height:38px;
  5863. display:flex;
  5864. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:12px;
  5868. color:#333333;
  5869. }
  5870. #u88360 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:2px 2px 2px 0px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u88360_text {
  5878. border-width:0px;
  5879. word-wrap:break-word;
  5880. text-transform:none;
  5881. visibility:hidden;
  5882. }
  5883. #u88361_img {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:81px;
  5889. height:38px;
  5890. }
  5891. #u88361 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:486px;
  5895. top:118px;
  5896. width:81px;
  5897. height:38px;
  5898. display:flex;
  5899. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:12px;
  5903. color:#333333;
  5904. }
  5905. #u88361 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 0px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u88361_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u88362_img {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:81px;
  5924. height:38px;
  5925. }
  5926. #u88362 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:567px;
  5930. top:118px;
  5931. width:81px;
  5932. height:38px;
  5933. display:flex;
  5934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5935. font-weight:400;
  5936. font-style:normal;
  5937. font-size:12px;
  5938. color:#333333;
  5939. }
  5940. #u88362 .text {
  5941. position:absolute;
  5942. align-self:center;
  5943. padding:2px 2px 2px 0px;
  5944. box-sizing:border-box;
  5945. width:100%;
  5946. }
  5947. #u88362_text {
  5948. border-width:0px;
  5949. word-wrap:break-word;
  5950. text-transform:none;
  5951. visibility:hidden;
  5952. }
  5953. #u88363_img {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:81px;
  5959. height:38px;
  5960. }
  5961. #u88363 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:648px;
  5965. top:118px;
  5966. width:81px;
  5967. height:38px;
  5968. display:flex;
  5969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:12px;
  5973. color:#333333;
  5974. }
  5975. #u88363 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:2px 2px 2px 0px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u88363_text {
  5983. border-width:0px;
  5984. word-wrap:break-word;
  5985. text-transform:none;
  5986. visibility:hidden;
  5987. }
  5988. #u88364_img {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:81px;
  5994. height:38px;
  5995. }
  5996. #u88364 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:729px;
  6000. top:118px;
  6001. width:81px;
  6002. height:38px;
  6003. display:flex;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:12px;
  6008. color:#333333;
  6009. }
  6010. #u88364 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:2px 2px 2px 0px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u88364_text {
  6018. border-width:0px;
  6019. word-wrap:break-word;
  6020. text-transform:none;
  6021. visibility:hidden;
  6022. }
  6023. #u88365_img {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:81px;
  6029. height:38px;
  6030. }
  6031. #u88365 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:810px;
  6035. top:118px;
  6036. width:81px;
  6037. height:38px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#333333;
  6044. }
  6045. #u88365 .text {
  6046. position:absolute;
  6047. align-self:center;
  6048. padding:2px 2px 2px 0px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u88365_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. visibility:hidden;
  6057. }
  6058. #u88366_img {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:81px;
  6064. height:38px;
  6065. }
  6066. #u88366 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:891px;
  6070. top:118px;
  6071. width:81px;
  6072. height:38px;
  6073. display:flex;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:12px;
  6078. color:#333333;
  6079. }
  6080. #u88366 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:2px 2px 2px 0px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u88366_text {
  6088. border-width:0px;
  6089. word-wrap:break-word;
  6090. text-transform:none;
  6091. visibility:hidden;
  6092. }
  6093. #u88367_img {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:81px;
  6099. height:38px;
  6100. }
  6101. #u88367 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:972px;
  6105. top:118px;
  6106. width:81px;
  6107. height:38px;
  6108. display:flex;
  6109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:12px;
  6113. color:#333333;
  6114. }
  6115. #u88367 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 0px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u88367_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. visibility:hidden;
  6127. }
  6128. #u88368_img {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:81px;
  6134. height:38px;
  6135. }
  6136. #u88368 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:1053px;
  6140. top:118px;
  6141. width:81px;
  6142. height:38px;
  6143. display:flex;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:12px;
  6148. color:#333333;
  6149. }
  6150. #u88368 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 0px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u88368_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u88369_img {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:81px;
  6169. height:38px;
  6170. }
  6171. #u88369 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:1134px;
  6175. top:118px;
  6176. width:81px;
  6177. height:38px;
  6178. display:flex;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:12px;
  6183. color:#333333;
  6184. }
  6185. #u88369 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u88369_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u88370_img {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:81px;
  6204. height:38px;
  6205. }
  6206. #u88370 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:1215px;
  6210. top:118px;
  6211. width:81px;
  6212. height:38px;
  6213. display:flex;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:12px;
  6218. color:#333333;
  6219. }
  6220. #u88370 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:2px 2px 2px 0px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u88370_text {
  6228. border-width:0px;
  6229. word-wrap:break-word;
  6230. text-transform:none;
  6231. visibility:hidden;
  6232. }
  6233. #u88371_img {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:81px;
  6239. height:38px;
  6240. }
  6241. #u88371 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:1296px;
  6245. top:118px;
  6246. width:81px;
  6247. height:38px;
  6248. display:flex;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:12px;
  6253. color:#333333;
  6254. }
  6255. #u88371 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:2px 2px 2px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u88371_text {
  6263. border-width:0px;
  6264. word-wrap:break-word;
  6265. text-transform:none;
  6266. visibility:hidden;
  6267. }
  6268. #u88372_img {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:81px;
  6274. height:38px;
  6275. }
  6276. #u88372 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:1377px;
  6280. top:118px;
  6281. width:81px;
  6282. height:38px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:12px;
  6288. color:#333333;
  6289. }
  6290. #u88372 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 0px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u88372_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u88373_img {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:81px;
  6309. height:38px;
  6310. }
  6311. #u88373 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:1458px;
  6315. top:118px;
  6316. width:81px;
  6317. height:38px;
  6318. display:flex;
  6319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:12px;
  6323. color:#333333;
  6324. }
  6325. #u88373 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 0px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u88373_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u88374_img {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:81px;
  6344. height:38px;
  6345. }
  6346. #u88374 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:156px;
  6351. width:81px;
  6352. height:38px;
  6353. display:flex;
  6354. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. }
  6359. #u88374 .text {
  6360. position:absolute;
  6361. align-self:center;
  6362. padding:2px 2px 2px 0px;
  6363. box-sizing:border-box;
  6364. width:100%;
  6365. }
  6366. #u88374_text {
  6367. border-width:0px;
  6368. word-wrap:break-word;
  6369. text-transform:none;
  6370. visibility:hidden;
  6371. }
  6372. #u88375_img {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:81px;
  6378. height:38px;
  6379. }
  6380. #u88375 {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:81px;
  6384. top:156px;
  6385. width:81px;
  6386. height:38px;
  6387. display:flex;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:12px;
  6392. color:#333333;
  6393. }
  6394. #u88375 .text {
  6395. position:absolute;
  6396. align-self:center;
  6397. padding:2px 2px 2px 0px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u88375_text {
  6402. border-width:0px;
  6403. word-wrap:break-word;
  6404. text-transform:none;
  6405. }
  6406. #u88376_img {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:81px;
  6412. height:38px;
  6413. }
  6414. #u88376 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:162px;
  6418. top:156px;
  6419. width:81px;
  6420. height:38px;
  6421. display:flex;
  6422. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:12px;
  6426. color:#333333;
  6427. }
  6428. #u88376 .text {
  6429. position:absolute;
  6430. align-self:center;
  6431. padding:2px 2px 2px 0px;
  6432. box-sizing:border-box;
  6433. width:100%;
  6434. }
  6435. #u88376_text {
  6436. border-width:0px;
  6437. word-wrap:break-word;
  6438. text-transform:none;
  6439. visibility:hidden;
  6440. }
  6441. #u88377_img {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:0px;
  6445. top:0px;
  6446. width:81px;
  6447. height:38px;
  6448. }
  6449. #u88377 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:243px;
  6453. top:156px;
  6454. width:81px;
  6455. height:38px;
  6456. display:flex;
  6457. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:12px;
  6461. color:#333333;
  6462. }
  6463. #u88377 .text {
  6464. position:absolute;
  6465. align-self:center;
  6466. padding:2px 2px 2px 0px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u88377_text {
  6471. border-width:0px;
  6472. word-wrap:break-word;
  6473. text-transform:none;
  6474. visibility:hidden;
  6475. }
  6476. #u88378_img {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:81px;
  6482. height:38px;
  6483. }
  6484. #u88378 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:324px;
  6488. top:156px;
  6489. width:81px;
  6490. height:38px;
  6491. display:flex;
  6492. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6493. font-weight:400;
  6494. font-style:normal;
  6495. font-size:12px;
  6496. color:#333333;
  6497. }
  6498. #u88378 .text {
  6499. position:absolute;
  6500. align-self:center;
  6501. padding:2px 2px 2px 0px;
  6502. box-sizing:border-box;
  6503. width:100%;
  6504. }
  6505. #u88378_text {
  6506. border-width:0px;
  6507. word-wrap:break-word;
  6508. text-transform:none;
  6509. visibility:hidden;
  6510. }
  6511. #u88379_img {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:0px;
  6515. top:0px;
  6516. width:81px;
  6517. height:38px;
  6518. }
  6519. #u88379 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:405px;
  6523. top:156px;
  6524. width:81px;
  6525. height:38px;
  6526. display:flex;
  6527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:12px;
  6531. color:#333333;
  6532. }
  6533. #u88379 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 0px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u88379_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. visibility:hidden;
  6545. }
  6546. #u88380_img {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:81px;
  6552. height:38px;
  6553. }
  6554. #u88380 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:486px;
  6558. top:156px;
  6559. width:81px;
  6560. height:38px;
  6561. display:flex;
  6562. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:12px;
  6566. color:#333333;
  6567. }
  6568. #u88380 .text {
  6569. position:absolute;
  6570. align-self:center;
  6571. padding:2px 2px 2px 0px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u88380_text {
  6576. border-width:0px;
  6577. word-wrap:break-word;
  6578. text-transform:none;
  6579. visibility:hidden;
  6580. }
  6581. #u88381_img {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:0px;
  6585. top:0px;
  6586. width:81px;
  6587. height:38px;
  6588. }
  6589. #u88381 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:567px;
  6593. top:156px;
  6594. width:81px;
  6595. height:38px;
  6596. display:flex;
  6597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6598. font-weight:400;
  6599. font-style:normal;
  6600. font-size:12px;
  6601. color:#333333;
  6602. }
  6603. #u88381 .text {
  6604. position:absolute;
  6605. align-self:center;
  6606. padding:2px 2px 2px 0px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u88381_text {
  6611. border-width:0px;
  6612. word-wrap:break-word;
  6613. text-transform:none;
  6614. visibility:hidden;
  6615. }
  6616. #u88382_img {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:81px;
  6622. height:38px;
  6623. }
  6624. #u88382 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:648px;
  6628. top:156px;
  6629. width:81px;
  6630. height:38px;
  6631. display:flex;
  6632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:12px;
  6636. color:#333333;
  6637. }
  6638. #u88382 .text {
  6639. position:absolute;
  6640. align-self:center;
  6641. padding:2px 2px 2px 0px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u88382_text {
  6646. border-width:0px;
  6647. word-wrap:break-word;
  6648. text-transform:none;
  6649. visibility:hidden;
  6650. }
  6651. #u88383_img {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:81px;
  6657. height:38px;
  6658. }
  6659. #u88383 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:729px;
  6663. top:156px;
  6664. width:81px;
  6665. height:38px;
  6666. display:flex;
  6667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. font-size:12px;
  6671. color:#333333;
  6672. }
  6673. #u88383 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 0px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u88383_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. visibility:hidden;
  6685. }
  6686. #u88384_img {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:81px;
  6692. height:38px;
  6693. }
  6694. #u88384 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:810px;
  6698. top:156px;
  6699. width:81px;
  6700. height:38px;
  6701. display:flex;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:12px;
  6706. color:#333333;
  6707. }
  6708. #u88384 .text {
  6709. position:absolute;
  6710. align-self:center;
  6711. padding:2px 2px 2px 0px;
  6712. box-sizing:border-box;
  6713. width:100%;
  6714. }
  6715. #u88384_text {
  6716. border-width:0px;
  6717. word-wrap:break-word;
  6718. text-transform:none;
  6719. visibility:hidden;
  6720. }
  6721. #u88385_img {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:81px;
  6727. height:38px;
  6728. }
  6729. #u88385 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:891px;
  6733. top:156px;
  6734. width:81px;
  6735. height:38px;
  6736. display:flex;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:12px;
  6741. color:#333333;
  6742. }
  6743. #u88385 .text {
  6744. position:absolute;
  6745. align-self:center;
  6746. padding:2px 2px 2px 0px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u88385_text {
  6751. border-width:0px;
  6752. word-wrap:break-word;
  6753. text-transform:none;
  6754. visibility:hidden;
  6755. }
  6756. #u88386_img {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:81px;
  6762. height:38px;
  6763. }
  6764. #u88386 {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:972px;
  6768. top:156px;
  6769. width:81px;
  6770. height:38px;
  6771. display:flex;
  6772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:12px;
  6776. color:#333333;
  6777. }
  6778. #u88386 .text {
  6779. position:absolute;
  6780. align-self:center;
  6781. padding:2px 2px 2px 0px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u88386_text {
  6786. border-width:0px;
  6787. word-wrap:break-word;
  6788. text-transform:none;
  6789. visibility:hidden;
  6790. }
  6791. #u88387_img {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:81px;
  6797. height:38px;
  6798. }
  6799. #u88387 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:1053px;
  6803. top:156px;
  6804. width:81px;
  6805. height:38px;
  6806. display:flex;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:12px;
  6811. color:#333333;
  6812. }
  6813. #u88387 .text {
  6814. position:absolute;
  6815. align-self:center;
  6816. padding:2px 2px 2px 0px;
  6817. box-sizing:border-box;
  6818. width:100%;
  6819. }
  6820. #u88387_text {
  6821. border-width:0px;
  6822. word-wrap:break-word;
  6823. text-transform:none;
  6824. visibility:hidden;
  6825. }
  6826. #u88388_img {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:81px;
  6832. height:38px;
  6833. }
  6834. #u88388 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:1134px;
  6838. top:156px;
  6839. width:81px;
  6840. height:38px;
  6841. display:flex;
  6842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6843. font-weight:400;
  6844. font-style:normal;
  6845. font-size:12px;
  6846. color:#333333;
  6847. }
  6848. #u88388 .text {
  6849. position:absolute;
  6850. align-self:center;
  6851. padding:2px 2px 2px 0px;
  6852. box-sizing:border-box;
  6853. width:100%;
  6854. }
  6855. #u88388_text {
  6856. border-width:0px;
  6857. word-wrap:break-word;
  6858. text-transform:none;
  6859. visibility:hidden;
  6860. }
  6861. #u88389_img {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:81px;
  6867. height:38px;
  6868. }
  6869. #u88389 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:1215px;
  6873. top:156px;
  6874. width:81px;
  6875. height:38px;
  6876. display:flex;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:12px;
  6881. color:#333333;
  6882. }
  6883. #u88389 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:2px 2px 2px 0px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u88389_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. visibility:hidden;
  6895. }
  6896. #u88390_img {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:81px;
  6902. height:38px;
  6903. }
  6904. #u88390 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:1296px;
  6908. top:156px;
  6909. width:81px;
  6910. height:38px;
  6911. display:flex;
  6912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:12px;
  6916. color:#333333;
  6917. }
  6918. #u88390 .text {
  6919. position:absolute;
  6920. align-self:center;
  6921. padding:2px 2px 2px 0px;
  6922. box-sizing:border-box;
  6923. width:100%;
  6924. }
  6925. #u88390_text {
  6926. border-width:0px;
  6927. word-wrap:break-word;
  6928. text-transform:none;
  6929. visibility:hidden;
  6930. }
  6931. #u88391_img {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:0px;
  6935. top:0px;
  6936. width:81px;
  6937. height:38px;
  6938. }
  6939. #u88391 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:1377px;
  6943. top:156px;
  6944. width:81px;
  6945. height:38px;
  6946. display:flex;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:12px;
  6951. color:#333333;
  6952. }
  6953. #u88391 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:2px 2px 2px 0px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u88391_text {
  6961. border-width:0px;
  6962. word-wrap:break-word;
  6963. text-transform:none;
  6964. visibility:hidden;
  6965. }
  6966. #u88392_img {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:81px;
  6972. height:38px;
  6973. }
  6974. #u88392 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:1458px;
  6978. top:156px;
  6979. width:81px;
  6980. height:38px;
  6981. display:flex;
  6982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:12px;
  6986. color:#333333;
  6987. }
  6988. #u88392 .text {
  6989. position:absolute;
  6990. align-self:center;
  6991. padding:2px 2px 2px 0px;
  6992. box-sizing:border-box;
  6993. width:100%;
  6994. }
  6995. #u88392_text {
  6996. border-width:0px;
  6997. word-wrap:break-word;
  6998. text-transform:none;
  6999. visibility:hidden;
  7000. }
  7001. #u88393 {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:0px;
  7005. top:0px;
  7006. width:0px;
  7007. height:0px;
  7008. }
  7009. #u88394 {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:512px;
  7013. top:200px;
  7014. width:405px;
  7015. height:40px;
  7016. }
  7017. #u88395_img {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:0px;
  7021. top:0px;
  7022. width:81px;
  7023. height:40px;
  7024. }
  7025. #u88395 {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:81px;
  7031. height:40px;
  7032. display:flex;
  7033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7034. font-weight:400;
  7035. font-style:normal;
  7036. font-size:12px;
  7037. color:#FFFFFF;
  7038. }
  7039. #u88395 .text {
  7040. position:absolute;
  7041. align-self:center;
  7042. padding:2px 2px 2px 0px;
  7043. box-sizing:border-box;
  7044. width:100%;
  7045. }
  7046. #u88395_text {
  7047. border-width:0px;
  7048. word-wrap:break-word;
  7049. text-transform:none;
  7050. }
  7051. #u88396_img {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:81px;
  7057. height:40px;
  7058. }
  7059. #u88396 {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:81px;
  7063. top:0px;
  7064. width:81px;
  7065. height:40px;
  7066. display:flex;
  7067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:12px;
  7071. color:#FFFFFF;
  7072. }
  7073. #u88396 .text {
  7074. position:absolute;
  7075. align-self:center;
  7076. padding:2px 2px 2px 0px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u88396_text {
  7081. border-width:0px;
  7082. word-wrap:break-word;
  7083. text-transform:none;
  7084. }
  7085. #u88397_img {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:81px;
  7091. height:40px;
  7092. }
  7093. #u88397 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:162px;
  7097. top:0px;
  7098. width:81px;
  7099. height:40px;
  7100. display:flex;
  7101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7102. font-weight:400;
  7103. font-style:normal;
  7104. font-size:12px;
  7105. color:#FFFFFF;
  7106. }
  7107. #u88397 .text {
  7108. position:absolute;
  7109. align-self:center;
  7110. padding:2px 2px 2px 0px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u88397_text {
  7115. border-width:0px;
  7116. word-wrap:break-word;
  7117. text-transform:none;
  7118. }
  7119. #u88398_img {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:81px;
  7125. height:40px;
  7126. }
  7127. #u88398 {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:243px;
  7131. top:0px;
  7132. width:81px;
  7133. height:40px;
  7134. display:flex;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:12px;
  7139. color:#FFFFFF;
  7140. }
  7141. #u88398 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:2px 2px 2px 0px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u88398_text {
  7149. border-width:0px;
  7150. word-wrap:break-word;
  7151. text-transform:none;
  7152. }
  7153. #u88399_img {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:81px;
  7159. height:40px;
  7160. }
  7161. #u88399 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:324px;
  7165. top:0px;
  7166. width:81px;
  7167. height:40px;
  7168. display:flex;
  7169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:12px;
  7173. color:#FFFFFF;
  7174. }
  7175. #u88399 .text {
  7176. position:absolute;
  7177. align-self:center;
  7178. padding:2px 2px 2px 0px;
  7179. box-sizing:border-box;
  7180. width:100%;
  7181. }
  7182. #u88399_text {
  7183. border-width:0px;
  7184. word-wrap:break-word;
  7185. text-transform:none;
  7186. }
  7187. #u88400_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:405px;
  7193. height:40px;
  7194. background:inherit;
  7195. background-color:rgba(51, 51, 51, 1);
  7196. box-sizing:border-box;
  7197. border-width:1px;
  7198. border-style:solid;
  7199. border-color:rgba(170, 170, 170, 1);
  7200. border-radius:0px;
  7201. -moz-box-shadow:none;
  7202. -webkit-box-shadow:none;
  7203. box-shadow:none;
  7204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7205. font-weight:400;
  7206. font-style:normal;
  7207. font-size:12px;
  7208. color:#FFFFFF;
  7209. }
  7210. #u88400 {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:512px;
  7214. top:160px;
  7215. width:405px;
  7216. height:40px;
  7217. display:flex;
  7218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7219. font-weight:400;
  7220. font-style:normal;
  7221. font-size:12px;
  7222. color:#FFFFFF;
  7223. }
  7224. #u88400 .text {
  7225. position:absolute;
  7226. align-self:center;
  7227. padding:2px 2px 2px 2px;
  7228. box-sizing:border-box;
  7229. width:100%;
  7230. }
  7231. #u88400_text {
  7232. border-width:0px;
  7233. word-wrap:break-word;
  7234. text-transform:none;
  7235. }
  7236. #u88401 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:0px;
  7240. top:0px;
  7241. width:0px;
  7242. height:0px;
  7243. }
  7244. #u88402 {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:917px;
  7248. top:200px;
  7249. width:405px;
  7250. height:40px;
  7251. }
  7252. #u88403_img {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:81px;
  7258. height:40px;
  7259. }
  7260. #u88403 {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:81px;
  7266. height:40px;
  7267. display:flex;
  7268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7269. font-weight:400;
  7270. font-style:normal;
  7271. font-size:12px;
  7272. color:#FFFFFF;
  7273. }
  7274. #u88403 .text {
  7275. position:absolute;
  7276. align-self:center;
  7277. padding:2px 2px 2px 0px;
  7278. box-sizing:border-box;
  7279. width:100%;
  7280. }
  7281. #u88403_text {
  7282. border-width:0px;
  7283. word-wrap:break-word;
  7284. text-transform:none;
  7285. }
  7286. #u88404_img {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:81px;
  7292. height:40px;
  7293. }
  7294. #u88404 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:81px;
  7298. top:0px;
  7299. width:81px;
  7300. height:40px;
  7301. display:flex;
  7302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:12px;
  7306. color:#FFFFFF;
  7307. }
  7308. #u88404 .text {
  7309. position:absolute;
  7310. align-self:center;
  7311. padding:2px 2px 2px 0px;
  7312. box-sizing:border-box;
  7313. width:100%;
  7314. }
  7315. #u88404_text {
  7316. border-width:0px;
  7317. word-wrap:break-word;
  7318. text-transform:none;
  7319. }
  7320. #u88405_img {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:81px;
  7326. height:40px;
  7327. }
  7328. #u88405 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:162px;
  7332. top:0px;
  7333. width:81px;
  7334. height:40px;
  7335. display:flex;
  7336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:12px;
  7340. color:#FFFFFF;
  7341. }
  7342. #u88405 .text {
  7343. position:absolute;
  7344. align-self:center;
  7345. padding:2px 2px 2px 0px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u88405_text {
  7350. border-width:0px;
  7351. word-wrap:break-word;
  7352. text-transform:none;
  7353. }
  7354. #u88406_img {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:0px;
  7358. top:0px;
  7359. width:81px;
  7360. height:40px;
  7361. }
  7362. #u88406 {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:243px;
  7366. top:0px;
  7367. width:81px;
  7368. height:40px;
  7369. display:flex;
  7370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7371. font-weight:400;
  7372. font-style:normal;
  7373. font-size:12px;
  7374. color:#FFFFFF;
  7375. }
  7376. #u88406 .text {
  7377. position:absolute;
  7378. align-self:center;
  7379. padding:2px 2px 2px 0px;
  7380. box-sizing:border-box;
  7381. width:100%;
  7382. }
  7383. #u88406_text {
  7384. border-width:0px;
  7385. word-wrap:break-word;
  7386. text-transform:none;
  7387. }
  7388. #u88407_img {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:81px;
  7394. height:40px;
  7395. }
  7396. #u88407 {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:324px;
  7400. top:0px;
  7401. width:81px;
  7402. height:40px;
  7403. display:flex;
  7404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:12px;
  7408. color:#FFFFFF;
  7409. }
  7410. #u88407 .text {
  7411. position:absolute;
  7412. align-self:center;
  7413. padding:2px 2px 2px 0px;
  7414. box-sizing:border-box;
  7415. width:100%;
  7416. }
  7417. #u88407_text {
  7418. border-width:0px;
  7419. word-wrap:break-word;
  7420. text-transform:none;
  7421. }
  7422. #u88408_div {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:405px;
  7428. height:40px;
  7429. background:inherit;
  7430. background-color:rgba(51, 51, 51, 1);
  7431. box-sizing:border-box;
  7432. border-width:1px;
  7433. border-style:solid;
  7434. border-color:rgba(170, 170, 170, 1);
  7435. border-radius:0px;
  7436. -moz-box-shadow:none;
  7437. -webkit-box-shadow:none;
  7438. box-shadow:none;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:12px;
  7443. color:#FFFFFF;
  7444. }
  7445. #u88408 {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:917px;
  7449. top:160px;
  7450. width:405px;
  7451. height:40px;
  7452. display:flex;
  7453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:12px;
  7457. color:#FFFFFF;
  7458. }
  7459. #u88408 .text {
  7460. position:absolute;
  7461. align-self:center;
  7462. padding:2px 2px 2px 2px;
  7463. box-sizing:border-box;
  7464. width:100%;
  7465. }
  7466. #u88408_text {
  7467. border-width:0px;
  7468. word-wrap:break-word;
  7469. text-transform:none;
  7470. }
  7471. #u88409 {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:0px;
  7477. height:0px;
  7478. }
  7479. #u88410 {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:1322px;
  7483. top:200px;
  7484. width:243px;
  7485. height:40px;
  7486. }
  7487. #u88411_img {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:0px;
  7491. top:0px;
  7492. width:81px;
  7493. height:40px;
  7494. }
  7495. #u88411 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:0px;
  7499. top:0px;
  7500. width:81px;
  7501. height:40px;
  7502. display:flex;
  7503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7504. font-weight:400;
  7505. font-style:normal;
  7506. font-size:12px;
  7507. color:#FFFFFF;
  7508. }
  7509. #u88411 .text {
  7510. position:absolute;
  7511. align-self:center;
  7512. padding:2px 2px 2px 0px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u88411_text {
  7517. border-width:0px;
  7518. word-wrap:break-word;
  7519. text-transform:none;
  7520. }
  7521. #u88412_img {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:81px;
  7527. height:40px;
  7528. }
  7529. #u88412 {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:81px;
  7533. top:0px;
  7534. width:81px;
  7535. height:40px;
  7536. display:flex;
  7537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7538. font-weight:400;
  7539. font-style:normal;
  7540. font-size:12px;
  7541. color:#FFFFFF;
  7542. }
  7543. #u88412 .text {
  7544. position:absolute;
  7545. align-self:center;
  7546. padding:2px 2px 2px 0px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u88412_text {
  7551. border-width:0px;
  7552. word-wrap:break-word;
  7553. text-transform:none;
  7554. }
  7555. #u88413_img {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:0px;
  7559. top:0px;
  7560. width:81px;
  7561. height:40px;
  7562. }
  7563. #u88413 {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:162px;
  7567. top:0px;
  7568. width:81px;
  7569. height:40px;
  7570. display:flex;
  7571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:12px;
  7575. color:#FFFFFF;
  7576. }
  7577. #u88413 .text {
  7578. position:absolute;
  7579. align-self:center;
  7580. padding:2px 2px 2px 0px;
  7581. box-sizing:border-box;
  7582. width:100%;
  7583. }
  7584. #u88413_text {
  7585. border-width:0px;
  7586. word-wrap:break-word;
  7587. text-transform:none;
  7588. }
  7589. #u88414_div {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:0px;
  7593. top:0px;
  7594. width:243px;
  7595. height:40px;
  7596. background:inherit;
  7597. background-color:rgba(51, 51, 51, 1);
  7598. box-sizing:border-box;
  7599. border-width:1px;
  7600. border-style:solid;
  7601. border-color:rgba(170, 170, 170, 1);
  7602. border-radius:0px;
  7603. -moz-box-shadow:none;
  7604. -webkit-box-shadow:none;
  7605. box-shadow:none;
  7606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7607. font-weight:400;
  7608. font-style:normal;
  7609. font-size:12px;
  7610. color:#FFFFFF;
  7611. }
  7612. #u88414 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:1322px;
  7616. top:160px;
  7617. width:243px;
  7618. height:40px;
  7619. display:flex;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. font-size:12px;
  7624. color:#FFFFFF;
  7625. }
  7626. #u88414 .text {
  7627. position:absolute;
  7628. align-self:center;
  7629. padding:2px 2px 2px 2px;
  7630. box-sizing:border-box;
  7631. width:100%;
  7632. }
  7633. #u88414_text {
  7634. border-width:0px;
  7635. word-wrap:break-word;
  7636. text-transform:none;
  7637. }