styles.css 136 KB

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