styles.css 150 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2450px;
  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. #u84881_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. #u84881 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u84881 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u84881_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u84882_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. #u84882 {
  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. #u84882 .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. #u84882_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u84883_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. #u84883 {
  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. #u84883 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u84883_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u84884 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u84885_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u84885 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u84885 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u84885_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u84886_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. #u84886 {
  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. #u84886 .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. #u84886_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u84887_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. #u84887 {
  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. #u84887 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u84887_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u84888 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u84889_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u84889 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u84889 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u84889_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u84890_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u84890 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u84890 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u84890_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u84891 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u84892_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u84892 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u84892 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u84892_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u84893_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u84893 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u84893 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u84893_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u84894 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u84895_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u84895 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u84895 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u84895_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u84896_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u84896 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u84896 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u84896_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u84897 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u84898_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u84898 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u84898 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u84898_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u84899_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u84899 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u84899 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u84899_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u84900 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u84901_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u84901 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u84901 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u84901_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u84902_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u84902 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u84902 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u84902_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u84903 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u84904_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u84904 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u84904 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u84904_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u84905_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u84905 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u84905 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u84905_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u84906 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u84907_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u84907 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u84907 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u84907_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u84908_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u84908 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u84908 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u84908_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u84909 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u84910_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u84910 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u84910 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u84910_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u84911_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u84911 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u84911 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u84911_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u84912 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u84913_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u84913 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u84913 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u84913_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u84914_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u84914 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u84914 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u84914_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u84915_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u84915 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u84915 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u84915_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u84916_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u84916 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u84916 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u84916_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u84917_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u84917 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u84917 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u84917_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u84918_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u84918 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u84918 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u84918_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u84919 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u84920_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u84920 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u84920 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u84920_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u84921_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u84921 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u84921 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u84921_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u84922 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u84923_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u84923 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u84923 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u84923_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u84924_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u84924 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u84924 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u84924_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u84925 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u84926_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u84926_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u84926_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u84926 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u84926 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u84926_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u84926.disabled {
  1428. }
  1429. .u84926_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u84927_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u84927 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u84927 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u84927_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u84928_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u84928 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u84928 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u84928_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u84929_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u84929 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u84929 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u84929_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u84930_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1552. }
  1553. #u84930 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u84930 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u84930_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u84931 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:668px;
  1579. top:253px;
  1580. width:901px;
  1581. height:465px;
  1582. }
  1583. #u84932_img {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:167px;
  1589. height:41px;
  1590. }
  1591. #u84932 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:167px;
  1597. height:41px;
  1598. display:flex;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:12px;
  1603. color:#FFFFFF;
  1604. }
  1605. #u84932 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u84932_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. }
  1617. #u84933_img {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:190px;
  1623. height:41px;
  1624. }
  1625. #u84933 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:167px;
  1629. top:0px;
  1630. width:190px;
  1631. height:41px;
  1632. display:flex;
  1633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:12px;
  1637. color:#FFFFFF;
  1638. }
  1639. #u84933 .text {
  1640. position:absolute;
  1641. align-self:center;
  1642. padding:2px 2px 2px 0px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u84933_text {
  1647. border-width:0px;
  1648. word-wrap:break-word;
  1649. text-transform:none;
  1650. }
  1651. #u84934_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:190px;
  1657. height:41px;
  1658. }
  1659. #u84934 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:357px;
  1663. top:0px;
  1664. width:190px;
  1665. height:41px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. }
  1673. #u84934 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 0px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u84934_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. }
  1685. #u84935_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:167px;
  1691. height:41px;
  1692. }
  1693. #u84935 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:547px;
  1697. top:0px;
  1698. width:167px;
  1699. height:41px;
  1700. display:flex;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:12px;
  1705. color:#FFFFFF;
  1706. }
  1707. #u84935 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u84935_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. }
  1719. #u84936_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:187px;
  1725. height:41px;
  1726. }
  1727. #u84936 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:714px;
  1731. top:0px;
  1732. width:187px;
  1733. height:41px;
  1734. display:flex;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:12px;
  1739. color:#FFFFFF;
  1740. }
  1741. #u84936 .text {
  1742. position:absolute;
  1743. align-self:center;
  1744. padding:2px 2px 2px 0px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u84936_text {
  1749. border-width:0px;
  1750. word-wrap:break-word;
  1751. text-transform:none;
  1752. }
  1753. #u84937_img {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:167px;
  1759. height:39px;
  1760. }
  1761. #u84937 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:41px;
  1766. width:167px;
  1767. height:39px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:12px;
  1773. }
  1774. #u84937 .text {
  1775. position:absolute;
  1776. align-self:center;
  1777. padding:2px 2px 2px 0px;
  1778. box-sizing:border-box;
  1779. width:100%;
  1780. }
  1781. #u84937_text {
  1782. border-width:0px;
  1783. word-wrap:break-word;
  1784. text-transform:none;
  1785. }
  1786. #u84938_img {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:190px;
  1792. height:39px;
  1793. }
  1794. #u84938 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:167px;
  1798. top:41px;
  1799. width:190px;
  1800. height:39px;
  1801. display:flex;
  1802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1803. font-weight:400;
  1804. font-style:normal;
  1805. font-size:12px;
  1806. }
  1807. #u84938 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:2px 2px 2px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u84938_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u84939_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:190px;
  1825. height:39px;
  1826. }
  1827. #u84939 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:357px;
  1831. top:41px;
  1832. width:190px;
  1833. height:39px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:12px;
  1839. }
  1840. #u84939 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 2px 2px 0px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u84939_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u84940_img {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:167px;
  1858. height:39px;
  1859. }
  1860. #u84940 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:547px;
  1864. top:41px;
  1865. width:167px;
  1866. height:39px;
  1867. display:flex;
  1868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:12px;
  1872. }
  1873. #u84940 .text {
  1874. position:absolute;
  1875. align-self:center;
  1876. padding:2px 2px 2px 0px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u84940_text {
  1881. border-width:0px;
  1882. word-wrap:break-word;
  1883. text-transform:none;
  1884. }
  1885. #u84941_img {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:187px;
  1891. height:39px;
  1892. }
  1893. #u84941 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:714px;
  1897. top:41px;
  1898. width:187px;
  1899. height:39px;
  1900. display:flex;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:12px;
  1905. color:#1890FF;
  1906. }
  1907. #u84941 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 0px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u84941_text {
  1915. border-width:0px;
  1916. word-wrap:break-word;
  1917. text-transform:none;
  1918. }
  1919. #u84942_img {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:167px;
  1925. height:35px;
  1926. }
  1927. #u84942 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:80px;
  1932. width:167px;
  1933. height:35px;
  1934. display:flex;
  1935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1936. font-weight:400;
  1937. font-style:normal;
  1938. font-size:12px;
  1939. }
  1940. #u84942 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u84942_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u84943_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:190px;
  1958. height:35px;
  1959. }
  1960. #u84943 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:167px;
  1964. top:80px;
  1965. width:190px;
  1966. height:35px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. }
  1973. #u84943 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 0px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u84943_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. }
  1985. #u84944_img {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:190px;
  1991. height:35px;
  1992. }
  1993. #u84944 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:357px;
  1997. top:80px;
  1998. width:190px;
  1999. height:35px;
  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. }
  2006. #u84944 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u84944_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. }
  2018. #u84945_img {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:167px;
  2024. height:35px;
  2025. }
  2026. #u84945 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:547px;
  2030. top:80px;
  2031. width:167px;
  2032. height:35px;
  2033. display:flex;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. }
  2039. #u84945 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 2px 2px 0px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u84945_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. }
  2051. #u84946_img {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:187px;
  2057. height:35px;
  2058. }
  2059. #u84946 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:714px;
  2063. top:80px;
  2064. width:187px;
  2065. height:35px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:12px;
  2071. color:#1890FF;
  2072. }
  2073. #u84946 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:2px 2px 2px 0px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u84946_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. }
  2085. #u84947_img {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:167px;
  2091. height:35px;
  2092. }
  2093. #u84947 {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:115px;
  2098. width:167px;
  2099. height:35px;
  2100. display:flex;
  2101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2102. font-weight:400;
  2103. font-style:normal;
  2104. font-size:12px;
  2105. }
  2106. #u84947 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:2px 2px 2px 0px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u84947_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. }
  2118. #u84948_img {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:190px;
  2124. height:35px;
  2125. }
  2126. #u84948 {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:167px;
  2130. top:115px;
  2131. width:190px;
  2132. height:35px;
  2133. display:flex;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:12px;
  2138. }
  2139. #u84948 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 0px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u84948_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. }
  2151. #u84949_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:190px;
  2157. height:35px;
  2158. }
  2159. #u84949 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:357px;
  2163. top:115px;
  2164. width:190px;
  2165. height:35px;
  2166. display:flex;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. }
  2172. #u84949 .text {
  2173. position:absolute;
  2174. align-self:center;
  2175. padding:2px 2px 2px 0px;
  2176. box-sizing:border-box;
  2177. width:100%;
  2178. }
  2179. #u84949_text {
  2180. border-width:0px;
  2181. word-wrap:break-word;
  2182. text-transform:none;
  2183. }
  2184. #u84950_img {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:167px;
  2190. height:35px;
  2191. }
  2192. #u84950 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:547px;
  2196. top:115px;
  2197. width:167px;
  2198. height:35px;
  2199. display:flex;
  2200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2201. font-weight:400;
  2202. font-style:normal;
  2203. font-size:12px;
  2204. }
  2205. #u84950 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 2px 2px 0px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u84950_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. }
  2217. #u84951_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:187px;
  2223. height:35px;
  2224. }
  2225. #u84951 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:714px;
  2229. top:115px;
  2230. width:187px;
  2231. height:35px;
  2232. display:flex;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. font-size:12px;
  2237. color:#1890FF;
  2238. }
  2239. #u84951 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 0px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u84951_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. }
  2251. #u84952_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:167px;
  2257. height:34px;
  2258. }
  2259. #u84952 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:150px;
  2264. width:167px;
  2265. height:34px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:12px;
  2271. }
  2272. #u84952 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:2px 2px 2px 0px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u84952_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. }
  2284. #u84953_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:190px;
  2290. height:34px;
  2291. }
  2292. #u84953 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:167px;
  2296. top:150px;
  2297. width:190px;
  2298. height:34px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:12px;
  2304. }
  2305. #u84953 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u84953_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. }
  2317. #u84954_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:190px;
  2323. height:34px;
  2324. }
  2325. #u84954 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:357px;
  2329. top:150px;
  2330. width:190px;
  2331. height:34px;
  2332. display:flex;
  2333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:12px;
  2337. }
  2338. #u84954 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 0px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u84954_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. }
  2350. #u84955_img {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:167px;
  2356. height:34px;
  2357. }
  2358. #u84955 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:547px;
  2362. top:150px;
  2363. width:167px;
  2364. height:34px;
  2365. display:flex;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:12px;
  2370. }
  2371. #u84955 .text {
  2372. position:absolute;
  2373. align-self:center;
  2374. padding:2px 2px 2px 0px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u84955_text {
  2379. border-width:0px;
  2380. word-wrap:break-word;
  2381. text-transform:none;
  2382. }
  2383. #u84956_img {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:187px;
  2389. height:34px;
  2390. }
  2391. #u84956 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:714px;
  2395. top:150px;
  2396. width:187px;
  2397. height:34px;
  2398. display:flex;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:12px;
  2403. color:#1890FF;
  2404. }
  2405. #u84956 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 2px 2px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u84956_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. }
  2417. #u84957_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:167px;
  2423. height:36px;
  2424. }
  2425. #u84957 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:184px;
  2430. width:167px;
  2431. height:36px;
  2432. display:flex;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:12px;
  2437. }
  2438. #u84957 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u84957_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. visibility:hidden;
  2450. }
  2451. #u84958_img {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:190px;
  2457. height:36px;
  2458. }
  2459. #u84958 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:167px;
  2463. top:184px;
  2464. width:190px;
  2465. height:36px;
  2466. display:flex;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:12px;
  2471. }
  2472. #u84958 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 0px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u84958_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u84959_img {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:190px;
  2491. height:36px;
  2492. }
  2493. #u84959 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:357px;
  2497. top:184px;
  2498. width:190px;
  2499. height:36px;
  2500. display:flex;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. }
  2506. #u84959 .text {
  2507. position:absolute;
  2508. align-self:center;
  2509. padding:2px 2px 2px 0px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u84959_text {
  2514. border-width:0px;
  2515. word-wrap:break-word;
  2516. text-transform:none;
  2517. visibility:hidden;
  2518. }
  2519. #u84960_img {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:167px;
  2525. height:36px;
  2526. }
  2527. #u84960 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:547px;
  2531. top:184px;
  2532. width:167px;
  2533. height:36px;
  2534. display:flex;
  2535. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:12px;
  2539. }
  2540. #u84960 .text {
  2541. position:absolute;
  2542. align-self:center;
  2543. padding:2px 2px 2px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u84960_text {
  2548. border-width:0px;
  2549. word-wrap:break-word;
  2550. text-transform:none;
  2551. visibility:hidden;
  2552. }
  2553. #u84961_img {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:187px;
  2559. height:36px;
  2560. }
  2561. #u84961 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:714px;
  2565. top:184px;
  2566. width:187px;
  2567. height:36px;
  2568. display:flex;
  2569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:12px;
  2573. color:#1890FF;
  2574. }
  2575. #u84961 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 0px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u84961_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. visibility:hidden;
  2587. }
  2588. #u84962_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:167px;
  2594. height:35px;
  2595. }
  2596. #u84962 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:220px;
  2601. width:167px;
  2602. height:35px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. }
  2609. #u84962 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u84962_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u84963_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:190px;
  2628. height:35px;
  2629. }
  2630. #u84963 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:167px;
  2634. top:220px;
  2635. width:190px;
  2636. height:35px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. }
  2643. #u84963 .text {
  2644. position:absolute;
  2645. align-self:center;
  2646. padding:2px 2px 2px 0px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u84963_text {
  2651. border-width:0px;
  2652. word-wrap:break-word;
  2653. text-transform:none;
  2654. visibility:hidden;
  2655. }
  2656. #u84964_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:190px;
  2662. height:35px;
  2663. }
  2664. #u84964 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:357px;
  2668. top:220px;
  2669. width:190px;
  2670. height:35px;
  2671. display:flex;
  2672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:12px;
  2676. }
  2677. #u84964 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u84964_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. visibility:hidden;
  2689. }
  2690. #u84965_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:167px;
  2696. height:35px;
  2697. }
  2698. #u84965 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:547px;
  2702. top:220px;
  2703. width:167px;
  2704. height:35px;
  2705. display:flex;
  2706. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2707. font-weight:400;
  2708. font-style:normal;
  2709. font-size:12px;
  2710. }
  2711. #u84965 .text {
  2712. position:absolute;
  2713. align-self:center;
  2714. padding:2px 2px 2px 0px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u84965_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. visibility:hidden;
  2723. }
  2724. #u84966_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:187px;
  2730. height:35px;
  2731. }
  2732. #u84966 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:714px;
  2736. top:220px;
  2737. width:187px;
  2738. height:35px;
  2739. display:flex;
  2740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:12px;
  2744. color:#1890FF;
  2745. }
  2746. #u84966 .text {
  2747. position:absolute;
  2748. align-self:center;
  2749. padding:2px 2px 2px 0px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u84966_text {
  2754. border-width:0px;
  2755. word-wrap:break-word;
  2756. text-transform:none;
  2757. visibility:hidden;
  2758. }
  2759. #u84967_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:167px;
  2765. height:35px;
  2766. }
  2767. #u84967 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:255px;
  2772. width:167px;
  2773. height:35px;
  2774. display:flex;
  2775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:12px;
  2779. }
  2780. #u84967 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 0px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u84967_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u84968_img {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:190px;
  2799. height:35px;
  2800. }
  2801. #u84968 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:167px;
  2805. top:255px;
  2806. width:190px;
  2807. height:35px;
  2808. display:flex;
  2809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:12px;
  2813. }
  2814. #u84968 .text {
  2815. position:absolute;
  2816. align-self:center;
  2817. padding:2px 2px 2px 0px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u84968_text {
  2822. border-width:0px;
  2823. word-wrap:break-word;
  2824. text-transform:none;
  2825. visibility:hidden;
  2826. }
  2827. #u84969_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:190px;
  2833. height:35px;
  2834. }
  2835. #u84969 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:357px;
  2839. top:255px;
  2840. width:190px;
  2841. height:35px;
  2842. display:flex;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:12px;
  2847. }
  2848. #u84969 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 2px 2px 0px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u84969_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. visibility:hidden;
  2860. }
  2861. #u84970_img {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:167px;
  2867. height:35px;
  2868. }
  2869. #u84970 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:547px;
  2873. top:255px;
  2874. width:167px;
  2875. height:35px;
  2876. display:flex;
  2877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:12px;
  2881. }
  2882. #u84970 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 0px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u84970_text {
  2890. border-width:0px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. visibility:hidden;
  2894. }
  2895. #u84971_img {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:187px;
  2901. height:35px;
  2902. }
  2903. #u84971 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:714px;
  2907. top:255px;
  2908. width:187px;
  2909. height:35px;
  2910. display:flex;
  2911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:12px;
  2915. color:#1890FF;
  2916. }
  2917. #u84971 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 0px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u84971_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u84972_img {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:167px;
  2936. height:35px;
  2937. }
  2938. #u84972 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:290px;
  2943. width:167px;
  2944. height:35px;
  2945. display:flex;
  2946. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:12px;
  2950. color:#606266;
  2951. }
  2952. #u84972 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 0px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u84972_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u84973_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:190px;
  2971. height:35px;
  2972. }
  2973. #u84973 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:167px;
  2977. top:290px;
  2978. width:190px;
  2979. height:35px;
  2980. display:flex;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. }
  2986. #u84973 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 0px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u84973_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u84974_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:190px;
  3005. height:35px;
  3006. }
  3007. #u84974 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:357px;
  3011. top:290px;
  3012. width:190px;
  3013. height:35px;
  3014. display:flex;
  3015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:12px;
  3019. }
  3020. #u84974 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 0px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u84974_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u84975_img {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:167px;
  3039. height:35px;
  3040. }
  3041. #u84975 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:547px;
  3045. top:290px;
  3046. width:167px;
  3047. height:35px;
  3048. display:flex;
  3049. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:12px;
  3053. color:#606266;
  3054. }
  3055. #u84975 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 0px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u84975_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u84976_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:187px;
  3074. height:35px;
  3075. }
  3076. #u84976 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:714px;
  3080. top:290px;
  3081. width:187px;
  3082. height:35px;
  3083. display:flex;
  3084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. color:#606266;
  3089. }
  3090. #u84976 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u84976_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u84977_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:167px;
  3109. height:35px;
  3110. }
  3111. #u84977 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:325px;
  3116. width:167px;
  3117. height:35px;
  3118. display:flex;
  3119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:12px;
  3123. color:#606266;
  3124. }
  3125. #u84977 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 0px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u84977_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u84978_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:190px;
  3144. height:35px;
  3145. }
  3146. #u84978 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:167px;
  3150. top:325px;
  3151. width:190px;
  3152. height:35px;
  3153. display:flex;
  3154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#606266;
  3159. }
  3160. #u84978 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u84978_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. visibility:hidden;
  3172. }
  3173. #u84979_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:190px;
  3179. height:35px;
  3180. }
  3181. #u84979 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:357px;
  3185. top:325px;
  3186. width:190px;
  3187. height:35px;
  3188. display:flex;
  3189. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:12px;
  3193. color:#606266;
  3194. }
  3195. #u84979 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 0px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u84979_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u84980_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:167px;
  3214. height:35px;
  3215. }
  3216. #u84980 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:547px;
  3220. top:325px;
  3221. width:167px;
  3222. height:35px;
  3223. display:flex;
  3224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:12px;
  3228. color:#606266;
  3229. }
  3230. #u84980 .text {
  3231. position:absolute;
  3232. align-self:center;
  3233. padding:2px 2px 2px 0px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u84980_text {
  3238. border-width:0px;
  3239. word-wrap:break-word;
  3240. text-transform:none;
  3241. visibility:hidden;
  3242. }
  3243. #u84981_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:187px;
  3249. height:35px;
  3250. }
  3251. #u84981 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:714px;
  3255. top:325px;
  3256. width:187px;
  3257. height:35px;
  3258. display:flex;
  3259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:12px;
  3263. color:#606266;
  3264. }
  3265. #u84981 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 0px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u84981_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u84982_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:167px;
  3284. height:35px;
  3285. }
  3286. #u84982 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:0px;
  3290. top:360px;
  3291. width:167px;
  3292. height:35px;
  3293. display:flex;
  3294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:12px;
  3298. color:#606266;
  3299. }
  3300. #u84982 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u84982_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u84983_img {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:190px;
  3319. height:35px;
  3320. }
  3321. #u84983 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:167px;
  3325. top:360px;
  3326. width:190px;
  3327. height:35px;
  3328. display:flex;
  3329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:12px;
  3333. color:#606266;
  3334. }
  3335. #u84983 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u84983_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u84984_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:190px;
  3354. height:35px;
  3355. }
  3356. #u84984 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:357px;
  3360. top:360px;
  3361. width:190px;
  3362. height:35px;
  3363. display:flex;
  3364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:12px;
  3368. color:#606266;
  3369. }
  3370. #u84984 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u84984_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u84985_img {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:167px;
  3389. height:35px;
  3390. }
  3391. #u84985 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:547px;
  3395. top:360px;
  3396. width:167px;
  3397. height:35px;
  3398. display:flex;
  3399. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3400. font-weight:400;
  3401. font-style:normal;
  3402. font-size:12px;
  3403. color:#606266;
  3404. }
  3405. #u84985 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 0px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u84985_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u84986_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:187px;
  3424. height:35px;
  3425. }
  3426. #u84986 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:714px;
  3430. top:360px;
  3431. width:187px;
  3432. height:35px;
  3433. display:flex;
  3434. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:12px;
  3438. color:#606266;
  3439. }
  3440. #u84986 .text {
  3441. position:absolute;
  3442. align-self:center;
  3443. padding:2px 2px 2px 0px;
  3444. box-sizing:border-box;
  3445. width:100%;
  3446. }
  3447. #u84986_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u84987_img {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:167px;
  3459. height:35px;
  3460. }
  3461. #u84987 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:395px;
  3466. width:167px;
  3467. height:35px;
  3468. display:flex;
  3469. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. color:#606266;
  3474. }
  3475. #u84987 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 0px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u84987_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u84988_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:190px;
  3494. height:35px;
  3495. }
  3496. #u84988 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:167px;
  3500. top:395px;
  3501. width:190px;
  3502. height:35px;
  3503. display:flex;
  3504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:12px;
  3508. color:#606266;
  3509. }
  3510. #u84988 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u84988_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u84989_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:190px;
  3529. height:35px;
  3530. }
  3531. #u84989 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:357px;
  3535. top:395px;
  3536. width:190px;
  3537. height:35px;
  3538. display:flex;
  3539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#606266;
  3544. }
  3545. #u84989 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u84989_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u84990_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:167px;
  3564. height:35px;
  3565. }
  3566. #u84990 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:547px;
  3570. top:395px;
  3571. width:167px;
  3572. height:35px;
  3573. display:flex;
  3574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#606266;
  3579. }
  3580. #u84990 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u84990_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u84991_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:187px;
  3599. height:35px;
  3600. }
  3601. #u84991 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:714px;
  3605. top:395px;
  3606. width:187px;
  3607. height:35px;
  3608. display:flex;
  3609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:#606266;
  3614. }
  3615. #u84991 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u84991_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. visibility:hidden;
  3627. }
  3628. #u84992_img {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:167px;
  3634. height:35px;
  3635. }
  3636. #u84992 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:430px;
  3641. width:167px;
  3642. height:35px;
  3643. display:flex;
  3644. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:12px;
  3648. color:#606266;
  3649. }
  3650. #u84992 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:2px 2px 2px 0px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u84992_text {
  3658. border-width:0px;
  3659. word-wrap:break-word;
  3660. text-transform:none;
  3661. visibility:hidden;
  3662. }
  3663. #u84993_img {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:190px;
  3669. height:35px;
  3670. }
  3671. #u84993 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:167px;
  3675. top:430px;
  3676. width:190px;
  3677. height:35px;
  3678. display:flex;
  3679. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:12px;
  3683. color:#606266;
  3684. }
  3685. #u84993 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u84993_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u84994_img {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:190px;
  3704. height:35px;
  3705. }
  3706. #u84994 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:357px;
  3710. top:430px;
  3711. width:190px;
  3712. height:35px;
  3713. display:flex;
  3714. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:12px;
  3718. color:#606266;
  3719. }
  3720. #u84994 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u84994_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u84995_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:167px;
  3739. height:35px;
  3740. }
  3741. #u84995 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:547px;
  3745. top:430px;
  3746. width:167px;
  3747. height:35px;
  3748. display:flex;
  3749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:12px;
  3753. color:#606266;
  3754. }
  3755. #u84995 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 0px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u84995_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u84996_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:187px;
  3774. height:35px;
  3775. }
  3776. #u84996 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:714px;
  3780. top:430px;
  3781. width:187px;
  3782. height:35px;
  3783. display:flex;
  3784. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:12px;
  3788. color:#606266;
  3789. }
  3790. #u84996 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 2px 2px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u84996_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. visibility:hidden;
  3802. }
  3803. #u84997_div {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:59px;
  3809. height:30px;
  3810. background:inherit;
  3811. background-color:rgba(41, 143, 255, 1);
  3812. border:none;
  3813. border-radius:4px;
  3814. -moz-box-shadow:none;
  3815. -webkit-box-shadow:none;
  3816. box-shadow:none;
  3817. font-family:'Microsoft YaHei', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:14px;
  3821. color:#FFFFFF;
  3822. }
  3823. #u84997 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:1128px;
  3827. top:162px;
  3828. width:59px;
  3829. height:30px;
  3830. display:flex;
  3831. font-family:'Microsoft YaHei', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:14px;
  3835. color:#FFFFFF;
  3836. }
  3837. #u84997 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:5px 15px 5px 15px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u84997_text {
  3845. border-width:0px;
  3846. white-space:nowrap;
  3847. text-transform:none;
  3848. }
  3849. #u84998_div {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:55px;
  3855. height:30px;
  3856. background:inherit;
  3857. background-color:rgba(255, 255, 255, 1);
  3858. box-sizing:border-box;
  3859. border-width:1px;
  3860. border-style:solid;
  3861. border-color:rgba(170, 170, 170, 1);
  3862. border-radius:4px;
  3863. -moz-box-shadow:none;
  3864. -webkit-box-shadow:none;
  3865. box-shadow:none;
  3866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:12px;
  3870. color:#555555;
  3871. }
  3872. #u84998 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:1197px;
  3876. top:162px;
  3877. width:55px;
  3878. height:30px;
  3879. display:flex;
  3880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:12px;
  3884. color:#555555;
  3885. }
  3886. #u84998 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:5px 15px 5px 15px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u84998_text {
  3894. border-width:0px;
  3895. white-space:nowrap;
  3896. text-transform:none;
  3897. }
  3898. #u84999_div {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:80px;
  3904. height:30px;
  3905. background:inherit;
  3906. background-color:rgba(24, 144, 255, 1);
  3907. border:none;
  3908. border-radius:4px;
  3909. -moz-box-shadow:none;
  3910. -webkit-box-shadow:none;
  3911. box-shadow:none;
  3912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:12px;
  3916. color:#FFFFFF;
  3917. }
  3918. #u84999 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:538px;
  3922. top:150px;
  3923. width:80px;
  3924. height:30px;
  3925. display:flex;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. font-size:12px;
  3930. color:#FFFFFF;
  3931. }
  3932. #u84999 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:5px 15px 5px 15px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u84999_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. }
  3944. #u85000 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:0px;
  3950. height:0px;
  3951. }
  3952. #u85001_div {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:140px;
  3958. height:30px;
  3959. background:inherit;
  3960. background-color:rgba(255, 255, 255, 1);
  3961. box-sizing:border-box;
  3962. border-width:1px;
  3963. border-style:solid;
  3964. border-color:rgba(215, 215, 215, 1);
  3965. border-radius:4px;
  3966. -moz-box-shadow:none;
  3967. -webkit-box-shadow:none;
  3968. box-shadow:none;
  3969. font-size:11px;
  3970. }
  3971. #u85001 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:968px;
  3975. top:162px;
  3976. width:140px;
  3977. height:30px;
  3978. display:flex;
  3979. font-size:11px;
  3980. }
  3981. #u85001 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 2px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u85001_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u85002_input {
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:120px;
  3999. height:23px;
  4000. padding:2px 2px 2px 2px;
  4001. font-family:'ArialMT', 'Arial', sans-serif;
  4002. font-weight:400;
  4003. font-style:normal;
  4004. font-size:11px;
  4005. letter-spacing:normal;
  4006. color:#AAAAAA;
  4007. vertical-align:none;
  4008. text-align:left;
  4009. text-transform:none;
  4010. background-color:transparent;
  4011. border-color:transparent;
  4012. }
  4013. #u85002_input.disabled {
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:120px;
  4018. height:23px;
  4019. padding:2px 2px 2px 2px;
  4020. font-family:'ArialMT', 'Arial', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:11px;
  4024. letter-spacing:normal;
  4025. color:#AAAAAA;
  4026. vertical-align:none;
  4027. text-align:left;
  4028. text-transform:none;
  4029. background-color:transparent;
  4030. border-color:transparent;
  4031. }
  4032. #u85002_div {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:120px;
  4038. height:23px;
  4039. background:inherit;
  4040. background-color:rgba(255, 255, 255, 1);
  4041. border:none;
  4042. border-radius:0px;
  4043. -moz-box-shadow:none;
  4044. -webkit-box-shadow:none;
  4045. box-shadow:none;
  4046. font-size:11px;
  4047. color:#AAAAAA;
  4048. }
  4049. #u85002 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:975px;
  4053. top:164px;
  4054. width:120px;
  4055. height:23px;
  4056. display:flex;
  4057. font-size:11px;
  4058. color:#AAAAAA;
  4059. }
  4060. #u85002 .text {
  4061. position:absolute;
  4062. align-self:flex-start;
  4063. padding:2px 2px 2px 2px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u85002_div.disabled {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:120px;
  4073. height:23px;
  4074. background:inherit;
  4075. background-color:rgba(240, 240, 240, 1);
  4076. border:none;
  4077. border-radius:0px;
  4078. -moz-box-shadow:none;
  4079. -webkit-box-shadow:none;
  4080. box-shadow:none;
  4081. font-size:11px;
  4082. color:#AAAAAA;
  4083. }
  4084. #u85002.disabled {
  4085. }
  4086. .u85002_input_option {
  4087. font-size:11px;
  4088. }
  4089. #u85003_div {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:73px;
  4095. height:50px;
  4096. background:inherit;
  4097. background-color:rgba(255, 255, 255, 0);
  4098. border:none;
  4099. border-left:0px;
  4100. border-top:0px;
  4101. border-right:0px;
  4102. border-radius:0px;
  4103. border-bottom-right-radius:0px;
  4104. border-bottom-left-radius:0px;
  4105. -moz-box-shadow:none;
  4106. -webkit-box-shadow:none;
  4107. box-shadow:none;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:18px;
  4112. }
  4113. #u85003 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:349px;
  4117. top:50px;
  4118. width:73px;
  4119. height:50px;
  4120. display:flex;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:18px;
  4125. }
  4126. #u85003 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:0px 0px 0px 0px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u85003_text {
  4134. border-width:0px;
  4135. white-space:nowrap;
  4136. text-transform:none;
  4137. }
  4138. #u85004 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:0px;
  4144. height:0px;
  4145. }
  4146. #u85005_div {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:140px;
  4152. height:30px;
  4153. background:inherit;
  4154. background-color:rgba(255, 255, 255, 1);
  4155. box-sizing:border-box;
  4156. border-width:1px;
  4157. border-style:solid;
  4158. border-color:rgba(201, 201, 201, 1);
  4159. border-radius:4px;
  4160. -moz-box-shadow:none;
  4161. -webkit-box-shadow:none;
  4162. box-shadow:none;
  4163. font-family:'Microsoft YaHei', sans-serif;
  4164. font-weight:400;
  4165. font-style:normal;
  4166. font-size:14px;
  4167. color:#CCCCCC;
  4168. text-align:left;
  4169. }
  4170. #u85005 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:668px;
  4174. top:162px;
  4175. width:140px;
  4176. height:30px;
  4177. display:flex;
  4178. font-family:'Microsoft YaHei', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:14px;
  4182. color:#CCCCCC;
  4183. text-align:left;
  4184. }
  4185. #u85005 .text {
  4186. position:absolute;
  4187. align-self:center;
  4188. padding:2px 8px 2px 8px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u85005_text {
  4193. border-width:0px;
  4194. word-wrap:break-word;
  4195. text-transform:none;
  4196. visibility:hidden;
  4197. }
  4198. #u85006_input {
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:127px;
  4203. height:25px;
  4204. padding:2px 2px 2px 2px;
  4205. font-family:'Microsoft YaHei', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:10px;
  4209. letter-spacing:normal;
  4210. color:#000000;
  4211. vertical-align:none;
  4212. text-align:left;
  4213. text-transform:none;
  4214. background-color:transparent;
  4215. border-color:transparent;
  4216. }
  4217. #u85006_input.disabled {
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:127px;
  4222. height:25px;
  4223. padding:2px 2px 2px 2px;
  4224. font-family:'Microsoft YaHei', sans-serif;
  4225. font-weight:400;
  4226. font-style:normal;
  4227. font-size:10px;
  4228. letter-spacing:normal;
  4229. color:#000000;
  4230. vertical-align:none;
  4231. text-align:left;
  4232. text-transform:none;
  4233. background-color:transparent;
  4234. border-color:transparent;
  4235. }
  4236. #u85006_div {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:127px;
  4242. height:25px;
  4243. background:inherit;
  4244. background-color:rgba(255, 255, 255, 1);
  4245. border:none;
  4246. border-radius:0px;
  4247. -moz-box-shadow:none;
  4248. -webkit-box-shadow:none;
  4249. box-shadow:none;
  4250. font-family:'Microsoft YaHei', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:10px;
  4254. }
  4255. #u85006 {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:676px;
  4259. top:163px;
  4260. width:127px;
  4261. height:25px;
  4262. display:flex;
  4263. font-family:'Microsoft YaHei', sans-serif;
  4264. font-weight:400;
  4265. font-style:normal;
  4266. font-size:10px;
  4267. }
  4268. #u85006 .text {
  4269. position:absolute;
  4270. align-self:center;
  4271. padding:2px 2px 2px 2px;
  4272. box-sizing:border-box;
  4273. width:100%;
  4274. }
  4275. #u85006_div.disabled {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:0px;
  4279. top:0px;
  4280. width:127px;
  4281. height:25px;
  4282. background:inherit;
  4283. background-color:rgba(240, 240, 240, 1);
  4284. border:none;
  4285. border-radius:0px;
  4286. -moz-box-shadow:none;
  4287. -webkit-box-shadow:none;
  4288. box-shadow:none;
  4289. font-family:'Microsoft YaHei', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:10px;
  4293. }
  4294. #u85006.disabled {
  4295. }
  4296. #u85007 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:0px;
  4302. height:0px;
  4303. }
  4304. #u85008_div {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:0px;
  4308. top:0px;
  4309. width:100px;
  4310. height:100px;
  4311. background:inherit;
  4312. background-color:rgba(255, 255, 255, 1);
  4313. border:none;
  4314. border-radius:4px;
  4315. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4316. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4317. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4318. }
  4319. #u85008 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:1384px;
  4323. top:436px;
  4324. width:100px;
  4325. height:100px;
  4326. display:flex;
  4327. }
  4328. #u85008 .text {
  4329. position:absolute;
  4330. align-self:center;
  4331. padding:2px 2px 2px 2px;
  4332. box-sizing:border-box;
  4333. width:100%;
  4334. }
  4335. #u85008_text {
  4336. border-width:0px;
  4337. word-wrap:break-word;
  4338. text-transform:none;
  4339. visibility:hidden;
  4340. }
  4341. #u85009_div {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:83px;
  4347. height:40px;
  4348. background:inherit;
  4349. background-color:rgba(255, 255, 255, 1);
  4350. box-sizing:border-box;
  4351. border-width:1px;
  4352. border-style:solid;
  4353. border-color:rgba(242, 242, 242, 1);
  4354. border-left:0px;
  4355. border-top:0px;
  4356. border-right:0px;
  4357. border-radius:4px;
  4358. border-bottom-right-radius:0px;
  4359. border-bottom-left-radius:0px;
  4360. -moz-box-shadow:none;
  4361. -webkit-box-shadow:none;
  4362. box-shadow:none;
  4363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. font-size:14px;
  4367. }
  4368. #u85009 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:1392px;
  4372. top:447px;
  4373. width:83px;
  4374. height:40px;
  4375. display:flex;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:14px;
  4380. }
  4381. #u85009 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:5px 0px 5px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u85009_text {
  4389. border-width:0px;
  4390. word-wrap:break-word;
  4391. text-transform:none;
  4392. }
  4393. #u85010_div {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:83px;
  4399. height:40px;
  4400. background:inherit;
  4401. background-color:rgba(255, 255, 255, 1);
  4402. border:none;
  4403. border-left:0px;
  4404. border-top:0px;
  4405. border-right:0px;
  4406. border-radius:4px;
  4407. border-bottom-right-radius:0px;
  4408. border-bottom-left-radius:0px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:14px;
  4416. }
  4417. #u85010 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:1392px;
  4421. top:487px;
  4422. width:83px;
  4423. height:40px;
  4424. display:flex;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:14px;
  4429. }
  4430. #u85010 .text {
  4431. position:absolute;
  4432. align-self:center;
  4433. padding:5px 0px 5px 0px;
  4434. box-sizing:border-box;
  4435. width:100%;
  4436. }
  4437. #u85010_text {
  4438. border-width:0px;
  4439. word-wrap:break-word;
  4440. text-transform:none;
  4441. }
  4442. #u85011_img {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:11px;
  4448. height:11px;
  4449. }
  4450. #u85011 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:1077px;
  4454. top:204px;
  4455. width:11px;
  4456. height:11px;
  4457. display:flex;
  4458. color:#FFFFFF;
  4459. }
  4460. #u85011 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 2px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u85011_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u85012_div {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:79px;
  4479. height:30px;
  4480. background:inherit;
  4481. background-color:rgba(25, 140, 251, 1);
  4482. border:none;
  4483. border-radius:4px;
  4484. -moz-box-shadow:none;
  4485. -webkit-box-shadow:none;
  4486. box-shadow:none;
  4487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:12px;
  4491. color:#FFFFFF;
  4492. }
  4493. #u85012 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:668px;
  4497. top:212px;
  4498. width:79px;
  4499. height:30px;
  4500. display:flex;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:12px;
  4505. color:#FFFFFF;
  4506. }
  4507. #u85012 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:5px 15px 5px 15px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u85012_text {
  4515. border-width:0px;
  4516. white-space:nowrap;
  4517. text-transform:none;
  4518. }
  4519. #u85013_div {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:300px;
  4525. height:1080px;
  4526. background:inherit;
  4527. background-color:rgba(242, 242, 242, 1);
  4528. border:none;
  4529. border-radius:4px;
  4530. -moz-box-shadow:none;
  4531. -webkit-box-shadow:none;
  4532. box-shadow:none;
  4533. }
  4534. #u85013 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:348px;
  4538. top:102px;
  4539. width:300px;
  4540. height:1080px;
  4541. display:flex;
  4542. }
  4543. #u85013 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 2px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u85013_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u85014_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:37px;
  4562. height:50px;
  4563. background:inherit;
  4564. background-color:rgba(255, 255, 255, 0);
  4565. border:none;
  4566. border-left:0px;
  4567. border-top:0px;
  4568. border-right:0px;
  4569. border-radius:0px;
  4570. border-bottom-right-radius:0px;
  4571. border-bottom-left-radius:0px;
  4572. -moz-box-shadow:none;
  4573. -webkit-box-shadow:none;
  4574. box-shadow:none;
  4575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4576. font-weight:400;
  4577. font-style:normal;
  4578. font-size:18px;
  4579. color:#000000;
  4580. line-height:40px;
  4581. }
  4582. #u85014 {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:668px;
  4586. top:102px;
  4587. width:37px;
  4588. height:50px;
  4589. display:flex;
  4590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:18px;
  4594. color:#000000;
  4595. line-height:40px;
  4596. }
  4597. #u85014 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:0px 0px 0px 0px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u85014_text {
  4605. border-width:0px;
  4606. white-space:nowrap;
  4607. text-transform:none;
  4608. }
  4609. #u85015 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:372px;
  4613. top:127px;
  4614. width:117px;
  4615. height:200px;
  4616. }
  4617. #u85015_children {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:0px;
  4623. height:0px;
  4624. }
  4625. #u85016 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:54px;
  4631. height:20px;
  4632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. color:#298FFF;
  4636. }
  4637. #u85017_img {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:0px;
  4641. top:0px;
  4642. width:9px;
  4643. height:9px;
  4644. }
  4645. #u85017 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:6px;
  4649. top:6px;
  4650. width:9px;
  4651. height:9px;
  4652. display:flex;
  4653. }
  4654. #u85017 .text {
  4655. position:absolute;
  4656. align-self:center;
  4657. padding:2px 2px 2px 2px;
  4658. box-sizing:border-box;
  4659. width:100%;
  4660. }
  4661. #u85017_img.selected {
  4662. }
  4663. #u85017.selected {
  4664. }
  4665. #u85017_text {
  4666. border-width:0px;
  4667. word-wrap:break-word;
  4668. text-transform:none;
  4669. visibility:hidden;
  4670. }
  4671. #u85018_div {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:32px;
  4677. height:20px;
  4678. background:inherit;
  4679. background-color:rgba(255, 255, 255, 0);
  4680. border:none;
  4681. border-radius:0px;
  4682. -moz-box-shadow:none;
  4683. -webkit-box-shadow:none;
  4684. box-shadow:none;
  4685. }
  4686. #u85018 {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:22px;
  4690. top:0px;
  4691. width:32px;
  4692. height:20px;
  4693. display:flex;
  4694. }
  4695. #u85018 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 3px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u85018_text {
  4703. border-width:0px;
  4704. white-space:nowrap;
  4705. text-transform:none;
  4706. }
  4707. #u85016_children {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:0px;
  4711. top:0px;
  4712. width:0px;
  4713. height:0px;
  4714. }
  4715. #u85019 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:20px;
  4719. top:20px;
  4720. width:67px;
  4721. height:20px;
  4722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. }
  4726. #u85020_div {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:45px;
  4732. height:20px;
  4733. background:inherit;
  4734. background-color:rgba(255, 255, 255, 0);
  4735. border:none;
  4736. border-radius:0px;
  4737. -moz-box-shadow:none;
  4738. -webkit-box-shadow:none;
  4739. box-shadow:none;
  4740. }
  4741. #u85020 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:22px;
  4745. top:0px;
  4746. width:45px;
  4747. height:20px;
  4748. display:flex;
  4749. }
  4750. #u85020 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 3px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u85020_text {
  4758. border-width:0px;
  4759. white-space:nowrap;
  4760. text-transform:none;
  4761. }
  4762. #u85021 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:20px;
  4766. top:40px;
  4767. width:67px;
  4768. height:20px;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. }
  4773. #u85022_div {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:45px;
  4779. height:20px;
  4780. background:inherit;
  4781. background-color:rgba(255, 255, 255, 0);
  4782. border:none;
  4783. border-radius:0px;
  4784. -moz-box-shadow:none;
  4785. -webkit-box-shadow:none;
  4786. box-shadow:none;
  4787. }
  4788. #u85022 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:22px;
  4792. top:0px;
  4793. width:45px;
  4794. height:20px;
  4795. display:flex;
  4796. }
  4797. #u85022 .text {
  4798. position:absolute;
  4799. align-self:center;
  4800. padding:2px 2px 2px 3px;
  4801. box-sizing:border-box;
  4802. width:100%;
  4803. }
  4804. #u85022_text {
  4805. border-width:0px;
  4806. white-space:nowrap;
  4807. text-transform:none;
  4808. }
  4809. #u85023 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:20px;
  4813. top:60px;
  4814. width:67px;
  4815. height:20px;
  4816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4817. font-weight:400;
  4818. font-style:normal;
  4819. }
  4820. #u85024_div {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:45px;
  4826. height:20px;
  4827. background:inherit;
  4828. background-color:rgba(255, 255, 255, 0);
  4829. border:none;
  4830. border-radius:0px;
  4831. -moz-box-shadow:none;
  4832. -webkit-box-shadow:none;
  4833. box-shadow:none;
  4834. }
  4835. #u85024 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:22px;
  4839. top:0px;
  4840. width:45px;
  4841. height:20px;
  4842. display:flex;
  4843. }
  4844. #u85024 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 3px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u85024_text {
  4852. border-width:0px;
  4853. white-space:nowrap;
  4854. text-transform:none;
  4855. }
  4856. #u85025 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:80px;
  4861. width:54px;
  4862. height:20px;
  4863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4864. font-weight:400;
  4865. font-style:normal;
  4866. }
  4867. #u85026_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:9px;
  4873. height:9px;
  4874. }
  4875. #u85026 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:6px;
  4879. top:6px;
  4880. width:9px;
  4881. height:9px;
  4882. display:flex;
  4883. }
  4884. #u85026 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:2px 2px 2px 2px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u85026_img.selected {
  4892. }
  4893. #u85026.selected {
  4894. }
  4895. #u85026_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u85027_div {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:32px;
  4907. height:20px;
  4908. background:inherit;
  4909. background-color:rgba(255, 255, 255, 0);
  4910. border:none;
  4911. border-radius:0px;
  4912. -moz-box-shadow:none;
  4913. -webkit-box-shadow:none;
  4914. box-shadow:none;
  4915. }
  4916. #u85027 {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:22px;
  4920. top:0px;
  4921. width:32px;
  4922. height:20px;
  4923. display:flex;
  4924. }
  4925. #u85027 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:2px 2px 2px 3px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u85027_text {
  4933. border-width:0px;
  4934. white-space:nowrap;
  4935. text-transform:none;
  4936. }
  4937. #u85025_children {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:0px;
  4943. height:0px;
  4944. }
  4945. #u85028 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:20px;
  4949. top:20px;
  4950. width:93px;
  4951. height:20px;
  4952. }
  4953. #u85029_div {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:71px;
  4959. height:20px;
  4960. background:inherit;
  4961. background-color:rgba(255, 255, 255, 0);
  4962. border:none;
  4963. border-radius:0px;
  4964. -moz-box-shadow:none;
  4965. -webkit-box-shadow:none;
  4966. box-shadow:none;
  4967. }
  4968. #u85029 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:22px;
  4972. top:0px;
  4973. width:71px;
  4974. height:20px;
  4975. display:flex;
  4976. }
  4977. #u85029 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 3px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u85029_text {
  4985. border-width:0px;
  4986. white-space:nowrap;
  4987. text-transform:none;
  4988. }
  4989. #u85030 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:20px;
  4993. top:40px;
  4994. width:93px;
  4995. height:20px;
  4996. }
  4997. #u85031_div {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:71px;
  5003. height:20px;
  5004. background:inherit;
  5005. background-color:rgba(255, 255, 255, 0);
  5006. border:none;
  5007. border-radius:0px;
  5008. -moz-box-shadow:none;
  5009. -webkit-box-shadow:none;
  5010. box-shadow:none;
  5011. }
  5012. #u85031 {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:22px;
  5016. top:0px;
  5017. width:71px;
  5018. height:20px;
  5019. display:flex;
  5020. }
  5021. #u85031 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 2px 2px 3px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u85031_text {
  5029. border-width:0px;
  5030. white-space:nowrap;
  5031. text-transform:none;
  5032. }
  5033. #u85032 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:140px;
  5038. width:54px;
  5039. height:20px;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. }
  5044. #u85033_img {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:9px;
  5050. height:9px;
  5051. }
  5052. #u85033 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:6px;
  5056. top:6px;
  5057. width:9px;
  5058. height:9px;
  5059. display:flex;
  5060. }
  5061. #u85033 .text {
  5062. position:absolute;
  5063. align-self:center;
  5064. padding:2px 2px 2px 2px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u85033_img.selected {
  5069. }
  5070. #u85033.selected {
  5071. }
  5072. #u85033_text {
  5073. border-width:0px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. visibility:hidden;
  5077. }
  5078. #u85034_div {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:32px;
  5084. height:20px;
  5085. background:inherit;
  5086. background-color:rgba(255, 255, 255, 0);
  5087. border:none;
  5088. border-radius:0px;
  5089. -moz-box-shadow:none;
  5090. -webkit-box-shadow:none;
  5091. box-shadow:none;
  5092. }
  5093. #u85034 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:22px;
  5097. top:0px;
  5098. width:32px;
  5099. height:20px;
  5100. display:flex;
  5101. }
  5102. #u85034 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 3px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u85034_text {
  5110. border-width:0px;
  5111. white-space:nowrap;
  5112. text-transform:none;
  5113. }
  5114. #u85032_children {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:0px;
  5120. height:0px;
  5121. }
  5122. #u85035 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:20px;
  5126. top:20px;
  5127. width:97px;
  5128. height:20px;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. }
  5133. #u85036_div {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:75px;
  5139. height:20px;
  5140. background:inherit;
  5141. background-color:rgba(255, 255, 255, 0);
  5142. border:none;
  5143. border-radius:0px;
  5144. -moz-box-shadow:none;
  5145. -webkit-box-shadow:none;
  5146. box-shadow:none;
  5147. }
  5148. #u85036 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:22px;
  5152. top:0px;
  5153. width:75px;
  5154. height:20px;
  5155. display:flex;
  5156. }
  5157. #u85036 .text {
  5158. position:absolute;
  5159. align-self:center;
  5160. padding:2px 2px 2px 3px;
  5161. box-sizing:border-box;
  5162. width:100%;
  5163. }
  5164. #u85036_text {
  5165. border-width:0px;
  5166. white-space:nowrap;
  5167. text-transform:none;
  5168. }
  5169. #u85037 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:20px;
  5173. top:40px;
  5174. width:97px;
  5175. height:20px;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. }
  5180. #u85038_div {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:75px;
  5186. height:20px;
  5187. background:inherit;
  5188. background-color:rgba(255, 255, 255, 0);
  5189. border:none;
  5190. border-radius:0px;
  5191. -moz-box-shadow:none;
  5192. -webkit-box-shadow:none;
  5193. box-shadow:none;
  5194. }
  5195. #u85038 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:22px;
  5199. top:0px;
  5200. width:75px;
  5201. height:20px;
  5202. display:flex;
  5203. }
  5204. #u85038 .text {
  5205. position:absolute;
  5206. align-self:center;
  5207. padding:2px 2px 2px 3px;
  5208. box-sizing:border-box;
  5209. width:100%;
  5210. }
  5211. #u85038_text {
  5212. border-width:0px;
  5213. white-space:nowrap;
  5214. text-transform:none;
  5215. }
  5216. #u85039 {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:0px;
  5222. height:0px;
  5223. }
  5224. #u85040_div {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:140px;
  5230. height:30px;
  5231. background:inherit;
  5232. background-color:rgba(255, 255, 255, 1);
  5233. box-sizing:border-box;
  5234. border-width:1px;
  5235. border-style:solid;
  5236. border-color:rgba(201, 201, 201, 1);
  5237. border-radius:4px;
  5238. -moz-box-shadow:none;
  5239. -webkit-box-shadow:none;
  5240. box-shadow:none;
  5241. font-family:'Microsoft YaHei', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:14px;
  5245. color:#CCCCCC;
  5246. text-align:left;
  5247. }
  5248. #u85040 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:818px;
  5252. top:162px;
  5253. width:140px;
  5254. height:30px;
  5255. display:flex;
  5256. font-family:'Microsoft YaHei', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:14px;
  5260. color:#CCCCCC;
  5261. text-align:left;
  5262. }
  5263. #u85040 .text {
  5264. position:absolute;
  5265. align-self:center;
  5266. padding:2px 8px 2px 8px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u85040_text {
  5271. border-width:0px;
  5272. word-wrap:break-word;
  5273. text-transform:none;
  5274. visibility:hidden;
  5275. }
  5276. #u85041_input {
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:127px;
  5281. height:25px;
  5282. padding:2px 2px 2px 2px;
  5283. font-family:'Microsoft YaHei', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:10px;
  5287. letter-spacing:normal;
  5288. color:#000000;
  5289. vertical-align:none;
  5290. text-align:left;
  5291. text-transform:none;
  5292. background-color:transparent;
  5293. border-color:transparent;
  5294. }
  5295. #u85041_input.disabled {
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:127px;
  5300. height:25px;
  5301. padding:2px 2px 2px 2px;
  5302. font-family:'Microsoft YaHei', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:10px;
  5306. letter-spacing:normal;
  5307. color:#000000;
  5308. vertical-align:none;
  5309. text-align:left;
  5310. text-transform:none;
  5311. background-color:transparent;
  5312. border-color:transparent;
  5313. }
  5314. #u85041_div {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:127px;
  5320. height:25px;
  5321. background:inherit;
  5322. background-color:rgba(255, 255, 255, 1);
  5323. border:none;
  5324. border-radius:0px;
  5325. -moz-box-shadow:none;
  5326. -webkit-box-shadow:none;
  5327. box-shadow:none;
  5328. font-family:'Microsoft YaHei', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. font-size:10px;
  5332. }
  5333. #u85041 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:826px;
  5337. top:163px;
  5338. width:127px;
  5339. height:25px;
  5340. display:flex;
  5341. font-family:'Microsoft YaHei', sans-serif;
  5342. font-weight:400;
  5343. font-style:normal;
  5344. font-size:10px;
  5345. }
  5346. #u85041 .text {
  5347. position:absolute;
  5348. align-self:center;
  5349. padding:2px 2px 2px 2px;
  5350. box-sizing:border-box;
  5351. width:100%;
  5352. }
  5353. #u85041_div.disabled {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:127px;
  5359. height:25px;
  5360. background:inherit;
  5361. background-color:rgba(240, 240, 240, 1);
  5362. border:none;
  5363. border-radius:0px;
  5364. -moz-box-shadow:none;
  5365. -webkit-box-shadow:none;
  5366. box-shadow:none;
  5367. font-family:'Microsoft YaHei', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:10px;
  5371. }
  5372. #u85041.disabled {
  5373. }
  5374. #u85042_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:79px;
  5380. height:30px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 1);
  5383. box-sizing:border-box;
  5384. border-width:1px;
  5385. border-style:solid;
  5386. border-color:rgba(170, 170, 170, 1);
  5387. border-radius:4px;
  5388. -moz-box-shadow:none;
  5389. -webkit-box-shadow:none;
  5390. box-shadow:none;
  5391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:12px;
  5395. color:#555555;
  5396. }
  5397. #u85042 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:757px;
  5401. top:212px;
  5402. width:79px;
  5403. height:30px;
  5404. display:flex;
  5405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:12px;
  5409. color:#555555;
  5410. }
  5411. #u85042 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:5px 15px 5px 15px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u85042_text {
  5419. border-width:0px;
  5420. white-space:nowrap;
  5421. text-transform:none;
  5422. }
  5423. #u85043_div {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:79px;
  5429. height:30px;
  5430. background:inherit;
  5431. background-color:rgba(255, 255, 255, 1);
  5432. box-sizing:border-box;
  5433. border-width:1px;
  5434. border-style:solid;
  5435. border-color:rgba(170, 170, 170, 1);
  5436. border-radius:4px;
  5437. -moz-box-shadow:none;
  5438. -webkit-box-shadow:none;
  5439. box-shadow:none;
  5440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:12px;
  5444. color:#555555;
  5445. }
  5446. #u85043 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:846px;
  5450. top:212px;
  5451. width:79px;
  5452. height:30px;
  5453. display:flex;
  5454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5455. font-weight:400;
  5456. font-style:normal;
  5457. font-size:12px;
  5458. color:#555555;
  5459. }
  5460. #u85043 .text {
  5461. position:absolute;
  5462. align-self:center;
  5463. padding:5px 15px 5px 15px;
  5464. box-sizing:border-box;
  5465. width:100%;
  5466. }
  5467. #u85043_text {
  5468. border-width:0px;
  5469. white-space:nowrap;
  5470. text-transform:none;
  5471. }
  5472. #u85044 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:0px;
  5478. height:0px;
  5479. }
  5480. #u85045_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:500px;
  5486. height:514px;
  5487. background:inherit;
  5488. background-color:rgba(255, 255, 255, 1);
  5489. box-sizing:border-box;
  5490. border-width:1px;
  5491. border-style:solid;
  5492. border-color:rgba(215, 215, 215, 1);
  5493. border-radius:0px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:14px;
  5501. color:#AAAAAA;
  5502. text-align:center;
  5503. line-height:30px;
  5504. }
  5505. #u85045 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:861px;
  5509. top:519px;
  5510. width:500px;
  5511. height:514px;
  5512. display:flex;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:14px;
  5517. color:#AAAAAA;
  5518. text-align:center;
  5519. line-height:30px;
  5520. }
  5521. #u85045 .text {
  5522. position:absolute;
  5523. align-self:center;
  5524. padding:5px 10px 5px 10px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u85045_text {
  5529. border-width:0px;
  5530. word-wrap:break-word;
  5531. text-transform:none;
  5532. visibility:hidden;
  5533. }
  5534. #u85046_div {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:83px;
  5540. height:35px;
  5541. background:inherit;
  5542. background-color:rgba(255, 255, 255, 0);
  5543. border:none;
  5544. border-top:0px;
  5545. border-right:0px;
  5546. border-bottom:0px;
  5547. border-radius:0px;
  5548. border-top-left-radius:0px;
  5549. border-bottom-left-radius:0px;
  5550. -moz-box-shadow:none;
  5551. -webkit-box-shadow:none;
  5552. box-shadow:none;
  5553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5554. font-weight:500;
  5555. font-style:normal;
  5556. font-size:18px;
  5557. }
  5558. #u85046 {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:881px;
  5562. top:537px;
  5563. width:83px;
  5564. height:35px;
  5565. display:flex;
  5566. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5567. font-weight:500;
  5568. font-style:normal;
  5569. font-size:18px;
  5570. }
  5571. #u85046 .text {
  5572. position:absolute;
  5573. align-self:center;
  5574. padding:5px 10px 5px 0px;
  5575. box-sizing:border-box;
  5576. width:100%;
  5577. }
  5578. #u85046_text {
  5579. border-width:0px;
  5580. white-space:nowrap;
  5581. text-transform:none;
  5582. }
  5583. #u85047 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:0px;
  5589. height:0px;
  5590. }
  5591. #u85048_div {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:500px;
  5597. height:60px;
  5598. background:inherit;
  5599. background-color:rgba(255, 255, 255, 1);
  5600. box-sizing:border-box;
  5601. border-width:1px;
  5602. border-style:solid;
  5603. border-color:rgba(215, 215, 215, 1);
  5604. border-radius:0px;
  5605. -moz-box-shadow:none;
  5606. -webkit-box-shadow:none;
  5607. box-shadow:none;
  5608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:14px;
  5612. color:#AAAAAA;
  5613. text-align:center;
  5614. line-height:30px;
  5615. }
  5616. #u85048 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:861px;
  5620. top:973px;
  5621. width:500px;
  5622. height:60px;
  5623. display:flex;
  5624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:14px;
  5628. color:#AAAAAA;
  5629. text-align:center;
  5630. line-height:30px;
  5631. }
  5632. #u85048 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:5px 10px 5px 10px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u85048_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u85049_div {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:60px;
  5651. height:30px;
  5652. background:inherit;
  5653. background-color:rgba(24, 144, 255, 1);
  5654. border:none;
  5655. border-radius:4px;
  5656. -moz-box-shadow:none;
  5657. -webkit-box-shadow:none;
  5658. box-shadow:none;
  5659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:14px;
  5663. color:#FFFFFF;
  5664. }
  5665. #u85049 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:1281px;
  5669. top:988px;
  5670. width:60px;
  5671. height:30px;
  5672. display:flex;
  5673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:14px;
  5677. color:#FFFFFF;
  5678. }
  5679. #u85049 .text {
  5680. position:absolute;
  5681. align-self:center;
  5682. padding:2px 2px 2px 2px;
  5683. box-sizing:border-box;
  5684. width:100%;
  5685. }
  5686. #u85049_text {
  5687. border-width:0px;
  5688. word-wrap:break-word;
  5689. text-transform:none;
  5690. }
  5691. #u85050_div {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:60px;
  5697. height:30px;
  5698. background:inherit;
  5699. background-color:rgba(255, 255, 255, 1);
  5700. box-sizing:border-box;
  5701. border-width:1px;
  5702. border-style:solid;
  5703. border-color:rgba(170, 170, 170, 1);
  5704. border-radius:4px;
  5705. -moz-box-shadow:none;
  5706. -webkit-box-shadow:none;
  5707. box-shadow:none;
  5708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5709. font-weight:400;
  5710. font-style:normal;
  5711. font-size:14px;
  5712. }
  5713. #u85050 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:1211px;
  5717. top:988px;
  5718. width:60px;
  5719. height:30px;
  5720. display:flex;
  5721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:14px;
  5725. }
  5726. #u85050 .text {
  5727. position:absolute;
  5728. align-self:center;
  5729. padding:2px 2px 2px 2px;
  5730. box-sizing:border-box;
  5731. width:100%;
  5732. }
  5733. #u85050_text {
  5734. border-width:0px;
  5735. word-wrap:break-word;
  5736. text-transform:none;
  5737. }
  5738. #u85051_div {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:440px;
  5744. height:40px;
  5745. background:inherit;
  5746. background-color:rgba(255, 255, 128, 0.2);
  5747. border:none;
  5748. border-top:0px;
  5749. border-right:0px;
  5750. border-bottom:0px;
  5751. border-radius:0px;
  5752. border-top-left-radius:0px;
  5753. border-bottom-left-radius:0px;
  5754. -moz-box-shadow:none;
  5755. -webkit-box-shadow:none;
  5756. box-shadow:none;
  5757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:14px;
  5761. color:#F59A23;
  5762. }
  5763. #u85051 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:907px;
  5767. top:595px;
  5768. width:440px;
  5769. height:40px;
  5770. display:flex;
  5771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:14px;
  5775. color:#F59A23;
  5776. }
  5777. #u85051 .text {
  5778. position:absolute;
  5779. align-self:center;
  5780. padding:5px 10px 5px 20px;
  5781. box-sizing:border-box;
  5782. width:100%;
  5783. }
  5784. #u85051_text {
  5785. border-width:0px;
  5786. word-wrap:break-word;
  5787. text-transform:none;
  5788. }
  5789. #u85052 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:923px;
  5793. top:665px;
  5794. width:117px;
  5795. height:200px;
  5796. }
  5797. #u85052_children {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:0px;
  5803. height:0px;
  5804. }
  5805. #u85053 {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:54px;
  5811. height:20px;
  5812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5813. font-weight:400;
  5814. font-style:normal;
  5815. color:#298FFF;
  5816. }
  5817. #u85054_img {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:9px;
  5823. height:9px;
  5824. }
  5825. #u85054 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:6px;
  5829. top:6px;
  5830. width:9px;
  5831. height:9px;
  5832. display:flex;
  5833. }
  5834. #u85054 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 2px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u85054_img.selected {
  5842. }
  5843. #u85054.selected {
  5844. }
  5845. #u85054_text {
  5846. border-width:0px;
  5847. word-wrap:break-word;
  5848. text-transform:none;
  5849. visibility:hidden;
  5850. }
  5851. #u85055_div {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:32px;
  5857. height:20px;
  5858. background:inherit;
  5859. background-color:rgba(255, 255, 255, 0);
  5860. border:none;
  5861. border-radius:0px;
  5862. -moz-box-shadow:none;
  5863. -webkit-box-shadow:none;
  5864. box-shadow:none;
  5865. }
  5866. #u85055 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:22px;
  5870. top:0px;
  5871. width:32px;
  5872. height:20px;
  5873. display:flex;
  5874. }
  5875. #u85055 .text {
  5876. position:absolute;
  5877. align-self:center;
  5878. padding:2px 2px 2px 3px;
  5879. box-sizing:border-box;
  5880. width:100%;
  5881. }
  5882. #u85055_text {
  5883. border-width:0px;
  5884. white-space:nowrap;
  5885. text-transform:none;
  5886. }
  5887. #u85053_children {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:0px;
  5891. top:0px;
  5892. width:0px;
  5893. height:0px;
  5894. }
  5895. #u85056 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:20px;
  5899. top:20px;
  5900. width:67px;
  5901. height:20px;
  5902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. }
  5906. #u85057_div {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:45px;
  5912. height:20px;
  5913. background:inherit;
  5914. background-color:rgba(255, 255, 255, 0);
  5915. border:none;
  5916. border-radius:0px;
  5917. -moz-box-shadow:none;
  5918. -webkit-box-shadow:none;
  5919. box-shadow:none;
  5920. }
  5921. #u85057 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:22px;
  5925. top:0px;
  5926. width:45px;
  5927. height:20px;
  5928. display:flex;
  5929. }
  5930. #u85057 .text {
  5931. position:absolute;
  5932. align-self:center;
  5933. padding:2px 2px 2px 3px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u85057_text {
  5938. border-width:0px;
  5939. white-space:nowrap;
  5940. text-transform:none;
  5941. }
  5942. #u85058 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:20px;
  5946. top:40px;
  5947. width:67px;
  5948. height:20px;
  5949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. }
  5953. #u85059_div {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:45px;
  5959. height:20px;
  5960. background:inherit;
  5961. background-color:rgba(255, 255, 255, 0);
  5962. border:none;
  5963. border-radius:0px;
  5964. -moz-box-shadow:none;
  5965. -webkit-box-shadow:none;
  5966. box-shadow:none;
  5967. }
  5968. #u85059 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:22px;
  5972. top:0px;
  5973. width:45px;
  5974. height:20px;
  5975. display:flex;
  5976. }
  5977. #u85059 .text {
  5978. position:absolute;
  5979. align-self:center;
  5980. padding:2px 2px 2px 3px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u85059_text {
  5985. border-width:0px;
  5986. white-space:nowrap;
  5987. text-transform:none;
  5988. }
  5989. #u85060 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:20px;
  5993. top:60px;
  5994. width:67px;
  5995. height:20px;
  5996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. }
  6000. #u85061_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:45px;
  6006. height:20px;
  6007. background:inherit;
  6008. background-color:rgba(255, 255, 255, 0);
  6009. border:none;
  6010. border-radius:0px;
  6011. -moz-box-shadow:none;
  6012. -webkit-box-shadow:none;
  6013. box-shadow:none;
  6014. }
  6015. #u85061 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:22px;
  6019. top:0px;
  6020. width:45px;
  6021. height:20px;
  6022. display:flex;
  6023. }
  6024. #u85061 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 2px 2px 3px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u85061_text {
  6032. border-width:0px;
  6033. white-space:nowrap;
  6034. text-transform:none;
  6035. }
  6036. #u85062 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:80px;
  6041. width:54px;
  6042. height:20px;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. }
  6047. #u85063_img {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:9px;
  6053. height:9px;
  6054. }
  6055. #u85063 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:6px;
  6059. top:6px;
  6060. width:9px;
  6061. height:9px;
  6062. display:flex;
  6063. }
  6064. #u85063 .text {
  6065. position:absolute;
  6066. align-self:center;
  6067. padding:2px 2px 2px 2px;
  6068. box-sizing:border-box;
  6069. width:100%;
  6070. }
  6071. #u85063_img.selected {
  6072. }
  6073. #u85063.selected {
  6074. }
  6075. #u85063_text {
  6076. border-width:0px;
  6077. word-wrap:break-word;
  6078. text-transform:none;
  6079. visibility:hidden;
  6080. }
  6081. #u85064_div {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:32px;
  6087. height:20px;
  6088. background:inherit;
  6089. background-color:rgba(255, 255, 255, 0);
  6090. border:none;
  6091. border-radius:0px;
  6092. -moz-box-shadow:none;
  6093. -webkit-box-shadow:none;
  6094. box-shadow:none;
  6095. }
  6096. #u85064 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:22px;
  6100. top:0px;
  6101. width:32px;
  6102. height:20px;
  6103. display:flex;
  6104. }
  6105. #u85064 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:2px 2px 2px 3px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u85064_text {
  6113. border-width:0px;
  6114. white-space:nowrap;
  6115. text-transform:none;
  6116. }
  6117. #u85062_children {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:0px;
  6123. height:0px;
  6124. }
  6125. #u85065 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:20px;
  6129. top:20px;
  6130. width:93px;
  6131. height:20px;
  6132. }
  6133. #u85066_div {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:71px;
  6139. height:20px;
  6140. background:inherit;
  6141. background-color:rgba(255, 255, 255, 0);
  6142. border:none;
  6143. border-radius:0px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. }
  6148. #u85066 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:22px;
  6152. top:0px;
  6153. width:71px;
  6154. height:20px;
  6155. display:flex;
  6156. }
  6157. #u85066 .text {
  6158. position:absolute;
  6159. align-self:center;
  6160. padding:2px 2px 2px 3px;
  6161. box-sizing:border-box;
  6162. width:100%;
  6163. }
  6164. #u85066_text {
  6165. border-width:0px;
  6166. white-space:nowrap;
  6167. text-transform:none;
  6168. }
  6169. #u85067 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:20px;
  6173. top:40px;
  6174. width:93px;
  6175. height:20px;
  6176. }
  6177. #u85068_div {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:71px;
  6183. height:20px;
  6184. background:inherit;
  6185. background-color:rgba(255, 255, 255, 0);
  6186. border:none;
  6187. border-radius:0px;
  6188. -moz-box-shadow:none;
  6189. -webkit-box-shadow:none;
  6190. box-shadow:none;
  6191. }
  6192. #u85068 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:22px;
  6196. top:0px;
  6197. width:71px;
  6198. height:20px;
  6199. display:flex;
  6200. }
  6201. #u85068 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 2px 2px 3px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u85068_text {
  6209. border-width:0px;
  6210. white-space:nowrap;
  6211. text-transform:none;
  6212. }
  6213. #u85069 {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:140px;
  6218. width:54px;
  6219. height:20px;
  6220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6221. font-weight:400;
  6222. font-style:normal;
  6223. }
  6224. #u85070_img {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:9px;
  6230. height:9px;
  6231. }
  6232. #u85070 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:6px;
  6236. top:6px;
  6237. width:9px;
  6238. height:9px;
  6239. display:flex;
  6240. }
  6241. #u85070 .text {
  6242. position:absolute;
  6243. align-self:center;
  6244. padding:2px 2px 2px 2px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u85070_img.selected {
  6249. }
  6250. #u85070.selected {
  6251. }
  6252. #u85070_text {
  6253. border-width:0px;
  6254. word-wrap:break-word;
  6255. text-transform:none;
  6256. visibility:hidden;
  6257. }
  6258. #u85071_div {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:32px;
  6264. height:20px;
  6265. background:inherit;
  6266. background-color:rgba(255, 255, 255, 0);
  6267. border:none;
  6268. border-radius:0px;
  6269. -moz-box-shadow:none;
  6270. -webkit-box-shadow:none;
  6271. box-shadow:none;
  6272. }
  6273. #u85071 {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:22px;
  6277. top:0px;
  6278. width:32px;
  6279. height:20px;
  6280. display:flex;
  6281. }
  6282. #u85071 .text {
  6283. position:absolute;
  6284. align-self:center;
  6285. padding:2px 2px 2px 3px;
  6286. box-sizing:border-box;
  6287. width:100%;
  6288. }
  6289. #u85071_text {
  6290. border-width:0px;
  6291. white-space:nowrap;
  6292. text-transform:none;
  6293. }
  6294. #u85069_children {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:0px;
  6300. height:0px;
  6301. }
  6302. #u85072 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:20px;
  6306. top:20px;
  6307. width:97px;
  6308. height:20px;
  6309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6310. font-weight:400;
  6311. font-style:normal;
  6312. }
  6313. #u85073_div {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:75px;
  6319. height:20px;
  6320. background:inherit;
  6321. background-color:rgba(255, 255, 255, 0);
  6322. border:none;
  6323. border-radius:0px;
  6324. -moz-box-shadow:none;
  6325. -webkit-box-shadow:none;
  6326. box-shadow:none;
  6327. }
  6328. #u85073 {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:22px;
  6332. top:0px;
  6333. width:75px;
  6334. height:20px;
  6335. display:flex;
  6336. }
  6337. #u85073 .text {
  6338. position:absolute;
  6339. align-self:center;
  6340. padding:2px 2px 2px 3px;
  6341. box-sizing:border-box;
  6342. width:100%;
  6343. }
  6344. #u85073_text {
  6345. border-width:0px;
  6346. white-space:nowrap;
  6347. text-transform:none;
  6348. }
  6349. #u85074 {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:20px;
  6353. top:40px;
  6354. width:97px;
  6355. height:20px;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. }
  6360. #u85075_div {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:0px;
  6365. width:75px;
  6366. height:20px;
  6367. background:inherit;
  6368. background-color:rgba(255, 255, 255, 0);
  6369. border:none;
  6370. border-radius:0px;
  6371. -moz-box-shadow:none;
  6372. -webkit-box-shadow:none;
  6373. box-shadow:none;
  6374. }
  6375. #u85075 {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:22px;
  6379. top:0px;
  6380. width:75px;
  6381. height:20px;
  6382. display:flex;
  6383. }
  6384. #u85075 .text {
  6385. position:absolute;
  6386. align-self:center;
  6387. padding:2px 2px 2px 3px;
  6388. box-sizing:border-box;
  6389. width:100%;
  6390. }
  6391. #u85075_text {
  6392. border-width:0px;
  6393. white-space:nowrap;
  6394. text-transform:none;
  6395. }
  6396. #u85076_img {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:10px;
  6402. height:8px;
  6403. }
  6404. #u85076 {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:1312px;
  6408. top:670px;
  6409. width:10px;
  6410. height:8px;
  6411. display:flex;
  6412. }
  6413. #u85076 .text {
  6414. position:absolute;
  6415. align-self:center;
  6416. padding:2px 2px 2px 2px;
  6417. box-sizing:border-box;
  6418. width:100%;
  6419. }
  6420. #u85076_text {
  6421. border-width:0px;
  6422. word-wrap:break-word;
  6423. text-transform:none;
  6424. visibility:hidden;
  6425. }
  6426. #u85077_img {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:0px;
  6430. top:0px;
  6431. width:10px;
  6432. height:8px;
  6433. }
  6434. #u85077 {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:1312px;
  6438. top:690px;
  6439. width:10px;
  6440. height:8px;
  6441. display:flex;
  6442. }
  6443. #u85077 .text {
  6444. position:absolute;
  6445. align-self:center;
  6446. padding:2px 2px 2px 2px;
  6447. box-sizing:border-box;
  6448. width:100%;
  6449. }
  6450. #u85077_text {
  6451. border-width:0px;
  6452. word-wrap:break-word;
  6453. text-transform:none;
  6454. visibility:hidden;
  6455. }
  6456. #u85078_img {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:10px;
  6462. height:8px;
  6463. }
  6464. #u85078 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:1312px;
  6468. top:710px;
  6469. width:10px;
  6470. height:8px;
  6471. display:flex;
  6472. }
  6473. #u85078 .text {
  6474. position:absolute;
  6475. align-self:center;
  6476. padding:2px 2px 2px 2px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u85078_text {
  6481. border-width:0px;
  6482. word-wrap:break-word;
  6483. text-transform:none;
  6484. visibility:hidden;
  6485. }
  6486. #u85079_img {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:10px;
  6492. height:8px;
  6493. }
  6494. #u85079 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:1312px;
  6498. top:730px;
  6499. width:10px;
  6500. height:8px;
  6501. display:flex;
  6502. }
  6503. #u85079 .text {
  6504. position:absolute;
  6505. align-self:center;
  6506. padding:2px 2px 2px 2px;
  6507. box-sizing:border-box;
  6508. width:100%;
  6509. }
  6510. #u85079_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. visibility:hidden;
  6515. }
  6516. #u85080_img {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:10px;
  6522. height:8px;
  6523. }
  6524. #u85080 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:1312px;
  6528. top:751px;
  6529. width:10px;
  6530. height:8px;
  6531. display:flex;
  6532. }
  6533. #u85080 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 2px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u85080_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. visibility:hidden;
  6545. }
  6546. #u85081_img {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:10px;
  6552. height:8px;
  6553. }
  6554. #u85081 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:1312px;
  6558. top:771px;
  6559. width:10px;
  6560. height:8px;
  6561. display:flex;
  6562. }
  6563. #u85081 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:2px 2px 2px 2px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u85081_text {
  6571. border-width:0px;
  6572. word-wrap:break-word;
  6573. text-transform:none;
  6574. visibility:hidden;
  6575. }
  6576. #u85082_img {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:0px;
  6580. top:0px;
  6581. width:10px;
  6582. height:8px;
  6583. }
  6584. #u85082 {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:1312px;
  6588. top:791px;
  6589. width:10px;
  6590. height:8px;
  6591. display:flex;
  6592. }
  6593. #u85082 .text {
  6594. position:absolute;
  6595. align-self:center;
  6596. padding:2px 2px 2px 2px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u85082_text {
  6601. border-width:0px;
  6602. word-wrap:break-word;
  6603. text-transform:none;
  6604. visibility:hidden;
  6605. }
  6606. #u85083_img {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:10px;
  6612. height:8px;
  6613. }
  6614. #u85083 {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:1312px;
  6618. top:811px;
  6619. width:10px;
  6620. height:8px;
  6621. display:flex;
  6622. }
  6623. #u85083 .text {
  6624. position:absolute;
  6625. align-self:center;
  6626. padding:2px 2px 2px 2px;
  6627. box-sizing:border-box;
  6628. width:100%;
  6629. }
  6630. #u85083_text {
  6631. border-width:0px;
  6632. word-wrap:break-word;
  6633. text-transform:none;
  6634. visibility:hidden;
  6635. }
  6636. #u85084_img {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:0px;
  6640. top:0px;
  6641. width:10px;
  6642. height:8px;
  6643. }
  6644. #u85084 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:1312px;
  6648. top:831px;
  6649. width:10px;
  6650. height:8px;
  6651. display:flex;
  6652. }
  6653. #u85084 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:2px 2px 2px 2px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u85084_text {
  6661. border-width:0px;
  6662. word-wrap:break-word;
  6663. text-transform:none;
  6664. visibility:hidden;
  6665. }
  6666. #u85085_img {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:10px;
  6672. height:8px;
  6673. }
  6674. #u85085 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:1312px;
  6678. top:851px;
  6679. width:10px;
  6680. height:8px;
  6681. display:flex;
  6682. }
  6683. #u85085 .text {
  6684. position:absolute;
  6685. align-self:center;
  6686. padding:2px 2px 2px 2px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u85085_text {
  6691. border-width:0px;
  6692. word-wrap:break-word;
  6693. text-transform:none;
  6694. visibility:hidden;
  6695. }
  6696. #u85086_div {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:0px;
  6700. top:0px;
  6701. width:21px;
  6702. height:35px;
  6703. background:inherit;
  6704. background-color:rgba(255, 255, 255, 0);
  6705. border:none;
  6706. border-top:0px;
  6707. border-right:0px;
  6708. border-bottom:0px;
  6709. border-radius:0px;
  6710. border-top-left-radius:0px;
  6711. border-bottom-left-radius:0px;
  6712. -moz-box-shadow:none;
  6713. -webkit-box-shadow:none;
  6714. box-shadow:none;
  6715. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6716. font-weight:500;
  6717. font-style:normal;
  6718. font-size:18px;
  6719. }
  6720. #u85086 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:1340px;
  6724. top:519px;
  6725. width:21px;
  6726. height:35px;
  6727. display:flex;
  6728. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6729. font-weight:500;
  6730. font-style:normal;
  6731. font-size:18px;
  6732. }
  6733. #u85086 .text {
  6734. position:absolute;
  6735. align-self:center;
  6736. padding:5px 10px 5px 0px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u85086_text {
  6741. border-width:0px;
  6742. white-space:nowrap;
  6743. text-transform:none;
  6744. }
  6745. #u85087 {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:0px;
  6751. height:0px;
  6752. }
  6753. #u85088_div {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:800px;
  6759. height:1200px;
  6760. background:inherit;
  6761. background-color:rgba(255, 255, 255, 1);
  6762. box-sizing:border-box;
  6763. border-width:1px;
  6764. border-style:solid;
  6765. border-color:rgba(215, 215, 215, 1);
  6766. border-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:14px;
  6774. color:#AAAAAA;
  6775. text-align:center;
  6776. line-height:30px;
  6777. }
  6778. #u85088 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:1650px;
  6782. top:50px;
  6783. width:800px;
  6784. height:1200px;
  6785. display:flex;
  6786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6787. font-weight:400;
  6788. font-style:normal;
  6789. font-size:14px;
  6790. color:#AAAAAA;
  6791. text-align:center;
  6792. line-height:30px;
  6793. }
  6794. #u85088 .text {
  6795. position:absolute;
  6796. align-self:center;
  6797. padding:5px 10px 5px 10px;
  6798. box-sizing:border-box;
  6799. width:100%;
  6800. }
  6801. #u85088_text {
  6802. border-width:0px;
  6803. word-wrap:break-word;
  6804. text-transform:none;
  6805. visibility:hidden;
  6806. }
  6807. #u85089_div {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:83px;
  6813. height:35px;
  6814. background:inherit;
  6815. background-color:rgba(255, 255, 255, 0);
  6816. border:none;
  6817. border-top:0px;
  6818. border-right:0px;
  6819. border-bottom:0px;
  6820. border-radius:0px;
  6821. border-top-left-radius:0px;
  6822. border-bottom-left-radius:0px;
  6823. -moz-box-shadow:none;
  6824. -webkit-box-shadow:none;
  6825. box-shadow:none;
  6826. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6827. font-weight:500;
  6828. font-style:normal;
  6829. font-size:18px;
  6830. }
  6831. #u85089 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:1670px;
  6835. top:68px;
  6836. width:83px;
  6837. height:35px;
  6838. display:flex;
  6839. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6840. font-weight:500;
  6841. font-style:normal;
  6842. font-size:18px;
  6843. }
  6844. #u85089 .text {
  6845. position:absolute;
  6846. align-self:center;
  6847. padding:5px 10px 5px 0px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u85089_text {
  6852. border-width:0px;
  6853. white-space:nowrap;
  6854. text-transform:none;
  6855. }
  6856. #u85090 {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:0px;
  6862. height:0px;
  6863. }
  6864. #u85091_div {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:800px;
  6870. height:60px;
  6871. background:inherit;
  6872. background-color:rgba(255, 255, 255, 1);
  6873. box-sizing:border-box;
  6874. border-width:1px;
  6875. border-style:solid;
  6876. border-color:rgba(215, 215, 215, 1);
  6877. border-radius:0px;
  6878. -moz-box-shadow:none;
  6879. -webkit-box-shadow:none;
  6880. box-shadow:none;
  6881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:14px;
  6885. color:#AAAAAA;
  6886. text-align:center;
  6887. line-height:30px;
  6888. }
  6889. #u85091 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:1650px;
  6893. top:1190px;
  6894. width:800px;
  6895. height:60px;
  6896. display:flex;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:14px;
  6901. color:#AAAAAA;
  6902. text-align:center;
  6903. line-height:30px;
  6904. }
  6905. #u85091 .text {
  6906. position:absolute;
  6907. align-self:center;
  6908. padding:5px 10px 5px 10px;
  6909. box-sizing:border-box;
  6910. width:100%;
  6911. }
  6912. #u85091_text {
  6913. border-width:0px;
  6914. word-wrap:break-word;
  6915. text-transform:none;
  6916. visibility:hidden;
  6917. }
  6918. #u85092_div {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:80px;
  6924. height:30px;
  6925. background:inherit;
  6926. background-color:rgba(24, 144, 255, 1);
  6927. border:none;
  6928. border-radius:4px;
  6929. -moz-box-shadow:none;
  6930. -webkit-box-shadow:none;
  6931. box-shadow:none;
  6932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6933. font-weight:400;
  6934. font-style:normal;
  6935. font-size:14px;
  6936. color:#FFFFFF;
  6937. }
  6938. #u85092 {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:2315px;
  6942. top:1205px;
  6943. width:80px;
  6944. height:30px;
  6945. display:flex;
  6946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6947. font-weight:400;
  6948. font-style:normal;
  6949. font-size:14px;
  6950. color:#FFFFFF;
  6951. }
  6952. #u85092 .text {
  6953. position:absolute;
  6954. align-self:center;
  6955. padding:2px 2px 2px 2px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u85092_text {
  6960. border-width:0px;
  6961. word-wrap:break-word;
  6962. text-transform:none;
  6963. }
  6964. #u85093_div {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:80px;
  6970. height:30px;
  6971. background:inherit;
  6972. background-color:rgba(255, 255, 255, 1);
  6973. box-sizing:border-box;
  6974. border-width:1px;
  6975. border-style:solid;
  6976. border-color:rgba(170, 170, 170, 1);
  6977. border-radius:4px;
  6978. -moz-box-shadow:none;
  6979. -webkit-box-shadow:none;
  6980. box-shadow:none;
  6981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6982. font-weight:400;
  6983. font-style:normal;
  6984. font-size:14px;
  6985. }
  6986. #u85093 {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:2215px;
  6990. top:1205px;
  6991. width:80px;
  6992. height:30px;
  6993. display:flex;
  6994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6995. font-weight:400;
  6996. font-style:normal;
  6997. font-size:14px;
  6998. }
  6999. #u85093 .text {
  7000. position:absolute;
  7001. align-self:center;
  7002. padding:2px 2px 2px 2px;
  7003. box-sizing:border-box;
  7004. width:100%;
  7005. }
  7006. #u85093_text {
  7007. border-width:0px;
  7008. word-wrap:break-word;
  7009. text-transform:none;
  7010. }
  7011. #u85094_div {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:88px;
  7017. height:40px;
  7018. background:inherit;
  7019. background-color:rgba(255, 255, 255, 0);
  7020. border:none;
  7021. border-top:0px;
  7022. border-right:0px;
  7023. border-bottom:0px;
  7024. border-radius:0px;
  7025. border-top-left-radius:0px;
  7026. border-bottom-left-radius:0px;
  7027. -moz-box-shadow:none;
  7028. -webkit-box-shadow:none;
  7029. box-shadow:none;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:14px;
  7034. color:#7F7F7F;
  7035. text-align:right;
  7036. }
  7037. #u85094 {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:1723px;
  7041. top:126px;
  7042. width:88px;
  7043. height:40px;
  7044. display:flex;
  7045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7046. font-weight:400;
  7047. font-style:normal;
  7048. font-size:14px;
  7049. color:#7F7F7F;
  7050. text-align:right;
  7051. }
  7052. #u85094 .text {
  7053. position:absolute;
  7054. align-self:center;
  7055. padding:5px 10px 5px 0px;
  7056. box-sizing:border-box;
  7057. width:100%;
  7058. }
  7059. #u85094_text {
  7060. border-width:0px;
  7061. white-space:nowrap;
  7062. text-transform:none;
  7063. }
  7064. #u85095 {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:0px;
  7068. top:0px;
  7069. width:0px;
  7070. height:0px;
  7071. }
  7072. #u85096_div {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:400px;
  7078. height:40px;
  7079. background:inherit;
  7080. background-color:rgba(255, 255, 255, 1);
  7081. box-sizing:border-box;
  7082. border-width:1px;
  7083. border-style:solid;
  7084. border-color:rgba(201, 201, 201, 1);
  7085. border-radius:4px;
  7086. -moz-box-shadow:none;
  7087. -webkit-box-shadow:none;
  7088. box-shadow:none;
  7089. font-family:'Microsoft YaHei', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:14px;
  7093. color:#CCCCCC;
  7094. text-align:left;
  7095. }
  7096. #u85096 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:1821px;
  7100. top:127px;
  7101. width:400px;
  7102. height:40px;
  7103. display:flex;
  7104. font-family:'Microsoft YaHei', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:14px;
  7108. color:#CCCCCC;
  7109. text-align:left;
  7110. }
  7111. #u85096 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 8px 2px 8px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u85096_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u85097_input {
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:380px;
  7129. height:38px;
  7130. padding:2px 2px 2px 2px;
  7131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. font-size:14px;
  7135. letter-spacing:normal;
  7136. color:#000000;
  7137. vertical-align:none;
  7138. text-align:left;
  7139. text-transform:none;
  7140. background-color:transparent;
  7141. border-color:transparent;
  7142. }
  7143. #u85097_input.disabled {
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:380px;
  7148. height:38px;
  7149. padding:2px 2px 2px 2px;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:14px;
  7154. letter-spacing:normal;
  7155. color:#000000;
  7156. vertical-align:none;
  7157. text-align:left;
  7158. text-transform:none;
  7159. background-color:transparent;
  7160. border-color:transparent;
  7161. }
  7162. #u85097_div {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:380px;
  7168. height:38px;
  7169. background:inherit;
  7170. background-color:rgba(255, 255, 255, 1);
  7171. border:none;
  7172. border-radius:0px;
  7173. -moz-box-shadow:none;
  7174. -webkit-box-shadow:none;
  7175. box-shadow:none;
  7176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7177. font-weight:400;
  7178. font-style:normal;
  7179. font-size:14px;
  7180. }
  7181. #u85097 {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:1832px;
  7185. top:128px;
  7186. width:380px;
  7187. height:38px;
  7188. display:flex;
  7189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:14px;
  7193. }
  7194. #u85097 .text {
  7195. position:absolute;
  7196. align-self:center;
  7197. padding:2px 2px 2px 2px;
  7198. box-sizing:border-box;
  7199. width:100%;
  7200. }
  7201. #u85097_div.disabled {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:380px;
  7207. height:38px;
  7208. background:inherit;
  7209. background-color:rgba(240, 240, 240, 1);
  7210. border:none;
  7211. border-radius:0px;
  7212. -moz-box-shadow:none;
  7213. -webkit-box-shadow:none;
  7214. box-shadow:none;
  7215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7216. font-weight:400;
  7217. font-style:normal;
  7218. font-size:14px;
  7219. }
  7220. #u85097.disabled {
  7221. }
  7222. #u85098_div {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:0px;
  7226. top:0px;
  7227. width:88px;
  7228. height:40px;
  7229. background:inherit;
  7230. background-color:rgba(255, 255, 255, 0);
  7231. border:none;
  7232. border-top:0px;
  7233. border-right:0px;
  7234. border-bottom:0px;
  7235. border-radius:0px;
  7236. border-top-left-radius:0px;
  7237. border-bottom-left-radius:0px;
  7238. -moz-box-shadow:none;
  7239. -webkit-box-shadow:none;
  7240. box-shadow:none;
  7241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7242. font-weight:400;
  7243. font-style:normal;
  7244. font-size:14px;
  7245. color:#7F7F7F;
  7246. text-align:right;
  7247. }
  7248. #u85098 {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:1723px;
  7252. top:177px;
  7253. width:88px;
  7254. height:40px;
  7255. display:flex;
  7256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7257. font-weight:400;
  7258. font-style:normal;
  7259. font-size:14px;
  7260. color:#7F7F7F;
  7261. text-align:right;
  7262. }
  7263. #u85098 .text {
  7264. position:absolute;
  7265. align-self:center;
  7266. padding:5px 10px 5px 0px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u85098_text {
  7271. border-width:0px;
  7272. white-space:nowrap;
  7273. text-transform:none;
  7274. }
  7275. #u85099 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:0px;
  7281. height:0px;
  7282. }
  7283. #u85100_div {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:400px;
  7289. height:40px;
  7290. background:inherit;
  7291. background-color:rgba(255, 255, 255, 1);
  7292. box-sizing:border-box;
  7293. border-width:1px;
  7294. border-style:solid;
  7295. border-color:rgba(201, 201, 201, 1);
  7296. border-radius:4px;
  7297. -moz-box-shadow:none;
  7298. -webkit-box-shadow:none;
  7299. box-shadow:none;
  7300. font-family:'Microsoft YaHei', sans-serif;
  7301. font-weight:400;
  7302. font-style:normal;
  7303. font-size:14px;
  7304. color:#CCCCCC;
  7305. text-align:left;
  7306. }
  7307. #u85100 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:1821px;
  7311. top:178px;
  7312. width:400px;
  7313. height:40px;
  7314. display:flex;
  7315. font-family:'Microsoft YaHei', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:14px;
  7319. color:#CCCCCC;
  7320. text-align:left;
  7321. }
  7322. #u85100 .text {
  7323. position:absolute;
  7324. align-self:center;
  7325. padding:2px 8px 2px 8px;
  7326. box-sizing:border-box;
  7327. width:100%;
  7328. }
  7329. #u85100_text {
  7330. border-width:0px;
  7331. word-wrap:break-word;
  7332. text-transform:none;
  7333. visibility:hidden;
  7334. }
  7335. #u85101_input {
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:380px;
  7340. height:38px;
  7341. padding:2px 2px 2px 2px;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:14px;
  7346. letter-spacing:normal;
  7347. color:#000000;
  7348. vertical-align:none;
  7349. text-align:left;
  7350. text-transform:none;
  7351. background-color:transparent;
  7352. border-color:transparent;
  7353. }
  7354. #u85101_input.disabled {
  7355. position:absolute;
  7356. left:0px;
  7357. top:0px;
  7358. width:380px;
  7359. height:38px;
  7360. padding:2px 2px 2px 2px;
  7361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7362. font-weight:400;
  7363. font-style:normal;
  7364. font-size:14px;
  7365. letter-spacing:normal;
  7366. color:#000000;
  7367. vertical-align:none;
  7368. text-align:left;
  7369. text-transform:none;
  7370. background-color:transparent;
  7371. border-color:transparent;
  7372. }
  7373. #u85101_div {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:0px;
  7377. top:0px;
  7378. width:380px;
  7379. height:38px;
  7380. background:inherit;
  7381. background-color:rgba(255, 255, 255, 1);
  7382. border:none;
  7383. border-radius:0px;
  7384. -moz-box-shadow:none;
  7385. -webkit-box-shadow:none;
  7386. box-shadow:none;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:14px;
  7391. }
  7392. #u85101 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:1832px;
  7396. top:179px;
  7397. width:380px;
  7398. height:38px;
  7399. display:flex;
  7400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:14px;
  7404. }
  7405. #u85101 .text {
  7406. position:absolute;
  7407. align-self:center;
  7408. padding:2px 2px 2px 2px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u85101_div.disabled {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:380px;
  7418. height:38px;
  7419. background:inherit;
  7420. background-color:rgba(240, 240, 240, 1);
  7421. border:none;
  7422. border-radius:0px;
  7423. -moz-box-shadow:none;
  7424. -webkit-box-shadow:none;
  7425. box-shadow:none;
  7426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7427. font-weight:400;
  7428. font-style:normal;
  7429. font-size:14px;
  7430. }
  7431. #u85101.disabled {
  7432. }
  7433. #u85102_div {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:0px;
  7437. top:0px;
  7438. width:88px;
  7439. height:40px;
  7440. background:inherit;
  7441. background-color:rgba(255, 255, 255, 0);
  7442. border:none;
  7443. border-top:0px;
  7444. border-right:0px;
  7445. border-bottom:0px;
  7446. border-radius:0px;
  7447. border-top-left-radius:0px;
  7448. border-bottom-left-radius:0px;
  7449. -moz-box-shadow:none;
  7450. -webkit-box-shadow:none;
  7451. box-shadow:none;
  7452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:14px;
  7456. color:#7F7F7F;
  7457. text-align:right;
  7458. }
  7459. #u85102 {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:1723px;
  7463. top:233px;
  7464. width:88px;
  7465. height:40px;
  7466. display:flex;
  7467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7468. font-weight:400;
  7469. font-style:normal;
  7470. font-size:14px;
  7471. color:#7F7F7F;
  7472. text-align:right;
  7473. }
  7474. #u85102 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:5px 10px 5px 0px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u85102_text {
  7482. border-width:0px;
  7483. white-space:nowrap;
  7484. text-transform:none;
  7485. }
  7486. #u85103 {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:0px;
  7492. height:0px;
  7493. }
  7494. #u85104_div {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:0px;
  7498. top:0px;
  7499. width:400px;
  7500. height:40px;
  7501. background:inherit;
  7502. background-color:rgba(255, 255, 255, 1);
  7503. box-sizing:border-box;
  7504. border-width:1px;
  7505. border-style:solid;
  7506. border-color:rgba(215, 215, 215, 1);
  7507. border-radius:4px;
  7508. -moz-box-shadow:none;
  7509. -webkit-box-shadow:none;
  7510. box-shadow:none;
  7511. font-size:11px;
  7512. }
  7513. #u85104 {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:1821px;
  7517. top:233px;
  7518. width:400px;
  7519. height:40px;
  7520. display:flex;
  7521. font-size:11px;
  7522. }
  7523. #u85104 .text {
  7524. position:absolute;
  7525. align-self:center;
  7526. padding:2px 2px 2px 2px;
  7527. box-sizing:border-box;
  7528. width:100%;
  7529. }
  7530. #u85104_text {
  7531. border-width:0px;
  7532. word-wrap:break-word;
  7533. text-transform:none;
  7534. visibility:hidden;
  7535. }
  7536. #u85105_input {
  7537. position:absolute;
  7538. left:0px;
  7539. top:0px;
  7540. width:380px;
  7541. height:31px;
  7542. padding:2px 2px 2px 2px;
  7543. font-family:'ArialMT', 'Arial', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:11px;
  7547. letter-spacing:normal;
  7548. color:#AAAAAA;
  7549. vertical-align:none;
  7550. text-align:left;
  7551. text-transform:none;
  7552. background-color:transparent;
  7553. border-color:transparent;
  7554. }
  7555. #u85105_input.disabled {
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:380px;
  7560. height:31px;
  7561. padding:2px 2px 2px 2px;
  7562. font-family:'ArialMT', 'Arial', sans-serif;
  7563. font-weight:400;
  7564. font-style:normal;
  7565. font-size:11px;
  7566. letter-spacing:normal;
  7567. color:#AAAAAA;
  7568. vertical-align:none;
  7569. text-align:left;
  7570. text-transform:none;
  7571. background-color:transparent;
  7572. border-color:transparent;
  7573. }
  7574. #u85105_div {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:380px;
  7580. height:31px;
  7581. background:inherit;
  7582. background-color:rgba(255, 255, 255, 1);
  7583. border:none;
  7584. border-radius:0px;
  7585. -moz-box-shadow:none;
  7586. -webkit-box-shadow:none;
  7587. box-shadow:none;
  7588. font-size:11px;
  7589. color:#AAAAAA;
  7590. }
  7591. #u85105 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:1832px;
  7595. top:236px;
  7596. width:380px;
  7597. height:31px;
  7598. display:flex;
  7599. font-size:11px;
  7600. color:#AAAAAA;
  7601. }
  7602. #u85105 .text {
  7603. position:absolute;
  7604. align-self:flex-start;
  7605. padding:2px 2px 2px 2px;
  7606. box-sizing:border-box;
  7607. width:100%;
  7608. }
  7609. #u85105_div.disabled {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:380px;
  7615. height:31px;
  7616. background:inherit;
  7617. background-color:rgba(240, 240, 240, 1);
  7618. border:none;
  7619. border-radius:0px;
  7620. -moz-box-shadow:none;
  7621. -webkit-box-shadow:none;
  7622. box-shadow:none;
  7623. font-size:11px;
  7624. color:#AAAAAA;
  7625. }
  7626. #u85105.disabled {
  7627. }
  7628. .u85105_input_option {
  7629. font-size:11px;
  7630. }
  7631. #u85106_div {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:0px;
  7635. top:0px;
  7636. width:81px;
  7637. height:40px;
  7638. background:inherit;
  7639. background-color:rgba(255, 255, 255, 0);
  7640. border:none;
  7641. border-top:0px;
  7642. border-right:0px;
  7643. border-bottom:0px;
  7644. border-radius:0px;
  7645. border-top-left-radius:0px;
  7646. border-bottom-left-radius:0px;
  7647. -moz-box-shadow:none;
  7648. -webkit-box-shadow:none;
  7649. box-shadow:none;
  7650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7651. font-weight:400;
  7652. font-style:normal;
  7653. font-size:14px;
  7654. color:#7F7F7F;
  7655. text-align:right;
  7656. }
  7657. #u85106 {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:1730px;
  7661. top:283px;
  7662. width:81px;
  7663. height:40px;
  7664. display:flex;
  7665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7666. font-weight:400;
  7667. font-style:normal;
  7668. font-size:14px;
  7669. color:#7F7F7F;
  7670. text-align:right;
  7671. }
  7672. #u85106 .text {
  7673. position:absolute;
  7674. align-self:center;
  7675. padding:5px 10px 5px 0px;
  7676. box-sizing:border-box;
  7677. width:100%;
  7678. }
  7679. #u85106_text {
  7680. border-width:0px;
  7681. white-space:nowrap;
  7682. text-transform:none;
  7683. }
  7684. #u85107 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:0px;
  7690. height:0px;
  7691. }
  7692. #u85108_div {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:0px;
  7696. top:0px;
  7697. width:400px;
  7698. height:80px;
  7699. background:inherit;
  7700. background-color:rgba(255, 255, 255, 1);
  7701. box-sizing:border-box;
  7702. border-width:1px;
  7703. border-style:solid;
  7704. border-color:rgba(201, 201, 201, 1);
  7705. border-radius:4px;
  7706. -moz-box-shadow:none;
  7707. -webkit-box-shadow:none;
  7708. box-shadow:none;
  7709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7710. font-weight:400;
  7711. font-style:normal;
  7712. font-size:12px;
  7713. text-align:right;
  7714. }
  7715. #u85108 {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:1821px;
  7719. top:283px;
  7720. width:400px;
  7721. height:80px;
  7722. display:flex;
  7723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7724. font-weight:400;
  7725. font-style:normal;
  7726. font-size:12px;
  7727. text-align:right;
  7728. }
  7729. #u85108 .text {
  7730. position:absolute;
  7731. align-self:center;
  7732. padding:2px 8px 2px 8px;
  7733. box-sizing:border-box;
  7734. width:100%;
  7735. }
  7736. #u85108_text {
  7737. border-width:0px;
  7738. word-wrap:break-word;
  7739. text-transform:none;
  7740. visibility:hidden;
  7741. }
  7742. #u85109_input {
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:323px;
  7747. height:38px;
  7748. padding:2px 2px 2px 2px;
  7749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7750. font-weight:400;
  7751. font-style:normal;
  7752. font-size:14px;
  7753. letter-spacing:normal;
  7754. color:#000000;
  7755. vertical-align:none;
  7756. text-align:left;
  7757. text-transform:none;
  7758. background-color:transparent;
  7759. border-color:transparent;
  7760. }
  7761. #u85109_input.disabled {
  7762. position:absolute;
  7763. left:0px;
  7764. top:0px;
  7765. width:323px;
  7766. height:38px;
  7767. padding:2px 2px 2px 2px;
  7768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:14px;
  7772. letter-spacing:normal;
  7773. color:#000000;
  7774. vertical-align:none;
  7775. text-align:left;
  7776. text-transform:none;
  7777. background-color:transparent;
  7778. border-color:transparent;
  7779. }
  7780. #u85109_div {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:323px;
  7786. height:38px;
  7787. background:inherit;
  7788. background-color:rgba(255, 255, 255, 1);
  7789. border:none;
  7790. border-radius:0px;
  7791. -moz-box-shadow:none;
  7792. -webkit-box-shadow:none;
  7793. box-shadow:none;
  7794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7795. font-weight:400;
  7796. font-style:normal;
  7797. font-size:14px;
  7798. }
  7799. #u85109 {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:1832px;
  7803. top:284px;
  7804. width:323px;
  7805. height:38px;
  7806. display:flex;
  7807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7808. font-weight:400;
  7809. font-style:normal;
  7810. font-size:14px;
  7811. }
  7812. #u85109 .text {
  7813. position:absolute;
  7814. align-self:center;
  7815. padding:2px 2px 2px 2px;
  7816. box-sizing:border-box;
  7817. width:100%;
  7818. }
  7819. #u85109_div.disabled {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:323px;
  7825. height:38px;
  7826. background:inherit;
  7827. background-color:rgba(240, 240, 240, 1);
  7828. border:none;
  7829. border-radius:0px;
  7830. -moz-box-shadow:none;
  7831. -webkit-box-shadow:none;
  7832. box-shadow:none;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. font-size:14px;
  7837. }
  7838. #u85109.disabled {
  7839. }
  7840. #u85110 {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:0px;
  7846. height:0px;
  7847. }
  7848. #u85111_div {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:0px;
  7852. top:0px;
  7853. width:200px;
  7854. height:1180px;
  7855. background:inherit;
  7856. background-color:rgba(255, 255, 255, 1);
  7857. border:none;
  7858. border-radius:0px;
  7859. -moz-box-shadow:none;
  7860. -webkit-box-shadow:none;
  7861. box-shadow:none;
  7862. }
  7863. #u85111 {
  7864. border-width:0px;
  7865. position:absolute;
  7866. left:121px;
  7867. top:50px;
  7868. width:200px;
  7869. height:1180px;
  7870. display:flex;
  7871. }
  7872. #u85111 .text {
  7873. position:absolute;
  7874. align-self:center;
  7875. padding:2px 2px 2px 2px;
  7876. box-sizing:border-box;
  7877. width:100%;
  7878. }
  7879. #u85111_text {
  7880. border-width:0px;
  7881. word-wrap:break-word;
  7882. text-transform:none;
  7883. visibility:hidden;
  7884. }
  7885. #u85112_div {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:200px;
  7891. height:60px;
  7892. background:inherit;
  7893. background-color:rgba(224, 231, 247, 1);
  7894. border:none;
  7895. border-radius:0px;
  7896. -moz-box-shadow:none;
  7897. -webkit-box-shadow:none;
  7898. box-shadow:none;
  7899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7900. font-weight:500;
  7901. font-style:normal;
  7902. font-size:18px;
  7903. }
  7904. #u85112 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:121px;
  7908. top:50px;
  7909. width:200px;
  7910. height:60px;
  7911. display:flex;
  7912. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7913. font-weight:500;
  7914. font-style:normal;
  7915. font-size:18px;
  7916. }
  7917. #u85112 .text {
  7918. position:absolute;
  7919. align-self:center;
  7920. padding:0px 0px 0px 20px;
  7921. box-sizing:border-box;
  7922. width:100%;
  7923. }
  7924. #u85112_text {
  7925. border-width:0px;
  7926. word-wrap:break-word;
  7927. text-transform:none;
  7928. }
  7929. #u85113_div {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:0px;
  7933. top:0px;
  7934. width:97px;
  7935. height:22px;
  7936. background:inherit;
  7937. background-color:rgba(255, 255, 255, 0);
  7938. border:none;
  7939. border-radius:0px;
  7940. -moz-box-shadow:none;
  7941. -webkit-box-shadow:none;
  7942. box-shadow:none;
  7943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7944. font-weight:400;
  7945. font-style:normal;
  7946. font-size:16px;
  7947. }
  7948. #u85113 {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:148px;
  7952. top:369px;
  7953. width:97px;
  7954. height:22px;
  7955. display:flex;
  7956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7957. font-weight:400;
  7958. font-style:normal;
  7959. font-size:16px;
  7960. }
  7961. #u85113 .text {
  7962. position:absolute;
  7963. align-self:flex-start;
  7964. padding:0px 0px 0px 0px;
  7965. box-sizing:border-box;
  7966. width:100%;
  7967. }
  7968. #u85113_text {
  7969. border-width:0px;
  7970. word-wrap:break-word;
  7971. text-transform:none;
  7972. }
  7973. #u85114_div {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:97px;
  7979. height:22px;
  7980. background:inherit;
  7981. background-color:rgba(255, 255, 255, 0);
  7982. border:none;
  7983. border-radius:0px;
  7984. -moz-box-shadow:none;
  7985. -webkit-box-shadow:none;
  7986. box-shadow:none;
  7987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7988. font-weight:400;
  7989. font-style:normal;
  7990. font-size:16px;
  7991. }
  7992. #u85114 {
  7993. border-width:0px;
  7994. position:absolute;
  7995. left:148px;
  7996. top:597px;
  7997. width:97px;
  7998. height:22px;
  7999. display:flex;
  8000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:16px;
  8004. }
  8005. #u85114 .text {
  8006. position:absolute;
  8007. align-self:flex-start;
  8008. padding:0px 0px 0px 0px;
  8009. box-sizing:border-box;
  8010. width:100%;
  8011. }
  8012. #u85114_text {
  8013. border-width:0px;
  8014. word-wrap:break-word;
  8015. text-transform:none;
  8016. }
  8017. #u85115_div {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:0px;
  8021. top:0px;
  8022. width:49px;
  8023. height:17px;
  8024. background:inherit;
  8025. background-color:rgba(255, 255, 255, 0);
  8026. border:none;
  8027. border-radius:0px;
  8028. -moz-box-shadow:none;
  8029. -webkit-box-shadow:none;
  8030. box-shadow:none;
  8031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:12px;
  8035. color:#AAAAAA;
  8036. }
  8037. #u85115 {
  8038. border-width:0px;
  8039. position:absolute;
  8040. left:148px;
  8041. top:518px;
  8042. width:49px;
  8043. height:17px;
  8044. display:flex;
  8045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8046. font-weight:400;
  8047. font-style:normal;
  8048. font-size:12px;
  8049. color:#AAAAAA;
  8050. }
  8051. #u85115 .text {
  8052. position:absolute;
  8053. align-self:flex-start;
  8054. padding:0px 0px 0px 0px;
  8055. box-sizing:border-box;
  8056. width:100%;
  8057. }
  8058. #u85115_text {
  8059. border-width:0px;
  8060. white-space:nowrap;
  8061. text-transform:none;
  8062. }
  8063. #u85116_div {
  8064. border-width:0px;
  8065. position:absolute;
  8066. left:0px;
  8067. top:0px;
  8068. width:65px;
  8069. height:22px;
  8070. background:inherit;
  8071. background-color:rgba(255, 255, 255, 0);
  8072. border:none;
  8073. border-radius:0px;
  8074. -moz-box-shadow:none;
  8075. -webkit-box-shadow:none;
  8076. box-shadow:none;
  8077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8078. font-weight:400;
  8079. font-style:normal;
  8080. font-size:16px;
  8081. }
  8082. #u85116 {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:148px;
  8086. top:455px;
  8087. width:65px;
  8088. height:22px;
  8089. display:flex;
  8090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8091. font-weight:400;
  8092. font-style:normal;
  8093. font-size:16px;
  8094. }
  8095. #u85116 .text {
  8096. position:absolute;
  8097. align-self:flex-start;
  8098. padding:0px 0px 0px 0px;
  8099. box-sizing:border-box;
  8100. width:100%;
  8101. }
  8102. #u85116_text {
  8103. border-width:0px;
  8104. white-space:nowrap;
  8105. text-transform:none;
  8106. }
  8107. #u85117_img {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:0px;
  8111. top:0px;
  8112. width:201px;
  8113. height:2px;
  8114. }
  8115. #u85117 {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:121px;
  8119. top:497px;
  8120. width:200px;
  8121. height:1px;
  8122. display:flex;
  8123. }
  8124. #u85117 .text {
  8125. position:absolute;
  8126. align-self:center;
  8127. padding:2px 2px 2px 2px;
  8128. box-sizing:border-box;
  8129. width:100%;
  8130. }
  8131. #u85117_text {
  8132. border-width:0px;
  8133. word-wrap:break-word;
  8134. text-transform:none;
  8135. visibility:hidden;
  8136. }
  8137. #u85118_div {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:0px;
  8141. top:0px;
  8142. width:49px;
  8143. height:17px;
  8144. background:inherit;
  8145. background-color:rgba(255, 255, 255, 0);
  8146. border:none;
  8147. border-radius:0px;
  8148. -moz-box-shadow:none;
  8149. -webkit-box-shadow:none;
  8150. box-shadow:none;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:12px;
  8155. color:#AAAAAA;
  8156. }
  8157. #u85118 {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:148px;
  8161. top:332px;
  8162. width:49px;
  8163. height:17px;
  8164. display:flex;
  8165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8166. font-weight:400;
  8167. font-style:normal;
  8168. font-size:12px;
  8169. color:#AAAAAA;
  8170. }
  8171. #u85118 .text {
  8172. position:absolute;
  8173. align-self:flex-start;
  8174. padding:0px 0px 0px 0px;
  8175. box-sizing:border-box;
  8176. width:100%;
  8177. }
  8178. #u85118_text {
  8179. border-width:0px;
  8180. white-space:nowrap;
  8181. text-transform:none;
  8182. }
  8183. #u85119_div {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:0px;
  8187. top:0px;
  8188. width:97px;
  8189. height:22px;
  8190. background:inherit;
  8191. background-color:rgba(255, 255, 255, 0);
  8192. border:none;
  8193. border-radius:0px;
  8194. -moz-box-shadow:none;
  8195. -webkit-box-shadow:none;
  8196. box-shadow:none;
  8197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8198. font-weight:400;
  8199. font-style:normal;
  8200. font-size:16px;
  8201. }
  8202. #u85119 {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:148px;
  8206. top:639px;
  8207. width:97px;
  8208. height:22px;
  8209. display:flex;
  8210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8211. font-weight:400;
  8212. font-style:normal;
  8213. font-size:16px;
  8214. }
  8215. #u85119 .text {
  8216. position:absolute;
  8217. align-self:flex-start;
  8218. padding:0px 0px 0px 0px;
  8219. box-sizing:border-box;
  8220. width:100%;
  8221. }
  8222. #u85119_text {
  8223. border-width:0px;
  8224. word-wrap:break-word;
  8225. text-transform:none;
  8226. }
  8227. #u85120_div {
  8228. border-width:0px;
  8229. position:absolute;
  8230. left:0px;
  8231. top:0px;
  8232. width:97px;
  8233. height:22px;
  8234. background:inherit;
  8235. background-color:rgba(255, 255, 255, 0);
  8236. border:none;
  8237. border-radius:0px;
  8238. -moz-box-shadow:none;
  8239. -webkit-box-shadow:none;
  8240. box-shadow:none;
  8241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8242. font-weight:400;
  8243. font-style:normal;
  8244. font-size:16px;
  8245. }
  8246. #u85120 {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:148px;
  8250. top:253px;
  8251. width:97px;
  8252. height:22px;
  8253. display:flex;
  8254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8255. font-weight:400;
  8256. font-style:normal;
  8257. font-size:16px;
  8258. }
  8259. #u85120 .text {
  8260. position:absolute;
  8261. align-self:flex-start;
  8262. padding:0px 0px 0px 0px;
  8263. box-sizing:border-box;
  8264. width:100%;
  8265. }
  8266. #u85120_text {
  8267. border-width:0px;
  8268. word-wrap:break-word;
  8269. text-transform:none;
  8270. }
  8271. #u85121_div {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:0px;
  8275. top:0px;
  8276. width:97px;
  8277. height:22px;
  8278. background:inherit;
  8279. background-color:rgba(255, 255, 255, 0);
  8280. border:none;
  8281. border-radius:0px;
  8282. -moz-box-shadow:none;
  8283. -webkit-box-shadow:none;
  8284. box-shadow:none;
  8285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8286. font-weight:400;
  8287. font-style:normal;
  8288. font-size:16px;
  8289. }
  8290. #u85121 {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:148px;
  8294. top:413px;
  8295. width:97px;
  8296. height:22px;
  8297. display:flex;
  8298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8299. font-weight:400;
  8300. font-style:normal;
  8301. font-size:16px;
  8302. }
  8303. #u85121 .text {
  8304. position:absolute;
  8305. align-self:flex-start;
  8306. padding:0px 0px 0px 0px;
  8307. box-sizing:border-box;
  8308. width:100%;
  8309. }
  8310. #u85121_text {
  8311. border-width:0px;
  8312. word-wrap:break-word;
  8313. text-transform:none;
  8314. }
  8315. #u85122_div {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:0px;
  8319. top:0px;
  8320. width:97px;
  8321. height:22px;
  8322. background:inherit;
  8323. background-color:rgba(255, 255, 255, 0);
  8324. border:none;
  8325. border-radius:0px;
  8326. -moz-box-shadow:none;
  8327. -webkit-box-shadow:none;
  8328. box-shadow:none;
  8329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. font-size:16px;
  8333. }
  8334. #u85122 {
  8335. border-width:0px;
  8336. position:absolute;
  8337. left:148px;
  8338. top:555px;
  8339. width:97px;
  8340. height:22px;
  8341. display:flex;
  8342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8343. font-weight:400;
  8344. font-style:normal;
  8345. font-size:16px;
  8346. }
  8347. #u85122 .text {
  8348. position:absolute;
  8349. align-self:flex-start;
  8350. padding:0px 0px 0px 0px;
  8351. box-sizing:border-box;
  8352. width:100%;
  8353. }
  8354. #u85122_text {
  8355. border-width:0px;
  8356. word-wrap:break-word;
  8357. text-transform:none;
  8358. }
  8359. #u85123_div {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:0px;
  8363. top:0px;
  8364. width:97px;
  8365. height:22px;
  8366. background:inherit;
  8367. background-color:rgba(255, 255, 255, 0);
  8368. border:none;
  8369. border-radius:0px;
  8370. -moz-box-shadow:none;
  8371. -webkit-box-shadow:none;
  8372. box-shadow:none;
  8373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8374. font-weight:400;
  8375. font-style:normal;
  8376. font-size:16px;
  8377. }
  8378. #u85123 {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:148px;
  8382. top:167px;
  8383. width:97px;
  8384. height:22px;
  8385. display:flex;
  8386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8387. font-weight:400;
  8388. font-style:normal;
  8389. font-size:16px;
  8390. }
  8391. #u85123 .text {
  8392. position:absolute;
  8393. align-self:flex-start;
  8394. padding:0px 0px 0px 0px;
  8395. box-sizing:border-box;
  8396. width:100%;
  8397. }
  8398. #u85123_text {
  8399. border-width:0px;
  8400. word-wrap:break-word;
  8401. text-transform:none;
  8402. }
  8403. #u85124_img {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:201px;
  8409. height:2px;
  8410. }
  8411. #u85124 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:121px;
  8415. top:302px;
  8416. width:200px;
  8417. height:1px;
  8418. display:flex;
  8419. }
  8420. #u85124 .text {
  8421. position:absolute;
  8422. align-self:center;
  8423. padding:2px 2px 2px 2px;
  8424. box-sizing:border-box;
  8425. width:100%;
  8426. }
  8427. #u85124_text {
  8428. border-width:0px;
  8429. word-wrap:break-word;
  8430. text-transform:none;
  8431. visibility:hidden;
  8432. }
  8433. #u85125_div {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:49px;
  8439. height:17px;
  8440. background:inherit;
  8441. background-color:rgba(255, 255, 255, 0);
  8442. border:none;
  8443. border-radius:0px;
  8444. -moz-box-shadow:none;
  8445. -webkit-box-shadow:none;
  8446. box-shadow:none;
  8447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8448. font-weight:400;
  8449. font-style:normal;
  8450. font-size:12px;
  8451. color:#AAAAAA;
  8452. }
  8453. #u85125 {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:148px;
  8457. top:130px;
  8458. width:49px;
  8459. height:17px;
  8460. display:flex;
  8461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8462. font-weight:400;
  8463. font-style:normal;
  8464. font-size:12px;
  8465. color:#AAAAAA;
  8466. }
  8467. #u85125 .text {
  8468. position:absolute;
  8469. align-self:flex-start;
  8470. padding:0px 0px 0px 0px;
  8471. box-sizing:border-box;
  8472. width:100%;
  8473. }
  8474. #u85125_text {
  8475. border-width:0px;
  8476. white-space:nowrap;
  8477. text-transform:none;
  8478. }
  8479. #u85126_div {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:0px;
  8483. top:0px;
  8484. width:97px;
  8485. height:22px;
  8486. background:inherit;
  8487. background-color:rgba(255, 255, 255, 0);
  8488. border:none;
  8489. border-radius:0px;
  8490. -moz-box-shadow:none;
  8491. -webkit-box-shadow:none;
  8492. box-shadow:none;
  8493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8494. font-weight:400;
  8495. font-style:normal;
  8496. font-size:16px;
  8497. }
  8498. #u85126 {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:148px;
  8502. top:209px;
  8503. width:97px;
  8504. height:22px;
  8505. display:flex;
  8506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8507. font-weight:400;
  8508. font-style:normal;
  8509. font-size:16px;
  8510. }
  8511. #u85126 .text {
  8512. position:absolute;
  8513. align-self:flex-start;
  8514. padding:0px 0px 0px 0px;
  8515. box-sizing:border-box;
  8516. width:100%;
  8517. }
  8518. #u85126_text {
  8519. border-width:0px;
  8520. word-wrap:break-word;
  8521. text-transform:none;
  8522. }