styles.css 143 KB

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