styles.css 208 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1711px;
  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. #u84899_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. #u84899 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u84899 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u84899_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u84900_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. #u84900 {
  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. #u84900 .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. #u84900_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u84901_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. #u84901 {
  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. #u84901 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u84901_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u84902 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u84903_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u84903 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u84903 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u84903_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u84904_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. #u84904 {
  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. #u84904 .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. #u84904_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u84905_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. #u84905 {
  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. #u84905 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u84905_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u84906 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u84907_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. #u84907_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. #u84907_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. #u84907 {
  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. #u84907 .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. #u84907_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. #u84907.disabled {
  356. }
  357. .u84907_input_option {
  358. font-size:14px;
  359. }
  360. #u84908_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u84908 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u84908 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u84908_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u84909_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. #u84909 {
  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. #u84909 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u84909_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u84910_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. #u84910 {
  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. #u84910 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u84910_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u84911 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u84912_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. #u84912 {
  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. #u84912 .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. #u84912_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u84913_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u84913 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u84913 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u84913_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u84914 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u84915_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. #u84915 {
  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. #u84915 .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. #u84915_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u84916_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u84916 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u84916 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u84916_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u84917 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u84918_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. #u84918 {
  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. #u84918 .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. #u84918_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u84919_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u84919 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u84919 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u84919_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u84920 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u84921_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. #u84921 {
  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. #u84921 .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. #u84921_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u84922_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u84922 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u84922 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u84922_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u84923 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u84924_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. #u84924 {
  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. #u84924 .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. #u84924_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u84925_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u84925 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u84925 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u84925_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u84926 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u84927_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. #u84927 {
  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. #u84927 .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. #u84927_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u84928_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u84928 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u84928 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u84928_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u84929 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u84930_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. #u84930 {
  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. #u84930 .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. #u84930_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u84931_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u84931 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u84931 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u84931_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u84932 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u84933_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. #u84933 {
  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. #u84933 .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. #u84933_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u84934_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u84934 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u84934 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u84934_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u84935 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u84936_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. #u84936 {
  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. #u84936 .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. #u84936_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u84937_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u84937 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u84937 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u84937_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u84938 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u84939_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. #u84939 {
  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. #u84939 .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. #u84939_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u84940_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u84940 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u84940 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u84940_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u84941_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. #u84941 {
  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. #u84941 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u84941_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u84942_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u84942 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u84942 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u84942_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u84943_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. #u84943 {
  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. #u84943 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u84943_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u84944_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u84944 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u84944 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u84944_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u84945 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u84946_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. #u84946 {
  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. #u84946 .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. #u84946_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u84947_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u84947 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u84947 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u84947_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u84948 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u84949_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. #u84949 {
  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. #u84949 .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. #u84949_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u84950_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u84950 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u84950 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u84950_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u84951_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1381px;
  1644. height:1522px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(215, 215, 215, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#FFFFFF;
  1660. text-align:left;
  1661. }
  1662. #u84951 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:330px;
  1666. top:50px;
  1667. width:1381px;
  1668. height:1522px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:12px;
  1674. color:#FFFFFF;
  1675. text-align:left;
  1676. }
  1677. #u84951 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 50px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u84951_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u84952_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:37px;
  1696. height:50px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 0);
  1699. border:none;
  1700. border-left:0px;
  1701. border-top:0px;
  1702. border-right:0px;
  1703. border-radius:0px;
  1704. border-bottom-right-radius:0px;
  1705. border-bottom-left-radius:0px;
  1706. -moz-box-shadow:none;
  1707. -webkit-box-shadow:none;
  1708. box-shadow:none;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u84952 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:350px;
  1718. top:50px;
  1719. width:37px;
  1720. height:50px;
  1721. display:flex;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:18px;
  1726. }
  1727. #u84952 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:0px 0px 0px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u84952_text {
  1735. border-width:0px;
  1736. white-space:nowrap;
  1737. text-transform:none;
  1738. }
  1739. #u84953 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:351px;
  1743. top:291px;
  1744. width:1340px;
  1745. height:322px;
  1746. }
  1747. #u84954_img {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:111px;
  1753. height:38px;
  1754. }
  1755. #u84954 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:111px;
  1761. height:38px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:12px;
  1767. color:#FFFFFF;
  1768. }
  1769. #u84954 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 0px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u84954_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. }
  1781. #u84955_img {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:111px;
  1787. height:38px;
  1788. }
  1789. #u84955 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:111px;
  1793. top:0px;
  1794. width:111px;
  1795. height:38px;
  1796. display:flex;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:12px;
  1801. color:#FFFFFF;
  1802. }
  1803. #u84955 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 2px 2px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u84955_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. }
  1815. #u84956_img {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:111px;
  1821. height:38px;
  1822. }
  1823. #u84956 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:222px;
  1827. top:0px;
  1828. width:111px;
  1829. height:38px;
  1830. display:flex;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:12px;
  1835. color:#FFFFFF;
  1836. }
  1837. #u84956 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u84956_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. }
  1849. #u84957_img {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:111px;
  1855. height:38px;
  1856. }
  1857. #u84957 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:333px;
  1861. top:0px;
  1862. width:111px;
  1863. height:38px;
  1864. display:flex;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:12px;
  1869. color:#FFFFFF;
  1870. }
  1871. #u84957 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 0px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u84957_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u84958_img {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:133px;
  1889. height:38px;
  1890. }
  1891. #u84958 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:444px;
  1895. top:0px;
  1896. width:133px;
  1897. height:38px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:12px;
  1903. color:#FFFFFF;
  1904. }
  1905. #u84958 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u84958_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. }
  1917. #u84959_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:133px;
  1923. height:38px;
  1924. }
  1925. #u84959 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:577px;
  1929. top:0px;
  1930. width:133px;
  1931. height:38px;
  1932. display:flex;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:12px;
  1937. color:#FFFFFF;
  1938. }
  1939. #u84959 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 2px 2px 0px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u84959_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. }
  1951. #u84960_img {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:129px;
  1957. height:38px;
  1958. }
  1959. #u84960 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:710px;
  1963. top:0px;
  1964. width:129px;
  1965. height:38px;
  1966. display:flex;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:12px;
  1971. color:#FFFFFF;
  1972. }
  1973. #u84960 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 0px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u84960_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. }
  1985. #u84961_img {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:111px;
  1991. height:38px;
  1992. }
  1993. #u84961 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:839px;
  1997. top:0px;
  1998. width:111px;
  1999. height:38px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#FFFFFF;
  2006. }
  2007. #u84961 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u84961_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. }
  2019. #u84962_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:147px;
  2025. height:38px;
  2026. }
  2027. #u84962 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:950px;
  2031. top:0px;
  2032. width:147px;
  2033. height:38px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:12px;
  2039. color:#FFFFFF;
  2040. }
  2041. #u84962 .text {
  2042. position:absolute;
  2043. align-self:center;
  2044. padding:2px 2px 2px 0px;
  2045. box-sizing:border-box;
  2046. width:100%;
  2047. }
  2048. #u84962_text {
  2049. border-width:0px;
  2050. word-wrap:break-word;
  2051. text-transform:none;
  2052. }
  2053. #u84963_img {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:128px;
  2059. height:38px;
  2060. }
  2061. #u84963 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:1097px;
  2065. top:0px;
  2066. width:128px;
  2067. height:38px;
  2068. display:flex;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:12px;
  2073. color:#FFFFFF;
  2074. }
  2075. #u84963 .text {
  2076. position:absolute;
  2077. align-self:center;
  2078. padding:2px 2px 2px 0px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u84963_text {
  2083. border-width:0px;
  2084. word-wrap:break-word;
  2085. text-transform:none;
  2086. }
  2087. #u84964_img {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:115px;
  2093. height:38px;
  2094. }
  2095. #u84964 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:1225px;
  2099. top:0px;
  2100. width:115px;
  2101. height:38px;
  2102. display:flex;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:12px;
  2107. color:#FFFFFF;
  2108. }
  2109. #u84964 .text {
  2110. position:absolute;
  2111. align-self:center;
  2112. padding:2px 2px 2px 0px;
  2113. box-sizing:border-box;
  2114. width:100%;
  2115. }
  2116. #u84964_text {
  2117. border-width:0px;
  2118. word-wrap:break-word;
  2119. text-transform:none;
  2120. }
  2121. #u84965_img {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:111px;
  2127. height:38px;
  2128. }
  2129. #u84965 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:38px;
  2134. width:111px;
  2135. height:38px;
  2136. display:flex;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:12px;
  2141. color:#333333;
  2142. }
  2143. #u84965 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u84965_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. visibility:hidden;
  2155. }
  2156. #u84966_img {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:111px;
  2162. height:38px;
  2163. }
  2164. #u84966 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:111px;
  2168. top:38px;
  2169. width:111px;
  2170. height:38px;
  2171. display:flex;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:12px;
  2176. color:#333333;
  2177. }
  2178. #u84966 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 0px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u84966_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. visibility:hidden;
  2190. }
  2191. #u84967_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:111px;
  2197. height:38px;
  2198. }
  2199. #u84967 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:222px;
  2203. top:38px;
  2204. width:111px;
  2205. height:38px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:12px;
  2211. color:#333333;
  2212. }
  2213. #u84967 .text {
  2214. position:absolute;
  2215. align-self:center;
  2216. padding:2px 2px 2px 0px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u84967_text {
  2221. border-width:0px;
  2222. word-wrap:break-word;
  2223. text-transform:none;
  2224. visibility:hidden;
  2225. }
  2226. #u84968_img {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:111px;
  2232. height:38px;
  2233. }
  2234. #u84968 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:333px;
  2238. top:38px;
  2239. width:111px;
  2240. height:38px;
  2241. display:flex;
  2242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2243. font-weight:400;
  2244. font-style:normal;
  2245. font-size:12px;
  2246. color:#333333;
  2247. }
  2248. #u84968 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:2px 2px 2px 0px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u84968_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. visibility:hidden;
  2260. }
  2261. #u84969_img {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:133px;
  2267. height:38px;
  2268. }
  2269. #u84969 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:444px;
  2273. top:38px;
  2274. width:133px;
  2275. height:38px;
  2276. display:flex;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. color:#333333;
  2282. }
  2283. #u84969 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u84969_text {
  2291. border-width:0px;
  2292. word-wrap:break-word;
  2293. text-transform:none;
  2294. visibility:hidden;
  2295. }
  2296. #u84970_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:133px;
  2302. height:38px;
  2303. }
  2304. #u84970 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:577px;
  2308. top:38px;
  2309. width:133px;
  2310. height:38px;
  2311. display:flex;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. color:#333333;
  2317. }
  2318. #u84970 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 2px 2px 0px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u84970_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. visibility:hidden;
  2330. }
  2331. #u84971_img {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:129px;
  2337. height:38px;
  2338. }
  2339. #u84971 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:710px;
  2343. top:38px;
  2344. width:129px;
  2345. height:38px;
  2346. display:flex;
  2347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2348. font-weight:400;
  2349. font-style:normal;
  2350. font-size:12px;
  2351. color:#333333;
  2352. }
  2353. #u84971 .text {
  2354. position:absolute;
  2355. align-self:center;
  2356. padding:2px 2px 2px 0px;
  2357. box-sizing:border-box;
  2358. width:100%;
  2359. }
  2360. #u84971_text {
  2361. border-width:0px;
  2362. word-wrap:break-word;
  2363. text-transform:none;
  2364. visibility:hidden;
  2365. }
  2366. #u84972_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:111px;
  2372. height:38px;
  2373. }
  2374. #u84972 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:839px;
  2378. top:38px;
  2379. width:111px;
  2380. height:38px;
  2381. display:flex;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:12px;
  2386. color:#333333;
  2387. }
  2388. #u84972 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 0px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u84972_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u84973_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:147px;
  2407. height:38px;
  2408. }
  2409. #u84973 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:950px;
  2413. top:38px;
  2414. width:147px;
  2415. height:38px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. color:#333333;
  2422. }
  2423. #u84973 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 0px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u84973_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. visibility:hidden;
  2435. }
  2436. #u84974_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:128px;
  2442. height:38px;
  2443. }
  2444. #u84974 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:1097px;
  2448. top:38px;
  2449. width:128px;
  2450. height:38px;
  2451. display:flex;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:12px;
  2456. color:#333333;
  2457. }
  2458. #u84974 .text {
  2459. position:absolute;
  2460. align-self:center;
  2461. padding:2px 2px 2px 0px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u84974_text {
  2466. border-width:0px;
  2467. word-wrap:break-word;
  2468. text-transform:none;
  2469. visibility:hidden;
  2470. }
  2471. #u84975_img {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:115px;
  2477. height:38px;
  2478. }
  2479. #u84975 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:1225px;
  2483. top:38px;
  2484. width:115px;
  2485. height:38px;
  2486. display:flex;
  2487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:12px;
  2491. color:#0089FE;
  2492. }
  2493. #u84975 .text {
  2494. position:absolute;
  2495. align-self:center;
  2496. padding:2px 2px 2px 0px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u84975_text {
  2501. border-width:0px;
  2502. word-wrap:break-word;
  2503. text-transform:none;
  2504. }
  2505. #u84976_img {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:111px;
  2511. height:38px;
  2512. }
  2513. #u84976 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:76px;
  2518. width:111px;
  2519. height:38px;
  2520. display:flex;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:12px;
  2525. color:#333333;
  2526. }
  2527. #u84976 .text {
  2528. position:absolute;
  2529. align-self:center;
  2530. padding:2px 2px 2px 0px;
  2531. box-sizing:border-box;
  2532. width:100%;
  2533. }
  2534. #u84976_text {
  2535. border-width:0px;
  2536. word-wrap:break-word;
  2537. text-transform:none;
  2538. visibility:hidden;
  2539. }
  2540. #u84977_img {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:111px;
  2546. height:38px;
  2547. }
  2548. #u84977 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:111px;
  2552. top:76px;
  2553. width:111px;
  2554. height:38px;
  2555. display:flex;
  2556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:12px;
  2560. color:#333333;
  2561. }
  2562. #u84977 .text {
  2563. position:absolute;
  2564. align-self:center;
  2565. padding:2px 2px 2px 0px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u84977_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. visibility:hidden;
  2574. }
  2575. #u84978_img {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:111px;
  2581. height:38px;
  2582. }
  2583. #u84978 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:222px;
  2587. top:76px;
  2588. width:111px;
  2589. height:38px;
  2590. display:flex;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. font-size:12px;
  2595. color:#333333;
  2596. }
  2597. #u84978 .text {
  2598. position:absolute;
  2599. align-self:center;
  2600. padding:2px 2px 2px 0px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u84978_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. visibility:hidden;
  2609. }
  2610. #u84979_img {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:111px;
  2616. height:38px;
  2617. }
  2618. #u84979 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:333px;
  2622. top:76px;
  2623. width:111px;
  2624. height:38px;
  2625. display:flex;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:12px;
  2630. color:#333333;
  2631. }
  2632. #u84979 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 0px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u84979_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u84980_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:133px;
  2651. height:38px;
  2652. }
  2653. #u84980 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:444px;
  2657. top:76px;
  2658. width:133px;
  2659. height:38px;
  2660. display:flex;
  2661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. font-size:12px;
  2665. color:#333333;
  2666. }
  2667. #u84980 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 0px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u84980_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u84981_img {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:133px;
  2686. height:38px;
  2687. }
  2688. #u84981 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:577px;
  2692. top:76px;
  2693. width:133px;
  2694. height:38px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. color:#333333;
  2701. }
  2702. #u84981 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u84981_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. visibility:hidden;
  2714. }
  2715. #u84982_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:129px;
  2721. height:38px;
  2722. }
  2723. #u84982 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:710px;
  2727. top:76px;
  2728. width:129px;
  2729. height:38px;
  2730. display:flex;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:12px;
  2735. color:#333333;
  2736. }
  2737. #u84982 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 0px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u84982_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. visibility:hidden;
  2749. }
  2750. #u84983_img {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:111px;
  2756. height:38px;
  2757. }
  2758. #u84983 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:839px;
  2762. top:76px;
  2763. width:111px;
  2764. height:38px;
  2765. display:flex;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:12px;
  2770. color:#333333;
  2771. }
  2772. #u84983 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 0px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u84983_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u84984_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:147px;
  2791. height:38px;
  2792. }
  2793. #u84984 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:950px;
  2797. top:76px;
  2798. width:147px;
  2799. height:38px;
  2800. display:flex;
  2801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:12px;
  2805. color:#333333;
  2806. }
  2807. #u84984 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 0px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u84984_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u84985_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:128px;
  2826. height:38px;
  2827. }
  2828. #u84985 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:1097px;
  2832. top:76px;
  2833. width:128px;
  2834. height:38px;
  2835. display:flex;
  2836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. font-size:12px;
  2840. color:#333333;
  2841. }
  2842. #u84985 .text {
  2843. position:absolute;
  2844. align-self:center;
  2845. padding:2px 2px 2px 0px;
  2846. box-sizing:border-box;
  2847. width:100%;
  2848. }
  2849. #u84985_text {
  2850. border-width:0px;
  2851. word-wrap:break-word;
  2852. text-transform:none;
  2853. visibility:hidden;
  2854. }
  2855. #u84986_img {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:115px;
  2861. height:38px;
  2862. }
  2863. #u84986 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:1225px;
  2867. top:76px;
  2868. width:115px;
  2869. height:38px;
  2870. display:flex;
  2871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2872. font-weight:400;
  2873. font-style:normal;
  2874. font-size:12px;
  2875. color:#0089FE;
  2876. }
  2877. #u84986 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 0px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u84986_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. visibility:hidden;
  2889. }
  2890. #u84987_img {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:111px;
  2896. height:38px;
  2897. }
  2898. #u84987 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:114px;
  2903. width:111px;
  2904. height:38px;
  2905. display:flex;
  2906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. font-size:12px;
  2910. color:#333333;
  2911. }
  2912. #u84987 .text {
  2913. position:absolute;
  2914. align-self:center;
  2915. padding:2px 2px 2px 0px;
  2916. box-sizing:border-box;
  2917. width:100%;
  2918. }
  2919. #u84987_text {
  2920. border-width:0px;
  2921. word-wrap:break-word;
  2922. text-transform:none;
  2923. visibility:hidden;
  2924. }
  2925. #u84988_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:111px;
  2931. height:38px;
  2932. }
  2933. #u84988 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:111px;
  2937. top:114px;
  2938. width:111px;
  2939. height:38px;
  2940. display:flex;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:12px;
  2945. color:#333333;
  2946. }
  2947. #u84988 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u84988_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. visibility:hidden;
  2959. }
  2960. #u84989_img {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:111px;
  2966. height:38px;
  2967. }
  2968. #u84989 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:222px;
  2972. top:114px;
  2973. width:111px;
  2974. height:38px;
  2975. display:flex;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:12px;
  2980. color:#333333;
  2981. }
  2982. #u84989 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 0px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u84989_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u84990_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:111px;
  3001. height:38px;
  3002. }
  3003. #u84990 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:333px;
  3007. top:114px;
  3008. width:111px;
  3009. height:38px;
  3010. display:flex;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. color:#333333;
  3016. }
  3017. #u84990 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u84990_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u84991_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:133px;
  3036. height:38px;
  3037. }
  3038. #u84991 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:444px;
  3042. top:114px;
  3043. width:133px;
  3044. height:38px;
  3045. display:flex;
  3046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. font-size:12px;
  3050. color:#333333;
  3051. }
  3052. #u84991 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 0px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u84991_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. visibility:hidden;
  3064. }
  3065. #u84992_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:133px;
  3071. height:38px;
  3072. }
  3073. #u84992 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:577px;
  3077. top:114px;
  3078. width:133px;
  3079. height:38px;
  3080. display:flex;
  3081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. color:#333333;
  3086. }
  3087. #u84992 .text {
  3088. position:absolute;
  3089. align-self:center;
  3090. padding:2px 2px 2px 0px;
  3091. box-sizing:border-box;
  3092. width:100%;
  3093. }
  3094. #u84992_text {
  3095. border-width:0px;
  3096. word-wrap:break-word;
  3097. text-transform:none;
  3098. visibility:hidden;
  3099. }
  3100. #u84993_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:129px;
  3106. height:38px;
  3107. }
  3108. #u84993 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:710px;
  3112. top:114px;
  3113. width:129px;
  3114. height:38px;
  3115. display:flex;
  3116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:12px;
  3120. color:#333333;
  3121. }
  3122. #u84993 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u84993_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. visibility:hidden;
  3134. }
  3135. #u84994_img {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:111px;
  3141. height:38px;
  3142. }
  3143. #u84994 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:839px;
  3147. top:114px;
  3148. width:111px;
  3149. height:38px;
  3150. display:flex;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:12px;
  3155. color:#333333;
  3156. }
  3157. #u84994 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u84994_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u84995_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:147px;
  3176. height:38px;
  3177. }
  3178. #u84995 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:950px;
  3182. top:114px;
  3183. width:147px;
  3184. height:38px;
  3185. display:flex;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:12px;
  3190. color:#333333;
  3191. }
  3192. #u84995 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u84995_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u84996_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:128px;
  3211. height:38px;
  3212. }
  3213. #u84996 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:1097px;
  3217. top:114px;
  3218. width:128px;
  3219. height:38px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:12px;
  3225. color:#333333;
  3226. }
  3227. #u84996 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u84996_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. visibility:hidden;
  3239. }
  3240. #u84997_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:115px;
  3246. height:38px;
  3247. }
  3248. #u84997 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:1225px;
  3252. top:114px;
  3253. width:115px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. color:#0089FE;
  3261. }
  3262. #u84997 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u84997_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u84998_img {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:111px;
  3281. height:38px;
  3282. }
  3283. #u84998 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:152px;
  3288. width:111px;
  3289. height:38px;
  3290. display:flex;
  3291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3292. font-weight:400;
  3293. font-style:normal;
  3294. font-size:12px;
  3295. color:#333333;
  3296. }
  3297. #u84998 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 0px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u84998_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. visibility:hidden;
  3309. }
  3310. #u84999_img {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:111px;
  3316. height:38px;
  3317. }
  3318. #u84999 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:111px;
  3322. top:152px;
  3323. width:111px;
  3324. height:38px;
  3325. display:flex;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:12px;
  3330. color:#333333;
  3331. }
  3332. #u84999 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:2px 2px 2px 0px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u84999_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u85000_img {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:111px;
  3351. height:38px;
  3352. }
  3353. #u85000 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:222px;
  3357. top:152px;
  3358. width:111px;
  3359. height:38px;
  3360. display:flex;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:12px;
  3365. color:#333333;
  3366. }
  3367. #u85000 .text {
  3368. position:absolute;
  3369. align-self:center;
  3370. padding:2px 2px 2px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u85000_text {
  3375. border-width:0px;
  3376. word-wrap:break-word;
  3377. text-transform:none;
  3378. visibility:hidden;
  3379. }
  3380. #u85001_img {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:111px;
  3386. height:38px;
  3387. }
  3388. #u85001 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:333px;
  3392. top:152px;
  3393. width:111px;
  3394. height:38px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:12px;
  3400. color:#333333;
  3401. }
  3402. #u85001 .text {
  3403. position:absolute;
  3404. align-self:center;
  3405. padding:2px 2px 2px 0px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u85001_text {
  3410. border-width:0px;
  3411. word-wrap:break-word;
  3412. text-transform:none;
  3413. visibility:hidden;
  3414. }
  3415. #u85002_img {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:133px;
  3421. height:38px;
  3422. }
  3423. #u85002 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:444px;
  3427. top:152px;
  3428. width:133px;
  3429. height:38px;
  3430. display:flex;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:12px;
  3435. color:#333333;
  3436. }
  3437. #u85002 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u85002_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. visibility:hidden;
  3449. }
  3450. #u85003_img {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:133px;
  3456. height:38px;
  3457. }
  3458. #u85003 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:577px;
  3462. top:152px;
  3463. width:133px;
  3464. height:38px;
  3465. display:flex;
  3466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:12px;
  3470. color:#333333;
  3471. }
  3472. #u85003 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 0px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u85003_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u85004_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:129px;
  3491. height:38px;
  3492. }
  3493. #u85004 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:710px;
  3497. top:152px;
  3498. width:129px;
  3499. height:38px;
  3500. display:flex;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:12px;
  3505. color:#333333;
  3506. }
  3507. #u85004 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 2px 2px 0px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u85004_text {
  3515. border-width:0px;
  3516. word-wrap:break-word;
  3517. text-transform:none;
  3518. visibility:hidden;
  3519. }
  3520. #u85005_img {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:111px;
  3526. height:38px;
  3527. }
  3528. #u85005 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:839px;
  3532. top:152px;
  3533. width:111px;
  3534. height:38px;
  3535. display:flex;
  3536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:12px;
  3540. color:#333333;
  3541. }
  3542. #u85005 .text {
  3543. position:absolute;
  3544. align-self:center;
  3545. padding:2px 2px 2px 0px;
  3546. box-sizing:border-box;
  3547. width:100%;
  3548. }
  3549. #u85005_text {
  3550. border-width:0px;
  3551. word-wrap:break-word;
  3552. text-transform:none;
  3553. visibility:hidden;
  3554. }
  3555. #u85006_img {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:147px;
  3561. height:38px;
  3562. }
  3563. #u85006 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:950px;
  3567. top:152px;
  3568. width:147px;
  3569. height:38px;
  3570. display:flex;
  3571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:12px;
  3575. color:#333333;
  3576. }
  3577. #u85006 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 0px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u85006_text {
  3585. border-width:0px;
  3586. word-wrap:break-word;
  3587. text-transform:none;
  3588. visibility:hidden;
  3589. }
  3590. #u85007_img {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:128px;
  3596. height:38px;
  3597. }
  3598. #u85007 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:1097px;
  3602. top:152px;
  3603. width:128px;
  3604. height:38px;
  3605. display:flex;
  3606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:12px;
  3610. color:#333333;
  3611. }
  3612. #u85007 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 2px 2px 0px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u85007_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. visibility:hidden;
  3624. }
  3625. #u85008_img {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:115px;
  3631. height:38px;
  3632. }
  3633. #u85008 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:1225px;
  3637. top:152px;
  3638. width:115px;
  3639. height:38px;
  3640. display:flex;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:12px;
  3645. color:#AAAAAA;
  3646. }
  3647. #u85008 .text {
  3648. position:absolute;
  3649. align-self:center;
  3650. padding:2px 2px 2px 0px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u85008_text {
  3655. border-width:0px;
  3656. word-wrap:break-word;
  3657. text-transform:none;
  3658. visibility:hidden;
  3659. }
  3660. #u85009_img {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:111px;
  3666. height:35px;
  3667. }
  3668. #u85009 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:190px;
  3673. width:111px;
  3674. height:35px;
  3675. display:flex;
  3676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3677. font-weight:400;
  3678. font-style:normal;
  3679. font-size:12px;
  3680. color:#333333;
  3681. }
  3682. #u85009 .text {
  3683. position:absolute;
  3684. align-self:center;
  3685. padding:2px 2px 2px 0px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u85009_text {
  3690. border-width:0px;
  3691. word-wrap:break-word;
  3692. text-transform:none;
  3693. visibility:hidden;
  3694. }
  3695. #u85010_img {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:111px;
  3701. height:35px;
  3702. }
  3703. #u85010 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:111px;
  3707. top:190px;
  3708. width:111px;
  3709. height:35px;
  3710. display:flex;
  3711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3712. font-weight:400;
  3713. font-style:normal;
  3714. font-size:12px;
  3715. color:#333333;
  3716. }
  3717. #u85010 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:2px 2px 2px 0px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u85010_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. visibility:hidden;
  3729. }
  3730. #u85011_img {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:111px;
  3736. height:35px;
  3737. }
  3738. #u85011 {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:222px;
  3742. top:190px;
  3743. width:111px;
  3744. height:35px;
  3745. display:flex;
  3746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. font-size:12px;
  3750. color:#333333;
  3751. }
  3752. #u85011 .text {
  3753. position:absolute;
  3754. align-self:center;
  3755. padding:2px 2px 2px 0px;
  3756. box-sizing:border-box;
  3757. width:100%;
  3758. }
  3759. #u85011_text {
  3760. border-width:0px;
  3761. word-wrap:break-word;
  3762. text-transform:none;
  3763. visibility:hidden;
  3764. }
  3765. #u85012_img {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:111px;
  3771. height:35px;
  3772. }
  3773. #u85012 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:333px;
  3777. top:190px;
  3778. width:111px;
  3779. height:35px;
  3780. display:flex;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:12px;
  3785. color:#333333;
  3786. }
  3787. #u85012 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 0px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u85012_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. visibility:hidden;
  3799. }
  3800. #u85013_img {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:133px;
  3806. height:35px;
  3807. }
  3808. #u85013 {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:444px;
  3812. top:190px;
  3813. width:133px;
  3814. height:35px;
  3815. display:flex;
  3816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:12px;
  3820. color:#333333;
  3821. }
  3822. #u85013 .text {
  3823. position:absolute;
  3824. align-self:center;
  3825. padding:2px 2px 2px 0px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u85013_text {
  3830. border-width:0px;
  3831. word-wrap:break-word;
  3832. text-transform:none;
  3833. visibility:hidden;
  3834. }
  3835. #u85014_img {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:133px;
  3841. height:35px;
  3842. }
  3843. #u85014 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:577px;
  3847. top:190px;
  3848. width:133px;
  3849. height:35px;
  3850. display:flex;
  3851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3852. font-weight:400;
  3853. font-style:normal;
  3854. font-size:12px;
  3855. color:#333333;
  3856. }
  3857. #u85014 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 0px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u85014_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u85015_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:129px;
  3876. height:35px;
  3877. }
  3878. #u85015 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:710px;
  3882. top:190px;
  3883. width:129px;
  3884. height:35px;
  3885. display:flex;
  3886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:12px;
  3890. color:#333333;
  3891. }
  3892. #u85015 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 0px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u85015_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u85016_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:111px;
  3911. height:35px;
  3912. }
  3913. #u85016 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:839px;
  3917. top:190px;
  3918. width:111px;
  3919. height:35px;
  3920. display:flex;
  3921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. color:#333333;
  3926. }
  3927. #u85016 .text {
  3928. position:absolute;
  3929. align-self:center;
  3930. padding:2px 2px 2px 0px;
  3931. box-sizing:border-box;
  3932. width:100%;
  3933. }
  3934. #u85016_text {
  3935. border-width:0px;
  3936. word-wrap:break-word;
  3937. text-transform:none;
  3938. visibility:hidden;
  3939. }
  3940. #u85017_img {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:147px;
  3946. height:35px;
  3947. }
  3948. #u85017 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:950px;
  3952. top:190px;
  3953. width:147px;
  3954. height:35px;
  3955. display:flex;
  3956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. font-size:12px;
  3960. color:#333333;
  3961. }
  3962. #u85017 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:2px 2px 2px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u85017_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. visibility:hidden;
  3974. }
  3975. #u85018_img {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:128px;
  3981. height:35px;
  3982. }
  3983. #u85018 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:1097px;
  3987. top:190px;
  3988. width:128px;
  3989. height:35px;
  3990. display:flex;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:12px;
  3995. color:#333333;
  3996. }
  3997. #u85018 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:2px 2px 2px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u85018_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. visibility:hidden;
  4009. }
  4010. #u85019_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:115px;
  4016. height:35px;
  4017. }
  4018. #u85019 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:1225px;
  4022. top:190px;
  4023. width:115px;
  4024. height:35px;
  4025. display:flex;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:12px;
  4030. color:#AAAAAA;
  4031. }
  4032. #u85019 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 0px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u85019_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. visibility:hidden;
  4044. }
  4045. #u85020_img {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:111px;
  4051. height:35px;
  4052. }
  4053. #u85020 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:225px;
  4058. width:111px;
  4059. height:35px;
  4060. display:flex;
  4061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:12px;
  4065. color:#333333;
  4066. }
  4067. #u85020 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 0px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u85020_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u85021_img {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:111px;
  4086. height:35px;
  4087. }
  4088. #u85021 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:111px;
  4092. top:225px;
  4093. width:111px;
  4094. height:35px;
  4095. display:flex;
  4096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:12px;
  4100. color:#333333;
  4101. }
  4102. #u85021 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 0px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u85021_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. visibility:hidden;
  4114. }
  4115. #u85022_img {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:0px;
  4119. top:0px;
  4120. width:111px;
  4121. height:35px;
  4122. }
  4123. #u85022 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:222px;
  4127. top:225px;
  4128. width:111px;
  4129. height:35px;
  4130. display:flex;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:12px;
  4135. color:#333333;
  4136. }
  4137. #u85022 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 2px 2px 0px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u85022_text {
  4145. border-width:0px;
  4146. word-wrap:break-word;
  4147. text-transform:none;
  4148. visibility:hidden;
  4149. }
  4150. #u85023_img {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:111px;
  4156. height:35px;
  4157. }
  4158. #u85023 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:333px;
  4162. top:225px;
  4163. width:111px;
  4164. height:35px;
  4165. display:flex;
  4166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:12px;
  4170. color:#333333;
  4171. }
  4172. #u85023 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:2px 2px 2px 0px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u85023_text {
  4180. border-width:0px;
  4181. word-wrap:break-word;
  4182. text-transform:none;
  4183. visibility:hidden;
  4184. }
  4185. #u85024_img {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:133px;
  4191. height:35px;
  4192. }
  4193. #u85024 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:444px;
  4197. top:225px;
  4198. width:133px;
  4199. height:35px;
  4200. display:flex;
  4201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:12px;
  4205. color:#333333;
  4206. }
  4207. #u85024 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:2px 2px 2px 0px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u85024_text {
  4215. border-width:0px;
  4216. word-wrap:break-word;
  4217. text-transform:none;
  4218. visibility:hidden;
  4219. }
  4220. #u85025_img {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:133px;
  4226. height:35px;
  4227. }
  4228. #u85025 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:577px;
  4232. top:225px;
  4233. width:133px;
  4234. height:35px;
  4235. display:flex;
  4236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4237. font-weight:400;
  4238. font-style:normal;
  4239. font-size:12px;
  4240. color:#333333;
  4241. }
  4242. #u85025 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 0px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u85025_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u85026_img {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:129px;
  4261. height:35px;
  4262. }
  4263. #u85026 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:710px;
  4267. top:225px;
  4268. width:129px;
  4269. height:35px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:12px;
  4275. color:#333333;
  4276. }
  4277. #u85026 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:2px 2px 2px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u85026_text {
  4285. border-width:0px;
  4286. word-wrap:break-word;
  4287. text-transform:none;
  4288. visibility:hidden;
  4289. }
  4290. #u85027_img {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:111px;
  4296. height:35px;
  4297. }
  4298. #u85027 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:839px;
  4302. top:225px;
  4303. width:111px;
  4304. height:35px;
  4305. display:flex;
  4306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:12px;
  4310. color:#333333;
  4311. }
  4312. #u85027 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 0px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u85027_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u85028_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:147px;
  4331. height:35px;
  4332. }
  4333. #u85028 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:950px;
  4337. top:225px;
  4338. width:147px;
  4339. height:35px;
  4340. display:flex;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:12px;
  4345. color:#333333;
  4346. }
  4347. #u85028 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 0px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u85028_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. visibility:hidden;
  4359. }
  4360. #u85029_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:128px;
  4366. height:35px;
  4367. }
  4368. #u85029 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:1097px;
  4372. top:225px;
  4373. width:128px;
  4374. height:35px;
  4375. display:flex;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:12px;
  4380. color:#333333;
  4381. }
  4382. #u85029 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 0px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u85029_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u85030_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:115px;
  4401. height:35px;
  4402. }
  4403. #u85030 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:1225px;
  4407. top:225px;
  4408. width:115px;
  4409. height:35px;
  4410. display:flex;
  4411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:12px;
  4415. color:#333333;
  4416. }
  4417. #u85030 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:2px 2px 2px 0px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u85030_text {
  4425. border-width:0px;
  4426. word-wrap:break-word;
  4427. text-transform:none;
  4428. visibility:hidden;
  4429. }
  4430. #u85031_img {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:111px;
  4436. height:32px;
  4437. }
  4438. #u85031 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:260px;
  4443. width:111px;
  4444. height:32px;
  4445. display:flex;
  4446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4447. font-weight:400;
  4448. font-style:normal;
  4449. font-size:12px;
  4450. color:#333333;
  4451. }
  4452. #u85031 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 0px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u85031_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u85032_img {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:111px;
  4471. height:32px;
  4472. }
  4473. #u85032 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:111px;
  4477. top:260px;
  4478. width:111px;
  4479. height:32px;
  4480. display:flex;
  4481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. font-size:12px;
  4485. color:#333333;
  4486. }
  4487. #u85032 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:2px 2px 2px 0px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u85032_text {
  4495. border-width:0px;
  4496. word-wrap:break-word;
  4497. text-transform:none;
  4498. visibility:hidden;
  4499. }
  4500. #u85033_img {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:111px;
  4506. height:32px;
  4507. }
  4508. #u85033 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:222px;
  4512. top:260px;
  4513. width:111px;
  4514. height:32px;
  4515. display:flex;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:12px;
  4520. color:#333333;
  4521. }
  4522. #u85033 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 2px 2px 0px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u85033_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. visibility:hidden;
  4534. }
  4535. #u85034_img {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:111px;
  4541. height:32px;
  4542. }
  4543. #u85034 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:333px;
  4547. top:260px;
  4548. width:111px;
  4549. height:32px;
  4550. display:flex;
  4551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:12px;
  4555. color:#333333;
  4556. }
  4557. #u85034 .text {
  4558. position:absolute;
  4559. align-self:center;
  4560. padding:2px 2px 2px 0px;
  4561. box-sizing:border-box;
  4562. width:100%;
  4563. }
  4564. #u85034_text {
  4565. border-width:0px;
  4566. word-wrap:break-word;
  4567. text-transform:none;
  4568. visibility:hidden;
  4569. }
  4570. #u85035_img {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:133px;
  4576. height:32px;
  4577. }
  4578. #u85035 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:444px;
  4582. top:260px;
  4583. width:133px;
  4584. height:32px;
  4585. display:flex;
  4586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4587. font-weight:400;
  4588. font-style:normal;
  4589. font-size:12px;
  4590. color:#333333;
  4591. }
  4592. #u85035 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:2px 2px 2px 0px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u85035_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. visibility:hidden;
  4604. }
  4605. #u85036_img {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:133px;
  4611. height:32px;
  4612. }
  4613. #u85036 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:577px;
  4617. top:260px;
  4618. width:133px;
  4619. height:32px;
  4620. display:flex;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:12px;
  4625. color:#333333;
  4626. }
  4627. #u85036 .text {
  4628. position:absolute;
  4629. align-self:center;
  4630. padding:2px 2px 2px 0px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u85036_text {
  4635. border-width:0px;
  4636. word-wrap:break-word;
  4637. text-transform:none;
  4638. visibility:hidden;
  4639. }
  4640. #u85037_img {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:129px;
  4646. height:32px;
  4647. }
  4648. #u85037 {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:710px;
  4652. top:260px;
  4653. width:129px;
  4654. height:32px;
  4655. display:flex;
  4656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4657. font-weight:400;
  4658. font-style:normal;
  4659. font-size:12px;
  4660. color:#333333;
  4661. }
  4662. #u85037 .text {
  4663. position:absolute;
  4664. align-self:center;
  4665. padding:2px 2px 2px 0px;
  4666. box-sizing:border-box;
  4667. width:100%;
  4668. }
  4669. #u85037_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. visibility:hidden;
  4674. }
  4675. #u85038_img {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:111px;
  4681. height:32px;
  4682. }
  4683. #u85038 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:839px;
  4687. top:260px;
  4688. width:111px;
  4689. height:32px;
  4690. display:flex;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:12px;
  4695. color:#333333;
  4696. }
  4697. #u85038 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:2px 2px 2px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u85038_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. visibility:hidden;
  4709. }
  4710. #u85039_img {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:147px;
  4716. height:32px;
  4717. }
  4718. #u85039 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:950px;
  4722. top:260px;
  4723. width:147px;
  4724. height:32px;
  4725. display:flex;
  4726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4727. font-weight:400;
  4728. font-style:normal;
  4729. font-size:12px;
  4730. color:#333333;
  4731. }
  4732. #u85039 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 2px 2px 0px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u85039_text {
  4740. border-width:0px;
  4741. word-wrap:break-word;
  4742. text-transform:none;
  4743. visibility:hidden;
  4744. }
  4745. #u85040_img {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:128px;
  4751. height:32px;
  4752. }
  4753. #u85040 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:1097px;
  4757. top:260px;
  4758. width:128px;
  4759. height:32px;
  4760. display:flex;
  4761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4762. font-weight:400;
  4763. font-style:normal;
  4764. font-size:12px;
  4765. color:#333333;
  4766. }
  4767. #u85040 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 0px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u85040_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u85041_img {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:115px;
  4786. height:32px;
  4787. }
  4788. #u85041 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:1225px;
  4792. top:260px;
  4793. width:115px;
  4794. height:32px;
  4795. display:flex;
  4796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:12px;
  4800. color:#333333;
  4801. }
  4802. #u85041 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:2px 2px 2px 0px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u85041_text {
  4810. border-width:0px;
  4811. word-wrap:break-word;
  4812. text-transform:none;
  4813. visibility:hidden;
  4814. }
  4815. #u85042_img {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:111px;
  4821. height:30px;
  4822. }
  4823. #u85042 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:292px;
  4828. width:111px;
  4829. height:30px;
  4830. display:flex;
  4831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:12px;
  4835. color:#333333;
  4836. }
  4837. #u85042 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:2px 2px 2px 0px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u85042_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. visibility:hidden;
  4849. }
  4850. #u85043_img {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:111px;
  4856. height:30px;
  4857. }
  4858. #u85043 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:111px;
  4862. top:292px;
  4863. width:111px;
  4864. height:30px;
  4865. display:flex;
  4866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:12px;
  4870. color:#333333;
  4871. }
  4872. #u85043 .text {
  4873. position:absolute;
  4874. align-self:center;
  4875. padding:2px 2px 2px 0px;
  4876. box-sizing:border-box;
  4877. width:100%;
  4878. }
  4879. #u85043_text {
  4880. border-width:0px;
  4881. word-wrap:break-word;
  4882. text-transform:none;
  4883. visibility:hidden;
  4884. }
  4885. #u85044_img {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:111px;
  4891. height:30px;
  4892. }
  4893. #u85044 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:222px;
  4897. top:292px;
  4898. width:111px;
  4899. height:30px;
  4900. display:flex;
  4901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4902. font-weight:400;
  4903. font-style:normal;
  4904. font-size:12px;
  4905. color:#333333;
  4906. }
  4907. #u85044 .text {
  4908. position:absolute;
  4909. align-self:center;
  4910. padding:2px 2px 2px 0px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u85044_text {
  4915. border-width:0px;
  4916. word-wrap:break-word;
  4917. text-transform:none;
  4918. visibility:hidden;
  4919. }
  4920. #u85045_img {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:111px;
  4926. height:30px;
  4927. }
  4928. #u85045 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:333px;
  4932. top:292px;
  4933. width:111px;
  4934. height:30px;
  4935. display:flex;
  4936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:12px;
  4940. color:#333333;
  4941. }
  4942. #u85045 .text {
  4943. position:absolute;
  4944. align-self:center;
  4945. padding:2px 2px 2px 0px;
  4946. box-sizing:border-box;
  4947. width:100%;
  4948. }
  4949. #u85045_text {
  4950. border-width:0px;
  4951. word-wrap:break-word;
  4952. text-transform:none;
  4953. visibility:hidden;
  4954. }
  4955. #u85046_img {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:133px;
  4961. height:30px;
  4962. }
  4963. #u85046 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:444px;
  4967. top:292px;
  4968. width:133px;
  4969. height:30px;
  4970. display:flex;
  4971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:12px;
  4975. color:#333333;
  4976. }
  4977. #u85046 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u85046_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. visibility:hidden;
  4989. }
  4990. #u85047_img {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:133px;
  4996. height:30px;
  4997. }
  4998. #u85047 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:577px;
  5002. top:292px;
  5003. width:133px;
  5004. height:30px;
  5005. display:flex;
  5006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:12px;
  5010. color:#333333;
  5011. }
  5012. #u85047 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:2px 2px 2px 0px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u85047_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. visibility:hidden;
  5024. }
  5025. #u85048_img {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:129px;
  5031. height:30px;
  5032. }
  5033. #u85048 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:710px;
  5037. top:292px;
  5038. width:129px;
  5039. height:30px;
  5040. display:flex;
  5041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:12px;
  5045. color:#333333;
  5046. }
  5047. #u85048 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 0px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u85048_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. visibility:hidden;
  5059. }
  5060. #u85049_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:111px;
  5066. height:30px;
  5067. }
  5068. #u85049 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:839px;
  5072. top:292px;
  5073. width:111px;
  5074. height:30px;
  5075. display:flex;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:12px;
  5080. color:#333333;
  5081. }
  5082. #u85049 .text {
  5083. position:absolute;
  5084. align-self:center;
  5085. padding:2px 2px 2px 0px;
  5086. box-sizing:border-box;
  5087. width:100%;
  5088. }
  5089. #u85049_text {
  5090. border-width:0px;
  5091. word-wrap:break-word;
  5092. text-transform:none;
  5093. visibility:hidden;
  5094. }
  5095. #u85050_img {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:147px;
  5101. height:30px;
  5102. }
  5103. #u85050 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:950px;
  5107. top:292px;
  5108. width:147px;
  5109. height:30px;
  5110. display:flex;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. color:#333333;
  5116. }
  5117. #u85050 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 0px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u85050_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u85051_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:128px;
  5136. height:30px;
  5137. }
  5138. #u85051 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:1097px;
  5142. top:292px;
  5143. width:128px;
  5144. height:30px;
  5145. display:flex;
  5146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:12px;
  5150. color:#333333;
  5151. }
  5152. #u85051 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:2px 2px 2px 0px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u85051_text {
  5160. border-width:0px;
  5161. word-wrap:break-word;
  5162. text-transform:none;
  5163. visibility:hidden;
  5164. }
  5165. #u85052_img {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:0px;
  5169. top:0px;
  5170. width:115px;
  5171. height:30px;
  5172. }
  5173. #u85052 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:1225px;
  5177. top:292px;
  5178. width:115px;
  5179. height:30px;
  5180. display:flex;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:12px;
  5185. color:#333333;
  5186. }
  5187. #u85052 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:2px 2px 2px 0px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u85052_text {
  5195. border-width:0px;
  5196. word-wrap:break-word;
  5197. text-transform:none;
  5198. visibility:hidden;
  5199. }
  5200. #u85053 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:0px;
  5206. height:0px;
  5207. }
  5208. #u85054_div {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:59px;
  5214. height:30px;
  5215. background:inherit;
  5216. background-color:rgba(24, 144, 255, 1);
  5217. box-sizing:border-box;
  5218. border-width:1px;
  5219. border-style:solid;
  5220. border-color:rgba(0, 153, 255, 1);
  5221. border-radius:4px;
  5222. -moz-box-shadow:none;
  5223. -webkit-box-shadow:none;
  5224. box-shadow:none;
  5225. font-family:'Microsoft YaHei', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:14px;
  5229. color:#FFFFFF;
  5230. }
  5231. #u85054 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:654px;
  5235. top:201px;
  5236. width:59px;
  5237. height:30px;
  5238. display:flex;
  5239. font-family:'Microsoft YaHei', sans-serif;
  5240. font-weight:400;
  5241. font-style:normal;
  5242. font-size:14px;
  5243. color:#FFFFFF;
  5244. }
  5245. #u85054 .text {
  5246. position:absolute;
  5247. align-self:center;
  5248. padding:5px 15px 5px 15px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u85054_text {
  5253. border-width:0px;
  5254. white-space:nowrap;
  5255. text-transform:none;
  5256. }
  5257. #u85055_div {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:55px;
  5263. height:30px;
  5264. background:inherit;
  5265. background-color:rgba(255, 255, 255, 1);
  5266. box-sizing:border-box;
  5267. border-width:1px;
  5268. border-style:solid;
  5269. border-color:rgba(170, 170, 170, 1);
  5270. border-radius:4px;
  5271. -moz-box-shadow:none;
  5272. -webkit-box-shadow:none;
  5273. box-shadow:none;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:12px;
  5278. color:#555555;
  5279. }
  5280. #u85055 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:723px;
  5284. top:201px;
  5285. width:55px;
  5286. height:30px;
  5287. display:flex;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:12px;
  5292. color:#555555;
  5293. }
  5294. #u85055 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:5px 15px 5px 15px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u85055_text {
  5302. border-width:0px;
  5303. white-space:nowrap;
  5304. text-transform:none;
  5305. }
  5306. #u85057 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:0px;
  5312. height:0px;
  5313. }
  5314. #u85058_div {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:30px;
  5320. height:30px;
  5321. background:inherit;
  5322. background-color:rgba(255, 255, 255, 1);
  5323. box-sizing:border-box;
  5324. border-width:1px;
  5325. border-style:solid;
  5326. border-color:rgba(228, 228, 228, 1);
  5327. border-radius:4px;
  5328. -moz-box-shadow:none;
  5329. -webkit-box-shadow:none;
  5330. box-shadow:none;
  5331. font-family:'Microsoft YaHei', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. font-size:14px;
  5335. }
  5336. #u85058 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:1126px;
  5340. top:622px;
  5341. width:30px;
  5342. height:30px;
  5343. display:flex;
  5344. font-family:'Microsoft YaHei', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:14px;
  5348. }
  5349. #u85058 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 2px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u85058_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. }
  5361. #u85059_div {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:49px;
  5367. height:30px;
  5368. background:inherit;
  5369. background-color:rgba(255, 255, 255, 0);
  5370. box-sizing:border-box;
  5371. border-width:1px;
  5372. border-style:solid;
  5373. border-color:rgba(188, 188, 188, 1);
  5374. border-radius:4px;
  5375. -moz-box-shadow:none;
  5376. -webkit-box-shadow:none;
  5377. box-shadow:none;
  5378. font-family:'Microsoft YaHei', sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. font-size:14px;
  5382. color:#1E1E1E;
  5383. }
  5384. #u85059 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:1642px;
  5388. top:622px;
  5389. width:49px;
  5390. height:30px;
  5391. display:flex;
  5392. font-family:'Microsoft YaHei', sans-serif;
  5393. font-weight:400;
  5394. font-style:normal;
  5395. font-size:14px;
  5396. color:#1E1E1E;
  5397. }
  5398. #u85059 .text {
  5399. position:absolute;
  5400. align-self:center;
  5401. padding:5px 10px 5px 10px;
  5402. box-sizing:border-box;
  5403. width:100%;
  5404. }
  5405. #u85059_text {
  5406. border-width:0px;
  5407. white-space:nowrap;
  5408. text-transform:none;
  5409. }
  5410. #u85060 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:0px;
  5416. height:0px;
  5417. }
  5418. #u85061_div {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:33px;
  5424. height:24px;
  5425. background:inherit;
  5426. background-color:rgba(255, 255, 255, 1);
  5427. border:none;
  5428. border-radius:0px;
  5429. -moz-box-shadow:none;
  5430. -webkit-box-shadow:none;
  5431. box-shadow:none;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:14px;
  5436. color:#BCBCBC;
  5437. text-align:left;
  5438. }
  5439. #u85061 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:1410px;
  5443. top:625px;
  5444. width:33px;
  5445. height:24px;
  5446. display:flex;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:14px;
  5451. color:#BCBCBC;
  5452. text-align:left;
  5453. }
  5454. #u85061 .text {
  5455. position:absolute;
  5456. align-self:center;
  5457. padding:2px 2px 2px 2px;
  5458. box-sizing:border-box;
  5459. width:100%;
  5460. }
  5461. #u85061_text {
  5462. border-width:0px;
  5463. white-space:nowrap;
  5464. text-transform:none;
  5465. }
  5466. #u85062_div {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:40px;
  5472. height:30px;
  5473. background:inherit;
  5474. background-color:rgba(255, 255, 255, 1);
  5475. box-sizing:border-box;
  5476. border-width:1px;
  5477. border-style:solid;
  5478. border-color:rgba(228, 228, 228, 1);
  5479. border-radius:4px;
  5480. -moz-box-shadow:none;
  5481. -webkit-box-shadow:none;
  5482. box-shadow:none;
  5483. font-family:'Microsoft YaHei', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:14px;
  5487. }
  5488. #u85062 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:1445px;
  5492. top:622px;
  5493. width:40px;
  5494. height:30px;
  5495. display:flex;
  5496. font-family:'Microsoft YaHei', sans-serif;
  5497. font-weight:400;
  5498. font-style:normal;
  5499. font-size:14px;
  5500. }
  5501. #u85062 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 2px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u85062_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u85063_div {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:19px;
  5520. height:24px;
  5521. background:inherit;
  5522. background-color:rgba(255, 255, 255, 1);
  5523. border:none;
  5524. border-radius:0px;
  5525. -moz-box-shadow:none;
  5526. -webkit-box-shadow:none;
  5527. box-shadow:none;
  5528. font-family:'Microsoft YaHei', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:14px;
  5532. color:#BCBCBC;
  5533. text-align:left;
  5534. }
  5535. #u85063 {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:1487px;
  5539. top:626px;
  5540. width:19px;
  5541. height:24px;
  5542. display:flex;
  5543. font-family:'Microsoft YaHei', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:14px;
  5547. color:#BCBCBC;
  5548. text-align:left;
  5549. }
  5550. #u85063 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:2px 2px 2px 2px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u85063_text {
  5558. border-width:0px;
  5559. white-space:nowrap;
  5560. text-transform:none;
  5561. }
  5562. #u85064_input {
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:34px;
  5567. height:25px;
  5568. padding:2px 2px 2px 2px;
  5569. font-family:'Microsoft YaHei', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:13px;
  5573. letter-spacing:normal;
  5574. color:#000000;
  5575. vertical-align:none;
  5576. text-align:left;
  5577. text-transform:none;
  5578. background-color:transparent;
  5579. border-color:transparent;
  5580. }
  5581. #u85064_input.disabled {
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:34px;
  5586. height:25px;
  5587. padding:2px 2px 2px 2px;
  5588. font-family:'Microsoft YaHei', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:13px;
  5592. letter-spacing:normal;
  5593. color:#000000;
  5594. vertical-align:none;
  5595. text-align:left;
  5596. text-transform:none;
  5597. background-color:transparent;
  5598. border-color:transparent;
  5599. }
  5600. #u85064_div {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:34px;
  5606. height:25px;
  5607. background:inherit;
  5608. background-color:rgba(255, 255, 255, 1);
  5609. border:none;
  5610. border-radius:0px;
  5611. -moz-box-shadow:none;
  5612. -webkit-box-shadow:none;
  5613. box-shadow:none;
  5614. font-family:'Microsoft YaHei', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. }
  5618. #u85064 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:1448px;
  5622. top:624px;
  5623. width:34px;
  5624. height:25px;
  5625. display:flex;
  5626. font-family:'Microsoft YaHei', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. }
  5630. #u85064 .text {
  5631. position:absolute;
  5632. align-self:center;
  5633. padding:2px 2px 2px 2px;
  5634. box-sizing:border-box;
  5635. width:100%;
  5636. }
  5637. #u85064_div.disabled {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:34px;
  5643. height:25px;
  5644. background:inherit;
  5645. background-color:rgba(240, 240, 240, 1);
  5646. border:none;
  5647. border-radius:0px;
  5648. -moz-box-shadow:none;
  5649. -webkit-box-shadow:none;
  5650. box-shadow:none;
  5651. font-family:'Microsoft YaHei', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. }
  5655. #u85064.disabled {
  5656. }
  5657. #u85065_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:30px;
  5663. height:30px;
  5664. background:inherit;
  5665. background-color:rgba(41, 143, 255, 1);
  5666. border:none;
  5667. border-radius:4px;
  5668. -moz-box-shadow:none;
  5669. -webkit-box-shadow:none;
  5670. box-shadow:none;
  5671. font-family:'Microsoft YaHei', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:14px;
  5675. color:#FFFFFF;
  5676. }
  5677. #u85065 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:1160px;
  5681. top:622px;
  5682. width:30px;
  5683. height:30px;
  5684. display:flex;
  5685. font-family:'Microsoft YaHei', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:14px;
  5689. color:#FFFFFF;
  5690. }
  5691. #u85065 .text {
  5692. position:absolute;
  5693. align-self:center;
  5694. padding:2px 2px 2px 2px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u85065_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. }
  5703. #u85066_div {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:30px;
  5709. height:30px;
  5710. background:inherit;
  5711. background-color:rgba(255, 255, 255, 1);
  5712. box-sizing:border-box;
  5713. border-width:1px;
  5714. border-style:solid;
  5715. border-color:rgba(228, 228, 228, 1);
  5716. border-radius:4px;
  5717. -moz-box-shadow:none;
  5718. -webkit-box-shadow:none;
  5719. box-shadow:none;
  5720. font-family:'Microsoft YaHei', sans-serif;
  5721. font-weight:400;
  5722. font-style:normal;
  5723. font-size:14px;
  5724. }
  5725. #u85066 {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:1194px;
  5729. top:622px;
  5730. width:30px;
  5731. height:30px;
  5732. display:flex;
  5733. font-family:'Microsoft YaHei', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:14px;
  5737. }
  5738. #u85066 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 2px 2px 2px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u85066_text {
  5746. border-width:0px;
  5747. word-wrap:break-word;
  5748. text-transform:none;
  5749. }
  5750. #u85067_div {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:30px;
  5756. height:30px;
  5757. background:inherit;
  5758. background-color:rgba(255, 255, 255, 1);
  5759. box-sizing:border-box;
  5760. border-width:1px;
  5761. border-style:solid;
  5762. border-color:rgba(228, 228, 228, 1);
  5763. border-radius:4px;
  5764. -moz-box-shadow:none;
  5765. -webkit-box-shadow:none;
  5766. box-shadow:none;
  5767. font-family:'Microsoft YaHei', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:14px;
  5771. }
  5772. #u85067 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:1228px;
  5776. top:622px;
  5777. width:30px;
  5778. height:30px;
  5779. display:flex;
  5780. font-family:'Microsoft YaHei', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. }
  5785. #u85067 .text {
  5786. position:absolute;
  5787. align-self:center;
  5788. padding:2px 2px 2px 2px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u85067_text {
  5793. border-width:0px;
  5794. word-wrap:break-word;
  5795. text-transform:none;
  5796. }
  5797. #u85068_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:30px;
  5803. height:30px;
  5804. background:inherit;
  5805. background-color:rgba(255, 255, 255, 1);
  5806. border:none;
  5807. border-radius:4px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. font-family:'Microsoft YaHei', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:14px;
  5815. }
  5816. #u85068 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:1258px;
  5820. top:622px;
  5821. width:30px;
  5822. height:30px;
  5823. display:flex;
  5824. font-family:'Microsoft YaHei', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:14px;
  5828. }
  5829. #u85068 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 2px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u85068_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. }
  5841. #u85069_div {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:30px;
  5847. height:30px;
  5848. background:inherit;
  5849. background-color:rgba(255, 255, 255, 1);
  5850. box-sizing:border-box;
  5851. border-width:1px;
  5852. border-style:solid;
  5853. border-color:rgba(228, 228, 228, 1);
  5854. border-radius:4px;
  5855. -moz-box-shadow:none;
  5856. -webkit-box-shadow:none;
  5857. box-shadow:none;
  5858. font-family:'Microsoft YaHei', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:14px;
  5862. }
  5863. #u85069 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:1292px;
  5867. top:622px;
  5868. width:30px;
  5869. height:30px;
  5870. display:flex;
  5871. font-family:'Microsoft YaHei', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:14px;
  5875. }
  5876. #u85069 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:2px 2px 2px 2px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u85069_text {
  5884. border-width:0px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. }
  5888. #u85070_div {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:32px;
  5894. height:21px;
  5895. background:inherit;
  5896. background-color:rgba(255, 255, 255, 1);
  5897. border:none;
  5898. border-radius:15px;
  5899. -moz-box-shadow:none;
  5900. -webkit-box-shadow:none;
  5901. box-shadow:none;
  5902. font-family:'Microsoft YaHei', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:14px;
  5906. color:#1E1E1E;
  5907. }
  5908. #u85070 {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:1366px;
  5912. top:627px;
  5913. width:32px;
  5914. height:21px;
  5915. display:flex;
  5916. font-family:'Microsoft YaHei', sans-serif;
  5917. font-weight:400;
  5918. font-style:normal;
  5919. font-size:14px;
  5920. color:#1E1E1E;
  5921. }
  5922. #u85070 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 2px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u85070_text {
  5930. border-width:0px;
  5931. white-space:nowrap;
  5932. text-transform:none;
  5933. }
  5934. #u85071 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:0px;
  5940. height:0px;
  5941. }
  5942. #u85072_div {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:31px;
  5948. height:30px;
  5949. background:inherit;
  5950. background-color:rgba(255, 255, 255, 1);
  5951. box-sizing:border-box;
  5952. border-width:1px;
  5953. border-style:solid;
  5954. border-color:rgba(228, 228, 228, 1);
  5955. border-radius:4px;
  5956. -moz-box-shadow:none;
  5957. -webkit-box-shadow:none;
  5958. box-shadow:none;
  5959. font-family:'Microsoft YaHei', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. font-size:12px;
  5963. }
  5964. #u85072 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:1091px;
  5968. top:622px;
  5969. width:31px;
  5970. height:30px;
  5971. display:flex;
  5972. font-family:'Microsoft YaHei', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:12px;
  5976. }
  5977. #u85072 .text {
  5978. position:absolute;
  5979. align-self:center;
  5980. padding:2px 2px 2px 2px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u85072_text {
  5985. border-width:0px;
  5986. word-wrap:break-word;
  5987. text-transform:none;
  5988. visibility:hidden;
  5989. }
  5990. #u85073_img {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:8px;
  5996. height:14px;
  5997. }
  5998. #u85073 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:1103px;
  6002. top:630px;
  6003. width:8px;
  6004. height:14px;
  6005. display:flex;
  6006. font-family:'Microsoft YaHei', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:12px;
  6010. }
  6011. #u85073 .text {
  6012. position:absolute;
  6013. align-self:center;
  6014. padding:2px 2px 2px 2px;
  6015. box-sizing:border-box;
  6016. width:100%;
  6017. }
  6018. #u85073_text {
  6019. border-width:0px;
  6020. word-wrap:break-word;
  6021. text-transform:none;
  6022. visibility:hidden;
  6023. }
  6024. #u85074 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:0px;
  6030. height:0px;
  6031. }
  6032. #u85075_div {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:31px;
  6038. height:30px;
  6039. background:inherit;
  6040. background-color:rgba(255, 255, 255, 1);
  6041. box-sizing:border-box;
  6042. border-width:1px;
  6043. border-style:solid;
  6044. border-color:rgba(228, 228, 228, 1);
  6045. border-radius:4px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'Microsoft YaHei', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:12px;
  6053. }
  6054. #u85075 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:1325px;
  6058. top:622px;
  6059. width:31px;
  6060. height:30px;
  6061. display:flex;
  6062. font-family:'Microsoft YaHei', sans-serif;
  6063. font-weight:400;
  6064. font-style:normal;
  6065. font-size:12px;
  6066. }
  6067. #u85075 .text {
  6068. position:absolute;
  6069. align-self:center;
  6070. padding:2px 2px 2px 2px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u85075_text {
  6075. border-width:0px;
  6076. word-wrap:break-word;
  6077. text-transform:none;
  6078. visibility:hidden;
  6079. }
  6080. #u85076_img {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:8px;
  6086. height:14px;
  6087. }
  6088. #u85076 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:1338px;
  6092. top:630px;
  6093. width:8px;
  6094. height:14px;
  6095. display:flex;
  6096. font-family:'Microsoft YaHei', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:12px;
  6100. }
  6101. #u85076 .text {
  6102. position:absolute;
  6103. align-self:center;
  6104. padding:2px 2px 2px 2px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u85076_text {
  6109. border-width:0px;
  6110. word-wrap:break-word;
  6111. text-transform:none;
  6112. visibility:hidden;
  6113. }
  6114. #u85077 {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:0px;
  6120. height:0px;
  6121. }
  6122. #u85078_div {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:33px;
  6128. height:24px;
  6129. background:inherit;
  6130. background-color:rgba(255, 255, 255, 1);
  6131. border:none;
  6132. border-radius:0px;
  6133. -moz-box-shadow:none;
  6134. -webkit-box-shadow:none;
  6135. box-shadow:none;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:14px;
  6140. color:#BCBCBC;
  6141. text-align:left;
  6142. }
  6143. #u85078 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:1526px;
  6147. top:625px;
  6148. width:33px;
  6149. height:24px;
  6150. display:flex;
  6151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. font-size:14px;
  6155. color:#BCBCBC;
  6156. text-align:left;
  6157. }
  6158. #u85078 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 2px 2px 2px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u85078_text {
  6166. border-width:0px;
  6167. white-space:nowrap;
  6168. text-transform:none;
  6169. }
  6170. #u85079_div {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:40px;
  6176. height:30px;
  6177. background:inherit;
  6178. background-color:rgba(255, 255, 255, 1);
  6179. box-sizing:border-box;
  6180. border-width:1px;
  6181. border-style:solid;
  6182. border-color:rgba(228, 228, 228, 1);
  6183. border-radius:4px;
  6184. -moz-box-shadow:none;
  6185. -webkit-box-shadow:none;
  6186. box-shadow:none;
  6187. font-family:'Microsoft YaHei', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:14px;
  6191. }
  6192. #u85079 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:1561px;
  6196. top:622px;
  6197. width:40px;
  6198. height:30px;
  6199. display:flex;
  6200. font-family:'Microsoft YaHei', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:14px;
  6204. }
  6205. #u85079 .text {
  6206. position:absolute;
  6207. align-self:center;
  6208. padding:2px 2px 2px 2px;
  6209. box-sizing:border-box;
  6210. width:100%;
  6211. }
  6212. #u85079_text {
  6213. border-width:0px;
  6214. word-wrap:break-word;
  6215. text-transform:none;
  6216. visibility:hidden;
  6217. }
  6218. #u85080_div {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:19px;
  6224. height:24px;
  6225. background:inherit;
  6226. background-color:rgba(255, 255, 255, 1);
  6227. border:none;
  6228. border-radius:0px;
  6229. -moz-box-shadow:none;
  6230. -webkit-box-shadow:none;
  6231. box-shadow:none;
  6232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6233. font-weight:400;
  6234. font-style:normal;
  6235. font-size:14px;
  6236. color:#BCBCBC;
  6237. text-align:left;
  6238. }
  6239. #u85080 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:1603px;
  6243. top:626px;
  6244. width:19px;
  6245. height:24px;
  6246. display:flex;
  6247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:14px;
  6251. color:#BCBCBC;
  6252. text-align:left;
  6253. }
  6254. #u85080 .text {
  6255. position:absolute;
  6256. align-self:center;
  6257. padding:2px 2px 2px 2px;
  6258. box-sizing:border-box;
  6259. width:100%;
  6260. }
  6261. #u85080_text {
  6262. border-width:0px;
  6263. white-space:nowrap;
  6264. text-transform:none;
  6265. }
  6266. #u85081_input {
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:34px;
  6271. height:25px;
  6272. padding:2px 2px 2px 2px;
  6273. font-family:'Microsoft YaHei', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:13px;
  6277. letter-spacing:normal;
  6278. color:#000000;
  6279. vertical-align:none;
  6280. text-align:left;
  6281. text-transform:none;
  6282. background-color:transparent;
  6283. border-color:transparent;
  6284. }
  6285. #u85081_input.disabled {
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:34px;
  6290. height:25px;
  6291. padding:2px 2px 2px 2px;
  6292. font-family:'Microsoft YaHei', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:13px;
  6296. letter-spacing:normal;
  6297. color:#000000;
  6298. vertical-align:none;
  6299. text-align:left;
  6300. text-transform:none;
  6301. background-color:transparent;
  6302. border-color:transparent;
  6303. }
  6304. #u85081_div {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:34px;
  6310. height:25px;
  6311. background:inherit;
  6312. background-color:rgba(255, 255, 255, 1);
  6313. border:none;
  6314. border-radius:0px;
  6315. -moz-box-shadow:none;
  6316. -webkit-box-shadow:none;
  6317. box-shadow:none;
  6318. font-family:'Microsoft YaHei', sans-serif;
  6319. font-weight:400;
  6320. font-style:normal;
  6321. }
  6322. #u85081 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:1564px;
  6326. top:624px;
  6327. width:34px;
  6328. height:25px;
  6329. display:flex;
  6330. font-family:'Microsoft YaHei', sans-serif;
  6331. font-weight:400;
  6332. font-style:normal;
  6333. }
  6334. #u85081 .text {
  6335. position:absolute;
  6336. align-self:center;
  6337. padding:2px 2px 2px 2px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u85081_div.disabled {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:34px;
  6347. height:25px;
  6348. background:inherit;
  6349. background-color:rgba(240, 240, 240, 1);
  6350. border:none;
  6351. border-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'Microsoft YaHei', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. }
  6359. #u85081.disabled {
  6360. }
  6361. #u85082 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:0px;
  6367. height:0px;
  6368. }
  6369. #u85083_div {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:140px;
  6375. height:28px;
  6376. background:inherit;
  6377. background-color:rgba(255, 255, 255, 1);
  6378. box-sizing:border-box;
  6379. border-width:1px;
  6380. border-style:solid;
  6381. border-color:rgba(201, 201, 201, 1);
  6382. border-radius:4px;
  6383. -moz-box-shadow:none;
  6384. -webkit-box-shadow:none;
  6385. box-shadow:none;
  6386. font-family:'Microsoft YaHei', sans-serif;
  6387. font-weight:400;
  6388. font-style:normal;
  6389. font-size:14px;
  6390. color:#CCCCCC;
  6391. text-align:left;
  6392. }
  6393. #u85083 {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:651px;
  6397. top:121px;
  6398. width:140px;
  6399. height:28px;
  6400. display:flex;
  6401. font-family:'Microsoft YaHei', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:14px;
  6405. color:#CCCCCC;
  6406. text-align:left;
  6407. }
  6408. #u85083 .text {
  6409. position:absolute;
  6410. align-self:center;
  6411. padding:2px 8px 2px 8px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u85083_text {
  6416. border-width:0px;
  6417. word-wrap:break-word;
  6418. text-transform:none;
  6419. visibility:hidden;
  6420. }
  6421. #u85084_input {
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:114px;
  6426. height:26px;
  6427. padding:2px 2px 2px 2px;
  6428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:14px;
  6432. letter-spacing:normal;
  6433. color:#000000;
  6434. vertical-align:none;
  6435. text-align:left;
  6436. text-transform:none;
  6437. background-color:transparent;
  6438. border-color:transparent;
  6439. }
  6440. #u85084_input.disabled {
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:114px;
  6445. height:26px;
  6446. padding:2px 2px 2px 2px;
  6447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6448. font-weight:400;
  6449. font-style:normal;
  6450. font-size:14px;
  6451. letter-spacing:normal;
  6452. color:#000000;
  6453. vertical-align:none;
  6454. text-align:left;
  6455. text-transform:none;
  6456. background-color:transparent;
  6457. border-color:transparent;
  6458. }
  6459. #u85084_div {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:0px;
  6463. top:0px;
  6464. width:114px;
  6465. height:26px;
  6466. background:inherit;
  6467. background-color:rgba(255, 255, 255, 1);
  6468. border:none;
  6469. border-radius:0px;
  6470. -moz-box-shadow:none;
  6471. -webkit-box-shadow:none;
  6472. box-shadow:none;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:14px;
  6477. }
  6478. #u85084 {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:657px;
  6482. top:122px;
  6483. width:114px;
  6484. height:26px;
  6485. display:flex;
  6486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6487. font-weight:400;
  6488. font-style:normal;
  6489. font-size:14px;
  6490. }
  6491. #u85084 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:2px 2px 2px 2px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u85084_div.disabled {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:0px;
  6502. top:0px;
  6503. width:114px;
  6504. height:26px;
  6505. background:inherit;
  6506. background-color:rgba(240, 240, 240, 1);
  6507. border:none;
  6508. border-radius:0px;
  6509. -moz-box-shadow:none;
  6510. -webkit-box-shadow:none;
  6511. box-shadow:none;
  6512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6513. font-weight:400;
  6514. font-style:normal;
  6515. font-size:14px;
  6516. }
  6517. #u85084.disabled {
  6518. }
  6519. #u85085_img {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:0px;
  6523. top:0px;
  6524. width:13px;
  6525. height:15px;
  6526. }
  6527. #u85085 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:771px;
  6531. top:128px;
  6532. width:13px;
  6533. height:15px;
  6534. display:flex;
  6535. }
  6536. #u85085 .text {
  6537. position:absolute;
  6538. align-self:center;
  6539. padding:2px 2px 2px 2px;
  6540. box-sizing:border-box;
  6541. width:100%;
  6542. }
  6543. #u85085_text {
  6544. border-width:0px;
  6545. word-wrap:break-word;
  6546. text-transform:none;
  6547. visibility:hidden;
  6548. }
  6549. #u85086 {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:0px;
  6555. height:0px;
  6556. }
  6557. #u85087_div {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:140px;
  6563. height:30px;
  6564. background:inherit;
  6565. background-color:rgba(255, 255, 255, 1);
  6566. box-sizing:border-box;
  6567. border-width:1px;
  6568. border-style:solid;
  6569. border-color:rgba(201, 201, 201, 1);
  6570. border-radius:4px;
  6571. -moz-box-shadow:none;
  6572. -webkit-box-shadow:none;
  6573. box-shadow:none;
  6574. font-family:'Microsoft YaHei', sans-serif;
  6575. font-weight:400;
  6576. font-style:normal;
  6577. font-size:14px;
  6578. color:#CCCCCC;
  6579. text-align:left;
  6580. }
  6581. #u85087 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:501px;
  6585. top:120px;
  6586. width:140px;
  6587. height:30px;
  6588. display:flex;
  6589. font-family:'Microsoft YaHei', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:14px;
  6593. color:#CCCCCC;
  6594. text-align:left;
  6595. }
  6596. #u85087 .text {
  6597. position:absolute;
  6598. align-self:center;
  6599. padding:2px 8px 2px 8px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u85087_text {
  6604. border-width:0px;
  6605. word-wrap:break-word;
  6606. text-transform:none;
  6607. visibility:hidden;
  6608. }
  6609. #u85088_input {
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:127px;
  6614. height:25px;
  6615. padding:2px 2px 2px 2px;
  6616. font-family:'Microsoft YaHei', sans-serif;
  6617. font-weight:400;
  6618. font-style:normal;
  6619. font-size:10px;
  6620. letter-spacing:normal;
  6621. color:#000000;
  6622. vertical-align:none;
  6623. text-align:left;
  6624. text-transform:none;
  6625. background-color:transparent;
  6626. border-color:transparent;
  6627. }
  6628. #u85088_input.disabled {
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:127px;
  6633. height:25px;
  6634. padding:2px 2px 2px 2px;
  6635. font-family:'Microsoft YaHei', sans-serif;
  6636. font-weight:400;
  6637. font-style:normal;
  6638. font-size:10px;
  6639. letter-spacing:normal;
  6640. color:#000000;
  6641. vertical-align:none;
  6642. text-align:left;
  6643. text-transform:none;
  6644. background-color:transparent;
  6645. border-color:transparent;
  6646. }
  6647. #u85088_div {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:127px;
  6653. height:25px;
  6654. background:inherit;
  6655. background-color:rgba(255, 255, 255, 1);
  6656. border:none;
  6657. border-radius:0px;
  6658. -moz-box-shadow:none;
  6659. -webkit-box-shadow:none;
  6660. box-shadow:none;
  6661. font-family:'Microsoft YaHei', sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:10px;
  6665. }
  6666. #u85088 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:509px;
  6670. top:121px;
  6671. width:127px;
  6672. height:25px;
  6673. display:flex;
  6674. font-family:'Microsoft YaHei', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:10px;
  6678. }
  6679. #u85088 .text {
  6680. position:absolute;
  6681. align-self:center;
  6682. padding:2px 2px 2px 2px;
  6683. box-sizing:border-box;
  6684. width:100%;
  6685. }
  6686. #u85088_div.disabled {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:127px;
  6692. height:25px;
  6693. background:inherit;
  6694. background-color:rgba(240, 240, 240, 1);
  6695. border:none;
  6696. border-radius:0px;
  6697. -moz-box-shadow:none;
  6698. -webkit-box-shadow:none;
  6699. box-shadow:none;
  6700. font-family:'Microsoft YaHei', sans-serif;
  6701. font-weight:400;
  6702. font-style:normal;
  6703. font-size:10px;
  6704. }
  6705. #u85088.disabled {
  6706. }
  6707. #u85089 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:0px;
  6713. height:0px;
  6714. }
  6715. #u85090_div {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:140px;
  6721. height:30px;
  6722. background:inherit;
  6723. background-color:rgba(255, 255, 255, 1);
  6724. box-sizing:border-box;
  6725. border-width:1px;
  6726. border-style:solid;
  6727. border-color:rgba(215, 215, 215, 1);
  6728. border-radius:4px;
  6729. -moz-box-shadow:none;
  6730. -webkit-box-shadow:none;
  6731. box-shadow:none;
  6732. font-size:11px;
  6733. }
  6734. #u85090 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:351px;
  6738. top:121px;
  6739. width:140px;
  6740. height:30px;
  6741. display:flex;
  6742. font-size:11px;
  6743. }
  6744. #u85090 .text {
  6745. position:absolute;
  6746. align-self:center;
  6747. padding:2px 2px 2px 2px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u85090_text {
  6752. border-width:0px;
  6753. word-wrap:break-word;
  6754. text-transform:none;
  6755. visibility:hidden;
  6756. }
  6757. #u85091_input {
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:126px;
  6762. height:23px;
  6763. padding:2px 2px 2px 2px;
  6764. font-family:'ArialMT', 'Arial', sans-serif;
  6765. font-weight:400;
  6766. font-style:normal;
  6767. font-size:11px;
  6768. letter-spacing:normal;
  6769. color:#AAAAAA;
  6770. vertical-align:none;
  6771. text-align:left;
  6772. text-transform:none;
  6773. background-color:transparent;
  6774. border-color:transparent;
  6775. }
  6776. #u85091_input.disabled {
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:126px;
  6781. height:23px;
  6782. padding:2px 2px 2px 2px;
  6783. font-family:'ArialMT', 'Arial', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:11px;
  6787. letter-spacing:normal;
  6788. color:#AAAAAA;
  6789. vertical-align:none;
  6790. text-align:left;
  6791. text-transform:none;
  6792. background-color:transparent;
  6793. border-color:transparent;
  6794. }
  6795. #u85091_div {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:126px;
  6801. height:23px;
  6802. background:inherit;
  6803. background-color:rgba(255, 255, 255, 1);
  6804. border:none;
  6805. border-radius:0px;
  6806. -moz-box-shadow:none;
  6807. -webkit-box-shadow:none;
  6808. box-shadow:none;
  6809. font-size:11px;
  6810. color:#AAAAAA;
  6811. }
  6812. #u85091 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:358px;
  6816. top:123px;
  6817. width:126px;
  6818. height:23px;
  6819. display:flex;
  6820. font-size:11px;
  6821. color:#AAAAAA;
  6822. }
  6823. #u85091 .text {
  6824. position:absolute;
  6825. align-self:flex-start;
  6826. padding:2px 2px 2px 2px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u85091_div.disabled {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:126px;
  6836. height:23px;
  6837. background:inherit;
  6838. background-color:rgba(240, 240, 240, 1);
  6839. border:none;
  6840. border-radius:0px;
  6841. -moz-box-shadow:none;
  6842. -webkit-box-shadow:none;
  6843. box-shadow:none;
  6844. font-size:11px;
  6845. color:#AAAAAA;
  6846. }
  6847. #u85091.disabled {
  6848. }
  6849. .u85091_input_option {
  6850. font-size:11px;
  6851. }
  6852. #u85092 {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:0px;
  6858. height:0px;
  6859. }
  6860. #u85093_div {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:0px;
  6864. top:0px;
  6865. width:140px;
  6866. height:30px;
  6867. background:inherit;
  6868. background-color:rgba(255, 255, 255, 1);
  6869. box-sizing:border-box;
  6870. border-width:1px;
  6871. border-style:solid;
  6872. border-color:rgba(201, 201, 201, 1);
  6873. border-radius:4px;
  6874. -moz-box-shadow:none;
  6875. -webkit-box-shadow:none;
  6876. box-shadow:none;
  6877. font-family:'Microsoft YaHei', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:14px;
  6881. color:#CCCCCC;
  6882. text-align:left;
  6883. }
  6884. #u85093 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:801px;
  6888. top:120px;
  6889. width:140px;
  6890. height:30px;
  6891. display:flex;
  6892. font-family:'Microsoft YaHei', sans-serif;
  6893. font-weight:400;
  6894. font-style:normal;
  6895. font-size:14px;
  6896. color:#CCCCCC;
  6897. text-align:left;
  6898. }
  6899. #u85093 .text {
  6900. position:absolute;
  6901. align-self:center;
  6902. padding:2px 8px 2px 8px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u85093_text {
  6907. border-width:0px;
  6908. word-wrap:break-word;
  6909. text-transform:none;
  6910. visibility:hidden;
  6911. }
  6912. #u85094_input {
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:127px;
  6917. height:25px;
  6918. padding:2px 2px 2px 2px;
  6919. font-family:'Microsoft YaHei', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:10px;
  6923. letter-spacing:normal;
  6924. color:#000000;
  6925. vertical-align:none;
  6926. text-align:left;
  6927. text-transform:none;
  6928. background-color:transparent;
  6929. border-color:transparent;
  6930. }
  6931. #u85094_input.disabled {
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:127px;
  6936. height:25px;
  6937. padding:2px 2px 2px 2px;
  6938. font-family:'Microsoft YaHei', sans-serif;
  6939. font-weight:400;
  6940. font-style:normal;
  6941. font-size:10px;
  6942. letter-spacing:normal;
  6943. color:#000000;
  6944. vertical-align:none;
  6945. text-align:left;
  6946. text-transform:none;
  6947. background-color:transparent;
  6948. border-color:transparent;
  6949. }
  6950. #u85094_div {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:0px;
  6954. top:0px;
  6955. width:127px;
  6956. height:25px;
  6957. background:inherit;
  6958. background-color:rgba(255, 255, 255, 1);
  6959. border:none;
  6960. border-radius:0px;
  6961. -moz-box-shadow:none;
  6962. -webkit-box-shadow:none;
  6963. box-shadow:none;
  6964. font-family:'Microsoft YaHei', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:10px;
  6968. }
  6969. #u85094 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:809px;
  6973. top:121px;
  6974. width:127px;
  6975. height:25px;
  6976. display:flex;
  6977. font-family:'Microsoft YaHei', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:10px;
  6981. }
  6982. #u85094 .text {
  6983. position:absolute;
  6984. align-self:center;
  6985. padding:2px 2px 2px 2px;
  6986. box-sizing:border-box;
  6987. width:100%;
  6988. }
  6989. #u85094_div.disabled {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:127px;
  6995. height:25px;
  6996. background:inherit;
  6997. background-color:rgba(240, 240, 240, 1);
  6998. border:none;
  6999. border-radius:0px;
  7000. -moz-box-shadow:none;
  7001. -webkit-box-shadow:none;
  7002. box-shadow:none;
  7003. font-family:'Microsoft YaHei', sans-serif;
  7004. font-weight:400;
  7005. font-style:normal;
  7006. font-size:10px;
  7007. }
  7008. #u85094.disabled {
  7009. }
  7010. #u85095 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:0px;
  7014. top:0px;
  7015. width:0px;
  7016. height:0px;
  7017. }
  7018. #u85096_div {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:0px;
  7022. top:0px;
  7023. width:140px;
  7024. height:30px;
  7025. background:inherit;
  7026. background-color:rgba(255, 255, 255, 1);
  7027. box-sizing:border-box;
  7028. border-width:1px;
  7029. border-style:solid;
  7030. border-color:rgba(201, 201, 201, 1);
  7031. border-radius:4px;
  7032. -moz-box-shadow:none;
  7033. -webkit-box-shadow:none;
  7034. box-shadow:none;
  7035. font-family:'Microsoft YaHei', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:14px;
  7039. color:#CCCCCC;
  7040. text-align:left;
  7041. }
  7042. #u85096 {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:501px;
  7046. top:160px;
  7047. width:140px;
  7048. height:30px;
  7049. display:flex;
  7050. font-family:'Microsoft YaHei', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:14px;
  7054. color:#CCCCCC;
  7055. text-align:left;
  7056. }
  7057. #u85096 .text {
  7058. position:absolute;
  7059. align-self:center;
  7060. padding:2px 8px 2px 8px;
  7061. box-sizing:border-box;
  7062. width:100%;
  7063. }
  7064. #u85096_text {
  7065. border-width:0px;
  7066. word-wrap:break-word;
  7067. text-transform:none;
  7068. visibility:hidden;
  7069. }
  7070. #u85097_input {
  7071. position:absolute;
  7072. left:0px;
  7073. top:0px;
  7074. width:127px;
  7075. height:25px;
  7076. padding:2px 2px 2px 2px;
  7077. font-family:'Microsoft YaHei', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:10px;
  7081. letter-spacing:normal;
  7082. color:#000000;
  7083. vertical-align:none;
  7084. text-align:left;
  7085. text-transform:none;
  7086. background-color:transparent;
  7087. border-color:transparent;
  7088. }
  7089. #u85097_input.disabled {
  7090. position:absolute;
  7091. left:0px;
  7092. top:0px;
  7093. width:127px;
  7094. height:25px;
  7095. padding:2px 2px 2px 2px;
  7096. font-family:'Microsoft YaHei', sans-serif;
  7097. font-weight:400;
  7098. font-style:normal;
  7099. font-size:10px;
  7100. letter-spacing:normal;
  7101. color:#000000;
  7102. vertical-align:none;
  7103. text-align:left;
  7104. text-transform:none;
  7105. background-color:transparent;
  7106. border-color:transparent;
  7107. }
  7108. #u85097_div {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:0px;
  7112. top:0px;
  7113. width:127px;
  7114. height:25px;
  7115. background:inherit;
  7116. background-color:rgba(255, 255, 255, 1);
  7117. border:none;
  7118. border-radius:0px;
  7119. -moz-box-shadow:none;
  7120. -webkit-box-shadow:none;
  7121. box-shadow:none;
  7122. font-family:'Microsoft YaHei', sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:10px;
  7126. }
  7127. #u85097 {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:509px;
  7131. top:161px;
  7132. width:127px;
  7133. height:25px;
  7134. display:flex;
  7135. font-family:'Microsoft YaHei', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:10px;
  7139. }
  7140. #u85097 .text {
  7141. position:absolute;
  7142. align-self:center;
  7143. padding:2px 2px 2px 2px;
  7144. box-sizing:border-box;
  7145. width:100%;
  7146. }
  7147. #u85097_div.disabled {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:0px;
  7152. width:127px;
  7153. height:25px;
  7154. background:inherit;
  7155. background-color:rgba(240, 240, 240, 1);
  7156. border:none;
  7157. border-radius:0px;
  7158. -moz-box-shadow:none;
  7159. -webkit-box-shadow:none;
  7160. box-shadow:none;
  7161. font-family:'Microsoft YaHei', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:10px;
  7165. }
  7166. #u85097.disabled {
  7167. }
  7168. #u85098 {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:0px;
  7174. height:0px;
  7175. }
  7176. #u85099_div {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:140px;
  7182. height:30px;
  7183. background:inherit;
  7184. background-color:rgba(255, 255, 255, 1);
  7185. box-sizing:border-box;
  7186. border-width:1px;
  7187. border-style:solid;
  7188. border-color:rgba(201, 201, 201, 1);
  7189. border-radius:4px;
  7190. -moz-box-shadow:none;
  7191. -webkit-box-shadow:none;
  7192. box-shadow:none;
  7193. font-family:'Microsoft YaHei', sans-serif;
  7194. font-weight:400;
  7195. font-style:normal;
  7196. font-size:14px;
  7197. color:#CCCCCC;
  7198. text-align:left;
  7199. }
  7200. #u85099 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:651px;
  7204. top:161px;
  7205. width:140px;
  7206. height:30px;
  7207. display:flex;
  7208. font-family:'Microsoft YaHei', sans-serif;
  7209. font-weight:400;
  7210. font-style:normal;
  7211. font-size:14px;
  7212. color:#CCCCCC;
  7213. text-align:left;
  7214. }
  7215. #u85099 .text {
  7216. position:absolute;
  7217. align-self:center;
  7218. padding:2px 8px 2px 8px;
  7219. box-sizing:border-box;
  7220. width:100%;
  7221. }
  7222. #u85099_text {
  7223. border-width:0px;
  7224. word-wrap:break-word;
  7225. text-transform:none;
  7226. visibility:hidden;
  7227. }
  7228. #u85100_input {
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:127px;
  7233. height:25px;
  7234. padding:2px 2px 2px 2px;
  7235. font-family:'Microsoft YaHei', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:10px;
  7239. letter-spacing:normal;
  7240. color:#000000;
  7241. vertical-align:none;
  7242. text-align:left;
  7243. text-transform:none;
  7244. background-color:transparent;
  7245. border-color:transparent;
  7246. }
  7247. #u85100_input.disabled {
  7248. position:absolute;
  7249. left:0px;
  7250. top:0px;
  7251. width:127px;
  7252. height:25px;
  7253. padding:2px 2px 2px 2px;
  7254. font-family:'Microsoft YaHei', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:10px;
  7258. letter-spacing:normal;
  7259. color:#000000;
  7260. vertical-align:none;
  7261. text-align:left;
  7262. text-transform:none;
  7263. background-color:transparent;
  7264. border-color:transparent;
  7265. }
  7266. #u85100_div {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:127px;
  7272. height:25px;
  7273. background:inherit;
  7274. background-color:rgba(255, 255, 255, 1);
  7275. border:none;
  7276. border-radius:0px;
  7277. -moz-box-shadow:none;
  7278. -webkit-box-shadow:none;
  7279. box-shadow:none;
  7280. font-family:'Microsoft YaHei', sans-serif;
  7281. font-weight:400;
  7282. font-style:normal;
  7283. font-size:10px;
  7284. }
  7285. #u85100 {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:659px;
  7289. top:162px;
  7290. width:127px;
  7291. height:25px;
  7292. display:flex;
  7293. font-family:'Microsoft YaHei', sans-serif;
  7294. font-weight:400;
  7295. font-style:normal;
  7296. font-size:10px;
  7297. }
  7298. #u85100 .text {
  7299. position:absolute;
  7300. align-self:center;
  7301. padding:2px 2px 2px 2px;
  7302. box-sizing:border-box;
  7303. width:100%;
  7304. }
  7305. #u85100_div.disabled {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:0px;
  7309. top:0px;
  7310. width:127px;
  7311. height:25px;
  7312. background:inherit;
  7313. background-color:rgba(240, 240, 240, 1);
  7314. border:none;
  7315. border-radius:0px;
  7316. -moz-box-shadow:none;
  7317. -webkit-box-shadow:none;
  7318. box-shadow:none;
  7319. font-family:'Microsoft YaHei', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:10px;
  7323. }
  7324. #u85100.disabled {
  7325. }
  7326. #u85101 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:0px;
  7332. height:0px;
  7333. }
  7334. #u85102_div {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:140px;
  7340. height:30px;
  7341. background:inherit;
  7342. background-color:rgba(255, 255, 255, 1);
  7343. box-sizing:border-box;
  7344. border-width:1px;
  7345. border-style:solid;
  7346. border-color:rgba(215, 215, 215, 1);
  7347. border-radius:4px;
  7348. -moz-box-shadow:none;
  7349. -webkit-box-shadow:none;
  7350. box-shadow:none;
  7351. font-size:11px;
  7352. }
  7353. #u85102 {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:801px;
  7357. top:160px;
  7358. width:140px;
  7359. height:30px;
  7360. display:flex;
  7361. font-size:11px;
  7362. }
  7363. #u85102 .text {
  7364. position:absolute;
  7365. align-self:center;
  7366. padding:2px 2px 2px 2px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u85102_text {
  7371. border-width:0px;
  7372. word-wrap:break-word;
  7373. text-transform:none;
  7374. visibility:hidden;
  7375. }
  7376. #u85103_input {
  7377. position:absolute;
  7378. left:0px;
  7379. top:0px;
  7380. width:126px;
  7381. height:23px;
  7382. padding:2px 2px 2px 2px;
  7383. font-family:'ArialMT', 'Arial', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:11px;
  7387. letter-spacing:normal;
  7388. color:#AAAAAA;
  7389. vertical-align:none;
  7390. text-align:left;
  7391. text-transform:none;
  7392. background-color:transparent;
  7393. border-color:transparent;
  7394. }
  7395. #u85103_input.disabled {
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:126px;
  7400. height:23px;
  7401. padding:2px 2px 2px 2px;
  7402. font-family:'ArialMT', 'Arial', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:11px;
  7406. letter-spacing:normal;
  7407. color:#AAAAAA;
  7408. vertical-align:none;
  7409. text-align:left;
  7410. text-transform:none;
  7411. background-color:transparent;
  7412. border-color:transparent;
  7413. }
  7414. #u85103_div {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:126px;
  7420. height:23px;
  7421. background:inherit;
  7422. background-color:rgba(255, 255, 255, 1);
  7423. border:none;
  7424. border-radius:0px;
  7425. -moz-box-shadow:none;
  7426. -webkit-box-shadow:none;
  7427. box-shadow:none;
  7428. font-size:11px;
  7429. color:#AAAAAA;
  7430. }
  7431. #u85103 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:808px;
  7435. top:162px;
  7436. width:126px;
  7437. height:23px;
  7438. display:flex;
  7439. font-size:11px;
  7440. color:#AAAAAA;
  7441. }
  7442. #u85103 .text {
  7443. position:absolute;
  7444. align-self:flex-start;
  7445. padding:2px 2px 2px 2px;
  7446. box-sizing:border-box;
  7447. width:100%;
  7448. }
  7449. #u85103_div.disabled {
  7450. border-width:0px;
  7451. position:absolute;
  7452. left:0px;
  7453. top:0px;
  7454. width:126px;
  7455. height:23px;
  7456. background:inherit;
  7457. background-color:rgba(240, 240, 240, 1);
  7458. border:none;
  7459. border-radius:0px;
  7460. -moz-box-shadow:none;
  7461. -webkit-box-shadow:none;
  7462. box-shadow:none;
  7463. font-size:11px;
  7464. color:#AAAAAA;
  7465. }
  7466. #u85103.disabled {
  7467. }
  7468. .u85103_input_option {
  7469. font-size:11px;
  7470. }
  7471. #u85104 {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:0px;
  7477. height:0px;
  7478. }
  7479. #u85105_div {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:0px;
  7483. top:0px;
  7484. width:140px;
  7485. height:30px;
  7486. background:inherit;
  7487. background-color:rgba(255, 255, 255, 1);
  7488. box-sizing:border-box;
  7489. border-width:1px;
  7490. border-style:solid;
  7491. border-color:rgba(215, 215, 215, 1);
  7492. border-radius:4px;
  7493. -moz-box-shadow:none;
  7494. -webkit-box-shadow:none;
  7495. box-shadow:none;
  7496. font-size:11px;
  7497. }
  7498. #u85105 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:351px;
  7502. top:201px;
  7503. width:140px;
  7504. height:30px;
  7505. display:flex;
  7506. font-size:11px;
  7507. }
  7508. #u85105 .text {
  7509. position:absolute;
  7510. align-self:center;
  7511. padding:2px 2px 2px 2px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u85105_text {
  7516. border-width:0px;
  7517. word-wrap:break-word;
  7518. text-transform:none;
  7519. visibility:hidden;
  7520. }
  7521. #u85106_input {
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:126px;
  7526. height:23px;
  7527. padding:2px 2px 2px 2px;
  7528. font-family:'ArialMT', 'Arial', sans-serif;
  7529. font-weight:400;
  7530. font-style:normal;
  7531. font-size:11px;
  7532. letter-spacing:normal;
  7533. color:#AAAAAA;
  7534. vertical-align:none;
  7535. text-align:left;
  7536. text-transform:none;
  7537. background-color:transparent;
  7538. border-color:transparent;
  7539. }
  7540. #u85106_input.disabled {
  7541. position:absolute;
  7542. left:0px;
  7543. top:0px;
  7544. width:126px;
  7545. height:23px;
  7546. padding:2px 2px 2px 2px;
  7547. font-family:'ArialMT', 'Arial', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:11px;
  7551. letter-spacing:normal;
  7552. color:#AAAAAA;
  7553. vertical-align:none;
  7554. text-align:left;
  7555. text-transform:none;
  7556. background-color:transparent;
  7557. border-color:transparent;
  7558. }
  7559. #u85106_div {
  7560. border-width:0px;
  7561. position:absolute;
  7562. left:0px;
  7563. top:0px;
  7564. width:126px;
  7565. height:23px;
  7566. background:inherit;
  7567. background-color:rgba(255, 255, 255, 1);
  7568. border:none;
  7569. border-radius:0px;
  7570. -moz-box-shadow:none;
  7571. -webkit-box-shadow:none;
  7572. box-shadow:none;
  7573. font-size:11px;
  7574. color:#AAAAAA;
  7575. }
  7576. #u85106 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:358px;
  7580. top:203px;
  7581. width:126px;
  7582. height:23px;
  7583. display:flex;
  7584. font-size:11px;
  7585. color:#AAAAAA;
  7586. }
  7587. #u85106 .text {
  7588. position:absolute;
  7589. align-self:flex-start;
  7590. padding:2px 2px 2px 2px;
  7591. box-sizing:border-box;
  7592. width:100%;
  7593. }
  7594. #u85106_div.disabled {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:0px;
  7598. top:0px;
  7599. width:126px;
  7600. height:23px;
  7601. background:inherit;
  7602. background-color:rgba(240, 240, 240, 1);
  7603. border:none;
  7604. border-radius:0px;
  7605. -moz-box-shadow:none;
  7606. -webkit-box-shadow:none;
  7607. box-shadow:none;
  7608. font-size:11px;
  7609. color:#AAAAAA;
  7610. }
  7611. #u85106.disabled {
  7612. }
  7613. .u85106_input_option {
  7614. font-size:11px;
  7615. }
  7616. #u85107 {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:0px;
  7622. height:0px;
  7623. }
  7624. #u85108_div {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:140px;
  7630. height:30px;
  7631. background:inherit;
  7632. background-color:rgba(255, 255, 255, 1);
  7633. box-sizing:border-box;
  7634. border-width:1px;
  7635. border-style:solid;
  7636. border-color:rgba(215, 215, 215, 1);
  7637. border-radius:4px;
  7638. -moz-box-shadow:none;
  7639. -webkit-box-shadow:none;
  7640. box-shadow:none;
  7641. font-size:11px;
  7642. }
  7643. #u85108 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:1251px;
  7647. top:121px;
  7648. width:140px;
  7649. height:30px;
  7650. display:flex;
  7651. font-size:11px;
  7652. }
  7653. #u85108 .text {
  7654. position:absolute;
  7655. align-self:center;
  7656. padding:2px 2px 2px 2px;
  7657. box-sizing:border-box;
  7658. width:100%;
  7659. }
  7660. #u85108_text {
  7661. border-width:0px;
  7662. word-wrap:break-word;
  7663. text-transform:none;
  7664. visibility:hidden;
  7665. }
  7666. #u85109_input {
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:126px;
  7671. height:23px;
  7672. padding:2px 2px 2px 2px;
  7673. font-family:'ArialMT', 'Arial', sans-serif;
  7674. font-weight:400;
  7675. font-style:normal;
  7676. font-size:11px;
  7677. letter-spacing:normal;
  7678. color:#AAAAAA;
  7679. vertical-align:none;
  7680. text-align:left;
  7681. text-transform:none;
  7682. background-color:transparent;
  7683. border-color:transparent;
  7684. }
  7685. #u85109_input.disabled {
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:126px;
  7690. height:23px;
  7691. padding:2px 2px 2px 2px;
  7692. font-family:'ArialMT', 'Arial', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:11px;
  7696. letter-spacing:normal;
  7697. color:#AAAAAA;
  7698. vertical-align:none;
  7699. text-align:left;
  7700. text-transform:none;
  7701. background-color:transparent;
  7702. border-color:transparent;
  7703. }
  7704. #u85109_div {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:126px;
  7710. height:23px;
  7711. background:inherit;
  7712. background-color:rgba(255, 255, 255, 1);
  7713. border:none;
  7714. border-radius:0px;
  7715. -moz-box-shadow:none;
  7716. -webkit-box-shadow:none;
  7717. box-shadow:none;
  7718. font-size:11px;
  7719. color:#AAAAAA;
  7720. }
  7721. #u85109 {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:1258px;
  7725. top:123px;
  7726. width:126px;
  7727. height:23px;
  7728. display:flex;
  7729. font-size:11px;
  7730. color:#AAAAAA;
  7731. }
  7732. #u85109 .text {
  7733. position:absolute;
  7734. align-self:flex-start;
  7735. padding:2px 2px 2px 2px;
  7736. box-sizing:border-box;
  7737. width:100%;
  7738. }
  7739. #u85109_div.disabled {
  7740. border-width:0px;
  7741. position:absolute;
  7742. left:0px;
  7743. top:0px;
  7744. width:126px;
  7745. height:23px;
  7746. background:inherit;
  7747. background-color:rgba(240, 240, 240, 1);
  7748. border:none;
  7749. border-radius:0px;
  7750. -moz-box-shadow:none;
  7751. -webkit-box-shadow:none;
  7752. box-shadow:none;
  7753. font-size:11px;
  7754. color:#AAAAAA;
  7755. }
  7756. #u85109.disabled {
  7757. }
  7758. .u85109_input_option {
  7759. font-size:11px;
  7760. }
  7761. #u85110 {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:0px;
  7765. top:0px;
  7766. width:0px;
  7767. height:0px;
  7768. }
  7769. #u85111_div {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:140px;
  7775. height:30px;
  7776. background:inherit;
  7777. background-color:rgba(255, 255, 255, 1);
  7778. box-sizing:border-box;
  7779. border-width:1px;
  7780. border-style:solid;
  7781. border-color:rgba(215, 215, 215, 1);
  7782. border-radius:4px;
  7783. -moz-box-shadow:none;
  7784. -webkit-box-shadow:none;
  7785. box-shadow:none;
  7786. font-size:11px;
  7787. }
  7788. #u85111 {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:1401px;
  7792. top:121px;
  7793. width:140px;
  7794. height:30px;
  7795. display:flex;
  7796. font-size:11px;
  7797. }
  7798. #u85111 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:2px 2px 2px 2px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u85111_text {
  7806. border-width:0px;
  7807. word-wrap:break-word;
  7808. text-transform:none;
  7809. visibility:hidden;
  7810. }
  7811. #u85112_input {
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:126px;
  7816. height:23px;
  7817. padding:2px 2px 2px 2px;
  7818. font-family:'ArialMT', 'Arial', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:11px;
  7822. letter-spacing:normal;
  7823. color:#AAAAAA;
  7824. vertical-align:none;
  7825. text-align:left;
  7826. text-transform:none;
  7827. background-color:transparent;
  7828. border-color:transparent;
  7829. }
  7830. #u85112_input.disabled {
  7831. position:absolute;
  7832. left:0px;
  7833. top:0px;
  7834. width:126px;
  7835. height:23px;
  7836. padding:2px 2px 2px 2px;
  7837. font-family:'ArialMT', 'Arial', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:11px;
  7841. letter-spacing:normal;
  7842. color:#AAAAAA;
  7843. vertical-align:none;
  7844. text-align:left;
  7845. text-transform:none;
  7846. background-color:transparent;
  7847. border-color:transparent;
  7848. }
  7849. #u85112_div {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:126px;
  7855. height:23px;
  7856. background:inherit;
  7857. background-color:rgba(255, 255, 255, 1);
  7858. border:none;
  7859. border-radius:0px;
  7860. -moz-box-shadow:none;
  7861. -webkit-box-shadow:none;
  7862. box-shadow:none;
  7863. font-size:11px;
  7864. color:#AAAAAA;
  7865. }
  7866. #u85112 {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:1408px;
  7870. top:123px;
  7871. width:126px;
  7872. height:23px;
  7873. display:flex;
  7874. font-size:11px;
  7875. color:#AAAAAA;
  7876. }
  7877. #u85112 .text {
  7878. position:absolute;
  7879. align-self:flex-start;
  7880. padding:2px 2px 2px 2px;
  7881. box-sizing:border-box;
  7882. width:100%;
  7883. }
  7884. #u85112_div.disabled {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:0px;
  7888. top:0px;
  7889. width:126px;
  7890. height:23px;
  7891. background:inherit;
  7892. background-color:rgba(240, 240, 240, 1);
  7893. border:none;
  7894. border-radius:0px;
  7895. -moz-box-shadow:none;
  7896. -webkit-box-shadow:none;
  7897. box-shadow:none;
  7898. font-size:11px;
  7899. color:#AAAAAA;
  7900. }
  7901. #u85112.disabled {
  7902. }
  7903. .u85112_input_option {
  7904. font-size:11px;
  7905. }
  7906. #u85113_div {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:55px;
  7912. height:30px;
  7913. background:inherit;
  7914. background-color:rgba(255, 255, 255, 1);
  7915. box-sizing:border-box;
  7916. border-width:1px;
  7917. border-style:solid;
  7918. border-color:rgba(170, 170, 170, 1);
  7919. border-radius:4px;
  7920. -moz-box-shadow:none;
  7921. -webkit-box-shadow:none;
  7922. box-shadow:none;
  7923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7924. font-weight:400;
  7925. font-style:normal;
  7926. font-size:12px;
  7927. color:#555555;
  7928. }
  7929. #u85113 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:464px;
  7933. top:251px;
  7934. width:55px;
  7935. height:30px;
  7936. display:flex;
  7937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:12px;
  7941. color:#555555;
  7942. }
  7943. #u85113 .text {
  7944. position:absolute;
  7945. align-self:center;
  7946. padding:5px 15px 5px 15px;
  7947. box-sizing:border-box;
  7948. width:100%;
  7949. }
  7950. #u85113_text {
  7951. border-width:0px;
  7952. white-space:nowrap;
  7953. text-transform:none;
  7954. }
  7955. #u85114 {
  7956. border-width:0px;
  7957. position:absolute;
  7958. left:0px;
  7959. top:0px;
  7960. width:0px;
  7961. height:0px;
  7962. }
  7963. #u85115_div {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:0px;
  7967. top:0px;
  7968. width:140px;
  7969. height:30px;
  7970. background:inherit;
  7971. background-color:rgba(255, 255, 255, 1);
  7972. box-sizing:border-box;
  7973. border-width:1px;
  7974. border-style:solid;
  7975. border-color:rgba(201, 201, 201, 1);
  7976. border-radius:4px;
  7977. -moz-box-shadow:none;
  7978. -webkit-box-shadow:none;
  7979. box-shadow:none;
  7980. font-family:'Microsoft YaHei', sans-serif;
  7981. font-weight:400;
  7982. font-style:normal;
  7983. font-size:14px;
  7984. color:#CCCCCC;
  7985. text-align:left;
  7986. }
  7987. #u85115 {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:951px;
  7991. top:159px;
  7992. width:140px;
  7993. height:30px;
  7994. display:flex;
  7995. font-family:'Microsoft YaHei', sans-serif;
  7996. font-weight:400;
  7997. font-style:normal;
  7998. font-size:14px;
  7999. color:#CCCCCC;
  8000. text-align:left;
  8001. }
  8002. #u85115 .text {
  8003. position:absolute;
  8004. align-self:center;
  8005. padding:2px 8px 2px 8px;
  8006. box-sizing:border-box;
  8007. width:100%;
  8008. }
  8009. #u85115_text {
  8010. border-width:0px;
  8011. word-wrap:break-word;
  8012. text-transform:none;
  8013. visibility:hidden;
  8014. }
  8015. #u85116_input {
  8016. position:absolute;
  8017. left:0px;
  8018. top:0px;
  8019. width:127px;
  8020. height:25px;
  8021. padding:2px 2px 2px 2px;
  8022. font-family:'Microsoft YaHei', sans-serif;
  8023. font-weight:400;
  8024. font-style:normal;
  8025. font-size:10px;
  8026. letter-spacing:normal;
  8027. color:#000000;
  8028. vertical-align:none;
  8029. text-align:left;
  8030. text-transform:none;
  8031. background-color:transparent;
  8032. border-color:transparent;
  8033. }
  8034. #u85116_input.disabled {
  8035. position:absolute;
  8036. left:0px;
  8037. top:0px;
  8038. width:127px;
  8039. height:25px;
  8040. padding:2px 2px 2px 2px;
  8041. font-family:'Microsoft YaHei', sans-serif;
  8042. font-weight:400;
  8043. font-style:normal;
  8044. font-size:10px;
  8045. letter-spacing:normal;
  8046. color:#000000;
  8047. vertical-align:none;
  8048. text-align:left;
  8049. text-transform:none;
  8050. background-color:transparent;
  8051. border-color:transparent;
  8052. }
  8053. #u85116_div {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:0px;
  8057. top:0px;
  8058. width:127px;
  8059. height:25px;
  8060. background:inherit;
  8061. background-color:rgba(255, 255, 255, 1);
  8062. border:none;
  8063. border-radius:0px;
  8064. -moz-box-shadow:none;
  8065. -webkit-box-shadow:none;
  8066. box-shadow:none;
  8067. font-family:'Microsoft YaHei', sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. font-size:10px;
  8071. }
  8072. #u85116 {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:959px;
  8076. top:160px;
  8077. width:127px;
  8078. height:25px;
  8079. display:flex;
  8080. font-family:'Microsoft YaHei', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:10px;
  8084. }
  8085. #u85116 .text {
  8086. position:absolute;
  8087. align-self:center;
  8088. padding:2px 2px 2px 2px;
  8089. box-sizing:border-box;
  8090. width:100%;
  8091. }
  8092. #u85116_div.disabled {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:127px;
  8098. height:25px;
  8099. background:inherit;
  8100. background-color:rgba(240, 240, 240, 1);
  8101. border:none;
  8102. border-radius:0px;
  8103. -moz-box-shadow:none;
  8104. -webkit-box-shadow:none;
  8105. box-shadow:none;
  8106. font-family:'Microsoft YaHei', sans-serif;
  8107. font-weight:400;
  8108. font-style:normal;
  8109. font-size:10px;
  8110. }
  8111. #u85116.disabled {
  8112. }
  8113. #u85117 {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:0px;
  8117. top:0px;
  8118. width:0px;
  8119. height:0px;
  8120. }
  8121. #u85118_div {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:0px;
  8125. top:0px;
  8126. width:140px;
  8127. height:30px;
  8128. background:inherit;
  8129. background-color:rgba(255, 255, 255, 1);
  8130. box-sizing:border-box;
  8131. border-width:1px;
  8132. border-style:solid;
  8133. border-color:rgba(201, 201, 201, 1);
  8134. border-radius:4px;
  8135. -moz-box-shadow:none;
  8136. -webkit-box-shadow:none;
  8137. box-shadow:none;
  8138. font-family:'Microsoft YaHei', sans-serif;
  8139. font-weight:400;
  8140. font-style:normal;
  8141. font-size:14px;
  8142. color:#CCCCCC;
  8143. text-align:left;
  8144. }
  8145. #u85118 {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:1101px;
  8149. top:159px;
  8150. width:140px;
  8151. height:30px;
  8152. display:flex;
  8153. font-family:'Microsoft YaHei', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:14px;
  8157. color:#CCCCCC;
  8158. text-align:left;
  8159. }
  8160. #u85118 .text {
  8161. position:absolute;
  8162. align-self:center;
  8163. padding:2px 8px 2px 8px;
  8164. box-sizing:border-box;
  8165. width:100%;
  8166. }
  8167. #u85118_text {
  8168. border-width:0px;
  8169. word-wrap:break-word;
  8170. text-transform:none;
  8171. visibility:hidden;
  8172. }
  8173. #u85119_input {
  8174. position:absolute;
  8175. left:0px;
  8176. top:0px;
  8177. width:127px;
  8178. height:25px;
  8179. padding:2px 2px 2px 2px;
  8180. font-family:'Microsoft YaHei', sans-serif;
  8181. font-weight:400;
  8182. font-style:normal;
  8183. font-size:10px;
  8184. letter-spacing:normal;
  8185. color:#000000;
  8186. vertical-align:none;
  8187. text-align:left;
  8188. text-transform:none;
  8189. background-color:transparent;
  8190. border-color:transparent;
  8191. }
  8192. #u85119_input.disabled {
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:127px;
  8197. height:25px;
  8198. padding:2px 2px 2px 2px;
  8199. font-family:'Microsoft YaHei', sans-serif;
  8200. font-weight:400;
  8201. font-style:normal;
  8202. font-size:10px;
  8203. letter-spacing:normal;
  8204. color:#000000;
  8205. vertical-align:none;
  8206. text-align:left;
  8207. text-transform:none;
  8208. background-color:transparent;
  8209. border-color:transparent;
  8210. }
  8211. #u85119_div {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:127px;
  8217. height:25px;
  8218. background:inherit;
  8219. background-color:rgba(255, 255, 255, 1);
  8220. border:none;
  8221. border-radius:0px;
  8222. -moz-box-shadow:none;
  8223. -webkit-box-shadow:none;
  8224. box-shadow:none;
  8225. font-family:'Microsoft YaHei', sans-serif;
  8226. font-weight:400;
  8227. font-style:normal;
  8228. font-size:10px;
  8229. }
  8230. #u85119 {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:1109px;
  8234. top:160px;
  8235. width:127px;
  8236. height:25px;
  8237. display:flex;
  8238. font-family:'Microsoft YaHei', sans-serif;
  8239. font-weight:400;
  8240. font-style:normal;
  8241. font-size:10px;
  8242. }
  8243. #u85119 .text {
  8244. position:absolute;
  8245. align-self:center;
  8246. padding:2px 2px 2px 2px;
  8247. box-sizing:border-box;
  8248. width:100%;
  8249. }
  8250. #u85119_div.disabled {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:127px;
  8256. height:25px;
  8257. background:inherit;
  8258. background-color:rgba(240, 240, 240, 1);
  8259. border:none;
  8260. border-radius:0px;
  8261. -moz-box-shadow:none;
  8262. -webkit-box-shadow:none;
  8263. box-shadow:none;
  8264. font-family:'Microsoft YaHei', sans-serif;
  8265. font-weight:400;
  8266. font-style:normal;
  8267. font-size:10px;
  8268. }
  8269. #u85119.disabled {
  8270. }
  8271. #u85120 {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:0px;
  8275. top:0px;
  8276. width:0px;
  8277. height:0px;
  8278. }
  8279. #u85121_div {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:0px;
  8283. top:0px;
  8284. width:140px;
  8285. height:30px;
  8286. background:inherit;
  8287. background-color:rgba(255, 255, 255, 1);
  8288. box-sizing:border-box;
  8289. border-width:1px;
  8290. border-style:solid;
  8291. border-color:rgba(201, 201, 201, 1);
  8292. border-radius:4px;
  8293. -moz-box-shadow:none;
  8294. -webkit-box-shadow:none;
  8295. box-shadow:none;
  8296. font-family:'Microsoft YaHei', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:14px;
  8300. color:#CCCCCC;
  8301. text-align:left;
  8302. }
  8303. #u85121 {
  8304. border-width:0px;
  8305. position:absolute;
  8306. left:1251px;
  8307. top:159px;
  8308. width:140px;
  8309. height:30px;
  8310. display:flex;
  8311. font-family:'Microsoft YaHei', sans-serif;
  8312. font-weight:400;
  8313. font-style:normal;
  8314. font-size:14px;
  8315. color:#CCCCCC;
  8316. text-align:left;
  8317. }
  8318. #u85121 .text {
  8319. position:absolute;
  8320. align-self:center;
  8321. padding:2px 8px 2px 8px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u85121_text {
  8326. border-width:0px;
  8327. word-wrap:break-word;
  8328. text-transform:none;
  8329. visibility:hidden;
  8330. }
  8331. #u85122_input {
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:127px;
  8336. height:25px;
  8337. padding:2px 2px 2px 2px;
  8338. font-family:'Microsoft YaHei', sans-serif;
  8339. font-weight:400;
  8340. font-style:normal;
  8341. font-size:10px;
  8342. letter-spacing:normal;
  8343. color:#000000;
  8344. vertical-align:none;
  8345. text-align:left;
  8346. text-transform:none;
  8347. background-color:transparent;
  8348. border-color:transparent;
  8349. }
  8350. #u85122_input.disabled {
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:127px;
  8355. height:25px;
  8356. padding:2px 2px 2px 2px;
  8357. font-family:'Microsoft YaHei', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:10px;
  8361. letter-spacing:normal;
  8362. color:#000000;
  8363. vertical-align:none;
  8364. text-align:left;
  8365. text-transform:none;
  8366. background-color:transparent;
  8367. border-color:transparent;
  8368. }
  8369. #u85122_div {
  8370. border-width:0px;
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:127px;
  8375. height:25px;
  8376. background:inherit;
  8377. background-color:rgba(255, 255, 255, 1);
  8378. border:none;
  8379. border-radius:0px;
  8380. -moz-box-shadow:none;
  8381. -webkit-box-shadow:none;
  8382. box-shadow:none;
  8383. font-family:'Microsoft YaHei', sans-serif;
  8384. font-weight:400;
  8385. font-style:normal;
  8386. font-size:10px;
  8387. }
  8388. #u85122 {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:1259px;
  8392. top:160px;
  8393. width:127px;
  8394. height:25px;
  8395. display:flex;
  8396. font-family:'Microsoft YaHei', sans-serif;
  8397. font-weight:400;
  8398. font-style:normal;
  8399. font-size:10px;
  8400. }
  8401. #u85122 .text {
  8402. position:absolute;
  8403. align-self:center;
  8404. padding:2px 2px 2px 2px;
  8405. box-sizing:border-box;
  8406. width:100%;
  8407. }
  8408. #u85122_div.disabled {
  8409. border-width:0px;
  8410. position:absolute;
  8411. left:0px;
  8412. top:0px;
  8413. width:127px;
  8414. height:25px;
  8415. background:inherit;
  8416. background-color:rgba(240, 240, 240, 1);
  8417. border:none;
  8418. border-radius:0px;
  8419. -moz-box-shadow:none;
  8420. -webkit-box-shadow:none;
  8421. box-shadow:none;
  8422. font-family:'Microsoft YaHei', sans-serif;
  8423. font-weight:400;
  8424. font-style:normal;
  8425. font-size:10px;
  8426. }
  8427. #u85122.disabled {
  8428. }
  8429. #u85123 {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:0px;
  8433. top:0px;
  8434. width:0px;
  8435. height:0px;
  8436. }
  8437. #u85124_div {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:0px;
  8441. top:0px;
  8442. width:140px;
  8443. height:30px;
  8444. background:inherit;
  8445. background-color:rgba(255, 255, 255, 1);
  8446. box-sizing:border-box;
  8447. border-width:1px;
  8448. border-style:solid;
  8449. border-color:rgba(201, 201, 201, 1);
  8450. border-radius:4px;
  8451. -moz-box-shadow:none;
  8452. -webkit-box-shadow:none;
  8453. box-shadow:none;
  8454. font-family:'Microsoft YaHei', sans-serif;
  8455. font-weight:400;
  8456. font-style:normal;
  8457. font-size:14px;
  8458. color:#CCCCCC;
  8459. text-align:left;
  8460. }
  8461. #u85124 {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:1401px;
  8465. top:159px;
  8466. width:140px;
  8467. height:30px;
  8468. display:flex;
  8469. font-family:'Microsoft YaHei', sans-serif;
  8470. font-weight:400;
  8471. font-style:normal;
  8472. font-size:14px;
  8473. color:#CCCCCC;
  8474. text-align:left;
  8475. }
  8476. #u85124 .text {
  8477. position:absolute;
  8478. align-self:center;
  8479. padding:2px 8px 2px 8px;
  8480. box-sizing:border-box;
  8481. width:100%;
  8482. }
  8483. #u85124_text {
  8484. border-width:0px;
  8485. word-wrap:break-word;
  8486. text-transform:none;
  8487. visibility:hidden;
  8488. }
  8489. #u85125_input {
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:127px;
  8494. height:25px;
  8495. padding:2px 2px 2px 2px;
  8496. font-family:'Microsoft YaHei', sans-serif;
  8497. font-weight:400;
  8498. font-style:normal;
  8499. font-size:10px;
  8500. letter-spacing:normal;
  8501. color:#000000;
  8502. vertical-align:none;
  8503. text-align:left;
  8504. text-transform:none;
  8505. background-color:transparent;
  8506. border-color:transparent;
  8507. }
  8508. #u85125_input.disabled {
  8509. position:absolute;
  8510. left:0px;
  8511. top:0px;
  8512. width:127px;
  8513. height:25px;
  8514. padding:2px 2px 2px 2px;
  8515. font-family:'Microsoft YaHei', sans-serif;
  8516. font-weight:400;
  8517. font-style:normal;
  8518. font-size:10px;
  8519. letter-spacing:normal;
  8520. color:#000000;
  8521. vertical-align:none;
  8522. text-align:left;
  8523. text-transform:none;
  8524. background-color:transparent;
  8525. border-color:transparent;
  8526. }
  8527. #u85125_div {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:0px;
  8531. top:0px;
  8532. width:127px;
  8533. height:25px;
  8534. background:inherit;
  8535. background-color:rgba(255, 255, 255, 1);
  8536. border:none;
  8537. border-radius:0px;
  8538. -moz-box-shadow:none;
  8539. -webkit-box-shadow:none;
  8540. box-shadow:none;
  8541. font-family:'Microsoft YaHei', sans-serif;
  8542. font-weight:400;
  8543. font-style:normal;
  8544. font-size:10px;
  8545. }
  8546. #u85125 {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:1409px;
  8550. top:160px;
  8551. width:127px;
  8552. height:25px;
  8553. display:flex;
  8554. font-family:'Microsoft YaHei', sans-serif;
  8555. font-weight:400;
  8556. font-style:normal;
  8557. font-size:10px;
  8558. }
  8559. #u85125 .text {
  8560. position:absolute;
  8561. align-self:center;
  8562. padding:2px 2px 2px 2px;
  8563. box-sizing:border-box;
  8564. width:100%;
  8565. }
  8566. #u85125_div.disabled {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:0px;
  8570. top:0px;
  8571. width:127px;
  8572. height:25px;
  8573. background:inherit;
  8574. background-color:rgba(240, 240, 240, 1);
  8575. border:none;
  8576. border-radius:0px;
  8577. -moz-box-shadow:none;
  8578. -webkit-box-shadow:none;
  8579. box-shadow:none;
  8580. font-family:'Microsoft YaHei', sans-serif;
  8581. font-weight:400;
  8582. font-style:normal;
  8583. font-size:10px;
  8584. }
  8585. #u85125.disabled {
  8586. }
  8587. #u85126_div {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:0px;
  8591. top:0px;
  8592. width:37px;
  8593. height:50px;
  8594. background:inherit;
  8595. background-color:rgba(255, 255, 255, 0);
  8596. box-sizing:border-box;
  8597. border-width:3px;
  8598. border-style:solid;
  8599. border-color:rgba(24, 144, 255, 1);
  8600. border-left:0px;
  8601. border-top:0px;
  8602. border-right:0px;
  8603. border-radius:0px;
  8604. border-bottom-right-radius:0px;
  8605. border-bottom-left-radius:0px;
  8606. -moz-box-shadow:none;
  8607. -webkit-box-shadow:none;
  8608. box-shadow:none;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:18px;
  8613. color:#198CFB;
  8614. }
  8615. #u85126 {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:417px;
  8619. top:50px;
  8620. width:37px;
  8621. height:50px;
  8622. display:flex;
  8623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8624. font-weight:400;
  8625. font-style:normal;
  8626. font-size:18px;
  8627. color:#198CFB;
  8628. }
  8629. #u85126 .text {
  8630. position:absolute;
  8631. align-self:center;
  8632. padding:0px 0px 0px 0px;
  8633. box-sizing:border-box;
  8634. width:100%;
  8635. }
  8636. #u85126_text {
  8637. border-width:0px;
  8638. white-space:nowrap;
  8639. text-transform:none;
  8640. }
  8641. #u85127 {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:0px;
  8645. top:0px;
  8646. width:0px;
  8647. height:0px;
  8648. }
  8649. #u85128_div {
  8650. border-width:0px;
  8651. position:absolute;
  8652. left:0px;
  8653. top:0px;
  8654. width:140px;
  8655. height:30px;
  8656. background:inherit;
  8657. background-color:rgba(255, 255, 255, 1);
  8658. box-sizing:border-box;
  8659. border-width:1px;
  8660. border-style:solid;
  8661. border-color:rgba(201, 201, 201, 1);
  8662. border-radius:4px;
  8663. -moz-box-shadow:none;
  8664. -webkit-box-shadow:none;
  8665. box-shadow:none;
  8666. font-family:'Microsoft YaHei', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:14px;
  8670. color:#CCCCCC;
  8671. text-align:left;
  8672. }
  8673. #u85128 {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:951px;
  8677. top:120px;
  8678. width:140px;
  8679. height:30px;
  8680. display:flex;
  8681. font-family:'Microsoft YaHei', sans-serif;
  8682. font-weight:400;
  8683. font-style:normal;
  8684. font-size:14px;
  8685. color:#CCCCCC;
  8686. text-align:left;
  8687. }
  8688. #u85128 .text {
  8689. position:absolute;
  8690. align-self:center;
  8691. padding:2px 8px 2px 8px;
  8692. box-sizing:border-box;
  8693. width:100%;
  8694. }
  8695. #u85128_text {
  8696. border-width:0px;
  8697. word-wrap:break-word;
  8698. text-transform:none;
  8699. visibility:hidden;
  8700. }
  8701. #u85129_input {
  8702. position:absolute;
  8703. left:0px;
  8704. top:0px;
  8705. width:127px;
  8706. height:25px;
  8707. padding:2px 2px 2px 2px;
  8708. font-family:'Microsoft YaHei', sans-serif;
  8709. font-weight:400;
  8710. font-style:normal;
  8711. font-size:10px;
  8712. letter-spacing:normal;
  8713. color:#000000;
  8714. vertical-align:none;
  8715. text-align:left;
  8716. text-transform:none;
  8717. background-color:transparent;
  8718. border-color:transparent;
  8719. }
  8720. #u85129_input.disabled {
  8721. position:absolute;
  8722. left:0px;
  8723. top:0px;
  8724. width:127px;
  8725. height:25px;
  8726. padding:2px 2px 2px 2px;
  8727. font-family:'Microsoft YaHei', sans-serif;
  8728. font-weight:400;
  8729. font-style:normal;
  8730. font-size:10px;
  8731. letter-spacing:normal;
  8732. color:#000000;
  8733. vertical-align:none;
  8734. text-align:left;
  8735. text-transform:none;
  8736. background-color:transparent;
  8737. border-color:transparent;
  8738. }
  8739. #u85129_div {
  8740. border-width:0px;
  8741. position:absolute;
  8742. left:0px;
  8743. top:0px;
  8744. width:127px;
  8745. height:25px;
  8746. background:inherit;
  8747. background-color:rgba(255, 255, 255, 1);
  8748. border:none;
  8749. border-radius:0px;
  8750. -moz-box-shadow:none;
  8751. -webkit-box-shadow:none;
  8752. box-shadow:none;
  8753. font-family:'Microsoft YaHei', sans-serif;
  8754. font-weight:400;
  8755. font-style:normal;
  8756. font-size:10px;
  8757. }
  8758. #u85129 {
  8759. border-width:0px;
  8760. position:absolute;
  8761. left:959px;
  8762. top:121px;
  8763. width:127px;
  8764. height:25px;
  8765. display:flex;
  8766. font-family:'Microsoft YaHei', sans-serif;
  8767. font-weight:400;
  8768. font-style:normal;
  8769. font-size:10px;
  8770. }
  8771. #u85129 .text {
  8772. position:absolute;
  8773. align-self:center;
  8774. padding:2px 2px 2px 2px;
  8775. box-sizing:border-box;
  8776. width:100%;
  8777. }
  8778. #u85129_div.disabled {
  8779. border-width:0px;
  8780. position:absolute;
  8781. left:0px;
  8782. top:0px;
  8783. width:127px;
  8784. height:25px;
  8785. background:inherit;
  8786. background-color:rgba(240, 240, 240, 1);
  8787. border:none;
  8788. border-radius:0px;
  8789. -moz-box-shadow:none;
  8790. -webkit-box-shadow:none;
  8791. box-shadow:none;
  8792. font-family:'Microsoft YaHei', sans-serif;
  8793. font-weight:400;
  8794. font-style:normal;
  8795. font-size:10px;
  8796. }
  8797. #u85129.disabled {
  8798. }
  8799. #u85130 {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:0px;
  8804. width:0px;
  8805. height:0px;
  8806. }
  8807. #u85131_div {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:0px;
  8811. top:0px;
  8812. width:140px;
  8813. height:28px;
  8814. background:inherit;
  8815. background-color:rgba(255, 255, 255, 1);
  8816. box-sizing:border-box;
  8817. border-width:1px;
  8818. border-style:solid;
  8819. border-color:rgba(201, 201, 201, 1);
  8820. border-radius:4px;
  8821. -moz-box-shadow:none;
  8822. -webkit-box-shadow:none;
  8823. box-shadow:none;
  8824. font-family:'Microsoft YaHei', sans-serif;
  8825. font-weight:400;
  8826. font-style:normal;
  8827. font-size:14px;
  8828. color:#CCCCCC;
  8829. text-align:left;
  8830. }
  8831. #u85131 {
  8832. border-width:0px;
  8833. position:absolute;
  8834. left:1101px;
  8835. top:121px;
  8836. width:140px;
  8837. height:28px;
  8838. display:flex;
  8839. font-family:'Microsoft YaHei', sans-serif;
  8840. font-weight:400;
  8841. font-style:normal;
  8842. font-size:14px;
  8843. color:#CCCCCC;
  8844. text-align:left;
  8845. }
  8846. #u85131 .text {
  8847. position:absolute;
  8848. align-self:center;
  8849. padding:2px 8px 2px 8px;
  8850. box-sizing:border-box;
  8851. width:100%;
  8852. }
  8853. #u85131_text {
  8854. border-width:0px;
  8855. word-wrap:break-word;
  8856. text-transform:none;
  8857. visibility:hidden;
  8858. }
  8859. #u85132_input {
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:114px;
  8864. height:26px;
  8865. padding:2px 2px 2px 2px;
  8866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8867. font-weight:400;
  8868. font-style:normal;
  8869. font-size:14px;
  8870. letter-spacing:normal;
  8871. color:#000000;
  8872. vertical-align:none;
  8873. text-align:left;
  8874. text-transform:none;
  8875. background-color:transparent;
  8876. border-color:transparent;
  8877. }
  8878. #u85132_input.disabled {
  8879. position:absolute;
  8880. left:0px;
  8881. top:0px;
  8882. width:114px;
  8883. height:26px;
  8884. padding:2px 2px 2px 2px;
  8885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8886. font-weight:400;
  8887. font-style:normal;
  8888. font-size:14px;
  8889. letter-spacing:normal;
  8890. color:#000000;
  8891. vertical-align:none;
  8892. text-align:left;
  8893. text-transform:none;
  8894. background-color:transparent;
  8895. border-color:transparent;
  8896. }
  8897. #u85132_div {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:114px;
  8903. height:26px;
  8904. background:inherit;
  8905. background-color:rgba(255, 255, 255, 1);
  8906. border:none;
  8907. border-radius:0px;
  8908. -moz-box-shadow:none;
  8909. -webkit-box-shadow:none;
  8910. box-shadow:none;
  8911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8912. font-weight:400;
  8913. font-style:normal;
  8914. font-size:14px;
  8915. }
  8916. #u85132 {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:1107px;
  8920. top:122px;
  8921. width:114px;
  8922. height:26px;
  8923. display:flex;
  8924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8925. font-weight:400;
  8926. font-style:normal;
  8927. font-size:14px;
  8928. }
  8929. #u85132 .text {
  8930. position:absolute;
  8931. align-self:center;
  8932. padding:2px 2px 2px 2px;
  8933. box-sizing:border-box;
  8934. width:100%;
  8935. }
  8936. #u85132_div.disabled {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:0px;
  8940. top:0px;
  8941. width:114px;
  8942. height:26px;
  8943. background:inherit;
  8944. background-color:rgba(240, 240, 240, 1);
  8945. border:none;
  8946. border-radius:0px;
  8947. -moz-box-shadow:none;
  8948. -webkit-box-shadow:none;
  8949. box-shadow:none;
  8950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8951. font-weight:400;
  8952. font-style:normal;
  8953. font-size:14px;
  8954. }
  8955. #u85132.disabled {
  8956. }
  8957. #u85133_img {
  8958. border-width:0px;
  8959. position:absolute;
  8960. left:0px;
  8961. top:0px;
  8962. width:13px;
  8963. height:15px;
  8964. }
  8965. #u85133 {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:1221px;
  8969. top:128px;
  8970. width:13px;
  8971. height:15px;
  8972. display:flex;
  8973. }
  8974. #u85133 .text {
  8975. position:absolute;
  8976. align-self:center;
  8977. padding:2px 2px 2px 2px;
  8978. box-sizing:border-box;
  8979. width:100%;
  8980. }
  8981. #u85133_text {
  8982. border-width:0px;
  8983. word-wrap:break-word;
  8984. text-transform:none;
  8985. visibility:hidden;
  8986. }
  8987. #u85134 {
  8988. border-width:0px;
  8989. position:absolute;
  8990. left:0px;
  8991. top:0px;
  8992. width:0px;
  8993. height:0px;
  8994. }
  8995. #u85135_div {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:0px;
  8999. top:0px;
  9000. width:140px;
  9001. height:30px;
  9002. background:inherit;
  9003. background-color:rgba(255, 255, 255, 1);
  9004. box-sizing:border-box;
  9005. border-width:1px;
  9006. border-style:solid;
  9007. border-color:rgba(215, 215, 215, 1);
  9008. border-radius:4px;
  9009. -moz-box-shadow:none;
  9010. -webkit-box-shadow:none;
  9011. box-shadow:none;
  9012. font-size:11px;
  9013. }
  9014. #u85135 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:1551px;
  9018. top:160px;
  9019. width:140px;
  9020. height:30px;
  9021. display:flex;
  9022. font-size:11px;
  9023. }
  9024. #u85135 .text {
  9025. position:absolute;
  9026. align-self:center;
  9027. padding:2px 2px 2px 2px;
  9028. box-sizing:border-box;
  9029. width:100%;
  9030. }
  9031. #u85135_text {
  9032. border-width:0px;
  9033. word-wrap:break-word;
  9034. text-transform:none;
  9035. visibility:hidden;
  9036. }
  9037. #u85136_input {
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:126px;
  9042. height:23px;
  9043. padding:2px 2px 2px 2px;
  9044. font-family:'ArialMT', 'Arial', sans-serif;
  9045. font-weight:400;
  9046. font-style:normal;
  9047. font-size:11px;
  9048. letter-spacing:normal;
  9049. color:#AAAAAA;
  9050. vertical-align:none;
  9051. text-align:left;
  9052. text-transform:none;
  9053. background-color:transparent;
  9054. border-color:transparent;
  9055. }
  9056. #u85136_input.disabled {
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:126px;
  9061. height:23px;
  9062. padding:2px 2px 2px 2px;
  9063. font-family:'ArialMT', 'Arial', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:11px;
  9067. letter-spacing:normal;
  9068. color:#AAAAAA;
  9069. vertical-align:none;
  9070. text-align:left;
  9071. text-transform:none;
  9072. background-color:transparent;
  9073. border-color:transparent;
  9074. }
  9075. #u85136_div {
  9076. border-width:0px;
  9077. position:absolute;
  9078. left:0px;
  9079. top:0px;
  9080. width:126px;
  9081. height:23px;
  9082. background:inherit;
  9083. background-color:rgba(255, 255, 255, 1);
  9084. border:none;
  9085. border-radius:0px;
  9086. -moz-box-shadow:none;
  9087. -webkit-box-shadow:none;
  9088. box-shadow:none;
  9089. font-size:11px;
  9090. color:#AAAAAA;
  9091. }
  9092. #u85136 {
  9093. border-width:0px;
  9094. position:absolute;
  9095. left:1558px;
  9096. top:162px;
  9097. width:126px;
  9098. height:23px;
  9099. display:flex;
  9100. font-size:11px;
  9101. color:#AAAAAA;
  9102. }
  9103. #u85136 .text {
  9104. position:absolute;
  9105. align-self:flex-start;
  9106. padding:2px 2px 2px 2px;
  9107. box-sizing:border-box;
  9108. width:100%;
  9109. }
  9110. #u85136_div.disabled {
  9111. border-width:0px;
  9112. position:absolute;
  9113. left:0px;
  9114. top:0px;
  9115. width:126px;
  9116. height:23px;
  9117. background:inherit;
  9118. background-color:rgba(240, 240, 240, 1);
  9119. border:none;
  9120. border-radius:0px;
  9121. -moz-box-shadow:none;
  9122. -webkit-box-shadow:none;
  9123. box-shadow:none;
  9124. font-size:11px;
  9125. color:#AAAAAA;
  9126. }
  9127. #u85136.disabled {
  9128. }
  9129. .u85136_input_option {
  9130. font-size:11px;
  9131. }
  9132. #u85137_div {
  9133. border-width:0px;
  9134. position:absolute;
  9135. left:0px;
  9136. top:0px;
  9137. width:100px;
  9138. height:30px;
  9139. background:inherit;
  9140. background-color:rgba(24, 144, 255, 1);
  9141. box-sizing:border-box;
  9142. border-width:1px;
  9143. border-style:solid;
  9144. border-color:rgba(0, 153, 255, 1);
  9145. border-radius:4px;
  9146. -moz-box-shadow:none;
  9147. -webkit-box-shadow:none;
  9148. box-shadow:none;
  9149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9150. font-weight:400;
  9151. font-style:normal;
  9152. font-size:14px;
  9153. color:#FFFFFF;
  9154. }
  9155. #u85137 {
  9156. border-width:0px;
  9157. position:absolute;
  9158. left:354px;
  9159. top:251px;
  9160. width:100px;
  9161. height:30px;
  9162. display:flex;
  9163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9164. font-weight:400;
  9165. font-style:normal;
  9166. font-size:14px;
  9167. color:#FFFFFF;
  9168. }
  9169. #u85137 .text {
  9170. position:absolute;
  9171. align-self:center;
  9172. padding:5px 0px 5px 0px;
  9173. box-sizing:border-box;
  9174. width:100%;
  9175. }
  9176. #u85137_text {
  9177. border-width:0px;
  9178. word-wrap:break-word;
  9179. text-transform:none;
  9180. }
  9181. #u85138 {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:0px;
  9187. height:0px;
  9188. }
  9189. #u85139_div {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:0px;
  9193. top:0px;
  9194. width:140px;
  9195. height:30px;
  9196. background:inherit;
  9197. background-color:rgba(255, 255, 255, 1);
  9198. box-sizing:border-box;
  9199. border-width:1px;
  9200. border-style:solid;
  9201. border-color:rgba(215, 215, 215, 1);
  9202. border-radius:4px;
  9203. -moz-box-shadow:none;
  9204. -webkit-box-shadow:none;
  9205. box-shadow:none;
  9206. font-size:11px;
  9207. }
  9208. #u85139 {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:1551px;
  9212. top:121px;
  9213. width:140px;
  9214. height:30px;
  9215. display:flex;
  9216. font-size:11px;
  9217. }
  9218. #u85139 .text {
  9219. position:absolute;
  9220. align-self:center;
  9221. padding:2px 2px 2px 2px;
  9222. box-sizing:border-box;
  9223. width:100%;
  9224. }
  9225. #u85139_text {
  9226. border-width:0px;
  9227. word-wrap:break-word;
  9228. text-transform:none;
  9229. visibility:hidden;
  9230. }
  9231. #u85140_input {
  9232. position:absolute;
  9233. left:0px;
  9234. top:0px;
  9235. width:126px;
  9236. height:23px;
  9237. padding:2px 2px 2px 2px;
  9238. font-family:'ArialMT', 'Arial', sans-serif;
  9239. font-weight:400;
  9240. font-style:normal;
  9241. font-size:11px;
  9242. letter-spacing:normal;
  9243. color:#AAAAAA;
  9244. vertical-align:none;
  9245. text-align:left;
  9246. text-transform:none;
  9247. background-color:transparent;
  9248. border-color:transparent;
  9249. }
  9250. #u85140_input.disabled {
  9251. position:absolute;
  9252. left:0px;
  9253. top:0px;
  9254. width:126px;
  9255. height:23px;
  9256. padding:2px 2px 2px 2px;
  9257. font-family:'ArialMT', 'Arial', sans-serif;
  9258. font-weight:400;
  9259. font-style:normal;
  9260. font-size:11px;
  9261. letter-spacing:normal;
  9262. color:#AAAAAA;
  9263. vertical-align:none;
  9264. text-align:left;
  9265. text-transform:none;
  9266. background-color:transparent;
  9267. border-color:transparent;
  9268. }
  9269. #u85140_div {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:0px;
  9273. top:0px;
  9274. width:126px;
  9275. height:23px;
  9276. background:inherit;
  9277. background-color:rgba(255, 255, 255, 1);
  9278. border:none;
  9279. border-radius:0px;
  9280. -moz-box-shadow:none;
  9281. -webkit-box-shadow:none;
  9282. box-shadow:none;
  9283. font-size:11px;
  9284. color:#AAAAAA;
  9285. }
  9286. #u85140 {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:1558px;
  9290. top:123px;
  9291. width:126px;
  9292. height:23px;
  9293. display:flex;
  9294. font-size:11px;
  9295. color:#AAAAAA;
  9296. }
  9297. #u85140 .text {
  9298. position:absolute;
  9299. align-self:flex-start;
  9300. padding:2px 2px 2px 2px;
  9301. box-sizing:border-box;
  9302. width:100%;
  9303. }
  9304. #u85140_div.disabled {
  9305. border-width:0px;
  9306. position:absolute;
  9307. left:0px;
  9308. top:0px;
  9309. width:126px;
  9310. height:23px;
  9311. background:inherit;
  9312. background-color:rgba(240, 240, 240, 1);
  9313. border:none;
  9314. border-radius:0px;
  9315. -moz-box-shadow:none;
  9316. -webkit-box-shadow:none;
  9317. box-shadow:none;
  9318. font-size:11px;
  9319. color:#AAAAAA;
  9320. }
  9321. #u85140.disabled {
  9322. }
  9323. .u85140_input_option {
  9324. font-size:11px;
  9325. }
  9326. #u85141 {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:0px;
  9330. top:0px;
  9331. width:0px;
  9332. height:0px;
  9333. }
  9334. #u85142_div {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:0px;
  9338. top:0px;
  9339. width:140px;
  9340. height:30px;
  9341. background:inherit;
  9342. background-color:rgba(255, 255, 255, 1);
  9343. box-sizing:border-box;
  9344. border-width:1px;
  9345. border-style:solid;
  9346. border-color:rgba(215, 215, 215, 1);
  9347. border-radius:4px;
  9348. -moz-box-shadow:none;
  9349. -webkit-box-shadow:none;
  9350. box-shadow:none;
  9351. font-size:11px;
  9352. }
  9353. #u85142 {
  9354. border-width:0px;
  9355. position:absolute;
  9356. left:351px;
  9357. top:160px;
  9358. width:140px;
  9359. height:30px;
  9360. display:flex;
  9361. font-size:11px;
  9362. }
  9363. #u85142 .text {
  9364. position:absolute;
  9365. align-self:center;
  9366. padding:2px 2px 2px 2px;
  9367. box-sizing:border-box;
  9368. width:100%;
  9369. }
  9370. #u85142_text {
  9371. border-width:0px;
  9372. word-wrap:break-word;
  9373. text-transform:none;
  9374. visibility:hidden;
  9375. }
  9376. #u85143_input {
  9377. position:absolute;
  9378. left:0px;
  9379. top:0px;
  9380. width:126px;
  9381. height:23px;
  9382. padding:2px 2px 2px 2px;
  9383. font-family:'ArialMT', 'Arial', sans-serif;
  9384. font-weight:400;
  9385. font-style:normal;
  9386. font-size:11px;
  9387. letter-spacing:normal;
  9388. color:#AAAAAA;
  9389. vertical-align:none;
  9390. text-align:left;
  9391. text-transform:none;
  9392. background-color:transparent;
  9393. border-color:transparent;
  9394. }
  9395. #u85143_input.disabled {
  9396. position:absolute;
  9397. left:0px;
  9398. top:0px;
  9399. width:126px;
  9400. height:23px;
  9401. padding:2px 2px 2px 2px;
  9402. font-family:'ArialMT', 'Arial', sans-serif;
  9403. font-weight:400;
  9404. font-style:normal;
  9405. font-size:11px;
  9406. letter-spacing:normal;
  9407. color:#AAAAAA;
  9408. vertical-align:none;
  9409. text-align:left;
  9410. text-transform:none;
  9411. background-color:transparent;
  9412. border-color:transparent;
  9413. }
  9414. #u85143_div {
  9415. border-width:0px;
  9416. position:absolute;
  9417. left:0px;
  9418. top:0px;
  9419. width:126px;
  9420. height:23px;
  9421. background:inherit;
  9422. background-color:rgba(255, 255, 255, 1);
  9423. border:none;
  9424. border-radius:0px;
  9425. -moz-box-shadow:none;
  9426. -webkit-box-shadow:none;
  9427. box-shadow:none;
  9428. font-size:11px;
  9429. color:#AAAAAA;
  9430. }
  9431. #u85143 {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:358px;
  9435. top:162px;
  9436. width:126px;
  9437. height:23px;
  9438. display:flex;
  9439. font-size:11px;
  9440. color:#AAAAAA;
  9441. }
  9442. #u85143 .text {
  9443. position:absolute;
  9444. align-self:flex-start;
  9445. padding:2px 2px 2px 2px;
  9446. box-sizing:border-box;
  9447. width:100%;
  9448. }
  9449. #u85143_div.disabled {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:0px;
  9453. top:0px;
  9454. width:126px;
  9455. height:23px;
  9456. background:inherit;
  9457. background-color:rgba(240, 240, 240, 1);
  9458. border:none;
  9459. border-radius:0px;
  9460. -moz-box-shadow:none;
  9461. -webkit-box-shadow:none;
  9462. box-shadow:none;
  9463. font-size:11px;
  9464. color:#AAAAAA;
  9465. }
  9466. #u85143.disabled {
  9467. }
  9468. .u85143_input_option {
  9469. font-size:11px;
  9470. }
  9471. #u85144 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:0px;
  9475. top:0px;
  9476. width:0px;
  9477. height:0px;
  9478. }
  9479. #u85145_div {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:0px;
  9483. top:0px;
  9484. width:140px;
  9485. height:28px;
  9486. background:inherit;
  9487. background-color:rgba(255, 255, 255, 1);
  9488. box-sizing:border-box;
  9489. border-width:1px;
  9490. border-style:solid;
  9491. border-color:rgba(201, 201, 201, 1);
  9492. border-radius:4px;
  9493. -moz-box-shadow:none;
  9494. -webkit-box-shadow:none;
  9495. box-shadow:none;
  9496. font-family:'Microsoft YaHei', sans-serif;
  9497. font-weight:400;
  9498. font-style:normal;
  9499. font-size:14px;
  9500. color:#CCCCCC;
  9501. text-align:left;
  9502. }
  9503. #u85145 {
  9504. border-width:0px;
  9505. position:absolute;
  9506. left:501px;
  9507. top:201px;
  9508. width:140px;
  9509. height:28px;
  9510. display:flex;
  9511. font-family:'Microsoft YaHei', sans-serif;
  9512. font-weight:400;
  9513. font-style:normal;
  9514. font-size:14px;
  9515. color:#CCCCCC;
  9516. text-align:left;
  9517. }
  9518. #u85145 .text {
  9519. position:absolute;
  9520. align-self:center;
  9521. padding:2px 8px 2px 8px;
  9522. box-sizing:border-box;
  9523. width:100%;
  9524. }
  9525. #u85145_text {
  9526. border-width:0px;
  9527. word-wrap:break-word;
  9528. text-transform:none;
  9529. visibility:hidden;
  9530. }
  9531. #u85146_input {
  9532. position:absolute;
  9533. left:0px;
  9534. top:0px;
  9535. width:114px;
  9536. height:26px;
  9537. padding:2px 2px 2px 2px;
  9538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9539. font-weight:400;
  9540. font-style:normal;
  9541. font-size:14px;
  9542. letter-spacing:normal;
  9543. color:#000000;
  9544. vertical-align:none;
  9545. text-align:left;
  9546. text-transform:none;
  9547. background-color:transparent;
  9548. border-color:transparent;
  9549. }
  9550. #u85146_input.disabled {
  9551. position:absolute;
  9552. left:0px;
  9553. top:0px;
  9554. width:114px;
  9555. height:26px;
  9556. padding:2px 2px 2px 2px;
  9557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9558. font-weight:400;
  9559. font-style:normal;
  9560. font-size:14px;
  9561. letter-spacing:normal;
  9562. color:#000000;
  9563. vertical-align:none;
  9564. text-align:left;
  9565. text-transform:none;
  9566. background-color:transparent;
  9567. border-color:transparent;
  9568. }
  9569. #u85146_div {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:0px;
  9573. top:0px;
  9574. width:114px;
  9575. height:26px;
  9576. background:inherit;
  9577. background-color:rgba(255, 255, 255, 1);
  9578. border:none;
  9579. border-radius:0px;
  9580. -moz-box-shadow:none;
  9581. -webkit-box-shadow:none;
  9582. box-shadow:none;
  9583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9584. font-weight:400;
  9585. font-style:normal;
  9586. font-size:14px;
  9587. }
  9588. #u85146 {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:507px;
  9592. top:202px;
  9593. width:114px;
  9594. height:26px;
  9595. display:flex;
  9596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9597. font-weight:400;
  9598. font-style:normal;
  9599. font-size:14px;
  9600. }
  9601. #u85146 .text {
  9602. position:absolute;
  9603. align-self:center;
  9604. padding:2px 2px 2px 2px;
  9605. box-sizing:border-box;
  9606. width:100%;
  9607. }
  9608. #u85146_div.disabled {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:0px;
  9612. top:0px;
  9613. width:114px;
  9614. height:26px;
  9615. background:inherit;
  9616. background-color:rgba(240, 240, 240, 1);
  9617. border:none;
  9618. border-radius:0px;
  9619. -moz-box-shadow:none;
  9620. -webkit-box-shadow:none;
  9621. box-shadow:none;
  9622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. font-size:14px;
  9626. }
  9627. #u85146.disabled {
  9628. }
  9629. #u85147_img {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:0px;
  9633. top:0px;
  9634. width:13px;
  9635. height:15px;
  9636. }
  9637. #u85147 {
  9638. border-width:0px;
  9639. position:absolute;
  9640. left:621px;
  9641. top:208px;
  9642. width:13px;
  9643. height:15px;
  9644. display:flex;
  9645. }
  9646. #u85147 .text {
  9647. position:absolute;
  9648. align-self:center;
  9649. padding:2px 2px 2px 2px;
  9650. box-sizing:border-box;
  9651. width:100%;
  9652. }
  9653. #u85147_text {
  9654. border-width:0px;
  9655. word-wrap:break-word;
  9656. text-transform:none;
  9657. visibility:hidden;
  9658. }
  9659. #u85148_div {
  9660. border-width:0px;
  9661. position:absolute;
  9662. left:0px;
  9663. top:0px;
  9664. width:940px;
  9665. height:120px;
  9666. background:inherit;
  9667. background-color:rgba(255, 255, 255, 0);
  9668. box-sizing:border-box;
  9669. border-width:1px;
  9670. border-style:solid;
  9671. border-color:rgba(217, 0, 27, 1);
  9672. border-radius:3px;
  9673. -moz-box-shadow:none;
  9674. -webkit-box-shadow:none;
  9675. box-shadow:none;
  9676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9677. font-weight:400;
  9678. font-style:normal;
  9679. color:#D9001B;
  9680. line-height:25px;
  9681. }
  9682. #u85148 {
  9683. border-width:0px;
  9684. position:absolute;
  9685. left:370px;
  9686. top:678px;
  9687. width:940px;
  9688. height:120px;
  9689. display:flex;
  9690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9691. font-weight:400;
  9692. font-style:normal;
  9693. color:#D9001B;
  9694. line-height:25px;
  9695. }
  9696. #u85148 .text {
  9697. position:absolute;
  9698. align-self:flex-start;
  9699. padding:10px 10px 10px 10px;
  9700. box-sizing:border-box;
  9701. width:100%;
  9702. }
  9703. #u85148_text {
  9704. border-width:0px;
  9705. white-space:nowrap;
  9706. text-transform:none;
  9707. }
  9708. #u85149_div {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:0px;
  9712. top:0px;
  9713. width:79px;
  9714. height:30px;
  9715. background:inherit;
  9716. background-color:rgba(255, 255, 255, 1);
  9717. box-sizing:border-box;
  9718. border-width:1px;
  9719. border-style:solid;
  9720. border-color:rgba(170, 170, 170, 1);
  9721. border-radius:4px;
  9722. -moz-box-shadow:none;
  9723. -webkit-box-shadow:none;
  9724. box-shadow:none;
  9725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9726. font-weight:400;
  9727. font-style:normal;
  9728. font-size:12px;
  9729. color:#555555;
  9730. }
  9731. #u85149 {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:1612px;
  9735. top:251px;
  9736. width:79px;
  9737. height:30px;
  9738. display:flex;
  9739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9740. font-weight:400;
  9741. font-style:normal;
  9742. font-size:12px;
  9743. color:#555555;
  9744. }
  9745. #u85149 .text {
  9746. position:absolute;
  9747. align-self:center;
  9748. padding:5px 15px 5px 15px;
  9749. box-sizing:border-box;
  9750. width:100%;
  9751. }
  9752. #u85149_text {
  9753. border-width:0px;
  9754. white-space:nowrap;
  9755. text-transform:none;
  9756. }
  9757. #u85150 {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:0px;
  9761. top:0px;
  9762. width:0px;
  9763. height:0px;
  9764. }
  9765. #u85151_div {
  9766. border-width:0px;
  9767. position:absolute;
  9768. left:0px;
  9769. top:0px;
  9770. width:200px;
  9771. height:1702px;
  9772. background:inherit;
  9773. background-color:rgba(255, 255, 255, 1);
  9774. box-sizing:border-box;
  9775. border-width:1px;
  9776. border-style:solid;
  9777. border-color:rgba(215, 215, 215, 1);
  9778. border-radius:0px;
  9779. -moz-box-shadow:none;
  9780. -webkit-box-shadow:none;
  9781. box-shadow:none;
  9782. }
  9783. #u85151 {
  9784. border-width:0px;
  9785. position:absolute;
  9786. left:120px;
  9787. top:50px;
  9788. width:200px;
  9789. height:1702px;
  9790. display:flex;
  9791. }
  9792. #u85151 .text {
  9793. position:absolute;
  9794. align-self:center;
  9795. padding:2px 2px 2px 2px;
  9796. box-sizing:border-box;
  9797. width:100%;
  9798. }
  9799. #u85151_text {
  9800. border-width:0px;
  9801. word-wrap:break-word;
  9802. text-transform:none;
  9803. visibility:hidden;
  9804. }
  9805. #u85152_div {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:0px;
  9809. top:0px;
  9810. width:200px;
  9811. height:60px;
  9812. background:inherit;
  9813. background-color:rgba(224, 231, 247, 1);
  9814. border:none;
  9815. border-radius:0px;
  9816. -moz-box-shadow:none;
  9817. -webkit-box-shadow:none;
  9818. box-shadow:none;
  9819. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9820. font-weight:500;
  9821. font-style:normal;
  9822. font-size:18px;
  9823. }
  9824. #u85152 {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:120px;
  9828. top:50px;
  9829. width:200px;
  9830. height:60px;
  9831. display:flex;
  9832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9833. font-weight:500;
  9834. font-style:normal;
  9835. font-size:18px;
  9836. }
  9837. #u85152 .text {
  9838. position:absolute;
  9839. align-self:center;
  9840. padding:0px 0px 0px 20px;
  9841. box-sizing:border-box;
  9842. width:100%;
  9843. }
  9844. #u85152_text {
  9845. border-width:0px;
  9846. word-wrap:break-word;
  9847. text-transform:none;
  9848. }
  9849. #u85153_img {
  9850. border-width:0px;
  9851. position:absolute;
  9852. left:0px;
  9853. top:0px;
  9854. width:201px;
  9855. height:2px;
  9856. }
  9857. #u85153 {
  9858. border-width:0px;
  9859. position:absolute;
  9860. left:120px;
  9861. top:1180px;
  9862. width:200px;
  9863. height:1px;
  9864. display:flex;
  9865. }
  9866. #u85153 .text {
  9867. position:absolute;
  9868. align-self:center;
  9869. padding:2px 2px 2px 2px;
  9870. box-sizing:border-box;
  9871. width:100%;
  9872. }
  9873. #u85153_text {
  9874. border-width:0px;
  9875. word-wrap:break-word;
  9876. text-transform:none;
  9877. visibility:hidden;
  9878. }
  9879. #u85154_div {
  9880. border-width:0px;
  9881. position:absolute;
  9882. left:0px;
  9883. top:0px;
  9884. width:97px;
  9885. height:22px;
  9886. background:inherit;
  9887. background-color:rgba(255, 255, 255, 0);
  9888. border:none;
  9889. border-radius:0px;
  9890. -moz-box-shadow:none;
  9891. -webkit-box-shadow:none;
  9892. box-shadow:none;
  9893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9894. font-weight:400;
  9895. font-style:normal;
  9896. font-size:16px;
  9897. }
  9898. #u85154 {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:147px;
  9902. top:1459px;
  9903. width:97px;
  9904. height:22px;
  9905. display:flex;
  9906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9907. font-weight:400;
  9908. font-style:normal;
  9909. font-size:16px;
  9910. }
  9911. #u85154 .text {
  9912. position:absolute;
  9913. align-self:flex-start;
  9914. padding:0px 0px 0px 0px;
  9915. box-sizing:border-box;
  9916. width:100%;
  9917. }
  9918. #u85154_text {
  9919. border-width:0px;
  9920. word-wrap:break-word;
  9921. text-transform:none;
  9922. }
  9923. #u85155_div {
  9924. border-width:0px;
  9925. position:absolute;
  9926. left:0px;
  9927. top:0px;
  9928. width:49px;
  9929. height:17px;
  9930. background:inherit;
  9931. background-color:rgba(255, 255, 255, 0);
  9932. border:none;
  9933. border-radius:0px;
  9934. -moz-box-shadow:none;
  9935. -webkit-box-shadow:none;
  9936. box-shadow:none;
  9937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9938. font-weight:400;
  9939. font-style:normal;
  9940. font-size:12px;
  9941. color:#AAAAAA;
  9942. }
  9943. #u85155 {
  9944. border-width:0px;
  9945. position:absolute;
  9946. left:147px;
  9947. top:1423px;
  9948. width:49px;
  9949. height:17px;
  9950. display:flex;
  9951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9952. font-weight:400;
  9953. font-style:normal;
  9954. font-size:12px;
  9955. color:#AAAAAA;
  9956. }
  9957. #u85155 .text {
  9958. position:absolute;
  9959. align-self:flex-start;
  9960. padding:0px 0px 0px 0px;
  9961. box-sizing:border-box;
  9962. width:100%;
  9963. }
  9964. #u85155_text {
  9965. border-width:0px;
  9966. white-space:nowrap;
  9967. text-transform:none;
  9968. }
  9969. #u85156_div {
  9970. border-width:0px;
  9971. position:absolute;
  9972. left:0px;
  9973. top:0px;
  9974. width:97px;
  9975. height:22px;
  9976. background:inherit;
  9977. background-color:rgba(255, 255, 255, 0);
  9978. border:none;
  9979. border-radius:0px;
  9980. -moz-box-shadow:none;
  9981. -webkit-box-shadow:none;
  9982. box-shadow:none;
  9983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9984. font-weight:400;
  9985. font-style:normal;
  9986. font-size:16px;
  9987. }
  9988. #u85156 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:147px;
  9992. top:340px;
  9993. width:97px;
  9994. height:22px;
  9995. display:flex;
  9996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9997. font-weight:400;
  9998. font-style:normal;
  9999. font-size:16px;
  10000. }
  10001. #u85156 .text {
  10002. position:absolute;
  10003. align-self:flex-start;
  10004. padding:0px 0px 0px 0px;
  10005. box-sizing:border-box;
  10006. width:100%;
  10007. }
  10008. #u85156_text {
  10009. border-width:0px;
  10010. word-wrap:break-word;
  10011. text-transform:none;
  10012. }
  10013. #u85157_div {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:0px;
  10017. top:0px;
  10018. width:97px;
  10019. height:22px;
  10020. background:inherit;
  10021. background-color:rgba(255, 255, 255, 0);
  10022. border:none;
  10023. border-radius:0px;
  10024. -moz-box-shadow:none;
  10025. -webkit-box-shadow:none;
  10026. box-shadow:none;
  10027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10028. font-weight:400;
  10029. font-style:normal;
  10030. font-size:16px;
  10031. }
  10032. #u85157 {
  10033. border-width:0px;
  10034. position:absolute;
  10035. left:147px;
  10036. top:424px;
  10037. width:97px;
  10038. height:22px;
  10039. display:flex;
  10040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10041. font-weight:400;
  10042. font-style:normal;
  10043. font-size:16px;
  10044. }
  10045. #u85157 .text {
  10046. position:absolute;
  10047. align-self:flex-start;
  10048. padding:0px 0px 0px 0px;
  10049. box-sizing:border-box;
  10050. width:100%;
  10051. }
  10052. #u85157_text {
  10053. border-width:0px;
  10054. word-wrap:break-word;
  10055. text-transform:none;
  10056. }
  10057. #u85158_div {
  10058. border-width:0px;
  10059. position:absolute;
  10060. left:0px;
  10061. top:0px;
  10062. width:97px;
  10063. height:22px;
  10064. background:inherit;
  10065. background-color:rgba(255, 255, 255, 0);
  10066. border:none;
  10067. border-radius:0px;
  10068. -moz-box-shadow:none;
  10069. -webkit-box-shadow:none;
  10070. box-shadow:none;
  10071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10072. font-weight:400;
  10073. font-style:normal;
  10074. font-size:16px;
  10075. }
  10076. #u85158 {
  10077. border-width:0px;
  10078. position:absolute;
  10079. left:147px;
  10080. top:1501px;
  10081. width:97px;
  10082. height:22px;
  10083. display:flex;
  10084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10085. font-weight:400;
  10086. font-style:normal;
  10087. font-size:16px;
  10088. }
  10089. #u85158 .text {
  10090. position:absolute;
  10091. align-self:flex-start;
  10092. padding:0px 0px 0px 0px;
  10093. box-sizing:border-box;
  10094. width:100%;
  10095. }
  10096. #u85158_text {
  10097. border-width:0px;
  10098. word-wrap:break-word;
  10099. text-transform:none;
  10100. }
  10101. #u85159_div {
  10102. border-width:0px;
  10103. position:absolute;
  10104. left:0px;
  10105. top:0px;
  10106. width:129px;
  10107. height:22px;
  10108. background:inherit;
  10109. background-color:rgba(255, 255, 255, 0);
  10110. border:none;
  10111. border-radius:0px;
  10112. -moz-box-shadow:none;
  10113. -webkit-box-shadow:none;
  10114. box-shadow:none;
  10115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10116. font-weight:400;
  10117. font-style:normal;
  10118. font-size:16px;
  10119. }
  10120. #u85159 {
  10121. border-width:0px;
  10122. position:absolute;
  10123. left:147px;
  10124. top:1543px;
  10125. width:129px;
  10126. height:22px;
  10127. display:flex;
  10128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10129. font-weight:400;
  10130. font-style:normal;
  10131. font-size:16px;
  10132. }
  10133. #u85159 .text {
  10134. position:absolute;
  10135. align-self:flex-start;
  10136. padding:0px 0px 0px 0px;
  10137. box-sizing:border-box;
  10138. width:100%;
  10139. }
  10140. #u85159_text {
  10141. border-width:0px;
  10142. white-space:nowrap;
  10143. text-transform:none;
  10144. }
  10145. #u85160_div {
  10146. border-width:0px;
  10147. position:absolute;
  10148. left:0px;
  10149. top:0px;
  10150. width:49px;
  10151. height:17px;
  10152. background:inherit;
  10153. background-color:rgba(255, 255, 255, 0);
  10154. border:none;
  10155. border-radius:0px;
  10156. -moz-box-shadow:none;
  10157. -webkit-box-shadow:none;
  10158. box-shadow:none;
  10159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10160. font-weight:400;
  10161. font-style:normal;
  10162. font-size:12px;
  10163. color:#AAAAAA;
  10164. }
  10165. #u85160 {
  10166. border-width:0px;
  10167. position:absolute;
  10168. left:147px;
  10169. top:120px;
  10170. width:49px;
  10171. height:17px;
  10172. display:flex;
  10173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10174. font-weight:400;
  10175. font-style:normal;
  10176. font-size:12px;
  10177. color:#AAAAAA;
  10178. }
  10179. #u85160 .text {
  10180. position:absolute;
  10181. align-self:flex-start;
  10182. padding:0px 0px 0px 0px;
  10183. box-sizing:border-box;
  10184. width:100%;
  10185. }
  10186. #u85160_text {
  10187. border-width:0px;
  10188. white-space:nowrap;
  10189. text-transform:none;
  10190. }
  10191. #u85161_div {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:0px;
  10195. top:0px;
  10196. width:97px;
  10197. height:22px;
  10198. background:inherit;
  10199. background-color:rgba(255, 255, 255, 0);
  10200. border:none;
  10201. border-radius:0px;
  10202. -moz-box-shadow:none;
  10203. -webkit-box-shadow:none;
  10204. box-shadow:none;
  10205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10206. font-weight:400;
  10207. font-style:normal;
  10208. font-size:16px;
  10209. }
  10210. #u85161 {
  10211. border-width:0px;
  10212. position:absolute;
  10213. left:147px;
  10214. top:157px;
  10215. width:97px;
  10216. height:22px;
  10217. display:flex;
  10218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10219. font-weight:400;
  10220. font-style:normal;
  10221. font-size:16px;
  10222. }
  10223. #u85161 .text {
  10224. position:absolute;
  10225. align-self:flex-start;
  10226. padding:0px 0px 0px 0px;
  10227. box-sizing:border-box;
  10228. width:100%;
  10229. }
  10230. #u85161_text {
  10231. border-width:0px;
  10232. word-wrap:break-word;
  10233. text-transform:none;
  10234. }
  10235. #u85162_img {
  10236. border-width:0px;
  10237. position:absolute;
  10238. left:0px;
  10239. top:0px;
  10240. width:201px;
  10241. height:2px;
  10242. }
  10243. #u85162 {
  10244. border-width:0px;
  10245. position:absolute;
  10246. left:120px;
  10247. top:241px;
  10248. width:200px;
  10249. height:1px;
  10250. display:flex;
  10251. }
  10252. #u85162 .text {
  10253. position:absolute;
  10254. align-self:center;
  10255. padding:2px 2px 2px 2px;
  10256. box-sizing:border-box;
  10257. width:100%;
  10258. }
  10259. #u85162_text {
  10260. border-width:0px;
  10261. word-wrap:break-word;
  10262. text-transform:none;
  10263. visibility:hidden;
  10264. }
  10265. #u85163_div {
  10266. border-width:0px;
  10267. position:absolute;
  10268. left:0px;
  10269. top:0px;
  10270. width:49px;
  10271. height:17px;
  10272. background:inherit;
  10273. background-color:rgba(255, 255, 255, 0);
  10274. border:none;
  10275. border-radius:0px;
  10276. -moz-box-shadow:none;
  10277. -webkit-box-shadow:none;
  10278. box-shadow:none;
  10279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10280. font-weight:400;
  10281. font-style:normal;
  10282. font-size:12px;
  10283. color:#AAAAAA;
  10284. }
  10285. #u85163 {
  10286. border-width:0px;
  10287. position:absolute;
  10288. left:147px;
  10289. top:261px;
  10290. width:49px;
  10291. height:17px;
  10292. display:flex;
  10293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10294. font-weight:400;
  10295. font-style:normal;
  10296. font-size:12px;
  10297. color:#AAAAAA;
  10298. }
  10299. #u85163 .text {
  10300. position:absolute;
  10301. align-self:flex-start;
  10302. padding:0px 0px 0px 0px;
  10303. box-sizing:border-box;
  10304. width:100%;
  10305. }
  10306. #u85163_text {
  10307. border-width:0px;
  10308. white-space:nowrap;
  10309. text-transform:none;
  10310. }
  10311. #u85164_div {
  10312. border-width:0px;
  10313. position:absolute;
  10314. left:0px;
  10315. top:0px;
  10316. width:97px;
  10317. height:22px;
  10318. background:inherit;
  10319. background-color:rgba(255, 255, 255, 0);
  10320. border:none;
  10321. border-radius:0px;
  10322. -moz-box-shadow:none;
  10323. -webkit-box-shadow:none;
  10324. box-shadow:none;
  10325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10326. font-weight:400;
  10327. font-style:normal;
  10328. font-size:16px;
  10329. }
  10330. #u85164 {
  10331. border-width:0px;
  10332. position:absolute;
  10333. left:147px;
  10334. top:298px;
  10335. width:97px;
  10336. height:22px;
  10337. display:flex;
  10338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10339. font-weight:400;
  10340. font-style:normal;
  10341. font-size:16px;
  10342. }
  10343. #u85164 .text {
  10344. position:absolute;
  10345. align-self:flex-start;
  10346. padding:0px 0px 0px 0px;
  10347. box-sizing:border-box;
  10348. width:100%;
  10349. }
  10350. #u85164_text {
  10351. border-width:0px;
  10352. word-wrap:break-word;
  10353. text-transform:none;
  10354. }
  10355. #u85165_div {
  10356. border-width:0px;
  10357. position:absolute;
  10358. left:0px;
  10359. top:0px;
  10360. width:97px;
  10361. height:22px;
  10362. background:inherit;
  10363. background-color:rgba(255, 255, 255, 0);
  10364. border:none;
  10365. border-radius:0px;
  10366. -moz-box-shadow:none;
  10367. -webkit-box-shadow:none;
  10368. box-shadow:none;
  10369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10370. font-weight:400;
  10371. font-style:normal;
  10372. font-size:16px;
  10373. }
  10374. #u85165 {
  10375. border-width:0px;
  10376. position:absolute;
  10377. left:147px;
  10378. top:199px;
  10379. width:97px;
  10380. height:22px;
  10381. display:flex;
  10382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10383. font-weight:400;
  10384. font-style:normal;
  10385. font-size:16px;
  10386. }
  10387. #u85165 .text {
  10388. position:absolute;
  10389. align-self:flex-start;
  10390. padding:0px 0px 0px 0px;
  10391. box-sizing:border-box;
  10392. width:100%;
  10393. }
  10394. #u85165_text {
  10395. border-width:0px;
  10396. word-wrap:break-word;
  10397. text-transform:none;
  10398. }
  10399. #u85166_div {
  10400. border-width:0px;
  10401. position:absolute;
  10402. left:0px;
  10403. top:0px;
  10404. width:97px;
  10405. height:22px;
  10406. background:inherit;
  10407. background-color:rgba(255, 255, 255, 0);
  10408. border:none;
  10409. border-radius:0px;
  10410. -moz-box-shadow:none;
  10411. -webkit-box-shadow:none;
  10412. box-shadow:none;
  10413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10414. font-weight:400;
  10415. font-style:normal;
  10416. font-size:16px;
  10417. }
  10418. #u85166 {
  10419. border-width:0px;
  10420. position:absolute;
  10421. left:147px;
  10422. top:382px;
  10423. width:97px;
  10424. height:22px;
  10425. display:flex;
  10426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10427. font-weight:400;
  10428. font-style:normal;
  10429. font-size:16px;
  10430. }
  10431. #u85166 .text {
  10432. position:absolute;
  10433. align-self:flex-start;
  10434. padding:0px 0px 0px 0px;
  10435. box-sizing:border-box;
  10436. width:100%;
  10437. }
  10438. #u85166_text {
  10439. border-width:0px;
  10440. word-wrap:break-word;
  10441. text-transform:none;
  10442. }
  10443. #u85167_div {
  10444. border-width:0px;
  10445. position:absolute;
  10446. left:0px;
  10447. top:0px;
  10448. width:97px;
  10449. height:22px;
  10450. background:inherit;
  10451. background-color:rgba(255, 255, 255, 0);
  10452. border:none;
  10453. border-radius:0px;
  10454. -moz-box-shadow:none;
  10455. -webkit-box-shadow:none;
  10456. box-shadow:none;
  10457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10458. font-weight:400;
  10459. font-style:normal;
  10460. font-size:16px;
  10461. }
  10462. #u85167 {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:147px;
  10466. top:466px;
  10467. width:97px;
  10468. height:22px;
  10469. display:flex;
  10470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10471. font-weight:400;
  10472. font-style:normal;
  10473. font-size:16px;
  10474. }
  10475. #u85167 .text {
  10476. position:absolute;
  10477. align-self:flex-start;
  10478. padding:0px 0px 0px 0px;
  10479. box-sizing:border-box;
  10480. width:100%;
  10481. }
  10482. #u85167_text {
  10483. border-width:0px;
  10484. word-wrap:break-word;
  10485. text-transform:none;
  10486. }
  10487. #u85168_div {
  10488. border-width:0px;
  10489. position:absolute;
  10490. left:0px;
  10491. top:0px;
  10492. width:97px;
  10493. height:22px;
  10494. background:inherit;
  10495. background-color:rgba(255, 255, 255, 0);
  10496. border:none;
  10497. border-radius:0px;
  10498. -moz-box-shadow:none;
  10499. -webkit-box-shadow:none;
  10500. box-shadow:none;
  10501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10502. font-weight:400;
  10503. font-style:normal;
  10504. font-size:16px;
  10505. }
  10506. #u85168 {
  10507. border-width:0px;
  10508. position:absolute;
  10509. left:147px;
  10510. top:508px;
  10511. width:97px;
  10512. height:22px;
  10513. display:flex;
  10514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10515. font-weight:400;
  10516. font-style:normal;
  10517. font-size:16px;
  10518. }
  10519. #u85168 .text {
  10520. position:absolute;
  10521. align-self:flex-start;
  10522. padding:0px 0px 0px 0px;
  10523. box-sizing:border-box;
  10524. width:100%;
  10525. }
  10526. #u85168_text {
  10527. border-width:0px;
  10528. word-wrap:break-word;
  10529. text-transform:none;
  10530. }
  10531. #u85169_div {
  10532. border-width:0px;
  10533. position:absolute;
  10534. left:0px;
  10535. top:0px;
  10536. width:97px;
  10537. height:22px;
  10538. background:inherit;
  10539. background-color:rgba(255, 255, 255, 0);
  10540. border:none;
  10541. border-radius:0px;
  10542. -moz-box-shadow:none;
  10543. -webkit-box-shadow:none;
  10544. box-shadow:none;
  10545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10546. font-weight:400;
  10547. font-style:normal;
  10548. font-size:16px;
  10549. }
  10550. #u85169 {
  10551. border-width:0px;
  10552. position:absolute;
  10553. left:147px;
  10554. top:550px;
  10555. width:97px;
  10556. height:22px;
  10557. display:flex;
  10558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10559. font-weight:400;
  10560. font-style:normal;
  10561. font-size:16px;
  10562. }
  10563. #u85169 .text {
  10564. position:absolute;
  10565. align-self:flex-start;
  10566. padding:0px 0px 0px 0px;
  10567. box-sizing:border-box;
  10568. width:100%;
  10569. }
  10570. #u85169_text {
  10571. border-width:0px;
  10572. word-wrap:break-word;
  10573. text-transform:none;
  10574. }
  10575. #u85170_div {
  10576. border-width:0px;
  10577. position:absolute;
  10578. left:0px;
  10579. top:0px;
  10580. width:97px;
  10581. height:22px;
  10582. background:inherit;
  10583. background-color:rgba(255, 255, 255, 0);
  10584. border:none;
  10585. border-radius:0px;
  10586. -moz-box-shadow:none;
  10587. -webkit-box-shadow:none;
  10588. box-shadow:none;
  10589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10590. font-weight:400;
  10591. font-style:normal;
  10592. font-size:16px;
  10593. }
  10594. #u85170 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:147px;
  10598. top:592px;
  10599. width:97px;
  10600. height:22px;
  10601. display:flex;
  10602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10603. font-weight:400;
  10604. font-style:normal;
  10605. font-size:16px;
  10606. }
  10607. #u85170 .text {
  10608. position:absolute;
  10609. align-self:flex-start;
  10610. padding:0px 0px 0px 0px;
  10611. box-sizing:border-box;
  10612. width:100%;
  10613. }
  10614. #u85170_text {
  10615. border-width:0px;
  10616. word-wrap:break-word;
  10617. text-transform:none;
  10618. }
  10619. #u85171_div {
  10620. border-width:0px;
  10621. position:absolute;
  10622. left:0px;
  10623. top:0px;
  10624. width:97px;
  10625. height:22px;
  10626. background:inherit;
  10627. background-color:rgba(255, 255, 255, 0);
  10628. border:none;
  10629. border-radius:0px;
  10630. -moz-box-shadow:none;
  10631. -webkit-box-shadow:none;
  10632. box-shadow:none;
  10633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10634. font-weight:400;
  10635. font-style:normal;
  10636. font-size:16px;
  10637. }
  10638. #u85171 {
  10639. border-width:0px;
  10640. position:absolute;
  10641. left:147px;
  10642. top:634px;
  10643. width:97px;
  10644. height:22px;
  10645. display:flex;
  10646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10647. font-weight:400;
  10648. font-style:normal;
  10649. font-size:16px;
  10650. }
  10651. #u85171 .text {
  10652. position:absolute;
  10653. align-self:flex-start;
  10654. padding:0px 0px 0px 0px;
  10655. box-sizing:border-box;
  10656. width:100%;
  10657. }
  10658. #u85171_text {
  10659. border-width:0px;
  10660. word-wrap:break-word;
  10661. text-transform:none;
  10662. }
  10663. #u85172_img {
  10664. border-width:0px;
  10665. position:absolute;
  10666. left:0px;
  10667. top:0px;
  10668. width:201px;
  10669. height:2px;
  10670. }
  10671. #u85172 {
  10672. border-width:0px;
  10673. position:absolute;
  10674. left:120px;
  10675. top:680px;
  10676. width:200px;
  10677. height:1px;
  10678. display:flex;
  10679. }
  10680. #u85172 .text {
  10681. position:absolute;
  10682. align-self:center;
  10683. padding:2px 2px 2px 2px;
  10684. box-sizing:border-box;
  10685. width:100%;
  10686. }
  10687. #u85172_text {
  10688. border-width:0px;
  10689. word-wrap:break-word;
  10690. text-transform:none;
  10691. visibility:hidden;
  10692. }
  10693. #u85173_div {
  10694. border-width:0px;
  10695. position:absolute;
  10696. left:0px;
  10697. top:0px;
  10698. width:49px;
  10699. height:17px;
  10700. background:inherit;
  10701. background-color:rgba(255, 255, 255, 0);
  10702. border:none;
  10703. border-radius:0px;
  10704. -moz-box-shadow:none;
  10705. -webkit-box-shadow:none;
  10706. box-shadow:none;
  10707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10708. font-weight:400;
  10709. font-style:normal;
  10710. font-size:12px;
  10711. color:#AAAAAA;
  10712. }
  10713. #u85173 {
  10714. border-width:0px;
  10715. position:absolute;
  10716. left:147px;
  10717. top:886px;
  10718. width:49px;
  10719. height:17px;
  10720. display:flex;
  10721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10722. font-weight:400;
  10723. font-style:normal;
  10724. font-size:12px;
  10725. color:#AAAAAA;
  10726. }
  10727. #u85173 .text {
  10728. position:absolute;
  10729. align-self:flex-start;
  10730. padding:0px 0px 0px 0px;
  10731. box-sizing:border-box;
  10732. width:100%;
  10733. }
  10734. #u85173_text {
  10735. border-width:0px;
  10736. white-space:nowrap;
  10737. text-transform:none;
  10738. }
  10739. #u85174_div {
  10740. border-width:0px;
  10741. position:absolute;
  10742. left:0px;
  10743. top:0px;
  10744. width:113px;
  10745. height:22px;
  10746. background:inherit;
  10747. background-color:rgba(255, 255, 255, 0);
  10748. border:none;
  10749. border-radius:0px;
  10750. -moz-box-shadow:none;
  10751. -webkit-box-shadow:none;
  10752. box-shadow:none;
  10753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10754. font-weight:400;
  10755. font-style:normal;
  10756. font-size:16px;
  10757. }
  10758. #u85174 {
  10759. border-width:0px;
  10760. position:absolute;
  10761. left:147px;
  10762. top:923px;
  10763. width:113px;
  10764. height:22px;
  10765. display:flex;
  10766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10767. font-weight:400;
  10768. font-style:normal;
  10769. font-size:16px;
  10770. }
  10771. #u85174 .text {
  10772. position:absolute;
  10773. align-self:flex-start;
  10774. padding:0px 0px 0px 0px;
  10775. box-sizing:border-box;
  10776. width:100%;
  10777. }
  10778. #u85174_text {
  10779. border-width:0px;
  10780. white-space:nowrap;
  10781. text-transform:none;
  10782. }
  10783. #u85175_div {
  10784. border-width:0px;
  10785. position:absolute;
  10786. left:0px;
  10787. top:0px;
  10788. width:145px;
  10789. height:22px;
  10790. background:inherit;
  10791. background-color:rgba(255, 255, 255, 0);
  10792. border:none;
  10793. border-radius:0px;
  10794. -moz-box-shadow:none;
  10795. -webkit-box-shadow:none;
  10796. box-shadow:none;
  10797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10798. font-weight:400;
  10799. font-style:normal;
  10800. font-size:16px;
  10801. }
  10802. #u85175 {
  10803. border-width:0px;
  10804. position:absolute;
  10805. left:147px;
  10806. top:965px;
  10807. width:145px;
  10808. height:22px;
  10809. display:flex;
  10810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10811. font-weight:400;
  10812. font-style:normal;
  10813. font-size:16px;
  10814. }
  10815. #u85175 .text {
  10816. position:absolute;
  10817. align-self:flex-start;
  10818. padding:0px 0px 0px 0px;
  10819. box-sizing:border-box;
  10820. width:100%;
  10821. }
  10822. #u85175_text {
  10823. border-width:0px;
  10824. white-space:nowrap;
  10825. text-transform:none;
  10826. }
  10827. #u85176_div {
  10828. border-width:0px;
  10829. position:absolute;
  10830. left:0px;
  10831. top:0px;
  10832. width:145px;
  10833. height:22px;
  10834. background:inherit;
  10835. background-color:rgba(255, 255, 255, 0);
  10836. border:none;
  10837. border-radius:0px;
  10838. -moz-box-shadow:none;
  10839. -webkit-box-shadow:none;
  10840. box-shadow:none;
  10841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10842. font-weight:400;
  10843. font-style:normal;
  10844. font-size:16px;
  10845. }
  10846. #u85176 {
  10847. border-width:0px;
  10848. position:absolute;
  10849. left:147px;
  10850. top:1007px;
  10851. width:145px;
  10852. height:22px;
  10853. display:flex;
  10854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10855. font-weight:400;
  10856. font-style:normal;
  10857. font-size:16px;
  10858. }
  10859. #u85176 .text {
  10860. position:absolute;
  10861. align-self:flex-start;
  10862. padding:0px 0px 0px 0px;
  10863. box-sizing:border-box;
  10864. width:100%;
  10865. }
  10866. #u85176_text {
  10867. border-width:0px;
  10868. white-space:nowrap;
  10869. text-transform:none;
  10870. }
  10871. #u85177_div {
  10872. border-width:0px;
  10873. position:absolute;
  10874. left:0px;
  10875. top:0px;
  10876. width:145px;
  10877. height:22px;
  10878. background:inherit;
  10879. background-color:rgba(255, 255, 255, 0);
  10880. border:none;
  10881. border-radius:0px;
  10882. -moz-box-shadow:none;
  10883. -webkit-box-shadow:none;
  10884. box-shadow:none;
  10885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10886. font-weight:400;
  10887. font-style:normal;
  10888. font-size:16px;
  10889. }
  10890. #u85177 {
  10891. border-width:0px;
  10892. position:absolute;
  10893. left:147px;
  10894. top:1049px;
  10895. width:145px;
  10896. height:22px;
  10897. display:flex;
  10898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10899. font-weight:400;
  10900. font-style:normal;
  10901. font-size:16px;
  10902. }
  10903. #u85177 .text {
  10904. position:absolute;
  10905. align-self:flex-start;
  10906. padding:0px 0px 0px 0px;
  10907. box-sizing:border-box;
  10908. width:100%;
  10909. }
  10910. #u85177_text {
  10911. border-width:0px;
  10912. white-space:nowrap;
  10913. text-transform:none;
  10914. }
  10915. #u85178_div {
  10916. border-width:0px;
  10917. position:absolute;
  10918. left:0px;
  10919. top:0px;
  10920. width:145px;
  10921. height:22px;
  10922. background:inherit;
  10923. background-color:rgba(255, 255, 255, 0);
  10924. border:none;
  10925. border-radius:0px;
  10926. -moz-box-shadow:none;
  10927. -webkit-box-shadow:none;
  10928. box-shadow:none;
  10929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10930. font-weight:400;
  10931. font-style:normal;
  10932. font-size:16px;
  10933. }
  10934. #u85178 {
  10935. border-width:0px;
  10936. position:absolute;
  10937. left:147px;
  10938. top:1091px;
  10939. width:145px;
  10940. height:22px;
  10941. display:flex;
  10942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10943. font-weight:400;
  10944. font-style:normal;
  10945. font-size:16px;
  10946. }
  10947. #u85178 .text {
  10948. position:absolute;
  10949. align-self:flex-start;
  10950. padding:0px 0px 0px 0px;
  10951. box-sizing:border-box;
  10952. width:100%;
  10953. }
  10954. #u85178_text {
  10955. border-width:0px;
  10956. white-space:nowrap;
  10957. text-transform:none;
  10958. }
  10959. #u85179_div {
  10960. border-width:0px;
  10961. position:absolute;
  10962. left:0px;
  10963. top:0px;
  10964. width:113px;
  10965. height:22px;
  10966. background:inherit;
  10967. background-color:rgba(255, 255, 255, 0);
  10968. border:none;
  10969. border-radius:0px;
  10970. -moz-box-shadow:none;
  10971. -webkit-box-shadow:none;
  10972. box-shadow:none;
  10973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10974. font-weight:400;
  10975. font-style:normal;
  10976. font-size:16px;
  10977. }
  10978. #u85179 {
  10979. border-width:0px;
  10980. position:absolute;
  10981. left:147px;
  10982. top:1133px;
  10983. width:113px;
  10984. height:22px;
  10985. display:flex;
  10986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10987. font-weight:400;
  10988. font-style:normal;
  10989. font-size:16px;
  10990. }
  10991. #u85179 .text {
  10992. position:absolute;
  10993. align-self:flex-start;
  10994. padding:0px 0px 0px 0px;
  10995. box-sizing:border-box;
  10996. width:100%;
  10997. }
  10998. #u85179_text {
  10999. border-width:0px;
  11000. white-space:nowrap;
  11001. text-transform:none;
  11002. }
  11003. #u85180_div {
  11004. border-width:0px;
  11005. position:absolute;
  11006. left:0px;
  11007. top:0px;
  11008. width:97px;
  11009. height:22px;
  11010. background:inherit;
  11011. background-color:rgba(255, 255, 255, 0);
  11012. border:none;
  11013. border-radius:0px;
  11014. -moz-box-shadow:none;
  11015. -webkit-box-shadow:none;
  11016. box-shadow:none;
  11017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11018. font-weight:400;
  11019. font-style:normal;
  11020. font-size:16px;
  11021. }
  11022. #u85180 {
  11023. border-width:0px;
  11024. position:absolute;
  11025. left:147px;
  11026. top:1585px;
  11027. width:97px;
  11028. height:22px;
  11029. display:flex;
  11030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11031. font-weight:400;
  11032. font-style:normal;
  11033. font-size:16px;
  11034. }
  11035. #u85180 .text {
  11036. position:absolute;
  11037. align-self:flex-start;
  11038. padding:0px 0px 0px 0px;
  11039. box-sizing:border-box;
  11040. width:100%;
  11041. }
  11042. #u85180_text {
  11043. border-width:0px;
  11044. white-space:nowrap;
  11045. text-transform:none;
  11046. }
  11047. #u85181_div {
  11048. border-width:0px;
  11049. position:absolute;
  11050. left:0px;
  11051. top:0px;
  11052. width:97px;
  11053. height:22px;
  11054. background:inherit;
  11055. background-color:rgba(255, 255, 255, 0);
  11056. border:none;
  11057. border-radius:0px;
  11058. -moz-box-shadow:none;
  11059. -webkit-box-shadow:none;
  11060. box-shadow:none;
  11061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11062. font-weight:400;
  11063. font-style:normal;
  11064. font-size:16px;
  11065. }
  11066. #u85181 {
  11067. border-width:0px;
  11068. position:absolute;
  11069. left:147px;
  11070. top:1627px;
  11071. width:97px;
  11072. height:22px;
  11073. display:flex;
  11074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11075. font-weight:400;
  11076. font-style:normal;
  11077. font-size:16px;
  11078. }
  11079. #u85181 .text {
  11080. position:absolute;
  11081. align-self:flex-start;
  11082. padding:0px 0px 0px 0px;
  11083. box-sizing:border-box;
  11084. width:100%;
  11085. }
  11086. #u85181_text {
  11087. border-width:0px;
  11088. white-space:nowrap;
  11089. text-transform:none;
  11090. }
  11091. #u85182_div {
  11092. border-width:0px;
  11093. position:absolute;
  11094. left:0px;
  11095. top:0px;
  11096. width:97px;
  11097. height:22px;
  11098. background:inherit;
  11099. background-color:rgba(255, 255, 255, 0);
  11100. border:none;
  11101. border-radius:0px;
  11102. -moz-box-shadow:none;
  11103. -webkit-box-shadow:none;
  11104. box-shadow:none;
  11105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11106. font-weight:400;
  11107. font-style:normal;
  11108. font-size:16px;
  11109. }
  11110. #u85182 {
  11111. border-width:0px;
  11112. position:absolute;
  11113. left:147px;
  11114. top:1669px;
  11115. width:97px;
  11116. height:22px;
  11117. display:flex;
  11118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11119. font-weight:400;
  11120. font-style:normal;
  11121. font-size:16px;
  11122. }
  11123. #u85182 .text {
  11124. position:absolute;
  11125. align-self:flex-start;
  11126. padding:0px 0px 0px 0px;
  11127. box-sizing:border-box;
  11128. width:100%;
  11129. }
  11130. #u85182_text {
  11131. border-width:0px;
  11132. white-space:nowrap;
  11133. text-transform:none;
  11134. }
  11135. #u85183_div {
  11136. border-width:0px;
  11137. position:absolute;
  11138. left:0px;
  11139. top:0px;
  11140. width:97px;
  11141. height:22px;
  11142. background:inherit;
  11143. background-color:rgba(255, 255, 255, 0);
  11144. border:none;
  11145. border-radius:0px;
  11146. -moz-box-shadow:none;
  11147. -webkit-box-shadow:none;
  11148. box-shadow:none;
  11149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11150. font-weight:400;
  11151. font-style:normal;
  11152. font-size:16px;
  11153. }
  11154. #u85183 {
  11155. border-width:0px;
  11156. position:absolute;
  11157. left:147px;
  11158. top:1711px;
  11159. width:97px;
  11160. height:22px;
  11161. display:flex;
  11162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11163. font-weight:400;
  11164. font-style:normal;
  11165. font-size:16px;
  11166. }
  11167. #u85183 .text {
  11168. position:absolute;
  11169. align-self:flex-start;
  11170. padding:0px 0px 0px 0px;
  11171. box-sizing:border-box;
  11172. width:100%;
  11173. }
  11174. #u85183_text {
  11175. border-width:0px;
  11176. white-space:nowrap;
  11177. text-transform:none;
  11178. }
  11179. #u85184_div {
  11180. border-width:0px;
  11181. position:absolute;
  11182. left:0px;
  11183. top:0px;
  11184. width:97px;
  11185. height:22px;
  11186. background:inherit;
  11187. background-color:rgba(255, 255, 255, 0);
  11188. border:none;
  11189. border-radius:0px;
  11190. -moz-box-shadow:none;
  11191. -webkit-box-shadow:none;
  11192. box-shadow:none;
  11193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11194. font-weight:400;
  11195. font-style:normal;
  11196. font-size:16px;
  11197. }
  11198. #u85184 {
  11199. border-width:0px;
  11200. position:absolute;
  11201. left:147px;
  11202. top:824px;
  11203. width:97px;
  11204. height:22px;
  11205. display:flex;
  11206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11207. font-weight:400;
  11208. font-style:normal;
  11209. font-size:16px;
  11210. }
  11211. #u85184 .text {
  11212. position:absolute;
  11213. align-self:flex-start;
  11214. padding:0px 0px 0px 0px;
  11215. box-sizing:border-box;
  11216. width:100%;
  11217. }
  11218. #u85184_text {
  11219. border-width:0px;
  11220. word-wrap:break-word;
  11221. text-transform:none;
  11222. }
  11223. #u85185_div {
  11224. border-width:0px;
  11225. position:absolute;
  11226. left:0px;
  11227. top:0px;
  11228. width:97px;
  11229. height:22px;
  11230. background:inherit;
  11231. background-color:rgba(255, 255, 255, 0);
  11232. border:none;
  11233. border-radius:0px;
  11234. -moz-box-shadow:none;
  11235. -webkit-box-shadow:none;
  11236. box-shadow:none;
  11237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11238. font-weight:400;
  11239. font-style:normal;
  11240. font-size:16px;
  11241. }
  11242. #u85185 {
  11243. border-width:0px;
  11244. position:absolute;
  11245. left:147px;
  11246. top:738px;
  11247. width:97px;
  11248. height:22px;
  11249. display:flex;
  11250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11251. font-weight:400;
  11252. font-style:normal;
  11253. font-size:16px;
  11254. }
  11255. #u85185 .text {
  11256. position:absolute;
  11257. align-self:flex-start;
  11258. padding:0px 0px 0px 0px;
  11259. box-sizing:border-box;
  11260. width:100%;
  11261. }
  11262. #u85185_text {
  11263. border-width:0px;
  11264. word-wrap:break-word;
  11265. text-transform:none;
  11266. }
  11267. #u85186_div {
  11268. border-width:0px;
  11269. position:absolute;
  11270. left:0px;
  11271. top:0px;
  11272. width:49px;
  11273. height:17px;
  11274. background:inherit;
  11275. background-color:rgba(255, 255, 255, 0);
  11276. border:none;
  11277. border-radius:0px;
  11278. -moz-box-shadow:none;
  11279. -webkit-box-shadow:none;
  11280. box-shadow:none;
  11281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11282. font-weight:400;
  11283. font-style:normal;
  11284. font-size:12px;
  11285. color:#AAAAAA;
  11286. }
  11287. #u85186 {
  11288. border-width:0px;
  11289. position:absolute;
  11290. left:147px;
  11291. top:701px;
  11292. width:49px;
  11293. height:17px;
  11294. display:flex;
  11295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11296. font-weight:400;
  11297. font-style:normal;
  11298. font-size:12px;
  11299. color:#AAAAAA;
  11300. }
  11301. #u85186 .text {
  11302. position:absolute;
  11303. align-self:flex-start;
  11304. padding:0px 0px 0px 0px;
  11305. box-sizing:border-box;
  11306. width:100%;
  11307. }
  11308. #u85186_text {
  11309. border-width:0px;
  11310. white-space:nowrap;
  11311. text-transform:none;
  11312. }
  11313. #u85187_div {
  11314. border-width:0px;
  11315. position:absolute;
  11316. left:0px;
  11317. top:0px;
  11318. width:97px;
  11319. height:22px;
  11320. background:inherit;
  11321. background-color:rgba(255, 255, 255, 0);
  11322. border:none;
  11323. border-radius:0px;
  11324. -moz-box-shadow:none;
  11325. -webkit-box-shadow:none;
  11326. box-shadow:none;
  11327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11328. font-weight:400;
  11329. font-style:normal;
  11330. font-size:16px;
  11331. }
  11332. #u85187 {
  11333. border-width:0px;
  11334. position:absolute;
  11335. left:147px;
  11336. top:780px;
  11337. width:97px;
  11338. height:22px;
  11339. display:flex;
  11340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11341. font-weight:400;
  11342. font-style:normal;
  11343. font-size:16px;
  11344. }
  11345. #u85187 .text {
  11346. position:absolute;
  11347. align-self:flex-start;
  11348. padding:0px 0px 0px 0px;
  11349. box-sizing:border-box;
  11350. width:100%;
  11351. }
  11352. #u85187_text {
  11353. border-width:0px;
  11354. word-wrap:break-word;
  11355. text-transform:none;
  11356. }
  11357. #u85188_img {
  11358. border-width:0px;
  11359. position:absolute;
  11360. left:0px;
  11361. top:0px;
  11362. width:201px;
  11363. height:2px;
  11364. }
  11365. #u85188 {
  11366. border-width:0px;
  11367. position:absolute;
  11368. left:120px;
  11369. top:866px;
  11370. width:200px;
  11371. height:1px;
  11372. display:flex;
  11373. }
  11374. #u85188 .text {
  11375. position:absolute;
  11376. align-self:center;
  11377. padding:2px 2px 2px 2px;
  11378. box-sizing:border-box;
  11379. width:100%;
  11380. }
  11381. #u85188_text {
  11382. border-width:0px;
  11383. word-wrap:break-word;
  11384. text-transform:none;
  11385. visibility:hidden;
  11386. }
  11387. #u85189_div {
  11388. border-width:0px;
  11389. position:absolute;
  11390. left:0px;
  11391. top:0px;
  11392. width:97px;
  11393. height:22px;
  11394. background:inherit;
  11395. background-color:rgba(255, 255, 255, 0);
  11396. border:none;
  11397. border-radius:0px;
  11398. -moz-box-shadow:none;
  11399. -webkit-box-shadow:none;
  11400. box-shadow:none;
  11401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11402. font-weight:400;
  11403. font-style:normal;
  11404. font-size:16px;
  11405. }
  11406. #u85189 {
  11407. border-width:0px;
  11408. position:absolute;
  11409. left:147px;
  11410. top:1237px;
  11411. width:97px;
  11412. height:22px;
  11413. display:flex;
  11414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11415. font-weight:400;
  11416. font-style:normal;
  11417. font-size:16px;
  11418. }
  11419. #u85189 .text {
  11420. position:absolute;
  11421. align-self:flex-start;
  11422. padding:0px 0px 0px 0px;
  11423. box-sizing:border-box;
  11424. width:100%;
  11425. }
  11426. #u85189_text {
  11427. border-width:0px;
  11428. word-wrap:break-word;
  11429. text-transform:none;
  11430. }
  11431. #u85190_div {
  11432. border-width:0px;
  11433. position:absolute;
  11434. left:0px;
  11435. top:0px;
  11436. width:49px;
  11437. height:17px;
  11438. background:inherit;
  11439. background-color:rgba(255, 255, 255, 0);
  11440. border:none;
  11441. border-radius:0px;
  11442. -moz-box-shadow:none;
  11443. -webkit-box-shadow:none;
  11444. box-shadow:none;
  11445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11446. font-weight:400;
  11447. font-style:normal;
  11448. font-size:12px;
  11449. color:#AAAAAA;
  11450. }
  11451. #u85190 {
  11452. border-width:0px;
  11453. position:absolute;
  11454. left:147px;
  11455. top:1201px;
  11456. width:49px;
  11457. height:17px;
  11458. display:flex;
  11459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11460. font-weight:400;
  11461. font-style:normal;
  11462. font-size:12px;
  11463. color:#AAAAAA;
  11464. }
  11465. #u85190 .text {
  11466. position:absolute;
  11467. align-self:flex-start;
  11468. padding:0px 0px 0px 0px;
  11469. box-sizing:border-box;
  11470. width:100%;
  11471. }
  11472. #u85190_text {
  11473. border-width:0px;
  11474. white-space:nowrap;
  11475. text-transform:none;
  11476. }
  11477. #u85191_div {
  11478. border-width:0px;
  11479. position:absolute;
  11480. left:0px;
  11481. top:0px;
  11482. width:97px;
  11483. height:22px;
  11484. background:inherit;
  11485. background-color:rgba(255, 255, 255, 0);
  11486. border:none;
  11487. border-radius:0px;
  11488. -moz-box-shadow:none;
  11489. -webkit-box-shadow:none;
  11490. box-shadow:none;
  11491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11492. font-weight:400;
  11493. font-style:normal;
  11494. font-size:16px;
  11495. }
  11496. #u85191 {
  11497. border-width:0px;
  11498. position:absolute;
  11499. left:147px;
  11500. top:1279px;
  11501. width:97px;
  11502. height:22px;
  11503. display:flex;
  11504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11505. font-weight:400;
  11506. font-style:normal;
  11507. font-size:16px;
  11508. }
  11509. #u85191 .text {
  11510. position:absolute;
  11511. align-self:flex-start;
  11512. padding:0px 0px 0px 0px;
  11513. box-sizing:border-box;
  11514. width:100%;
  11515. }
  11516. #u85191_text {
  11517. border-width:0px;
  11518. word-wrap:break-word;
  11519. text-transform:none;
  11520. }
  11521. #u85192_div {
  11522. border-width:0px;
  11523. position:absolute;
  11524. left:0px;
  11525. top:0px;
  11526. width:97px;
  11527. height:22px;
  11528. background:inherit;
  11529. background-color:rgba(255, 255, 255, 0);
  11530. border:none;
  11531. border-radius:0px;
  11532. -moz-box-shadow:none;
  11533. -webkit-box-shadow:none;
  11534. box-shadow:none;
  11535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11536. font-weight:400;
  11537. font-style:normal;
  11538. font-size:16px;
  11539. }
  11540. #u85192 {
  11541. border-width:0px;
  11542. position:absolute;
  11543. left:147px;
  11544. top:1321px;
  11545. width:97px;
  11546. height:22px;
  11547. display:flex;
  11548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11549. font-weight:400;
  11550. font-style:normal;
  11551. font-size:16px;
  11552. }
  11553. #u85192 .text {
  11554. position:absolute;
  11555. align-self:flex-start;
  11556. padding:0px 0px 0px 0px;
  11557. box-sizing:border-box;
  11558. width:100%;
  11559. }
  11560. #u85192_text {
  11561. border-width:0px;
  11562. word-wrap:break-word;
  11563. text-transform:none;
  11564. }
  11565. #u85193_div {
  11566. border-width:0px;
  11567. position:absolute;
  11568. left:0px;
  11569. top:0px;
  11570. width:97px;
  11571. height:22px;
  11572. background:inherit;
  11573. background-color:rgba(255, 255, 255, 0);
  11574. border:none;
  11575. border-radius:0px;
  11576. -moz-box-shadow:none;
  11577. -webkit-box-shadow:none;
  11578. box-shadow:none;
  11579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11580. font-weight:400;
  11581. font-style:normal;
  11582. font-size:16px;
  11583. }
  11584. #u85193 {
  11585. border-width:0px;
  11586. position:absolute;
  11587. left:147px;
  11588. top:1363px;
  11589. width:97px;
  11590. height:22px;
  11591. display:flex;
  11592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11593. font-weight:400;
  11594. font-style:normal;
  11595. font-size:16px;
  11596. }
  11597. #u85193 .text {
  11598. position:absolute;
  11599. align-self:flex-start;
  11600. padding:0px 0px 0px 0px;
  11601. box-sizing:border-box;
  11602. width:100%;
  11603. }
  11604. #u85193_text {
  11605. border-width:0px;
  11606. word-wrap:break-word;
  11607. text-transform:none;
  11608. }
  11609. #u85194_img {
  11610. border-width:0px;
  11611. position:absolute;
  11612. left:0px;
  11613. top:0px;
  11614. width:201px;
  11615. height:2px;
  11616. }
  11617. #u85194 {
  11618. border-width:0px;
  11619. position:absolute;
  11620. left:120px;
  11621. top:1403px;
  11622. width:200px;
  11623. height:1px;
  11624. display:flex;
  11625. }
  11626. #u85194 .text {
  11627. position:absolute;
  11628. align-self:center;
  11629. padding:2px 2px 2px 2px;
  11630. box-sizing:border-box;
  11631. width:100%;
  11632. }
  11633. #u85194_text {
  11634. border-width:0px;
  11635. word-wrap:break-word;
  11636. text-transform:none;
  11637. visibility:hidden;
  11638. }