styles.css 138 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u82737_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. #u82737 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u82737 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u82737_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u82738_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. #u82738 {
  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. #u82738 .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. #u82738_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u82739_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. #u82739 {
  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. #u82739 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u82739_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u82740 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u82741_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u82741 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u82741 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u82741_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u82742_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. #u82742 {
  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. #u82742 .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. #u82742_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u82743_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. #u82743 {
  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. #u82743 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u82743_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u82744 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u82745_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. #u82745_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. #u82745_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. #u82745 {
  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. #u82745 .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. #u82745_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. #u82745.disabled {
  356. }
  357. .u82745_input_option {
  358. font-size:14px;
  359. }
  360. #u82746_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u82746 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u82746 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u82746_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u82747_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. #u82747 {
  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. #u82747 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u82747_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u82748_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. #u82748 {
  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. #u82748 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u82748_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u82749 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u82750_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. #u82750 {
  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. #u82750 .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. #u82750_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u82751_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u82751 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u82751 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u82751_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u82752 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u82753_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. #u82753 {
  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. #u82753 .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. #u82753_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u82754_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u82754 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u82754 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u82754_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u82755 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u82756_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. #u82756 {
  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. #u82756 .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. #u82756_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u82757_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u82757 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u82757 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u82757_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u82758 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u82759_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. #u82759 {
  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. #u82759 .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. #u82759_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u82760_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u82760 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u82760 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u82760_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u82761 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u82762_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. #u82762 {
  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. #u82762 .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. #u82762_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u82763_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u82763 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u82763 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u82763_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u82764 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u82765_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. #u82765 {
  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. #u82765 .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. #u82765_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u82766_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u82766 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u82766 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u82766_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u82767 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u82768_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. #u82768 {
  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. #u82768 .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. #u82768_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u82769_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u82769 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u82769 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u82769_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u82770 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u82771_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. #u82771 {
  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. #u82771 .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. #u82771_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u82772_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u82772 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u82772 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u82772_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u82773 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u82774_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. #u82774 {
  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. #u82774 .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. #u82774_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u82775_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u82775 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u82775 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u82775_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u82776 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u82777_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. #u82777 {
  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. #u82777 .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. #u82777_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u82778_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u82778 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u82778 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u82778_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u82779_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. #u82779 {
  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. #u82779 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u82779_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u82780_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u82780 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u82780 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u82780_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u82781_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. #u82781 {
  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. #u82781 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u82781_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u82782_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u82782 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u82782 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u82782_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u82783 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u82784_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. #u82784 {
  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. #u82784 .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. #u82784_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u82785_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u82785 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u82785 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u82785_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u82786 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u82787_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. #u82787 {
  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. #u82787 .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. #u82787_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u82788_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u82788 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u82788 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u82788_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u82789_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(0, 0, 0, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1652. }
  1653. #u82789 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:331px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u82789 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u82789_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u82790_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:25px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u82790 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:351px;
  1698. top:71px;
  1699. width:73px;
  1700. height:25px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u82790 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u82790_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u82791 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:351px;
  1723. top:246px;
  1724. width:1220px;
  1725. height:293px;
  1726. }
  1727. #u82792_img {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:82px;
  1733. height:34px;
  1734. }
  1735. #u82792 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:82px;
  1741. height:34px;
  1742. display:flex;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:14px;
  1747. color:#FFFFFF;
  1748. text-align:left;
  1749. line-height:30px;
  1750. }
  1751. #u82792 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 10px 2px 10px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u82792_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u82793_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:82px;
  1769. height:34px;
  1770. }
  1771. #u82793 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:82px;
  1775. top:0px;
  1776. width:82px;
  1777. height:34px;
  1778. display:flex;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:14px;
  1783. color:#FFFFFF;
  1784. text-align:left;
  1785. line-height:30px;
  1786. }
  1787. #u82793 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 10px 2px 10px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u82793_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u82794_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:119px;
  1805. height:34px;
  1806. }
  1807. #u82794 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:164px;
  1811. top:0px;
  1812. width:119px;
  1813. height:34px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:14px;
  1819. color:#FFFFFF;
  1820. text-align:left;
  1821. line-height:30px;
  1822. }
  1823. #u82794 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:2px 10px 2px 10px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u82794_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. }
  1835. #u82795_img {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:119px;
  1841. height:34px;
  1842. }
  1843. #u82795 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:283px;
  1847. top:0px;
  1848. width:119px;
  1849. height:34px;
  1850. display:flex;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:14px;
  1855. color:#FFFFFF;
  1856. text-align:left;
  1857. line-height:30px;
  1858. }
  1859. #u82795 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 10px 2px 10px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u82795_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. }
  1871. #u82796_img {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:123px;
  1877. height:34px;
  1878. }
  1879. #u82796 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:402px;
  1883. top:0px;
  1884. width:123px;
  1885. height:34px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:14px;
  1891. color:#FFFFFF;
  1892. text-align:left;
  1893. line-height:30px;
  1894. }
  1895. #u82796 .text {
  1896. position:absolute;
  1897. align-self:center;
  1898. padding:2px 10px 2px 10px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u82796_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. }
  1907. #u82797_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:119px;
  1913. height:34px;
  1914. }
  1915. #u82797 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:525px;
  1919. top:0px;
  1920. width:119px;
  1921. height:34px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:14px;
  1927. color:#FFFFFF;
  1928. text-align:left;
  1929. line-height:30px;
  1930. }
  1931. #u82797 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 10px 2px 10px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u82797_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u82798_img {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:153px;
  1949. height:34px;
  1950. }
  1951. #u82798 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:644px;
  1955. top:0px;
  1956. width:153px;
  1957. height:34px;
  1958. display:flex;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. color:#FFFFFF;
  1964. text-align:left;
  1965. line-height:30px;
  1966. }
  1967. #u82798 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 10px 2px 10px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u82798_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. }
  1979. #u82799_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:119px;
  1985. height:34px;
  1986. }
  1987. #u82799 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:797px;
  1991. top:0px;
  1992. width:119px;
  1993. height:34px;
  1994. display:flex;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:14px;
  1999. color:#FFFFFF;
  2000. text-align:left;
  2001. line-height:30px;
  2002. }
  2003. #u82799 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 10px 2px 10px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u82799_text {
  2011. border-width:0px;
  2012. word-wrap:break-word;
  2013. text-transform:none;
  2014. }
  2015. #u82800_img {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:123px;
  2021. height:34px;
  2022. }
  2023. #u82800 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:916px;
  2027. top:0px;
  2028. width:123px;
  2029. height:34px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:14px;
  2035. color:#FFFFFF;
  2036. text-align:left;
  2037. line-height:30px;
  2038. }
  2039. #u82800 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 10px 2px 10px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u82800_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. }
  2051. #u82801_img {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:181px;
  2057. height:34px;
  2058. }
  2059. #u82801 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:1039px;
  2063. top:0px;
  2064. width:181px;
  2065. height:34px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. color:#FFFFFF;
  2072. text-align:left;
  2073. line-height:30px;
  2074. }
  2075. #u82801 .text {
  2076. position:absolute;
  2077. align-self:center;
  2078. padding:2px 10px 2px 10px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u82801_text {
  2083. border-width:0px;
  2084. word-wrap:break-word;
  2085. text-transform:none;
  2086. }
  2087. #u82802_img {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:82px;
  2093. height:37px;
  2094. }
  2095. #u82802 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:34px;
  2100. width:82px;
  2101. height:37px;
  2102. display:flex;
  2103. font-size:14px;
  2104. text-align:left;
  2105. }
  2106. #u82802 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:2px 10px 2px 10px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u82802_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. visibility:hidden;
  2118. }
  2119. #u82803_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:82px;
  2125. height:37px;
  2126. }
  2127. #u82803 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:82px;
  2131. top:34px;
  2132. width:82px;
  2133. height:37px;
  2134. display:flex;
  2135. font-size:14px;
  2136. text-align:left;
  2137. }
  2138. #u82803 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:2px 10px 2px 10px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u82803_text {
  2146. border-width:0px;
  2147. word-wrap:break-word;
  2148. text-transform:none;
  2149. visibility:hidden;
  2150. }
  2151. #u82804_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:119px;
  2157. height:37px;
  2158. }
  2159. #u82804 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:164px;
  2163. top:34px;
  2164. width:119px;
  2165. height:37px;
  2166. display:flex;
  2167. font-size:14px;
  2168. text-align:left;
  2169. }
  2170. #u82804 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 10px 2px 10px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u82804_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. }
  2182. #u82805_img {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:119px;
  2188. height:37px;
  2189. }
  2190. #u82805 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:283px;
  2194. top:34px;
  2195. width:119px;
  2196. height:37px;
  2197. display:flex;
  2198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2199. font-weight:400;
  2200. font-style:normal;
  2201. font-size:14px;
  2202. text-align:left;
  2203. }
  2204. #u82805 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 10px 2px 10px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u82805_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. }
  2216. #u82806_img {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:123px;
  2222. height:37px;
  2223. }
  2224. #u82806 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:402px;
  2228. top:34px;
  2229. width:123px;
  2230. height:37px;
  2231. display:flex;
  2232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:14px;
  2236. text-align:left;
  2237. }
  2238. #u82806 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:2px 10px 2px 10px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u82806_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. visibility:hidden;
  2250. }
  2251. #u82807_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:119px;
  2257. height:37px;
  2258. }
  2259. #u82807 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:525px;
  2263. top:34px;
  2264. width:119px;
  2265. height:37px;
  2266. display:flex;
  2267. font-size:14px;
  2268. text-align:left;
  2269. }
  2270. #u82807 .text {
  2271. position:absolute;
  2272. align-self:center;
  2273. padding:2px 10px 2px 10px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u82807_text {
  2278. border-width:0px;
  2279. word-wrap:break-word;
  2280. text-transform:none;
  2281. visibility:hidden;
  2282. }
  2283. #u82808_img {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:153px;
  2289. height:37px;
  2290. }
  2291. #u82808 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:644px;
  2295. top:34px;
  2296. width:153px;
  2297. height:37px;
  2298. display:flex;
  2299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:14px;
  2303. text-align:left;
  2304. }
  2305. #u82808 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 10px 2px 10px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u82808_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. }
  2317. #u82809_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:119px;
  2323. height:37px;
  2324. }
  2325. #u82809 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:797px;
  2329. top:34px;
  2330. width:119px;
  2331. height:37px;
  2332. display:flex;
  2333. font-size:14px;
  2334. text-align:left;
  2335. }
  2336. #u82809 .text {
  2337. position:absolute;
  2338. align-self:center;
  2339. padding:2px 10px 2px 10px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u82809_text {
  2344. border-width:0px;
  2345. word-wrap:break-word;
  2346. text-transform:none;
  2347. visibility:hidden;
  2348. }
  2349. #u82810_img {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:123px;
  2355. height:37px;
  2356. }
  2357. #u82810 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:916px;
  2361. top:34px;
  2362. width:123px;
  2363. height:37px;
  2364. display:flex;
  2365. font-size:14px;
  2366. text-align:left;
  2367. }
  2368. #u82810 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 10px 2px 10px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u82810_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. visibility:hidden;
  2380. }
  2381. #u82811_img {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:181px;
  2387. height:37px;
  2388. }
  2389. #u82811 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:1039px;
  2393. top:34px;
  2394. width:181px;
  2395. height:37px;
  2396. display:flex;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:14px;
  2401. text-align:left;
  2402. }
  2403. #u82811 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 10px 2px 10px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u82811_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. }
  2415. #u82812_img {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:82px;
  2421. height:37px;
  2422. }
  2423. #u82812 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:71px;
  2428. width:82px;
  2429. height:37px;
  2430. display:flex;
  2431. font-size:14px;
  2432. text-align:left;
  2433. }
  2434. #u82812 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 10px 2px 10px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u82812_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u82813_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:82px;
  2453. height:37px;
  2454. }
  2455. #u82813 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:82px;
  2459. top:71px;
  2460. width:82px;
  2461. height:37px;
  2462. display:flex;
  2463. font-size:14px;
  2464. text-align:left;
  2465. }
  2466. #u82813 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 10px 2px 10px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u82813_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u82814_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:119px;
  2485. height:37px;
  2486. }
  2487. #u82814 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:164px;
  2491. top:71px;
  2492. width:119px;
  2493. height:37px;
  2494. display:flex;
  2495. font-size:14px;
  2496. text-align:left;
  2497. }
  2498. #u82814 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 10px 2px 10px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u82814_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. }
  2510. #u82815_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:119px;
  2516. height:37px;
  2517. }
  2518. #u82815 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:283px;
  2522. top:71px;
  2523. width:119px;
  2524. height:37px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:14px;
  2530. text-align:left;
  2531. }
  2532. #u82815 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 10px 2px 10px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u82815_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. }
  2544. #u82816_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:123px;
  2550. height:37px;
  2551. }
  2552. #u82816 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:402px;
  2556. top:71px;
  2557. width:123px;
  2558. height:37px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:14px;
  2564. text-align:left;
  2565. }
  2566. #u82816 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 10px 2px 10px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u82816_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u82817_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:119px;
  2585. height:37px;
  2586. }
  2587. #u82817 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:525px;
  2591. top:71px;
  2592. width:119px;
  2593. height:37px;
  2594. display:flex;
  2595. font-size:14px;
  2596. text-align:left;
  2597. }
  2598. #u82817 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 10px 2px 10px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u82817_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u82818_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:153px;
  2617. height:37px;
  2618. }
  2619. #u82818 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:644px;
  2623. top:71px;
  2624. width:153px;
  2625. height:37px;
  2626. display:flex;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:14px;
  2631. text-align:left;
  2632. }
  2633. #u82818 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:2px 10px 2px 10px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u82818_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. }
  2645. #u82819_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:119px;
  2651. height:37px;
  2652. }
  2653. #u82819 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:797px;
  2657. top:71px;
  2658. width:119px;
  2659. height:37px;
  2660. display:flex;
  2661. font-size:14px;
  2662. text-align:left;
  2663. }
  2664. #u82819 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 10px 2px 10px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u82819_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u82820_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:123px;
  2683. height:37px;
  2684. }
  2685. #u82820 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:916px;
  2689. top:71px;
  2690. width:123px;
  2691. height:37px;
  2692. display:flex;
  2693. font-size:14px;
  2694. text-align:left;
  2695. }
  2696. #u82820 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:2px 10px 2px 10px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u82820_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u82821_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:181px;
  2715. height:37px;
  2716. }
  2717. #u82821 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:1039px;
  2721. top:71px;
  2722. width:181px;
  2723. height:37px;
  2724. display:flex;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:14px;
  2729. text-align:left;
  2730. }
  2731. #u82821 .text {
  2732. position:absolute;
  2733. align-self:center;
  2734. padding:2px 10px 2px 10px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u82821_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. }
  2743. #u82822_img {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:82px;
  2749. height:37px;
  2750. }
  2751. #u82822 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:108px;
  2756. width:82px;
  2757. height:37px;
  2758. display:flex;
  2759. font-size:14px;
  2760. text-align:left;
  2761. }
  2762. #u82822 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 10px 2px 10px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u82822_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. visibility:hidden;
  2774. }
  2775. #u82823_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:82px;
  2781. height:37px;
  2782. }
  2783. #u82823 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:82px;
  2787. top:108px;
  2788. width:82px;
  2789. height:37px;
  2790. display:flex;
  2791. font-size:14px;
  2792. text-align:left;
  2793. }
  2794. #u82823 .text {
  2795. position:absolute;
  2796. align-self:center;
  2797. padding:2px 10px 2px 10px;
  2798. box-sizing:border-box;
  2799. width:100%;
  2800. }
  2801. #u82823_text {
  2802. border-width:0px;
  2803. word-wrap:break-word;
  2804. text-transform:none;
  2805. visibility:hidden;
  2806. }
  2807. #u82824_img {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:119px;
  2813. height:37px;
  2814. }
  2815. #u82824 {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:164px;
  2819. top:108px;
  2820. width:119px;
  2821. height:37px;
  2822. display:flex;
  2823. font-size:14px;
  2824. text-align:left;
  2825. }
  2826. #u82824 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 10px 2px 10px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u82824_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. }
  2838. #u82825_img {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:119px;
  2844. height:37px;
  2845. }
  2846. #u82825 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:283px;
  2850. top:108px;
  2851. width:119px;
  2852. height:37px;
  2853. display:flex;
  2854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:14px;
  2858. text-align:left;
  2859. }
  2860. #u82825 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 10px 2px 10px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u82825_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. }
  2872. #u82826_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:123px;
  2878. height:37px;
  2879. }
  2880. #u82826 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:402px;
  2884. top:108px;
  2885. width:123px;
  2886. height:37px;
  2887. display:flex;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:14px;
  2892. text-align:left;
  2893. }
  2894. #u82826 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 10px 2px 10px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u82826_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u82827_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:119px;
  2913. height:37px;
  2914. }
  2915. #u82827 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:525px;
  2919. top:108px;
  2920. width:119px;
  2921. height:37px;
  2922. display:flex;
  2923. font-size:14px;
  2924. text-align:left;
  2925. }
  2926. #u82827 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 10px 2px 10px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u82827_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u82828_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:153px;
  2945. height:37px;
  2946. }
  2947. #u82828 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:644px;
  2951. top:108px;
  2952. width:153px;
  2953. height:37px;
  2954. display:flex;
  2955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2956. font-weight:400;
  2957. font-style:normal;
  2958. font-size:14px;
  2959. text-align:left;
  2960. }
  2961. #u82828 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 10px 2px 10px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u82828_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. }
  2973. #u82829_img {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:119px;
  2979. height:37px;
  2980. }
  2981. #u82829 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:797px;
  2985. top:108px;
  2986. width:119px;
  2987. height:37px;
  2988. display:flex;
  2989. font-size:14px;
  2990. text-align:left;
  2991. }
  2992. #u82829 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 10px 2px 10px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u82829_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. visibility:hidden;
  3004. }
  3005. #u82830_img {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:123px;
  3011. height:37px;
  3012. }
  3013. #u82830 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:916px;
  3017. top:108px;
  3018. width:123px;
  3019. height:37px;
  3020. display:flex;
  3021. font-size:14px;
  3022. text-align:left;
  3023. }
  3024. #u82830 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 10px 2px 10px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u82830_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. visibility:hidden;
  3036. }
  3037. #u82831_img {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:181px;
  3043. height:37px;
  3044. }
  3045. #u82831 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:1039px;
  3049. top:108px;
  3050. width:181px;
  3051. height:37px;
  3052. display:flex;
  3053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3054. font-weight:400;
  3055. font-style:normal;
  3056. font-size:14px;
  3057. color:#1890FF;
  3058. text-align:left;
  3059. }
  3060. #u82831 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 10px 2px 10px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u82831_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. }
  3072. #u82832_img {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:82px;
  3078. height:37px;
  3079. }
  3080. #u82832 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:145px;
  3085. width:82px;
  3086. height:37px;
  3087. display:flex;
  3088. font-size:14px;
  3089. text-align:left;
  3090. }
  3091. #u82832 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 10px 2px 10px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u82832_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u82833_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:82px;
  3110. height:37px;
  3111. }
  3112. #u82833 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:82px;
  3116. top:145px;
  3117. width:82px;
  3118. height:37px;
  3119. display:flex;
  3120. font-size:14px;
  3121. text-align:left;
  3122. }
  3123. #u82833 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 10px 2px 10px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u82833_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u82834_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:119px;
  3142. height:37px;
  3143. }
  3144. #u82834 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:164px;
  3148. top:145px;
  3149. width:119px;
  3150. height:37px;
  3151. display:flex;
  3152. font-size:14px;
  3153. text-align:left;
  3154. }
  3155. #u82834 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 10px 2px 10px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u82834_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u82835_img {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:119px;
  3174. height:37px;
  3175. }
  3176. #u82835 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:283px;
  3180. top:145px;
  3181. width:119px;
  3182. height:37px;
  3183. display:flex;
  3184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:14px;
  3188. text-align:left;
  3189. }
  3190. #u82835 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 10px 2px 10px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u82835_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u82836_img {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:123px;
  3209. height:37px;
  3210. }
  3211. #u82836 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:402px;
  3215. top:145px;
  3216. width:123px;
  3217. height:37px;
  3218. display:flex;
  3219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:14px;
  3223. text-align:left;
  3224. }
  3225. #u82836 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 10px 2px 10px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u82836_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u82837_img {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:119px;
  3244. height:37px;
  3245. }
  3246. #u82837 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:525px;
  3250. top:145px;
  3251. width:119px;
  3252. height:37px;
  3253. display:flex;
  3254. font-size:14px;
  3255. text-align:left;
  3256. }
  3257. #u82837 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 10px 2px 10px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u82837_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. visibility:hidden;
  3269. }
  3270. #u82838_img {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:153px;
  3276. height:37px;
  3277. }
  3278. #u82838 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:644px;
  3282. top:145px;
  3283. width:153px;
  3284. height:37px;
  3285. display:flex;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:14px;
  3290. text-align:left;
  3291. }
  3292. #u82838 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 10px 2px 10px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u82838_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. visibility:hidden;
  3304. }
  3305. #u82839_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:119px;
  3311. height:37px;
  3312. }
  3313. #u82839 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:797px;
  3317. top:145px;
  3318. width:119px;
  3319. height:37px;
  3320. display:flex;
  3321. font-size:14px;
  3322. text-align:left;
  3323. }
  3324. #u82839 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 10px 2px 10px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u82839_text {
  3332. border-width:0px;
  3333. word-wrap:break-word;
  3334. text-transform:none;
  3335. visibility:hidden;
  3336. }
  3337. #u82840_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:123px;
  3343. height:37px;
  3344. }
  3345. #u82840 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:916px;
  3349. top:145px;
  3350. width:123px;
  3351. height:37px;
  3352. display:flex;
  3353. font-size:14px;
  3354. text-align:left;
  3355. }
  3356. #u82840 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 10px 2px 10px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u82840_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u82841_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:181px;
  3375. height:37px;
  3376. }
  3377. #u82841 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:1039px;
  3381. top:145px;
  3382. width:181px;
  3383. height:37px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:14px;
  3389. color:#1890FF;
  3390. text-align:left;
  3391. }
  3392. #u82841 .text {
  3393. position:absolute;
  3394. align-self:center;
  3395. padding:2px 10px 2px 10px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u82841_text {
  3400. border-width:0px;
  3401. word-wrap:break-word;
  3402. text-transform:none;
  3403. }
  3404. #u82842_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:82px;
  3410. height:37px;
  3411. }
  3412. #u82842 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:182px;
  3417. width:82px;
  3418. height:37px;
  3419. display:flex;
  3420. font-size:14px;
  3421. text-align:left;
  3422. }
  3423. #u82842 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 10px 2px 10px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u82842_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u82843_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:82px;
  3442. height:37px;
  3443. }
  3444. #u82843 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:82px;
  3448. top:182px;
  3449. width:82px;
  3450. height:37px;
  3451. display:flex;
  3452. font-size:14px;
  3453. text-align:left;
  3454. }
  3455. #u82843 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 10px 2px 10px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u82843_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u82844_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:119px;
  3474. height:37px;
  3475. }
  3476. #u82844 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:164px;
  3480. top:182px;
  3481. width:119px;
  3482. height:37px;
  3483. display:flex;
  3484. font-size:14px;
  3485. text-align:left;
  3486. }
  3487. #u82844 .text {
  3488. position:absolute;
  3489. align-self:center;
  3490. padding:2px 10px 2px 10px;
  3491. box-sizing:border-box;
  3492. width:100%;
  3493. }
  3494. #u82844_text {
  3495. border-width:0px;
  3496. word-wrap:break-word;
  3497. text-transform:none;
  3498. visibility:hidden;
  3499. }
  3500. #u82845_img {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:119px;
  3506. height:37px;
  3507. }
  3508. #u82845 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:283px;
  3512. top:182px;
  3513. width:119px;
  3514. height:37px;
  3515. display:flex;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:14px;
  3520. text-align:left;
  3521. }
  3522. #u82845 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:2px 10px 2px 10px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u82845_text {
  3530. border-width:0px;
  3531. word-wrap:break-word;
  3532. text-transform:none;
  3533. visibility:hidden;
  3534. }
  3535. #u82846_img {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:123px;
  3541. height:37px;
  3542. }
  3543. #u82846 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:402px;
  3547. top:182px;
  3548. width:123px;
  3549. height:37px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:14px;
  3555. text-align:left;
  3556. }
  3557. #u82846 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 10px 2px 10px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u82846_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. visibility:hidden;
  3569. }
  3570. #u82847_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:119px;
  3576. height:37px;
  3577. }
  3578. #u82847 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:525px;
  3582. top:182px;
  3583. width:119px;
  3584. height:37px;
  3585. display:flex;
  3586. font-size:14px;
  3587. text-align:left;
  3588. }
  3589. #u82847 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 10px 2px 10px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u82847_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u82848_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:153px;
  3608. height:37px;
  3609. }
  3610. #u82848 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:644px;
  3614. top:182px;
  3615. width:153px;
  3616. height:37px;
  3617. display:flex;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. text-align:left;
  3622. }
  3623. #u82848 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 10px 2px 10px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u82848_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. visibility:hidden;
  3635. }
  3636. #u82849_img {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:119px;
  3642. height:37px;
  3643. }
  3644. #u82849 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:797px;
  3648. top:182px;
  3649. width:119px;
  3650. height:37px;
  3651. display:flex;
  3652. font-size:14px;
  3653. text-align:left;
  3654. }
  3655. #u82849 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 10px 2px 10px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u82849_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u82850_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:123px;
  3674. height:37px;
  3675. }
  3676. #u82850 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:916px;
  3680. top:182px;
  3681. width:123px;
  3682. height:37px;
  3683. display:flex;
  3684. font-size:14px;
  3685. text-align:left;
  3686. }
  3687. #u82850 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 10px 2px 10px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u82850_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. visibility:hidden;
  3699. }
  3700. #u82851_img {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:181px;
  3706. height:37px;
  3707. }
  3708. #u82851 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:1039px;
  3712. top:182px;
  3713. width:181px;
  3714. height:37px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:14px;
  3720. color:#1890FF;
  3721. text-align:left;
  3722. }
  3723. #u82851 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 10px 2px 10px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u82851_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. }
  3735. #u82852_img {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:82px;
  3741. height:37px;
  3742. }
  3743. #u82852 {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:219px;
  3748. width:82px;
  3749. height:37px;
  3750. display:flex;
  3751. font-size:14px;
  3752. text-align:left;
  3753. }
  3754. #u82852 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 10px 2px 10px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u82852_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u82853_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:82px;
  3773. height:37px;
  3774. }
  3775. #u82853 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:82px;
  3779. top:219px;
  3780. width:82px;
  3781. height:37px;
  3782. display:flex;
  3783. font-size:14px;
  3784. text-align:left;
  3785. }
  3786. #u82853 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 10px 2px 10px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u82853_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u82854_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:119px;
  3805. height:37px;
  3806. }
  3807. #u82854 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:164px;
  3811. top:219px;
  3812. width:119px;
  3813. height:37px;
  3814. display:flex;
  3815. font-size:14px;
  3816. text-align:left;
  3817. }
  3818. #u82854 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 10px 2px 10px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u82854_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. visibility:hidden;
  3830. }
  3831. #u82855_img {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:119px;
  3837. height:37px;
  3838. }
  3839. #u82855 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:283px;
  3843. top:219px;
  3844. width:119px;
  3845. height:37px;
  3846. display:flex;
  3847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:14px;
  3851. text-align:left;
  3852. }
  3853. #u82855 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:2px 10px 2px 10px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u82855_text {
  3861. border-width:0px;
  3862. word-wrap:break-word;
  3863. text-transform:none;
  3864. visibility:hidden;
  3865. }
  3866. #u82856_img {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:123px;
  3872. height:37px;
  3873. }
  3874. #u82856 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:402px;
  3878. top:219px;
  3879. width:123px;
  3880. height:37px;
  3881. display:flex;
  3882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3883. font-weight:400;
  3884. font-style:normal;
  3885. font-size:14px;
  3886. text-align:left;
  3887. }
  3888. #u82856 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:2px 10px 2px 10px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u82856_text {
  3896. border-width:0px;
  3897. word-wrap:break-word;
  3898. text-transform:none;
  3899. visibility:hidden;
  3900. }
  3901. #u82857_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:119px;
  3907. height:37px;
  3908. }
  3909. #u82857 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:525px;
  3913. top:219px;
  3914. width:119px;
  3915. height:37px;
  3916. display:flex;
  3917. font-size:14px;
  3918. text-align:left;
  3919. }
  3920. #u82857 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 10px 2px 10px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u82857_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u82858_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:153px;
  3939. height:37px;
  3940. }
  3941. #u82858 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:644px;
  3945. top:219px;
  3946. width:153px;
  3947. height:37px;
  3948. display:flex;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. text-align:left;
  3953. }
  3954. #u82858 .text {
  3955. position:absolute;
  3956. align-self:center;
  3957. padding:2px 10px 2px 10px;
  3958. box-sizing:border-box;
  3959. width:100%;
  3960. }
  3961. #u82858_text {
  3962. border-width:0px;
  3963. word-wrap:break-word;
  3964. text-transform:none;
  3965. visibility:hidden;
  3966. }
  3967. #u82859_img {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:119px;
  3973. height:37px;
  3974. }
  3975. #u82859 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:797px;
  3979. top:219px;
  3980. width:119px;
  3981. height:37px;
  3982. display:flex;
  3983. font-size:14px;
  3984. text-align:left;
  3985. }
  3986. #u82859 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:2px 10px 2px 10px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u82859_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. visibility:hidden;
  3998. }
  3999. #u82860_img {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:123px;
  4005. height:37px;
  4006. }
  4007. #u82860 {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:916px;
  4011. top:219px;
  4012. width:123px;
  4013. height:37px;
  4014. display:flex;
  4015. font-size:14px;
  4016. text-align:left;
  4017. }
  4018. #u82860 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 10px 2px 10px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u82860_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u82861_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:181px;
  4037. height:37px;
  4038. }
  4039. #u82861 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:1039px;
  4043. top:219px;
  4044. width:181px;
  4045. height:37px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:14px;
  4051. color:#1890FF;
  4052. text-align:left;
  4053. }
  4054. #u82861 .text {
  4055. position:absolute;
  4056. align-self:center;
  4057. padding:2px 10px 2px 10px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u82861_text {
  4062. border-width:0px;
  4063. word-wrap:break-word;
  4064. text-transform:none;
  4065. }
  4066. #u82862_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:82px;
  4072. height:37px;
  4073. }
  4074. #u82862 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:256px;
  4079. width:82px;
  4080. height:37px;
  4081. display:flex;
  4082. font-size:14px;
  4083. text-align:left;
  4084. }
  4085. #u82862 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 10px 2px 10px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u82862_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u82863_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:82px;
  4104. height:37px;
  4105. }
  4106. #u82863 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:82px;
  4110. top:256px;
  4111. width:82px;
  4112. height:37px;
  4113. display:flex;
  4114. font-size:14px;
  4115. text-align:left;
  4116. }
  4117. #u82863 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 10px 2px 10px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u82863_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u82864_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:119px;
  4136. height:37px;
  4137. }
  4138. #u82864 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:164px;
  4142. top:256px;
  4143. width:119px;
  4144. height:37px;
  4145. display:flex;
  4146. font-size:14px;
  4147. text-align:left;
  4148. }
  4149. #u82864 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 10px 2px 10px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u82864_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. visibility:hidden;
  4161. }
  4162. #u82865_img {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:119px;
  4168. height:37px;
  4169. }
  4170. #u82865 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:283px;
  4174. top:256px;
  4175. width:119px;
  4176. height:37px;
  4177. display:flex;
  4178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:14px;
  4182. text-align:left;
  4183. }
  4184. #u82865 .text {
  4185. position:absolute;
  4186. align-self:center;
  4187. padding:2px 10px 2px 10px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u82865_text {
  4192. border-width:0px;
  4193. word-wrap:break-word;
  4194. text-transform:none;
  4195. visibility:hidden;
  4196. }
  4197. #u82866_img {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:123px;
  4203. height:37px;
  4204. }
  4205. #u82866 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:402px;
  4209. top:256px;
  4210. width:123px;
  4211. height:37px;
  4212. display:flex;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. text-align:left;
  4218. }
  4219. #u82866 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:2px 10px 2px 10px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u82866_text {
  4227. border-width:0px;
  4228. word-wrap:break-word;
  4229. text-transform:none;
  4230. visibility:hidden;
  4231. }
  4232. #u82867_img {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:119px;
  4238. height:37px;
  4239. }
  4240. #u82867 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:525px;
  4244. top:256px;
  4245. width:119px;
  4246. height:37px;
  4247. display:flex;
  4248. font-size:14px;
  4249. text-align:left;
  4250. }
  4251. #u82867 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 10px 2px 10px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u82867_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u82868_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:153px;
  4270. height:37px;
  4271. }
  4272. #u82868 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:644px;
  4276. top:256px;
  4277. width:153px;
  4278. height:37px;
  4279. display:flex;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. text-align:left;
  4284. }
  4285. #u82868 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 10px 2px 10px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u82868_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u82869_img {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:119px;
  4304. height:37px;
  4305. }
  4306. #u82869 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:797px;
  4310. top:256px;
  4311. width:119px;
  4312. height:37px;
  4313. display:flex;
  4314. font-size:14px;
  4315. text-align:left;
  4316. }
  4317. #u82869 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 10px 2px 10px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u82869_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. visibility:hidden;
  4329. }
  4330. #u82870_img {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:123px;
  4336. height:37px;
  4337. }
  4338. #u82870 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:916px;
  4342. top:256px;
  4343. width:123px;
  4344. height:37px;
  4345. display:flex;
  4346. font-size:14px;
  4347. text-align:left;
  4348. }
  4349. #u82870 .text {
  4350. position:absolute;
  4351. align-self:center;
  4352. padding:2px 10px 2px 10px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u82870_text {
  4357. border-width:0px;
  4358. word-wrap:break-word;
  4359. text-transform:none;
  4360. visibility:hidden;
  4361. }
  4362. #u82871_img {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:0px;
  4366. top:0px;
  4367. width:181px;
  4368. height:37px;
  4369. }
  4370. #u82871 {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:1039px;
  4374. top:256px;
  4375. width:181px;
  4376. height:37px;
  4377. display:flex;
  4378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4379. font-weight:400;
  4380. font-style:normal;
  4381. font-size:14px;
  4382. color:#1890FF;
  4383. text-align:left;
  4384. }
  4385. #u82871 .text {
  4386. position:absolute;
  4387. align-self:center;
  4388. padding:2px 10px 2px 10px;
  4389. box-sizing:border-box;
  4390. width:100%;
  4391. }
  4392. #u82871_text {
  4393. border-width:0px;
  4394. word-wrap:break-word;
  4395. text-transform:none;
  4396. visibility:hidden;
  4397. }
  4398. #u82872_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:55px;
  4404. height:30px;
  4405. background:inherit;
  4406. background-color:rgba(255, 255, 255, 1);
  4407. box-sizing:border-box;
  4408. border-width:1px;
  4409. border-style:solid;
  4410. border-color:rgba(170, 170, 170, 1);
  4411. border-radius:4px;
  4412. -moz-box-shadow:none;
  4413. -webkit-box-shadow:none;
  4414. box-shadow:none;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:12px;
  4419. color:#555555;
  4420. }
  4421. #u82872 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:571px;
  4425. top:156px;
  4426. width:55px;
  4427. height:30px;
  4428. display:flex;
  4429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:12px;
  4433. color:#555555;
  4434. }
  4435. #u82872 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:5px 15px 5px 15px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u82872_text {
  4443. border-width:0px;
  4444. white-space:nowrap;
  4445. text-transform:none;
  4446. }
  4447. #u82873 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:0px;
  4453. height:0px;
  4454. }
  4455. #u82874_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:140px;
  4461. height:30px;
  4462. background:inherit;
  4463. background-color:rgba(255, 255, 255, 1);
  4464. box-sizing:border-box;
  4465. border-width:1px;
  4466. border-style:solid;
  4467. border-color:rgba(201, 201, 201, 1);
  4468. border-radius:4px;
  4469. -moz-box-shadow:none;
  4470. -webkit-box-shadow:none;
  4471. box-shadow:none;
  4472. font-family:'Microsoft YaHei', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:14px;
  4476. color:#CCCCCC;
  4477. text-align:left;
  4478. }
  4479. #u82874 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:352px;
  4483. top:156px;
  4484. width:140px;
  4485. height:30px;
  4486. display:flex;
  4487. font-family:'Microsoft YaHei', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:14px;
  4491. color:#CCCCCC;
  4492. text-align:left;
  4493. }
  4494. #u82874 .text {
  4495. position:absolute;
  4496. align-self:center;
  4497. padding:2px 8px 2px 8px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u82874_text {
  4502. border-width:0px;
  4503. word-wrap:break-word;
  4504. text-transform:none;
  4505. visibility:hidden;
  4506. }
  4507. #u82875_input {
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:127px;
  4512. height:25px;
  4513. padding:2px 2px 2px 2px;
  4514. font-family:'Microsoft YaHei', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:10px;
  4518. letter-spacing:normal;
  4519. color:#000000;
  4520. vertical-align:none;
  4521. text-align:left;
  4522. text-transform:none;
  4523. background-color:transparent;
  4524. border-color:transparent;
  4525. }
  4526. #u82875_input.disabled {
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:127px;
  4531. height:25px;
  4532. padding:2px 2px 2px 2px;
  4533. font-family:'Microsoft YaHei', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:10px;
  4537. letter-spacing:normal;
  4538. color:#000000;
  4539. vertical-align:none;
  4540. text-align:left;
  4541. text-transform:none;
  4542. background-color:transparent;
  4543. border-color:transparent;
  4544. }
  4545. #u82875_div {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:127px;
  4551. height:25px;
  4552. background:inherit;
  4553. background-color:rgba(255, 255, 255, 1);
  4554. border:none;
  4555. border-radius:0px;
  4556. -moz-box-shadow:none;
  4557. -webkit-box-shadow:none;
  4558. box-shadow:none;
  4559. font-family:'Microsoft YaHei', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:10px;
  4563. }
  4564. #u82875 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:360px;
  4568. top:157px;
  4569. width:127px;
  4570. height:25px;
  4571. display:flex;
  4572. font-family:'Microsoft YaHei', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:10px;
  4576. }
  4577. #u82875 .text {
  4578. position:absolute;
  4579. align-self:center;
  4580. padding:2px 2px 2px 2px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u82875_div.disabled {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:127px;
  4590. height:25px;
  4591. background:inherit;
  4592. background-color:rgba(240, 240, 240, 1);
  4593. border:none;
  4594. border-radius:0px;
  4595. -moz-box-shadow:none;
  4596. -webkit-box-shadow:none;
  4597. box-shadow:none;
  4598. font-family:'Microsoft YaHei', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:10px;
  4602. }
  4603. #u82875.disabled {
  4604. }
  4605. #u82876_div {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:59px;
  4611. height:30px;
  4612. background:inherit;
  4613. background-color:rgba(0, 153, 255, 1);
  4614. box-sizing:border-box;
  4615. border-width:1px;
  4616. border-style:solid;
  4617. border-color:rgba(0, 153, 255, 1);
  4618. border-radius:4px;
  4619. -moz-box-shadow:none;
  4620. -webkit-box-shadow:none;
  4621. box-shadow:none;
  4622. font-family:'Microsoft YaHei', sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:14px;
  4626. color:#FFFFFF;
  4627. }
  4628. #u82876 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:502px;
  4632. top:156px;
  4633. width:59px;
  4634. height:30px;
  4635. display:flex;
  4636. font-family:'Microsoft YaHei', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:14px;
  4640. color:#FFFFFF;
  4641. }
  4642. #u82876 .text {
  4643. position:absolute;
  4644. align-self:center;
  4645. padding:5px 15px 5px 15px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u82876_text {
  4650. border-width:0px;
  4651. white-space:nowrap;
  4652. text-transform:none;
  4653. }
  4654. #u82877 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:0px;
  4660. height:0px;
  4661. }
  4662. #u82878_div {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:140px;
  4668. height:30px;
  4669. background:inherit;
  4670. background-color:rgba(255, 255, 255, 1);
  4671. box-sizing:border-box;
  4672. border-width:1px;
  4673. border-style:solid;
  4674. border-color:rgba(201, 201, 201, 1);
  4675. border-radius:4px;
  4676. -moz-box-shadow:none;
  4677. -webkit-box-shadow:none;
  4678. box-shadow:none;
  4679. font-family:'Microsoft YaHei', sans-serif;
  4680. font-weight:400;
  4681. font-style:normal;
  4682. font-size:14px;
  4683. color:#CCCCCC;
  4684. text-align:left;
  4685. }
  4686. #u82878 {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:1102px;
  4690. top:116px;
  4691. width:140px;
  4692. height:30px;
  4693. display:flex;
  4694. font-family:'Microsoft YaHei', sans-serif;
  4695. font-weight:400;
  4696. font-style:normal;
  4697. font-size:14px;
  4698. color:#CCCCCC;
  4699. text-align:left;
  4700. }
  4701. #u82878 .text {
  4702. position:absolute;
  4703. align-self:center;
  4704. padding:2px 8px 2px 8px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u82878_text {
  4709. border-width:0px;
  4710. word-wrap:break-word;
  4711. text-transform:none;
  4712. visibility:hidden;
  4713. }
  4714. #u82879_input {
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:127px;
  4719. height:25px;
  4720. padding:2px 2px 2px 2px;
  4721. font-family:'Microsoft YaHei', sans-serif;
  4722. font-weight:400;
  4723. font-style:normal;
  4724. font-size:10px;
  4725. letter-spacing:normal;
  4726. color:#000000;
  4727. vertical-align:none;
  4728. text-align:left;
  4729. text-transform:none;
  4730. background-color:transparent;
  4731. border-color:transparent;
  4732. }
  4733. #u82879_input.disabled {
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:127px;
  4738. height:25px;
  4739. padding:2px 2px 2px 2px;
  4740. font-family:'Microsoft YaHei', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:10px;
  4744. letter-spacing:normal;
  4745. color:#000000;
  4746. vertical-align:none;
  4747. text-align:left;
  4748. text-transform:none;
  4749. background-color:transparent;
  4750. border-color:transparent;
  4751. }
  4752. #u82879_div {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:127px;
  4758. height:25px;
  4759. background:inherit;
  4760. background-color:rgba(255, 255, 255, 1);
  4761. border:none;
  4762. border-radius:0px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. font-family:'Microsoft YaHei', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:10px;
  4770. }
  4771. #u82879 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:1110px;
  4775. top:117px;
  4776. width:127px;
  4777. height:25px;
  4778. display:flex;
  4779. font-family:'Microsoft YaHei', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:10px;
  4783. }
  4784. #u82879 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 2px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u82879_div.disabled {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:127px;
  4797. height:25px;
  4798. background:inherit;
  4799. background-color:rgba(240, 240, 240, 1);
  4800. border:none;
  4801. border-radius:0px;
  4802. -moz-box-shadow:none;
  4803. -webkit-box-shadow:none;
  4804. box-shadow:none;
  4805. font-family:'Microsoft YaHei', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:10px;
  4809. }
  4810. #u82879.disabled {
  4811. }
  4812. #u82880 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:0px;
  4818. height:0px;
  4819. }
  4820. #u82881_div {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:140px;
  4826. height:30px;
  4827. background:inherit;
  4828. background-color:rgba(255, 255, 255, 1);
  4829. box-sizing:border-box;
  4830. border-width:1px;
  4831. border-style:solid;
  4832. border-color:rgba(215, 215, 215, 1);
  4833. border-radius:4px;
  4834. -moz-box-shadow:none;
  4835. -webkit-box-shadow:none;
  4836. box-shadow:none;
  4837. font-size:11px;
  4838. }
  4839. #u82881 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:502px;
  4843. top:116px;
  4844. width:140px;
  4845. height:30px;
  4846. display:flex;
  4847. font-size:11px;
  4848. }
  4849. #u82881 .text {
  4850. position:absolute;
  4851. align-self:center;
  4852. padding:2px 2px 2px 2px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u82881_text {
  4857. border-width:0px;
  4858. word-wrap:break-word;
  4859. text-transform:none;
  4860. visibility:hidden;
  4861. }
  4862. #u82882_input {
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:123px;
  4867. height:23px;
  4868. padding:2px 2px 2px 2px;
  4869. font-family:'ArialMT', 'Arial', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. font-size:11px;
  4873. letter-spacing:normal;
  4874. color:#AAAAAA;
  4875. vertical-align:none;
  4876. text-align:left;
  4877. text-transform:none;
  4878. background-color:transparent;
  4879. border-color:transparent;
  4880. }
  4881. #u82882_input.disabled {
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:123px;
  4886. height:23px;
  4887. padding:2px 2px 2px 2px;
  4888. font-family:'ArialMT', 'Arial', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:11px;
  4892. letter-spacing:normal;
  4893. color:#AAAAAA;
  4894. vertical-align:none;
  4895. text-align:left;
  4896. text-transform:none;
  4897. background-color:transparent;
  4898. border-color:transparent;
  4899. }
  4900. #u82882_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:123px;
  4906. height:23px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 1);
  4909. border:none;
  4910. border-radius:0px;
  4911. -moz-box-shadow:none;
  4912. -webkit-box-shadow:none;
  4913. box-shadow:none;
  4914. font-size:11px;
  4915. color:#AAAAAA;
  4916. }
  4917. #u82882 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:508px;
  4921. top:118px;
  4922. width:123px;
  4923. height:23px;
  4924. display:flex;
  4925. font-size:11px;
  4926. color:#AAAAAA;
  4927. }
  4928. #u82882 .text {
  4929. position:absolute;
  4930. align-self:flex-start;
  4931. padding:2px 2px 2px 2px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u82882_div.disabled {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:123px;
  4941. height:23px;
  4942. background:inherit;
  4943. background-color:rgba(240, 240, 240, 1);
  4944. border:none;
  4945. border-radius:0px;
  4946. -moz-box-shadow:none;
  4947. -webkit-box-shadow:none;
  4948. box-shadow:none;
  4949. font-size:11px;
  4950. color:#AAAAAA;
  4951. }
  4952. #u82882.disabled {
  4953. }
  4954. .u82882_input_option {
  4955. font-size:11px;
  4956. }
  4957. #u82883 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:0px;
  4963. height:0px;
  4964. }
  4965. #u82884_div {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:140px;
  4971. height:30px;
  4972. background:inherit;
  4973. background-color:rgba(255, 255, 255, 1);
  4974. box-sizing:border-box;
  4975. border-width:1px;
  4976. border-style:solid;
  4977. border-color:rgba(215, 215, 215, 1);
  4978. border-radius:4px;
  4979. -moz-box-shadow:none;
  4980. -webkit-box-shadow:none;
  4981. box-shadow:none;
  4982. font-size:11px;
  4983. }
  4984. #u82884 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:652px;
  4988. top:116px;
  4989. width:140px;
  4990. height:30px;
  4991. display:flex;
  4992. font-size:11px;
  4993. }
  4994. #u82884 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:2px 2px 2px 2px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u82884_text {
  5002. border-width:0px;
  5003. word-wrap:break-word;
  5004. text-transform:none;
  5005. visibility:hidden;
  5006. }
  5007. #u82885_input {
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:123px;
  5012. height:23px;
  5013. padding:2px 2px 2px 2px;
  5014. font-family:'ArialMT', 'Arial', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:11px;
  5018. letter-spacing:normal;
  5019. color:#AAAAAA;
  5020. vertical-align:none;
  5021. text-align:left;
  5022. text-transform:none;
  5023. background-color:transparent;
  5024. border-color:transparent;
  5025. }
  5026. #u82885_input.disabled {
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:123px;
  5031. height:23px;
  5032. padding:2px 2px 2px 2px;
  5033. font-family:'ArialMT', 'Arial', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:11px;
  5037. letter-spacing:normal;
  5038. color:#AAAAAA;
  5039. vertical-align:none;
  5040. text-align:left;
  5041. text-transform:none;
  5042. background-color:transparent;
  5043. border-color:transparent;
  5044. }
  5045. #u82885_div {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:123px;
  5051. height:23px;
  5052. background:inherit;
  5053. background-color:rgba(255, 255, 255, 1);
  5054. border:none;
  5055. border-radius:0px;
  5056. -moz-box-shadow:none;
  5057. -webkit-box-shadow:none;
  5058. box-shadow:none;
  5059. font-size:11px;
  5060. color:#AAAAAA;
  5061. }
  5062. #u82885 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:658px;
  5066. top:118px;
  5067. width:123px;
  5068. height:23px;
  5069. display:flex;
  5070. font-size:11px;
  5071. color:#AAAAAA;
  5072. }
  5073. #u82885 .text {
  5074. position:absolute;
  5075. align-self:flex-start;
  5076. padding:2px 2px 2px 2px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u82885_div.disabled {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:123px;
  5086. height:23px;
  5087. background:inherit;
  5088. background-color:rgba(240, 240, 240, 1);
  5089. border:none;
  5090. border-radius:0px;
  5091. -moz-box-shadow:none;
  5092. -webkit-box-shadow:none;
  5093. box-shadow:none;
  5094. font-size:11px;
  5095. color:#AAAAAA;
  5096. }
  5097. #u82885.disabled {
  5098. }
  5099. .u82885_input_option {
  5100. font-size:11px;
  5101. }
  5102. #u82886 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:0px;
  5108. height:0px;
  5109. }
  5110. #u82887_div {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:140px;
  5116. height:30px;
  5117. background:inherit;
  5118. background-color:rgba(255, 255, 255, 1);
  5119. box-sizing:border-box;
  5120. border-width:1px;
  5121. border-style:solid;
  5122. border-color:rgba(215, 215, 215, 1);
  5123. border-radius:4px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. font-size:11px;
  5128. }
  5129. #u82887 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:352px;
  5133. top:115px;
  5134. width:140px;
  5135. height:30px;
  5136. display:flex;
  5137. font-size:11px;
  5138. }
  5139. #u82887 .text {
  5140. position:absolute;
  5141. align-self:center;
  5142. padding:2px 2px 2px 2px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u82887_text {
  5147. border-width:0px;
  5148. word-wrap:break-word;
  5149. text-transform:none;
  5150. visibility:hidden;
  5151. }
  5152. #u82888_input {
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:123px;
  5157. height:23px;
  5158. padding:2px 2px 2px 2px;
  5159. font-family:'ArialMT', 'Arial', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:11px;
  5163. letter-spacing:normal;
  5164. color:#AAAAAA;
  5165. vertical-align:none;
  5166. text-align:left;
  5167. text-transform:none;
  5168. background-color:transparent;
  5169. border-color:transparent;
  5170. }
  5171. #u82888_input.disabled {
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:123px;
  5176. height:23px;
  5177. padding:2px 2px 2px 2px;
  5178. font-family:'ArialMT', 'Arial', sans-serif;
  5179. font-weight:400;
  5180. font-style:normal;
  5181. font-size:11px;
  5182. letter-spacing:normal;
  5183. color:#AAAAAA;
  5184. vertical-align:none;
  5185. text-align:left;
  5186. text-transform:none;
  5187. background-color:transparent;
  5188. border-color:transparent;
  5189. }
  5190. #u82888_div {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:123px;
  5196. height:23px;
  5197. background:inherit;
  5198. background-color:rgba(255, 255, 255, 1);
  5199. border:none;
  5200. border-radius:0px;
  5201. -moz-box-shadow:none;
  5202. -webkit-box-shadow:none;
  5203. box-shadow:none;
  5204. font-size:11px;
  5205. color:#AAAAAA;
  5206. }
  5207. #u82888 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:358px;
  5211. top:117px;
  5212. width:123px;
  5213. height:23px;
  5214. display:flex;
  5215. font-size:11px;
  5216. color:#AAAAAA;
  5217. }
  5218. #u82888 .text {
  5219. position:absolute;
  5220. align-self:flex-start;
  5221. padding:2px 2px 2px 2px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u82888_div.disabled {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:123px;
  5231. height:23px;
  5232. background:inherit;
  5233. background-color:rgba(240, 240, 240, 1);
  5234. border:none;
  5235. border-radius:0px;
  5236. -moz-box-shadow:none;
  5237. -webkit-box-shadow:none;
  5238. box-shadow:none;
  5239. font-size:11px;
  5240. color:#AAAAAA;
  5241. }
  5242. #u82888.disabled {
  5243. }
  5244. .u82888_input_option {
  5245. font-size:11px;
  5246. }
  5247. #u82889 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:0px;
  5253. height:0px;
  5254. }
  5255. #u82890_div {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:140px;
  5261. height:30px;
  5262. background:inherit;
  5263. background-color:rgba(255, 255, 255, 1);
  5264. box-sizing:border-box;
  5265. border-width:1px;
  5266. border-style:solid;
  5267. border-color:rgba(201, 201, 201, 1);
  5268. border-radius:4px;
  5269. -moz-box-shadow:none;
  5270. -webkit-box-shadow:none;
  5271. box-shadow:none;
  5272. font-family:'Microsoft YaHei', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:14px;
  5276. color:#CCCCCC;
  5277. text-align:left;
  5278. }
  5279. #u82890 {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:1252px;
  5283. top:116px;
  5284. width:140px;
  5285. height:30px;
  5286. display:flex;
  5287. font-family:'Microsoft YaHei', sans-serif;
  5288. font-weight:400;
  5289. font-style:normal;
  5290. font-size:14px;
  5291. color:#CCCCCC;
  5292. text-align:left;
  5293. }
  5294. #u82890 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:2px 8px 2px 8px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u82890_text {
  5302. border-width:0px;
  5303. word-wrap:break-word;
  5304. text-transform:none;
  5305. visibility:hidden;
  5306. }
  5307. #u82891_input {
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:127px;
  5312. height:25px;
  5313. padding:2px 2px 2px 2px;
  5314. font-family:'Microsoft YaHei', sans-serif;
  5315. font-weight:400;
  5316. font-style:normal;
  5317. font-size:10px;
  5318. letter-spacing:normal;
  5319. color:#000000;
  5320. vertical-align:none;
  5321. text-align:left;
  5322. text-transform:none;
  5323. background-color:transparent;
  5324. border-color:transparent;
  5325. }
  5326. #u82891_input.disabled {
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:127px;
  5331. height:25px;
  5332. padding:2px 2px 2px 2px;
  5333. font-family:'Microsoft YaHei', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:10px;
  5337. letter-spacing:normal;
  5338. color:#000000;
  5339. vertical-align:none;
  5340. text-align:left;
  5341. text-transform:none;
  5342. background-color:transparent;
  5343. border-color:transparent;
  5344. }
  5345. #u82891_div {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:127px;
  5351. height:25px;
  5352. background:inherit;
  5353. background-color:rgba(255, 255, 255, 1);
  5354. border:none;
  5355. border-radius:0px;
  5356. -moz-box-shadow:none;
  5357. -webkit-box-shadow:none;
  5358. box-shadow:none;
  5359. font-family:'Microsoft YaHei', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:10px;
  5363. }
  5364. #u82891 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:1260px;
  5368. top:117px;
  5369. width:127px;
  5370. height:25px;
  5371. display:flex;
  5372. font-family:'Microsoft YaHei', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:10px;
  5376. }
  5377. #u82891 .text {
  5378. position:absolute;
  5379. align-self:center;
  5380. padding:2px 2px 2px 2px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u82891_div.disabled {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:127px;
  5390. height:25px;
  5391. background:inherit;
  5392. background-color:rgba(240, 240, 240, 1);
  5393. border:none;
  5394. border-radius:0px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. font-family:'Microsoft YaHei', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:10px;
  5402. }
  5403. #u82891.disabled {
  5404. }
  5405. #u82892_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:55px;
  5411. height:30px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 1);
  5414. box-sizing:border-box;
  5415. border-width:1px;
  5416. border-style:solid;
  5417. border-color:rgba(170, 170, 170, 1);
  5418. border-radius:4px;
  5419. -moz-box-shadow:none;
  5420. -webkit-box-shadow:none;
  5421. box-shadow:none;
  5422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:12px;
  5426. color:#555555;
  5427. }
  5428. #u82892 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:352px;
  5432. top:205px;
  5433. width:55px;
  5434. height:30px;
  5435. display:flex;
  5436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5437. font-weight:400;
  5438. font-style:normal;
  5439. font-size:12px;
  5440. color:#555555;
  5441. }
  5442. #u82892 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:5px 15px 5px 15px;
  5446. box-sizing:border-box;
  5447. width:100%;
  5448. }
  5449. #u82892_text {
  5450. border-width:0px;
  5451. white-space:nowrap;
  5452. text-transform:none;
  5453. }
  5454. #u82893 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:0px;
  5460. height:0px;
  5461. }
  5462. #u82894_div {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:140px;
  5468. height:30px;
  5469. background:inherit;
  5470. background-color:rgba(255, 255, 255, 1);
  5471. box-sizing:border-box;
  5472. border-width:1px;
  5473. border-style:solid;
  5474. border-color:rgba(215, 215, 215, 1);
  5475. border-radius:4px;
  5476. -moz-box-shadow:none;
  5477. -webkit-box-shadow:none;
  5478. box-shadow:none;
  5479. font-size:11px;
  5480. }
  5481. #u82894 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:802px;
  5485. top:116px;
  5486. width:140px;
  5487. height:30px;
  5488. display:flex;
  5489. font-size:11px;
  5490. }
  5491. #u82894 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:2px 2px 2px 2px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u82894_text {
  5499. border-width:0px;
  5500. word-wrap:break-word;
  5501. text-transform:none;
  5502. visibility:hidden;
  5503. }
  5504. #u82895_input {
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:123px;
  5509. height:23px;
  5510. padding:2px 2px 2px 2px;
  5511. font-family:'ArialMT', 'Arial', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:11px;
  5515. letter-spacing:normal;
  5516. color:#AAAAAA;
  5517. vertical-align:none;
  5518. text-align:left;
  5519. text-transform:none;
  5520. background-color:transparent;
  5521. border-color:transparent;
  5522. }
  5523. #u82895_input.disabled {
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:123px;
  5528. height:23px;
  5529. padding:2px 2px 2px 2px;
  5530. font-family:'ArialMT', 'Arial', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:11px;
  5534. letter-spacing:normal;
  5535. color:#AAAAAA;
  5536. vertical-align:none;
  5537. text-align:left;
  5538. text-transform:none;
  5539. background-color:transparent;
  5540. border-color:transparent;
  5541. }
  5542. #u82895_div {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:123px;
  5548. height:23px;
  5549. background:inherit;
  5550. background-color:rgba(255, 255, 255, 1);
  5551. border:none;
  5552. border-radius:0px;
  5553. -moz-box-shadow:none;
  5554. -webkit-box-shadow:none;
  5555. box-shadow:none;
  5556. font-size:11px;
  5557. color:#AAAAAA;
  5558. }
  5559. #u82895 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:808px;
  5563. top:118px;
  5564. width:123px;
  5565. height:23px;
  5566. display:flex;
  5567. font-size:11px;
  5568. color:#AAAAAA;
  5569. }
  5570. #u82895 .text {
  5571. position:absolute;
  5572. align-self:flex-start;
  5573. padding:2px 2px 2px 2px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u82895_div.disabled {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:123px;
  5583. height:23px;
  5584. background:inherit;
  5585. background-color:rgba(240, 240, 240, 1);
  5586. border:none;
  5587. border-radius:0px;
  5588. -moz-box-shadow:none;
  5589. -webkit-box-shadow:none;
  5590. box-shadow:none;
  5591. font-size:11px;
  5592. color:#AAAAAA;
  5593. }
  5594. #u82895.disabled {
  5595. }
  5596. .u82895_input_option {
  5597. font-size:11px;
  5598. }
  5599. #u82896 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:0px;
  5605. height:0px;
  5606. }
  5607. #u82897_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:140px;
  5613. height:30px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 1);
  5616. box-sizing:border-box;
  5617. border-width:1px;
  5618. border-style:solid;
  5619. border-color:rgba(215, 215, 215, 1);
  5620. border-radius:4px;
  5621. -moz-box-shadow:none;
  5622. -webkit-box-shadow:none;
  5623. box-shadow:none;
  5624. font-size:11px;
  5625. }
  5626. #u82897 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:952px;
  5630. top:116px;
  5631. width:140px;
  5632. height:30px;
  5633. display:flex;
  5634. font-size:11px;
  5635. }
  5636. #u82897 .text {
  5637. position:absolute;
  5638. align-self:center;
  5639. padding:2px 2px 2px 2px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u82897_text {
  5644. border-width:0px;
  5645. word-wrap:break-word;
  5646. text-transform:none;
  5647. visibility:hidden;
  5648. }
  5649. #u82898_input {
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:123px;
  5654. height:23px;
  5655. padding:2px 2px 2px 2px;
  5656. font-family:'ArialMT', 'Arial', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:11px;
  5660. letter-spacing:normal;
  5661. color:#AAAAAA;
  5662. vertical-align:none;
  5663. text-align:left;
  5664. text-transform:none;
  5665. background-color:transparent;
  5666. border-color:transparent;
  5667. }
  5668. #u82898_input.disabled {
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:123px;
  5673. height:23px;
  5674. padding:2px 2px 2px 2px;
  5675. font-family:'ArialMT', 'Arial', sans-serif;
  5676. font-weight:400;
  5677. font-style:normal;
  5678. font-size:11px;
  5679. letter-spacing:normal;
  5680. color:#AAAAAA;
  5681. vertical-align:none;
  5682. text-align:left;
  5683. text-transform:none;
  5684. background-color:transparent;
  5685. border-color:transparent;
  5686. }
  5687. #u82898_div {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:123px;
  5693. height:23px;
  5694. background:inherit;
  5695. background-color:rgba(255, 255, 255, 1);
  5696. border:none;
  5697. border-radius:0px;
  5698. -moz-box-shadow:none;
  5699. -webkit-box-shadow:none;
  5700. box-shadow:none;
  5701. font-size:11px;
  5702. color:#AAAAAA;
  5703. }
  5704. #u82898 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:958px;
  5708. top:118px;
  5709. width:123px;
  5710. height:23px;
  5711. display:flex;
  5712. font-size:11px;
  5713. color:#AAAAAA;
  5714. }
  5715. #u82898 .text {
  5716. position:absolute;
  5717. align-self:flex-start;
  5718. padding:2px 2px 2px 2px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u82898_div.disabled {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:123px;
  5728. height:23px;
  5729. background:inherit;
  5730. background-color:rgba(240, 240, 240, 1);
  5731. border:none;
  5732. border-radius:0px;
  5733. -moz-box-shadow:none;
  5734. -webkit-box-shadow:none;
  5735. box-shadow:none;
  5736. font-size:11px;
  5737. color:#AAAAAA;
  5738. }
  5739. #u82898.disabled {
  5740. }
  5741. .u82898_input_option {
  5742. font-size:11px;
  5743. }
  5744. #u82900 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:0px;
  5750. height:0px;
  5751. }
  5752. #u82901_img {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:200px;
  5758. height:1191px;
  5759. }
  5760. #u82901 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:120px;
  5764. top:50px;
  5765. width:200px;
  5766. height:1191px;
  5767. display:flex;
  5768. }
  5769. #u82901 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:2px 2px 2px 2px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u82901_text {
  5777. border-width:0px;
  5778. word-wrap:break-word;
  5779. text-transform:none;
  5780. visibility:hidden;
  5781. }
  5782. #u82902_div {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:200px;
  5788. height:60px;
  5789. background:inherit;
  5790. background-color:rgba(224, 231, 247, 1);
  5791. border:none;
  5792. border-radius:0px;
  5793. -moz-box-shadow:none;
  5794. -webkit-box-shadow:none;
  5795. box-shadow:none;
  5796. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5797. font-weight:500;
  5798. font-style:normal;
  5799. font-size:18px;
  5800. }
  5801. #u82902 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:120px;
  5805. top:50px;
  5806. width:200px;
  5807. height:60px;
  5808. display:flex;
  5809. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5810. font-weight:500;
  5811. font-style:normal;
  5812. font-size:18px;
  5813. }
  5814. #u82902 .text {
  5815. position:absolute;
  5816. align-self:center;
  5817. padding:0px 0px 0px 20px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u82902_text {
  5822. border-width:0px;
  5823. word-wrap:break-word;
  5824. text-transform:none;
  5825. }
  5826. #u82903 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:120px;
  5830. top:130px;
  5831. width:200px;
  5832. height:1078px;
  5833. }
  5834. #u82903_state0 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:200px;
  5840. height:1078px;
  5841. overflow:auto;
  5842. -webkit-overflow-scrolling:touch;
  5843. -ms-overflow-x:hidden;
  5844. overflow-x:hidden;
  5845. background-image:none;
  5846. border:none;
  5847. border-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. }
  5852. #u82903_state0_content {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:1px;
  5858. height:1px;
  5859. }
  5860. #u82904_div {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:97px;
  5866. height:22px;
  5867. background:inherit;
  5868. background-color:rgba(255, 255, 255, 0);
  5869. border:none;
  5870. border-radius:0px;
  5871. -moz-box-shadow:none;
  5872. -webkit-box-shadow:none;
  5873. box-shadow:none;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:16px;
  5878. }
  5879. #u82904 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:30px;
  5883. top:0px;
  5884. width:97px;
  5885. height:22px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:16px;
  5891. }
  5892. #u82904 .text {
  5893. position:absolute;
  5894. align-self:flex-start;
  5895. padding:0px 0px 0px 0px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u82904_text {
  5900. border-width:0px;
  5901. word-wrap:break-word;
  5902. text-transform:none;
  5903. }
  5904. #u82905_div {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:65px;
  5910. height:22px;
  5911. background:inherit;
  5912. background-color:rgba(255, 255, 255, 0);
  5913. border:none;
  5914. border-radius:0px;
  5915. -moz-box-shadow:none;
  5916. -webkit-box-shadow:none;
  5917. box-shadow:none;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:16px;
  5922. }
  5923. #u82905 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:30px;
  5927. top:42px;
  5928. width:65px;
  5929. height:22px;
  5930. display:flex;
  5931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:16px;
  5935. }
  5936. #u82905 .text {
  5937. position:absolute;
  5938. align-self:flex-start;
  5939. padding:0px 0px 0px 0px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u82905_text {
  5944. border-width:0px;
  5945. white-space:nowrap;
  5946. text-transform:none;
  5947. }
  5948. #u82906_div {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:49px;
  5954. height:22px;
  5955. background:inherit;
  5956. background-color:rgba(255, 255, 255, 0);
  5957. border:none;
  5958. border-radius:0px;
  5959. -moz-box-shadow:none;
  5960. -webkit-box-shadow:none;
  5961. box-shadow:none;
  5962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:16px;
  5966. }
  5967. #u82906 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:30px;
  5971. top:145px;
  5972. width:49px;
  5973. height:22px;
  5974. display:flex;
  5975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5976. font-weight:400;
  5977. font-style:normal;
  5978. font-size:16px;
  5979. }
  5980. #u82906 .text {
  5981. position:absolute;
  5982. align-self:flex-start;
  5983. padding:0px 0px 0px 0px;
  5984. box-sizing:border-box;
  5985. width:100%;
  5986. }
  5987. #u82906_text {
  5988. border-width:0px;
  5989. white-space:nowrap;
  5990. text-transform:none;
  5991. }
  5992. #u82907_div {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:97px;
  5998. height:22px;
  5999. background:inherit;
  6000. background-color:rgba(255, 255, 255, 0);
  6001. border:none;
  6002. border-radius:0px;
  6003. -moz-box-shadow:none;
  6004. -webkit-box-shadow:none;
  6005. box-shadow:none;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:16px;
  6010. }
  6011. #u82907 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:30px;
  6015. top:187px;
  6016. width:97px;
  6017. height:22px;
  6018. display:flex;
  6019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:16px;
  6023. }
  6024. #u82907 .text {
  6025. position:absolute;
  6026. align-self:flex-start;
  6027. padding:0px 0px 0px 0px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u82907_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. }
  6036. #u82908_img {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:201px;
  6042. height:2px;
  6043. }
  6044. #u82908 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:84px;
  6049. width:200px;
  6050. height:1px;
  6051. display:flex;
  6052. }
  6053. #u82908 .text {
  6054. position:absolute;
  6055. align-self:center;
  6056. padding:2px 2px 2px 2px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u82908_text {
  6061. border-width:0px;
  6062. word-wrap:break-word;
  6063. text-transform:none;
  6064. visibility:hidden;
  6065. }
  6066. #u82909_div {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:49px;
  6072. height:17px;
  6073. background:inherit;
  6074. background-color:rgba(255, 255, 255, 0);
  6075. border:none;
  6076. border-radius:0px;
  6077. -moz-box-shadow:none;
  6078. -webkit-box-shadow:none;
  6079. box-shadow:none;
  6080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:12px;
  6084. color:#AAAAAA;
  6085. }
  6086. #u82909 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:30px;
  6090. top:105px;
  6091. width:49px;
  6092. height:17px;
  6093. display:flex;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:12px;
  6098. color:#AAAAAA;
  6099. }
  6100. #u82909 .text {
  6101. position:absolute;
  6102. align-self:flex-start;
  6103. padding:0px 0px 0px 0px;
  6104. box-sizing:border-box;
  6105. width:100%;
  6106. }
  6107. #u82909_text {
  6108. border-width:0px;
  6109. white-space:nowrap;
  6110. text-transform:none;
  6111. }
  6112. #u82910_div {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:97px;
  6118. height:22px;
  6119. background:inherit;
  6120. background-color:rgba(255, 255, 255, 0);
  6121. border:none;
  6122. border-radius:0px;
  6123. -moz-box-shadow:none;
  6124. -webkit-box-shadow:none;
  6125. box-shadow:none;
  6126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6127. font-weight:400;
  6128. font-style:normal;
  6129. font-size:16px;
  6130. }
  6131. #u82910 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:30px;
  6135. top:229px;
  6136. width:97px;
  6137. height:22px;
  6138. display:flex;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:16px;
  6143. }
  6144. #u82910 .text {
  6145. position:absolute;
  6146. align-self:flex-start;
  6147. padding:0px 0px 0px 0px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u82910_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. }
  6156. #u82911_div {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:0px;
  6160. top:0px;
  6161. width:65px;
  6162. height:22px;
  6163. background:inherit;
  6164. background-color:rgba(255, 255, 255, 0);
  6165. border:none;
  6166. border-radius:0px;
  6167. -moz-box-shadow:none;
  6168. -webkit-box-shadow:none;
  6169. box-shadow:none;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:16px;
  6174. }
  6175. #u82911 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:30px;
  6179. top:271px;
  6180. width:65px;
  6181. height:22px;
  6182. display:flex;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:16px;
  6187. }
  6188. #u82911 .text {
  6189. position:absolute;
  6190. align-self:flex-start;
  6191. padding:0px 0px 0px 0px;
  6192. box-sizing:border-box;
  6193. width:100%;
  6194. }
  6195. #u82911_text {
  6196. border-width:0px;
  6197. white-space:nowrap;
  6198. text-transform:none;
  6199. }
  6200. #u82912_img {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:201px;
  6206. height:2px;
  6207. }
  6208. #u82912 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:313px;
  6213. width:200px;
  6214. height:1px;
  6215. display:flex;
  6216. }
  6217. #u82912 .text {
  6218. position:absolute;
  6219. align-self:center;
  6220. padding:2px 2px 2px 2px;
  6221. box-sizing:border-box;
  6222. width:100%;
  6223. }
  6224. #u82912_text {
  6225. border-width:0px;
  6226. word-wrap:break-word;
  6227. text-transform:none;
  6228. visibility:hidden;
  6229. }
  6230. #u82913_div {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:65px;
  6236. height:22px;
  6237. background:inherit;
  6238. background-color:rgba(255, 255, 255, 0);
  6239. border:none;
  6240. border-radius:0px;
  6241. -moz-box-shadow:none;
  6242. -webkit-box-shadow:none;
  6243. box-shadow:none;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:16px;
  6248. }
  6249. #u82913 {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:30px;
  6253. top:370px;
  6254. width:65px;
  6255. height:22px;
  6256. display:flex;
  6257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:16px;
  6261. }
  6262. #u82913 .text {
  6263. position:absolute;
  6264. align-self:flex-start;
  6265. padding:0px 0px 0px 0px;
  6266. box-sizing:border-box;
  6267. width:100%;
  6268. }
  6269. #u82913_text {
  6270. border-width:0px;
  6271. white-space:nowrap;
  6272. text-transform:none;
  6273. }
  6274. #u82914_div {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:49px;
  6280. height:17px;
  6281. background:inherit;
  6282. background-color:rgba(255, 255, 255, 0);
  6283. border:none;
  6284. border-radius:0px;
  6285. -moz-box-shadow:none;
  6286. -webkit-box-shadow:none;
  6287. box-shadow:none;
  6288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6289. font-weight:400;
  6290. font-style:normal;
  6291. font-size:12px;
  6292. color:#AAAAAA;
  6293. }
  6294. #u82914 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:30px;
  6298. top:334px;
  6299. width:49px;
  6300. height:17px;
  6301. display:flex;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:12px;
  6306. color:#AAAAAA;
  6307. }
  6308. #u82914 .text {
  6309. position:absolute;
  6310. align-self:flex-start;
  6311. padding:0px 0px 0px 0px;
  6312. box-sizing:border-box;
  6313. width:100%;
  6314. }
  6315. #u82914_text {
  6316. border-width:0px;
  6317. white-space:nowrap;
  6318. text-transform:none;
  6319. }
  6320. #u82915_div {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:0px;
  6324. top:0px;
  6325. width:65px;
  6326. height:22px;
  6327. background:inherit;
  6328. background-color:rgba(255, 255, 255, 0);
  6329. border:none;
  6330. border-radius:0px;
  6331. -moz-box-shadow:none;
  6332. -webkit-box-shadow:none;
  6333. box-shadow:none;
  6334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:16px;
  6338. }
  6339. #u82915 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:30px;
  6343. top:412px;
  6344. width:65px;
  6345. height:22px;
  6346. display:flex;
  6347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:16px;
  6351. }
  6352. #u82915 .text {
  6353. position:absolute;
  6354. align-self:flex-start;
  6355. padding:0px 0px 0px 0px;
  6356. box-sizing:border-box;
  6357. width:100%;
  6358. }
  6359. #u82915_text {
  6360. border-width:0px;
  6361. white-space:nowrap;
  6362. text-transform:none;
  6363. }
  6364. #u82916_div {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:65px;
  6370. height:22px;
  6371. background:inherit;
  6372. background-color:rgba(255, 255, 255, 0);
  6373. border:none;
  6374. border-radius:0px;
  6375. -moz-box-shadow:none;
  6376. -webkit-box-shadow:none;
  6377. box-shadow:none;
  6378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6379. font-weight:400;
  6380. font-style:normal;
  6381. font-size:16px;
  6382. }
  6383. #u82916 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:30px;
  6387. top:454px;
  6388. width:65px;
  6389. height:22px;
  6390. display:flex;
  6391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:16px;
  6395. }
  6396. #u82916 .text {
  6397. position:absolute;
  6398. align-self:flex-start;
  6399. padding:0px 0px 0px 0px;
  6400. box-sizing:border-box;
  6401. width:100%;
  6402. }
  6403. #u82916_text {
  6404. border-width:0px;
  6405. white-space:nowrap;
  6406. text-transform:none;
  6407. }
  6408. #u82917_div {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:65px;
  6414. height:22px;
  6415. background:inherit;
  6416. background-color:rgba(255, 255, 255, 0);
  6417. border:none;
  6418. border-radius:0px;
  6419. -moz-box-shadow:none;
  6420. -webkit-box-shadow:none;
  6421. box-shadow:none;
  6422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:16px;
  6426. }
  6427. #u82917 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:30px;
  6431. top:496px;
  6432. width:65px;
  6433. height:22px;
  6434. display:flex;
  6435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. font-size:16px;
  6439. }
  6440. #u82917 .text {
  6441. position:absolute;
  6442. align-self:flex-start;
  6443. padding:0px 0px 0px 0px;
  6444. box-sizing:border-box;
  6445. width:100%;
  6446. }
  6447. #u82917_text {
  6448. border-width:0px;
  6449. white-space:nowrap;
  6450. text-transform:none;
  6451. }
  6452. #u82918_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:65px;
  6458. height:22px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 0);
  6461. border:none;
  6462. border-radius:0px;
  6463. -moz-box-shadow:none;
  6464. -webkit-box-shadow:none;
  6465. box-shadow:none;
  6466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:16px;
  6470. }
  6471. #u82918 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:30px;
  6475. top:538px;
  6476. width:65px;
  6477. height:22px;
  6478. display:flex;
  6479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:16px;
  6483. }
  6484. #u82918 .text {
  6485. position:absolute;
  6486. align-self:flex-start;
  6487. padding:0px 0px 0px 0px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u82918_text {
  6492. border-width:0px;
  6493. white-space:nowrap;
  6494. text-transform:none;
  6495. }
  6496. #u82919_div {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:65px;
  6502. height:22px;
  6503. background:inherit;
  6504. background-color:rgba(255, 255, 255, 0);
  6505. border:none;
  6506. border-radius:0px;
  6507. -moz-box-shadow:none;
  6508. -webkit-box-shadow:none;
  6509. box-shadow:none;
  6510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:16px;
  6514. }
  6515. #u82919 {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:30px;
  6519. top:580px;
  6520. width:65px;
  6521. height:22px;
  6522. display:flex;
  6523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:16px;
  6527. }
  6528. #u82919 .text {
  6529. position:absolute;
  6530. align-self:flex-start;
  6531. padding:0px 0px 0px 0px;
  6532. box-sizing:border-box;
  6533. width:100%;
  6534. }
  6535. #u82919_text {
  6536. border-width:0px;
  6537. white-space:nowrap;
  6538. text-transform:none;
  6539. }
  6540. #u82920_img {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:201px;
  6546. height:2px;
  6547. }
  6548. #u82920 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:1289px;
  6553. width:200px;
  6554. height:1px;
  6555. display:flex;
  6556. }
  6557. #u82920 .text {
  6558. position:absolute;
  6559. align-self:center;
  6560. padding:2px 2px 2px 2px;
  6561. box-sizing:border-box;
  6562. width:100%;
  6563. }
  6564. #u82920_text {
  6565. border-width:0px;
  6566. word-wrap:break-word;
  6567. text-transform:none;
  6568. visibility:hidden;
  6569. }
  6570. #u82921_div {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:65px;
  6576. height:22px;
  6577. background:inherit;
  6578. background-color:rgba(255, 255, 255, 0);
  6579. border:none;
  6580. border-radius:0px;
  6581. -moz-box-shadow:none;
  6582. -webkit-box-shadow:none;
  6583. box-shadow:none;
  6584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6585. font-weight:400;
  6586. font-style:normal;
  6587. font-size:16px;
  6588. }
  6589. #u82921 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:30px;
  6593. top:1346px;
  6594. width:65px;
  6595. height:22px;
  6596. display:flex;
  6597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6598. font-weight:400;
  6599. font-style:normal;
  6600. font-size:16px;
  6601. }
  6602. #u82921 .text {
  6603. position:absolute;
  6604. align-self:flex-start;
  6605. padding:0px 0px 0px 0px;
  6606. box-sizing:border-box;
  6607. width:100%;
  6608. }
  6609. #u82921_text {
  6610. border-width:0px;
  6611. white-space:nowrap;
  6612. text-transform:none;
  6613. }
  6614. #u82922_div {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:49px;
  6620. height:17px;
  6621. background:inherit;
  6622. background-color:rgba(255, 255, 255, 0);
  6623. border:none;
  6624. border-radius:0px;
  6625. -moz-box-shadow:none;
  6626. -webkit-box-shadow:none;
  6627. box-shadow:none;
  6628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:12px;
  6632. color:#AAAAAA;
  6633. }
  6634. #u82922 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:30px;
  6638. top:1310px;
  6639. width:49px;
  6640. height:17px;
  6641. display:flex;
  6642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:12px;
  6646. color:#AAAAAA;
  6647. }
  6648. #u82922 .text {
  6649. position:absolute;
  6650. align-self:flex-start;
  6651. padding:0px 0px 0px 0px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u82922_text {
  6656. border-width:0px;
  6657. white-space:nowrap;
  6658. text-transform:none;
  6659. }
  6660. #u82923_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:65px;
  6666. height:22px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 0);
  6669. border:none;
  6670. border-radius:0px;
  6671. -moz-box-shadow:none;
  6672. -webkit-box-shadow:none;
  6673. box-shadow:none;
  6674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:16px;
  6678. }
  6679. #u82923 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:30px;
  6683. top:1388px;
  6684. width:65px;
  6685. height:22px;
  6686. display:flex;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:16px;
  6691. }
  6692. #u82923 .text {
  6693. position:absolute;
  6694. align-self:flex-start;
  6695. padding:0px 0px 0px 0px;
  6696. box-sizing:border-box;
  6697. width:100%;
  6698. }
  6699. #u82923_text {
  6700. border-width:0px;
  6701. white-space:nowrap;
  6702. text-transform:none;
  6703. }
  6704. #u82924_div {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:65px;
  6710. height:22px;
  6711. background:inherit;
  6712. background-color:rgba(255, 255, 255, 0);
  6713. border:none;
  6714. border-radius:0px;
  6715. -moz-box-shadow:none;
  6716. -webkit-box-shadow:none;
  6717. box-shadow:none;
  6718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6719. font-weight:400;
  6720. font-style:normal;
  6721. font-size:16px;
  6722. }
  6723. #u82924 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:30px;
  6727. top:1472px;
  6728. width:65px;
  6729. height:22px;
  6730. display:flex;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:16px;
  6735. }
  6736. #u82924 .text {
  6737. position:absolute;
  6738. align-self:flex-start;
  6739. padding:0px 0px 0px 0px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u82924_text {
  6744. border-width:0px;
  6745. white-space:nowrap;
  6746. text-transform:none;
  6747. }
  6748. #u82925_img {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:201px;
  6754. height:2px;
  6755. }
  6756. #u82925 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:1514px;
  6761. width:200px;
  6762. height:1px;
  6763. display:flex;
  6764. }
  6765. #u82925 .text {
  6766. position:absolute;
  6767. align-self:center;
  6768. padding:2px 2px 2px 2px;
  6769. box-sizing:border-box;
  6770. width:100%;
  6771. }
  6772. #u82925_text {
  6773. border-width:0px;
  6774. word-wrap:break-word;
  6775. text-transform:none;
  6776. visibility:hidden;
  6777. }
  6778. #u82926_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:49px;
  6784. height:22px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 0);
  6787. border:none;
  6788. border-radius:0px;
  6789. -moz-box-shadow:none;
  6790. -webkit-box-shadow:none;
  6791. box-shadow:none;
  6792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:16px;
  6796. }
  6797. #u82926 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:30px;
  6801. top:1571px;
  6802. width:49px;
  6803. height:22px;
  6804. display:flex;
  6805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:16px;
  6809. }
  6810. #u82926 .text {
  6811. position:absolute;
  6812. align-self:flex-start;
  6813. padding:0px 0px 0px 0px;
  6814. box-sizing:border-box;
  6815. width:100%;
  6816. }
  6817. #u82926_text {
  6818. border-width:0px;
  6819. white-space:nowrap;
  6820. text-transform:none;
  6821. }
  6822. #u82927_div {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:49px;
  6828. height:17px;
  6829. background:inherit;
  6830. background-color:rgba(255, 255, 255, 0);
  6831. border:none;
  6832. border-radius:0px;
  6833. -moz-box-shadow:none;
  6834. -webkit-box-shadow:none;
  6835. box-shadow:none;
  6836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6837. font-weight:400;
  6838. font-style:normal;
  6839. font-size:12px;
  6840. color:#AAAAAA;
  6841. }
  6842. #u82927 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:30px;
  6846. top:1535px;
  6847. width:49px;
  6848. height:17px;
  6849. display:flex;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:12px;
  6854. color:#AAAAAA;
  6855. }
  6856. #u82927 .text {
  6857. position:absolute;
  6858. align-self:flex-start;
  6859. padding:0px 0px 0px 0px;
  6860. box-sizing:border-box;
  6861. width:100%;
  6862. }
  6863. #u82927_text {
  6864. border-width:0px;
  6865. white-space:nowrap;
  6866. text-transform:none;
  6867. }
  6868. #u82928_div {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:49px;
  6874. height:22px;
  6875. background:inherit;
  6876. background-color:rgba(255, 255, 255, 0);
  6877. border:none;
  6878. border-radius:0px;
  6879. -moz-box-shadow:none;
  6880. -webkit-box-shadow:none;
  6881. box-shadow:none;
  6882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:16px;
  6886. }
  6887. #u82928 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:30px;
  6891. top:1613px;
  6892. width:49px;
  6893. height:22px;
  6894. display:flex;
  6895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:16px;
  6899. }
  6900. #u82928 .text {
  6901. position:absolute;
  6902. align-self:flex-start;
  6903. padding:0px 0px 0px 0px;
  6904. box-sizing:border-box;
  6905. width:100%;
  6906. }
  6907. #u82928_text {
  6908. border-width:0px;
  6909. white-space:nowrap;
  6910. text-transform:none;
  6911. }
  6912. #u82929_div {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:65px;
  6918. height:22px;
  6919. background:inherit;
  6920. background-color:rgba(255, 255, 255, 0);
  6921. border:none;
  6922. border-radius:0px;
  6923. -moz-box-shadow:none;
  6924. -webkit-box-shadow:none;
  6925. box-shadow:none;
  6926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:16px;
  6930. }
  6931. #u82929 {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:30px;
  6935. top:1655px;
  6936. width:65px;
  6937. height:22px;
  6938. display:flex;
  6939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. font-size:16px;
  6943. }
  6944. #u82929 .text {
  6945. position:absolute;
  6946. align-self:flex-start;
  6947. padding:0px 0px 0px 0px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u82929_text {
  6952. border-width:0px;
  6953. white-space:nowrap;
  6954. text-transform:none;
  6955. }
  6956. #u82930_img {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:201px;
  6962. height:2px;
  6963. }
  6964. #u82930 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:1697px;
  6969. width:200px;
  6970. height:1px;
  6971. display:flex;
  6972. }
  6973. #u82930 .text {
  6974. position:absolute;
  6975. align-self:center;
  6976. padding:2px 2px 2px 2px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u82930_text {
  6981. border-width:0px;
  6982. word-wrap:break-word;
  6983. text-transform:none;
  6984. visibility:hidden;
  6985. }
  6986. #u82931_div {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:81px;
  6992. height:22px;
  6993. background:inherit;
  6994. background-color:rgba(255, 255, 255, 0);
  6995. border:none;
  6996. border-radius:0px;
  6997. -moz-box-shadow:none;
  6998. -webkit-box-shadow:none;
  6999. box-shadow:none;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:16px;
  7004. }
  7005. #u82931 {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:30px;
  7009. top:1754px;
  7010. width:81px;
  7011. height:22px;
  7012. display:flex;
  7013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7014. font-weight:400;
  7015. font-style:normal;
  7016. font-size:16px;
  7017. }
  7018. #u82931 .text {
  7019. position:absolute;
  7020. align-self:flex-start;
  7021. padding:0px 0px 0px 0px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u82931_text {
  7026. border-width:0px;
  7027. white-space:nowrap;
  7028. text-transform:none;
  7029. }
  7030. #u82932_div {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:49px;
  7036. height:17px;
  7037. background:inherit;
  7038. background-color:rgba(255, 255, 255, 0);
  7039. border:none;
  7040. border-radius:0px;
  7041. -moz-box-shadow:none;
  7042. -webkit-box-shadow:none;
  7043. box-shadow:none;
  7044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. font-size:12px;
  7048. color:#AAAAAA;
  7049. }
  7050. #u82932 {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:30px;
  7054. top:1718px;
  7055. width:49px;
  7056. height:17px;
  7057. display:flex;
  7058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7059. font-weight:400;
  7060. font-style:normal;
  7061. font-size:12px;
  7062. color:#AAAAAA;
  7063. }
  7064. #u82932 .text {
  7065. position:absolute;
  7066. align-self:flex-start;
  7067. padding:0px 0px 0px 0px;
  7068. box-sizing:border-box;
  7069. width:100%;
  7070. }
  7071. #u82932_text {
  7072. border-width:0px;
  7073. white-space:nowrap;
  7074. text-transform:none;
  7075. }
  7076. #u82933_div {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:81px;
  7082. height:22px;
  7083. background:inherit;
  7084. background-color:rgba(255, 255, 255, 0);
  7085. border:none;
  7086. border-radius:0px;
  7087. -moz-box-shadow:none;
  7088. -webkit-box-shadow:none;
  7089. box-shadow:none;
  7090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7091. font-weight:400;
  7092. font-style:normal;
  7093. font-size:16px;
  7094. }
  7095. #u82933 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:30px;
  7099. top:1796px;
  7100. width:81px;
  7101. height:22px;
  7102. display:flex;
  7103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:16px;
  7107. }
  7108. #u82933 .text {
  7109. position:absolute;
  7110. align-self:flex-start;
  7111. padding:0px 0px 0px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u82933_text {
  7116. border-width:0px;
  7117. white-space:nowrap;
  7118. text-transform:none;
  7119. }
  7120. #u82934_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:81px;
  7126. height:22px;
  7127. background:inherit;
  7128. background-color:rgba(255, 255, 255, 0);
  7129. border:none;
  7130. border-radius:0px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:16px;
  7138. }
  7139. #u82934 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:30px;
  7143. top:1838px;
  7144. width:81px;
  7145. height:22px;
  7146. display:flex;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:16px;
  7151. }
  7152. #u82934 .text {
  7153. position:absolute;
  7154. align-self:flex-start;
  7155. padding:0px 0px 0px 0px;
  7156. box-sizing:border-box;
  7157. width:100%;
  7158. }
  7159. #u82934_text {
  7160. border-width:0px;
  7161. white-space:nowrap;
  7162. text-transform:none;
  7163. }
  7164. #u82935_div {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:65px;
  7170. height:22px;
  7171. background:inherit;
  7172. background-color:rgba(255, 255, 255, 0);
  7173. border:none;
  7174. border-radius:0px;
  7175. -moz-box-shadow:none;
  7176. -webkit-box-shadow:none;
  7177. box-shadow:none;
  7178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7179. font-weight:400;
  7180. font-style:normal;
  7181. font-size:16px;
  7182. }
  7183. #u82935 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:30px;
  7187. top:1430px;
  7188. width:65px;
  7189. height:22px;
  7190. display:flex;
  7191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:16px;
  7195. }
  7196. #u82935 .text {
  7197. position:absolute;
  7198. align-self:flex-start;
  7199. padding:0px 0px 0px 0px;
  7200. box-sizing:border-box;
  7201. width:100%;
  7202. }
  7203. #u82935_text {
  7204. border-width:0px;
  7205. white-space:nowrap;
  7206. text-transform:none;
  7207. }
  7208. #u82936_img {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:201px;
  7214. height:2px;
  7215. }
  7216. #u82936 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:669px;
  7221. width:200px;
  7222. height:1px;
  7223. display:flex;
  7224. }
  7225. #u82936 .text {
  7226. position:absolute;
  7227. align-self:center;
  7228. padding:2px 2px 2px 2px;
  7229. box-sizing:border-box;
  7230. width:100%;
  7231. }
  7232. #u82936_text {
  7233. border-width:0px;
  7234. word-wrap:break-word;
  7235. text-transform:none;
  7236. visibility:hidden;
  7237. }
  7238. #u82937_div {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:0px;
  7242. top:0px;
  7243. width:65px;
  7244. height:22px;
  7245. background:inherit;
  7246. background-color:rgba(255, 255, 255, 0);
  7247. border:none;
  7248. border-radius:0px;
  7249. -moz-box-shadow:none;
  7250. -webkit-box-shadow:none;
  7251. box-shadow:none;
  7252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. font-size:16px;
  7256. }
  7257. #u82937 {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:30px;
  7261. top:726px;
  7262. width:65px;
  7263. height:22px;
  7264. display:flex;
  7265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7266. font-weight:400;
  7267. font-style:normal;
  7268. font-size:16px;
  7269. }
  7270. #u82937 .text {
  7271. position:absolute;
  7272. align-self:flex-start;
  7273. padding:0px 0px 0px 0px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u82937_text {
  7278. border-width:0px;
  7279. white-space:nowrap;
  7280. text-transform:none;
  7281. }
  7282. #u82938_div {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:0px;
  7287. width:49px;
  7288. height:17px;
  7289. background:inherit;
  7290. background-color:rgba(255, 255, 255, 0);
  7291. border:none;
  7292. border-radius:0px;
  7293. -moz-box-shadow:none;
  7294. -webkit-box-shadow:none;
  7295. box-shadow:none;
  7296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7297. font-weight:400;
  7298. font-style:normal;
  7299. font-size:12px;
  7300. color:#AAAAAA;
  7301. }
  7302. #u82938 {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:30px;
  7306. top:690px;
  7307. width:49px;
  7308. height:17px;
  7309. display:flex;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. color:#AAAAAA;
  7315. }
  7316. #u82938 .text {
  7317. position:absolute;
  7318. align-self:flex-start;
  7319. padding:0px 0px 0px 0px;
  7320. box-sizing:border-box;
  7321. width:100%;
  7322. }
  7323. #u82938_text {
  7324. border-width:0px;
  7325. white-space:nowrap;
  7326. text-transform:none;
  7327. }
  7328. #u82939_div {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:0px;
  7332. top:0px;
  7333. width:65px;
  7334. height:22px;
  7335. background:inherit;
  7336. background-color:rgba(255, 255, 255, 0);
  7337. border:none;
  7338. border-radius:0px;
  7339. -moz-box-shadow:none;
  7340. -webkit-box-shadow:none;
  7341. box-shadow:none;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:16px;
  7346. }
  7347. #u82939 {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:30px;
  7351. top:768px;
  7352. width:65px;
  7353. height:22px;
  7354. display:flex;
  7355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7356. font-weight:400;
  7357. font-style:normal;
  7358. font-size:16px;
  7359. }
  7360. #u82939 .text {
  7361. position:absolute;
  7362. align-self:flex-start;
  7363. padding:0px 0px 0px 0px;
  7364. box-sizing:border-box;
  7365. width:100%;
  7366. }
  7367. #u82939_text {
  7368. border-width:0px;
  7369. white-space:nowrap;
  7370. text-transform:none;
  7371. }
  7372. #u82940_div {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:65px;
  7378. height:22px;
  7379. background:inherit;
  7380. background-color:rgba(255, 255, 255, 0);
  7381. border:none;
  7382. border-radius:0px;
  7383. -moz-box-shadow:none;
  7384. -webkit-box-shadow:none;
  7385. box-shadow:none;
  7386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7387. font-weight:400;
  7388. font-style:normal;
  7389. font-size:16px;
  7390. }
  7391. #u82940 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:30px;
  7395. top:852px;
  7396. width:65px;
  7397. height:22px;
  7398. display:flex;
  7399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:16px;
  7403. }
  7404. #u82940 .text {
  7405. position:absolute;
  7406. align-self:flex-start;
  7407. padding:0px 0px 0px 0px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u82940_text {
  7412. border-width:0px;
  7413. white-space:nowrap;
  7414. text-transform:none;
  7415. }
  7416. #u82941_div {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:65px;
  7422. height:22px;
  7423. background:inherit;
  7424. background-color:rgba(255, 255, 255, 0);
  7425. border:none;
  7426. border-radius:0px;
  7427. -moz-box-shadow:none;
  7428. -webkit-box-shadow:none;
  7429. box-shadow:none;
  7430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:16px;
  7434. }
  7435. #u82941 {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:30px;
  7439. top:810px;
  7440. width:65px;
  7441. height:22px;
  7442. display:flex;
  7443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7444. font-weight:400;
  7445. font-style:normal;
  7446. font-size:16px;
  7447. }
  7448. #u82941 .text {
  7449. position:absolute;
  7450. align-self:flex-start;
  7451. padding:0px 0px 0px 0px;
  7452. box-sizing:border-box;
  7453. width:100%;
  7454. }
  7455. #u82941_text {
  7456. border-width:0px;
  7457. white-space:nowrap;
  7458. text-transform:none;
  7459. }
  7460. #u82942_div {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:65px;
  7466. height:22px;
  7467. background:inherit;
  7468. background-color:rgba(255, 255, 255, 0);
  7469. border:none;
  7470. border-radius:0px;
  7471. -moz-box-shadow:none;
  7472. -webkit-box-shadow:none;
  7473. box-shadow:none;
  7474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:16px;
  7478. }
  7479. #u82942 {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:30px;
  7483. top:894px;
  7484. width:65px;
  7485. height:22px;
  7486. display:flex;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:16px;
  7491. }
  7492. #u82942 .text {
  7493. position:absolute;
  7494. align-self:flex-start;
  7495. padding:0px 0px 0px 0px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u82942_text {
  7500. border-width:0px;
  7501. white-space:nowrap;
  7502. text-transform:none;
  7503. }
  7504. #u82943_div {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:65px;
  7510. height:22px;
  7511. background:inherit;
  7512. background-color:rgba(255, 255, 255, 0);
  7513. border:none;
  7514. border-radius:0px;
  7515. -moz-box-shadow:none;
  7516. -webkit-box-shadow:none;
  7517. box-shadow:none;
  7518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7519. font-weight:400;
  7520. font-style:normal;
  7521. font-size:16px;
  7522. }
  7523. #u82943 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:30px;
  7527. top:936px;
  7528. width:65px;
  7529. height:22px;
  7530. display:flex;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:16px;
  7535. }
  7536. #u82943 .text {
  7537. position:absolute;
  7538. align-self:flex-start;
  7539. padding:0px 0px 0px 0px;
  7540. box-sizing:border-box;
  7541. width:100%;
  7542. }
  7543. #u82943_text {
  7544. border-width:0px;
  7545. white-space:nowrap;
  7546. text-transform:none;
  7547. }
  7548. #u82944_img {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:0px;
  7552. top:0px;
  7553. width:201px;
  7554. height:2px;
  7555. }
  7556. #u82944 {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:1018px;
  7561. width:200px;
  7562. height:1px;
  7563. display:flex;
  7564. }
  7565. #u82944 .text {
  7566. position:absolute;
  7567. align-self:center;
  7568. padding:2px 2px 2px 2px;
  7569. box-sizing:border-box;
  7570. width:100%;
  7571. }
  7572. #u82944_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. visibility:hidden;
  7577. }
  7578. #u82945_div {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:65px;
  7584. height:22px;
  7585. background:inherit;
  7586. background-color:rgba(255, 255, 255, 0);
  7587. border:none;
  7588. border-radius:0px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:16px;
  7596. }
  7597. #u82945 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:30px;
  7601. top:1075px;
  7602. width:65px;
  7603. height:22px;
  7604. display:flex;
  7605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7606. font-weight:400;
  7607. font-style:normal;
  7608. font-size:16px;
  7609. }
  7610. #u82945 .text {
  7611. position:absolute;
  7612. align-self:flex-start;
  7613. padding:0px 0px 0px 0px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u82945_text {
  7618. border-width:0px;
  7619. white-space:nowrap;
  7620. text-transform:none;
  7621. }
  7622. #u82946_div {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:49px;
  7628. height:17px;
  7629. background:inherit;
  7630. background-color:rgba(255, 255, 255, 0);
  7631. border:none;
  7632. border-radius:0px;
  7633. -moz-box-shadow:none;
  7634. -webkit-box-shadow:none;
  7635. box-shadow:none;
  7636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7637. font-weight:400;
  7638. font-style:normal;
  7639. font-size:12px;
  7640. color:#AAAAAA;
  7641. }
  7642. #u82946 {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:30px;
  7646. top:1039px;
  7647. width:49px;
  7648. height:17px;
  7649. display:flex;
  7650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7651. font-weight:400;
  7652. font-style:normal;
  7653. font-size:12px;
  7654. color:#AAAAAA;
  7655. }
  7656. #u82946 .text {
  7657. position:absolute;
  7658. align-self:flex-start;
  7659. padding:0px 0px 0px 0px;
  7660. box-sizing:border-box;
  7661. width:100%;
  7662. }
  7663. #u82946_text {
  7664. border-width:0px;
  7665. white-space:nowrap;
  7666. text-transform:none;
  7667. }
  7668. #u82947_div {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:65px;
  7674. height:22px;
  7675. background:inherit;
  7676. background-color:rgba(255, 255, 255, 0);
  7677. border:none;
  7678. border-radius:0px;
  7679. -moz-box-shadow:none;
  7680. -webkit-box-shadow:none;
  7681. box-shadow:none;
  7682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7683. font-weight:400;
  7684. font-style:normal;
  7685. font-size:16px;
  7686. }
  7687. #u82947 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:30px;
  7691. top:1117px;
  7692. width:65px;
  7693. height:22px;
  7694. display:flex;
  7695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:16px;
  7699. }
  7700. #u82947 .text {
  7701. position:absolute;
  7702. align-self:flex-start;
  7703. padding:0px 0px 0px 0px;
  7704. box-sizing:border-box;
  7705. width:100%;
  7706. }
  7707. #u82947_text {
  7708. border-width:0px;
  7709. white-space:nowrap;
  7710. text-transform:none;
  7711. }
  7712. #u82948_div {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:65px;
  7718. height:22px;
  7719. background:inherit;
  7720. background-color:rgba(255, 255, 255, 0);
  7721. border:none;
  7722. border-radius:0px;
  7723. -moz-box-shadow:none;
  7724. -webkit-box-shadow:none;
  7725. box-shadow:none;
  7726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7727. font-weight:400;
  7728. font-style:normal;
  7729. font-size:16px;
  7730. }
  7731. #u82948 {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:30px;
  7735. top:1201px;
  7736. width:65px;
  7737. height:22px;
  7738. display:flex;
  7739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7740. font-weight:400;
  7741. font-style:normal;
  7742. font-size:16px;
  7743. }
  7744. #u82948 .text {
  7745. position:absolute;
  7746. align-self:flex-start;
  7747. padding:0px 0px 0px 0px;
  7748. box-sizing:border-box;
  7749. width:100%;
  7750. }
  7751. #u82948_text {
  7752. border-width:0px;
  7753. white-space:nowrap;
  7754. text-transform:none;
  7755. }
  7756. #u82949_div {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:65px;
  7762. height:22px;
  7763. background:inherit;
  7764. background-color:rgba(255, 255, 255, 0);
  7765. border:none;
  7766. border-radius:0px;
  7767. -moz-box-shadow:none;
  7768. -webkit-box-shadow:none;
  7769. box-shadow:none;
  7770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7771. font-weight:400;
  7772. font-style:normal;
  7773. font-size:16px;
  7774. }
  7775. #u82949 {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:30px;
  7779. top:1159px;
  7780. width:65px;
  7781. height:22px;
  7782. display:flex;
  7783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7784. font-weight:400;
  7785. font-style:normal;
  7786. font-size:16px;
  7787. }
  7788. #u82949 .text {
  7789. position:absolute;
  7790. align-self:flex-start;
  7791. padding:0px 0px 0px 0px;
  7792. box-sizing:border-box;
  7793. width:100%;
  7794. }
  7795. #u82949_text {
  7796. border-width:0px;
  7797. white-space:nowrap;
  7798. text-transform:none;
  7799. }
  7800. #u82950_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:65px;
  7806. height:22px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 0);
  7809. border:none;
  7810. border-radius:0px;
  7811. -moz-box-shadow:none;
  7812. -webkit-box-shadow:none;
  7813. box-shadow:none;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:16px;
  7818. }
  7819. #u82950 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:30px;
  7823. top:1243px;
  7824. width:65px;
  7825. height:22px;
  7826. display:flex;
  7827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:16px;
  7831. }
  7832. #u82950 .text {
  7833. position:absolute;
  7834. align-self:flex-start;
  7835. padding:0px 0px 0px 0px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u82950_text {
  7840. border-width:0px;
  7841. white-space:nowrap;
  7842. text-transform:none;
  7843. }
  7844. #u82951_div {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:0px;
  7848. top:0px;
  7849. width:65px;
  7850. height:22px;
  7851. background:inherit;
  7852. background-color:rgba(255, 255, 255, 0);
  7853. border:none;
  7854. border-radius:0px;
  7855. -moz-box-shadow:none;
  7856. -webkit-box-shadow:none;
  7857. box-shadow:none;
  7858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7859. font-weight:400;
  7860. font-style:normal;
  7861. font-size:16px;
  7862. }
  7863. #u82951 {
  7864. border-width:0px;
  7865. position:absolute;
  7866. left:30px;
  7867. top:978px;
  7868. width:65px;
  7869. height:22px;
  7870. display:flex;
  7871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7872. font-weight:400;
  7873. font-style:normal;
  7874. font-size:16px;
  7875. }
  7876. #u82951 .text {
  7877. position:absolute;
  7878. align-self:flex-start;
  7879. padding:0px 0px 0px 0px;
  7880. box-sizing:border-box;
  7881. width:100%;
  7882. }
  7883. #u82951_text {
  7884. border-width:0px;
  7885. white-space:nowrap;
  7886. text-transform:none;
  7887. }
  7888. #u82952_div {
  7889. border-width:0px;
  7890. position:absolute;
  7891. left:0px;
  7892. top:0px;
  7893. width:65px;
  7894. height:22px;
  7895. background:inherit;
  7896. background-color:rgba(255, 255, 255, 0);
  7897. border:none;
  7898. border-radius:0px;
  7899. -moz-box-shadow:none;
  7900. -webkit-box-shadow:none;
  7901. box-shadow:none;
  7902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. font-size:16px;
  7906. }
  7907. #u82952 {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:30px;
  7911. top:622px;
  7912. width:65px;
  7913. height:22px;
  7914. display:flex;
  7915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7916. font-weight:400;
  7917. font-style:normal;
  7918. font-size:16px;
  7919. }
  7920. #u82952 .text {
  7921. position:absolute;
  7922. align-self:flex-start;
  7923. padding:0px 0px 0px 0px;
  7924. box-sizing:border-box;
  7925. width:100%;
  7926. }
  7927. #u82952_text {
  7928. border-width:0px;
  7929. white-space:nowrap;
  7930. text-transform:none;
  7931. }